@charset "utf-8";
/* CSS Document */

/*googlefonts*/

/*Adobefonts*/


/*================================
目次
================================

■FSの設定打消し
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）

1.全体
2.共通フォーマット（ボタンデザインなど）


*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■FSの設定打消し
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fs-l-main *{
	min-width: initial;
    min-width: auto;
    min-height: initial;
    min-height: auto;
}

/*パンくず*/
.fs-c-breadcrumb{
	padding-top:100px;
}
@media screen and (max-width:768px) {
	.fs-c-breadcrumb{
		padding-top:60px;
	}
}

/* 「現在登録されている商品はありません。」を非表示 */
.fs-c-noResultMessage { display: none }

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !important;
}

/*自動生成商品エリアのマージンゼロ/余白が発生するため*/
.fs-c-productList{
	margin:0;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*例：brタグにclassを追加
PCのみで改行→pc <br class="pc">
SPのみで改行→sp <br class="sp">
※両方共通の改行の場合は<br>のみでOK

他、PCとSPで表示を分けたい部分にも使用可能
*/

@media screen and (min-width: 768px){
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 768px){
  .pc { display:none; }
  .sp { display:block; }
}



/*================================
1.全体
================================*/

body{
/*背景色*/
	background-color: #f4f4f4;
}


/*全体調整*/
.fs-l-main{
	
	/* 幅調整 */
	width:100%;
	max-width:980px;
	margin:auto;
	
	/*text-align: center;*/
	line-height: 1.8;
	letter-spacing: 0.05em;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 400;
	color:#2f2f2f;
	font-size:12px;

}
@media screen and (max-width:768px) {
	.fs-l-main{
		
	}
}


/*リンクの設定*/
.fs-l-main a{
	text-decoration:none;
	color:#2f2f2f;
}
.fs-l-main a:hover,a:hover img{
	opacity:0.6;
    -moz-opacity:0.6;
    filter:alpha(opacity = 60);
}


/*widthなどの適応範囲をborder基準に変更*/
.fs-l-main *, .fs-l-main *:before, .fs-l-main *:after{
	-webkit-box-sizing: border-box; /* Webkit */
	-moz-box-sizing: border-box; /* Firefox */
	box-sizing: border-box; /* 標準 */
}


/*SP版画像サイズ制御*/
@media screen and (max-width:768px) {
    /*　画面サイズが768px以下の時はここを読み込む　*/
	.fs-l-main img{
	width:100%;
	height: auto;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.btn01{
  width:300px;
  padding: 0.8em 0 0.8em 0;
  font-size: 1.5em;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #fff;
  background-color: #2f2f2f;
  line-height: 1;
  border-radius: 10px;
  transition: all .2s;

  border:  2px solid #2f2f2f;

	font-family: futura-pt,sans-serif;
	font-weight: 600;
	font-style: normal;
}
.btn01:hover {
  background-color: transparent;
  border:  2px solid #2f2f2f;
  color: #2f2f2f;
}

/*小さいver*/
.btn-small{
	font-size:0.8em;
	padding: 0.5em 3em;
	margin-top:1em;
}
@media screen and (max-width: 768px){
	.btn01{
		 /*padding: 1em 1em 0.5em;*/
	}
	.btn-small{
		 padding: 0.1em 2em;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.コンテンツ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*メインタイトル*/

.main_title{
	text-align:center;
	margin:0 0 40px;
}

.main_title img{
	display:block;
	max-width:100%;
	height:auto;
	margin:auto;
}


/* クーポン一覧 */
/* 一覧 */
.cws{
	display:flex;
	flex-wrap:wrap;
	gap:12px;
	margin-bottom:30px;
}
/* クーポンカード */
.cw{
	position:relative;
	width:calc((100% - 24px) / 3);
	padding:20px;
	border:1px solid #d8d8d8;
	border-radius:10px;
	background:#fff;
	text-align:center;
	box-shadow:0 2px 6px rgba(0,0,0,.08);
	box-sizing:border-box;
}
/* 左上のリボン */
.cw::before{
	content:"";
	position:absolute;
	top:-1px;
	left:-1px;
	width:30px;
	height:30px;
	background:tomato;
	clip-path:polygon(0 0,100% 0,0 100%);
	/*border-top-left-radius:16px;*/
}
/* 条件 */
.cw .ttl{
	margin:0 0 10px;
	line-height:1.2;
}
.cw .ttl span{
	display:block;
	font-size:1.2rem;
	/*font-weight:700;*/
	color:#222;
}
.cw .ttl strong{
	display:block;
	margin-top:8px;
	font-size:3rem;
	line-height:1;
	font-weight:700;
	color:tomato;
}

/* クーポンコード */
.cw .code{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:.3em;
	margin:0 0 10px;
	padding:5px 10px;
	border:1px solid #d8d8d8;
	background:#fff;
}
.cw .code span{
	font-size:1rem;
	color:#222;
}
.cw .code span::after{
	content:"：";
}
.cw .code strong{
	font-size:1.8rem;
	font-weight:700;
	letter-spacing:.05em;
	color:#222;
}
/* 補足 */
.cw .sub{
	margin:0;
	font-size:1rem;
	/*font-weight:700;*/
	color:#222;
}
/*タブレット2列*/
@media (max-width:1024px){
	.cw{
		width:calc((100% - 12px) / 2);
	}
}
/*SP1列*/
@media (max-width:767px){
	.cws{
		gap:10px;
	}

	.cw{
		width:100%;
	}
}



/*補足情報*/
/* 共通 */
.box{
	margin:20px 0;
	padding:15px;
	border:1px solid #777;
	border-radius:10px;
	background: transparent;
	text-align:center;
	color:inherit;
}
.box .ttl{
	margin:0 0 8px;
	font-size:1.25rem;
	/*font-weight:700;*/
	/*line-height:1.4;*/
	color:inherit;
	/*text-decoration: underline;*/
}
.box .in{
	margin:0;
	font-size:1.2rem;
	/*font-weight:700;*/
	line-height:1.5;
	letter-spacing:.03em;
	color:inherit;
}


/* 対象ブランド */
/*.box.itm{
	border-color:tomato;
}*/
.box.itm .ttl{
	color:tomato;
}

/* 送料無料時文言 */
/*.box.shp{
	border-color:tomato;
}*/
.box.shp .ttl{
	color:tomato;
}

/* 利用期間 */
.box.date{
	border:none;
	padding:0;
	text-align:left;
	color:#222;
}
.box.date .ttl{
	
}
.box.date .in{
	font-weight:700;
}


/*注意事項*/
.box.cts{
	border: none;
	padding:0;
	text-align:left;
}
.box.cts .ttl{
	font-weight: 700;
}
.box.cts  ul{
	padding-inline-start: 25px;
}
.box.cts  li{
	line-height: 1.5;
	margin-bottom:0.5em;
}

/*強調*/
.imp{
	color:tomato;
	font-weight: bold;
}




/*アイテム一覧*/
.fs-c-productList{
	padding: 10px;
	margin: 30px auto;
	background-color: #fff;
	border-radius: 10px;
}
.lineup_title{ /*見出し*/
	text-align: center;
	padding: 15px 0;
	font-size: 1.25em;
	font-weight: bold;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.アコーディオン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.dtl {
	background-color: #222;
	width: 100%;
	max-width: 500px;
	margin-right: auto;
	/*margin-left: auto;*/
}

.dtl summary {
	cursor: pointer;
	padding: 10px 30px 10px 10px; /* 右側に余白を確保 */
	text-align: center;
	border: none;
	color: #fff;
	position: relative; /* 追加 */
	list-style: none; /* デフォルトの矢印を消す */
}
.dtl summary::-webkit-dtl-marker {/* Chrome等のデフォルト矢印を消す */
	display: none;
}
.dtl summary:hover {
	opacity: .5;
}
/* 閉じてる時（+） */
.dtl summary::after {
	content: "+";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	/*font-weight: bold;*/
	/*font-size: 18px;*/ /* ★好みのサイズに調整（例: 18px〜20px） */
	line-height: 1;  /* ★追加（位置ズレ防止） */
}
/* 開いてる時（-） */
.dtl[open] summary::after {
	content: "-";
}

.ans {
	overflow: hidden;
	background-color: #fff;
}
.ans_in {
	padding: 0 10px 10px;
	border: none;
	color: #444;
	/*border-top-color: #fff;*/
	text-align: left;
	font-size: 0.8em;
}





