body {
	font-family: "Noto Sans JP", "BIZ UDPGothic", "M PLUS Rounded 1c", sans-serif;
	background-color: #efe1e1;
	color: #252525;
  /* font-weight: 900; */
}

a { color: #252525; };
a:link { color:#252525; }
a:visited { color:#252525; }
a:hover { color:#515151; text-decoration:underline; }
a:active { color:#594e4e; }

/* スマホ限定設定 */
/* @media (max-width: 1400px) {
	html{ font-size: 100%; }
} */

/* PC限定設定 */
/* @media (min-width: 1400px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1000px;
	}
} */

/* フォントが大きめの場合設定　"BIZ UDPGothic" など　 */
/* html {
  font-size: 90%;
  letter-spacing: 0.05em;
} */

/* フォント種類　金額など最適 */
.aaaa { 
  letter-spacing:15px;
}


/* フォントサイズを追加 */
.fs-7 { font-size: 0.9rem; }
.fs-8 { font-size: 0.8rem; }
.fs-9 { font-size: 0.7rem; }
.fs-10 { font-size: 0.6rem; }

/* 背景色を追加 */
.bg-1 { background-color: #e9e9e9; }
.bg-2 { background-color: #e2edd7; }

/* テキスト色を追加 */
.text-1 { color: #3a3232; }
.text-2 { color: #53b300; }

/* 文字両端フィット sectionに指定 */
.text-container-justfit {
  text-align: justify;
}

/* ブロックの全体を薄くする 利用済みクーポン */
.overlay {
  opacity: .5;
}




/* 点線 */
.hr1 {
  border-top: 1px dotted #333333;
}




/* クーポンのブロック装飾 */
.coupon_box {
  outline: 2px solid #dee2e6; /* 2pxのアウトラインを黒で */
  outline-offset: -2px; /* 内側にオフセット */
  border-radius: 14px; /* 角丸 */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 影 */
}
.img_top_radius {
  border-top-left-radius: 14px; /* 上部の角丸 */
  border-top-right-radius: 14px; /* 上部の角丸 */
}


/* スクロールバーを非表示 */
.content{
  height: 809px; /*要素の高さを指定*/
  overflow-y: scroll; /*上下方向にはみ出した要素ををスクロールさせる*/
  -ms-overflow-style: none; /*スクロールバー非表示（IE・Edge）*/
  scrollbar-width: none; /*スクロールバー非表示（Firefox）*/
}
/* スクロールバー非表示（Chrome・Safari） */
.content::-webkit-scrollbar{
  display:none;
}







/* 横スクロールスタイル */
.horizontal_scroll {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 2px 0px; /* 数字を入れてもいい */
  display: -ms-flexbox;
  display: flex; }
/* 画面幅が2000px以上の場合、横スクロールを解除 */
@media screen and (min-width: 2000px) {
  .horizontal_scroll {
    overflow-x: inherit;
    padding: 0 8px 6px;
  }
  .horizontal_scroll > li {
    min-width: inherit;
  }
  .horizontal_scroll > li:last-child {
    padding-right: 0;
  }
}
.horizontal_scroll > li {
  width: 100%;
  min-width: 120px;
  margin-right: 5px;
  list-style: none;
}
.horizontal_scroll > li:last-child {
  padding-right: 0px; /* 数字を入れてもいい */
}
.horizontal_scroll img {
  vertical-align: bottom;
}





/* ラジオボタン・チェックボックスの装飾 */
input[type=radio], input[type=checkbox] {
  display: none;
}
.radio, .checkbox {
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  margin: 0 5px 8px 0;
  padding: 6px 12px 6px 32px;
  border-radius: 4px;
  background-color: #f6f7f8;
  vertical-align: middle;
  cursor: pointer;
}
.radio:hover, .checkbox:hover {
  background-color: #e2edd7;
}
.radio:hover:after, .checkbox:hover:after {
  border-color: #53b300;
}
.radio:after, .checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  margin-top: -8px;
  margin-left: 2px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 6px;
  content: '';
}
.radio:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 20px;
  display: block;
  margin-top: -5px;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #53b300;
  content: '';
  opacity: 0;
}
input[type=radio]:checked + .radio:before {
  opacity: 1;
}
.checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -5px;
  margin-left: -3px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #53b300;
  border-bottom: 3px solid #53b300;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}
input[type=radio]:checked + .radio, input[type=checkbox]:checked + .checkbox {
  background-color: #e2edd7;
}


