@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(//fonts.googleapis.com/earlyaccess/notosansjp.css);

/*==================
初期化の設定
====================*/
* {
  box-sizing: border-box;
}

html {
  /*フォントサイズを1rem10pxとして使えるために*/
  /*	font-size:62.5%;*/
}

body {
  font-size: 16px;
  line-height: 1.6px;
  font-family: "Noto Sans JP", sans-serif;
  /*	font-family: 'Dosis', sans-serif;*/
  /*	font-family: 'Handlee', cursive;*/

  /* color:#666; */
  /* background:#924653; */
  background: #3f1a25;
  background-image: url("../img/common/bg-moyou.jpg");
  /* background-repeat: repeat-y; */
}

a {
  text-decoration: none;
}

a:link,
a:visited,
a:active {
  color: #fff;
}

a:hover {
  color: #bfaf70;
}

/*リスト要素の初期値をリセット*/
ul,
ol {
  list-style: none;
  padding-left: 0;
}

/*右マージンの設定*/
.mRight20 {
  margin-right: 20px;
}

/*clearfixの設定*/
.clearfix::after {
  display: block; /*block要素にする*/
  content: "";
  clear: both;
}
