@charset "utf-8";
/* CSS関数設定 */
:root {
	/* カラーパレット */
	--WHITE: #FFFFFF;
	--WHITE_OP95: rgba(255, 255, 255, 0.95);
	--BLACK: #000000;
	--BLACK_OP50: rgba(0, 0, 0, 0.5);

	--GRAY01: #F0F0F0;
	--GRAY01_OP95: rgba(240, 240, 240, 0.95);
	--GRAY02: #D1D1D1;
	--GRAY03: #A7A7A7;
	--GRAY04: #808080;

	--GOLD01: #D2CCBC;
	--GOLD01_OP95: rgba(210, 204, 188, 0.95);
	--GOLD02: #908873;
	--GOLD03: #CAC5BB;
	--GOLD03_OP50: rgba(202, 197, 187, 0.5);

	--DARK01: #454545;
	--DARK01_OP80: rgba(69, 69, 69, 0.8);
	--DARK02: #222222;
	--DARK02_OP50: rgba(34, 34, 34, 0.5);
	--DARK02_OP30: rgba(34, 34, 34, 0.3);

	--GREEN01: #0B2609;

	--RED01: #FF0000;

	/* テキストカラー */
	--TXT_COLOR_BASE: var(--DARK02);
	--TXT_COLOR_WHITE: var(--WHITE);

	/* ボーダーカラー */
	--BDCOLOR_GRAY_1: var(--GRAY02);
	--BDCOLOR_GRAY_2: var(--GRAY01);

	/* 背景カラー */
	--BGCOLOR_GRAY_1: var(--GRAY01);
	--BGCOLOR_GOLD_1: var(--GOLD01);
	--BGCOLOR_GOLD_2: var(--GOLD01_OP95);

	/* ランキングカラー */
	--RANKING_1ST: #BA9700;
	--RANKING_2ND: #A7A7A7;
	--RANKING_3RD: #B75400;
	--RANKING_OTHER: #002C1B;

	/* 共通角丸 */
	--COMMON_BDRS_S: 5px;
	--COMMON_BDRS_M: 10px;
	--COMMON_BDRS_L: 20px;

	/* 共通ボックス影 */
	--COMMON_BXSD: 0px 0px 15px -5px var(--GRAY02);
	--COMMON_BXSD_BTM: 0px 5px 15px -5px var(--GRAY02);

	/* ベースフォント */
	--FF_BASE: "Zen Kaku Gothic Antique", sans-serif;
	/* 英数字フォント */
	--FF_EN: "Montserrat", sans-serif;
	--FF_NUM: "Montserrat", sans-serif;
		/* Noto Serif JP*/
		--FF_NSERIF: "Noto Serif JP", serif;

	/* フォントウェイト */
	--FF_WEIGHT_BASE: var(--FF_W_R);
	--FF_W_R: 400;
	--FF_W_M: 500;
	--FF_W_B: 700;
	
	/* アニメーション */
	--ANIME_FADEIN: fadeIn .3s ease-in-out 0s forwards;
	--ANIME_FADEOUT: fadeOut .3s ease-in-out 0s forwards;
	--ANIME_TRANSITION: all .6s ease;

	/* フォトサイズ */
	--FZ_11: clamp(10px, 1.1vw, 11px);
	--FZ_12: clamp(10px, 1.1vw, 12px);
	--FZ_13: clamp(11px, 1vw, 13px);
	--FZ_14: clamp(12px, 1.2vw, 14px);
	--FZ_15: clamp(13px, 1.4vw, 15px);
	--FZ_16: clamp(14px, 1.5vw, 16px);
	--FZ_18: clamp(15px, 1.6vw, 18px);
	--FZ_20: clamp(16px, 1.8vw, 20px);
	--FZ_22: clamp(18px, 2vw, 22px);
	--FZ_24: clamp(20px, 2vw, 24px);
	--FZ_25: clamp(20px, 2vw, 25px);
	--FZ_28: clamp(22px, 2.5vw, 28px);
	--FZ_30: clamp(25px, 3vw, 30px);
	--FZ_32: clamp(25px, 3vw, 32px);
	--FZ_35: clamp(25px, 3vw, 35px);
	--FZ_40: clamp(30px, 3.5vw, 40px);
	--FZ_43: clamp(30px, 4vw, 43px);
	--FZ_50: clamp(30px, 4vw, 50px);
	--FZ_60: clamp(40px, 5vw, 60px);
	--FZ_70: clamp(50px, 6vw, 70px);
	--FZ_10_CONST: 10px;
	--FZ_11_CONST: 11px;
	--FZ_12_CONST: 12px;
	--FZ_13_CONST: 13px;
	--FZ_14_CONST: 14px;
	--FZ_15_CONST: 15px;
	--FZ_16_CONST: 16px;
	--FZ_18_CONST: 18px;
	--FZ_20_CONST: 20px;
	--FZ_22_CONST: 22px;

	/* 行間 */
	--LINE_HEIGHT_S: 1.5;
	--LINE_HEIGHT_M: 1.7;
	--LINE_HEIGHT_L: 2;

	/* ブロック間 */
	--GAP_10: clamp( 5px, 1.1vw, 10px);
	--GAP_15: clamp( 10px, 1.2vw, 15px);
	--GAP_20: clamp( 15px, 1.7vw, 20px);
	--GAP_35: clamp( 20px, 2.5vw, 35px);
	--GAP_30: clamp( 20px, 2.5vw, 30px);
	--GAP_40: clamp( 30px, 3.5vw, 40px);
	--GAP_50: clamp( 30px, 3.5vw, 50px);
	--GAP_60: clamp( 40px, 4.5vw, 60px);
	--GAP_65: clamp( 50px, 5.5vw, 65px);
	--GAP_75: clamp( 60px, 6.5vw, 75px);
	--GAP_80: clamp( 50px, 5.5vw, 80px);
	--GAP_5_CONST: 5px;
	--GAP_10_CONST: 10px;
	--GAP_15_CONST: 15px;
	--GAP_20_CONST: 20px;
	--GAP_30_CONST: 30px;
	--GAP_40_CONST: 40px;

	/* マージン */
	--MG_5: 5px;
	--MG_10: 10px;
	--MG_15: 15px;
	--MG_20: 20px;
	--MG_30: 30px;
	--MG_40: 40px;
	--MG_50: 50px;
	--MG_60: 60px;
	--MG_80: 80px;

	/* PCマックス幅 */
	--PC_MAX_WIDTH: var(--PC_MAX_WIDTH_M);
	--PC_MAX_WIDTH_SS: 800px;
	--PC_MAX_WIDTH_S: 1000px;
	--PC_MAX_WIDTH_M: 1200px;
	--PC_MAX_WIDTH_L: 1440px;

	/* セクション間隔半分 */
	--GENERALSEC_HALF: calc(var(--GENERALSEC) / 2);
}

@media screen and (min-width: 768px){
	:root{
		--INNER_WIDTH: 95%;
		--GENERALSEC: clamp(70px, 8vw, 100px);
	}
}
@media screen and (max-width: 767px){
	:root{
	--INNER_WIDTH: 90%;
	--GENERALSEC: 40px;
	}
}
/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
/* リセットCSS */
*{margin:0;padding:0;min-height: 0;min-width: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
html {height:100%;scroll-behavior: smooth;}
ul li ,ol li{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight: var(--FF_WEIGHT_BASE);font-size: 100%;margin: 0;}
p{margin: 0;}
strong{font-weight: inherit;}
a:focus, *:focus{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{ 
  display:block;
}
body{
	font-family: var(--FF_BASE);
	font-weight: var(--FF_WEIGHT_BASE);
	fong-feature-settings: "palt" 1;
	letter-spacing: 0.05em;
	width:100%;
	color: var(--TXT_COLOR_BASE);
	position:relative;
	z-index: 0;
	overflow-x: clip;
}
body > *{
	overflow-x: clip;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--TXT_COLOR_BASE);
}
a:visited{
	color: var(--TXT_COLOR_BASE);
}
a img,a{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s;
}
img{
	height: auto;
	max-width: 100%;
	box-sizing: unset;
	vertical-align: bottom;
}
iframe{
	vertical-align: bottom;
}
.formReset button,
.formReset input[type="button"],
.formReset input[type="submit"],
.formReset input[type="text"],
.formReset input[type="image"],
.formReset select{
	background-color: unset;
	color: var(--TXT_COLOR_BASE);
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
}
.formReset input[type="text"],
.formReset input[type="text"]::placeholder{
	font-family: var(--FF_BASE);
	color: var(--TXT_COLOR_BASE);
}
time{
	font-family: var(--FF_NUM);
}
/* フォントCSS */
.ff-mincho{
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
/* imgリセット */
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
}
/* セクション間隔*/
.g-mgt{
	margin-top: var(--GENERALSEC);
}
.g-mgb{
	margin-bottom: var(--GENERALSEC);
}
.g-pd{
	padding: var(--GENERALSEC) 0;
}
.g-pdt{
	padding-top: var(--GENERALSEC);
}
.g-pdb{
	padding-bottom: var(--GENERALSEC);
}
.g-mgt--half{
	margin-top: var(--GENERALSEC_HALF);
}
.g-mgb--half{
	margin-bottom: var(--GENERALSEC_HALF);
}
.g-pd--half{
	padding: var(--GENERALSEC_HALF) 0;
}
.g-pdt--half{
	padding-top: var(--GENERALSEC_HALF);
}
.g-pdb--half{
	padding-bottom: var(--GENERALSEC_HALF);
}
/* グリッド、フレックス */
.grid{
	display: grid;
}
.flex{
	display: flex;
}
.fxw{
	display: flex;
	flex-wrap: wrap;
}
.jcsb{
	display: flex;
	justify-content: space-between;
}
.aic{
	display: flex;
	align-items: center;
}
/* スライダー読み込みまで非表示 */
.slick{
	opacity: 0;
	transition: opacity .3s linear;
	line-height: 1;
}
.slick.slick-initialized{
	opacity: 1;
}
/* 縦書き */
.tategaki{
	writing-mode: vertical-rl;
}
/* 文字間 */
::placeholder,
input[type="text"],
[class*="ttl"],
[class*="lead"],
[class*="heading"],
a{
  letter-spacing: 0.1em;
}
/* テキスト行間文字間 */
[class*="txt"]{
  line-height: var(--LINE_HEIGHT_L);
	letter-spacing: 0.1em;
}
/* スクロールバー消す */
.noscrollbar,
.noscrollbar{
	-ms-overflow-style: none;/* IE, Edge 対応 */
	scrollbar-width: none;/* Firefox 対応 */
}
.noscrollbar::-webkit-scrollbar,
.noscrollbar::-webkit-scrollbar{/* Chrome, Safari 対応 */
	display: none;
}
/* youtube */
.youtubeContainer iframe {
  display: block;
  width: 100%;
	height: auto;
	aspect-ratio: 10000/5625;
}
/* 改行用 */
.dib{
	display: inline-block;
}
/* インナー */
.g-inner--hasSlickGap{
	--INNER_ADJUST: calc(var(--SLICK_GAP) * 2);
	width: calc(var(--INNER_WIDTH) + var(--INNER_ADJUST));
	max-width: calc(var(--PC_MAX_WIDTH_M) + var(--INNER_ADJUST));
	margin-left: auto;
	margin-right: auto;
}
@media (hover: hover){
	.formReset button:hover,
	.formReset input[type="button"]:hover,
	.formReset input[type="submit"]:hover,
	.formReset input[type="image"]:hover,
	.formReset select:hover{
		cursor: pointer;
	}
	a:hover{
		opacity: 0.7;
		text-decoration: none;
	}
	a:hover img{
		opacity:0.75 !important;
	}
}
html.no-smooth-scroll {
	scroll-behavior: auto;
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 80px;
	}
	body{
		font-size: var(--FZ_15_CONST);
		line-height: 1.7;
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	.g-inner,
	.g-inner--pc,
	.g-inner--lPc,
	.g-inner--l,
	.g-inner--m,
	.g-inner--s,
	.g-inner--ss{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.g-inner,
	.g-inner--pc{
		max-width: var(--PC_MAX_WIDTH_M);
	}
	.g-inner--l,
	.g-inner--lPc{
		max-width: var(--PC_MAX_WIDTH_L);
	}
	.g-inner--s{
		max-width: var(--PC_MAX_WIDTH_S);
	}
	.g-inner--ss{
		max-width: var(--PC_MAX_WIDTH_SS);
	}
	.g-inner--pcHasSlickGap{
		--INNER_ADJUST: calc(var(--SLICK_GAP) * 2);
    width: calc(var(--INNER_WIDTH) + var(--INNER_ADJUST));
    max-width: calc(var(--PC_MAX_WIDTH_M) + var(--INNER_ADJUST));
		margin-left: auto;
		margin-right: auto;
	}
	.g-pd--halfPcOnly{
		padding: var(--GENERALSEC_HALF) 0;
	}
	.sp{
		display: none !important;
	}
	.hamburger{
		display: none !important;
	}
	.tategaki--pc{
		writing-mode: vertical-rl;
	}
	/* pc順番付与 */
	.orderPc-1st { order: 1; }
	.orderPc-2nd { order: 2; }
	.orderPc-3rd { order: 3; }
	.orderPc-4th { order: 4; }
	.orderPc-5th { order: 5; }
	.orderPc-6th { order: 6; }
	.orderPc-7th { order: 7; }
	.orderPc-8th { order: 8; }
	.orderPc-9th { order: 9; }
	.orderPc-10th { order: 10; }
	.orderPc-11th { order: 11; }
	.orderPc-12th { order: 12; }
	.orderPc-13th { order: 13; }
	.orderPc-14th { order: 14; }
	.orderPc-15th { order: 15; }
	.orderPc-16th { order: 16; }
	.orderPc-17th { order: 17; }
	.orderPc-18th { order: 18; }
	.orderPc-19th { order: 19; }
	.orderPc-20th { order: 20; }
}
@media screen and (max-width: 767px){
	body{
		font-size: var(--FZ_14_CONST);
		line-height: 1.6;
	}
	.g-inner,
	.g-inner--sp,
	.g-inner--l,
	.g-inner--m,
	.g-inner--s,
	.g-inner--ss{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.g-pd--halfPcOnly{
		padding: var(--GENERALSEC) 0;
	}
	.pc{
		display: none !important;
	}
	.sp-scroll--y{
		overflow-y: scroll;
		overflow-x: auto;
	}
	.sp-scroll--x{
		overflow-x: scroll;
		overflow-y: auto;
		padding-left: calc((100% - var(--INNER_WIDTH)) / 2);
		padding-right: calc((100% - var(--INNER_WIDTH)) / 2);
	}
	.tategaki--sp{
		writing-mode: vertical-rl;
	}
	.formReset input[type="text"],
	.formReset input[type="text"]::placeholder{
		font-size: var(--FZ_16_CONST);
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
/* hd-notice */
.hd-noticeContainer{
	background-color: var(--BGCOLOR_GOLD_1);
	height: var(--HD_NOTICE_HEIGHT);
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
}
.hd-noticeContainer:empty{
	display: none;
}
.hd-notice{
	text-align: center;
}
.hd-notice a{
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	letter-spacing: 0;
}
@media screen and (min-width: 768px){
	body{
		--HD_NOTICE_HEIGHT: 50px;
	}
	.hd-notice a{
		font-size: var(--FZ_14);
	}
}
@media screen and (max-width: 767px){
	body{
		--HD_NOTICE_HEIGHT: 40px;
	}
	.hd-noticeContainer{
		/* margin-bottom: var(--HEADER_HEIGHT); */
	}
	.hd-notice a{
		font-size: var(--FZ_13_CONST);
	}
}
/* headerarea */
#headerarea{
	position: relative;
}
@media screen and (min-width: 768px){
	#headerarea{
		border-bottom: 1px solid var(--GOLD03);
	}
}
@media screen and (max-width: 767px){
	:root{
		--HEADER_HEIGHT: 70px;
	}
	#headerarea{
		background-color: var(--WHITE);
		width: 100%;
		position: sticky;
		top: 0;
		left: 0;
		border-bottom: 1px solid var(--BDCOLOR_GRAY_1);
		z-index: 99;
	}
}
/* hd-wrap */
@media screen and (min-width: 768px){
	.hd-wrap{
		position: relative;
	}
}
@media screen and (max-width: 767px){
	.hd-wrap{
		display: flex;
		justify-content: space-between;
		height: var(--HEADER_HEIGHT);
		position: relative;
	}
}
/* hd-logo */
@media screen and (min-width: 768px){
	.hd-logoContainer{
		padding: 45px 32px;
	}
	.hd-logo{
		width: 180px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 767px){
	.hd-logoContainer{
		width: 145px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}
/* hd-nav */
@media screen and (min-width: 1001px){
	.hd-navContainer{
		display: flex;
		justify-content: center;
	}
}
@media screen and (min-width: 768px){
	.hd-nav{
		position: relative;
		display: flex;
		gap: var(--GAP_50);
		margin-bottom: 0;
	}
	.hd-nav > li .hd-nav__item{
		position: relative;
		transition: .3s;
	}
	.hd-nav > li .hd-nav__item::after{
		display: block;
		content: "";
		background-color: var(--BLACK);
		width: 100%;
		position: absolute;
		bottom: 15px;
		left: 50%;
		transform: translateX(-50%);
		height: 2px;
		opacity: 0;
		transition: .3s;
		z-index: 100;
	}
	.hd-nav > li:hover .hd-nav__item,
	.hd-nav > li:hover .hd-nav__item::after{
		opacity: 1;
	}
	.hd-nav > li[ontouchstart=""] .hd-nav__item::before{
		content: "";
		display: inline-block;
		width: clamp( 100px, 15vw, 200px);
		height: 20px;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.hd-nav__item{
		display: block;
		padding-bottom: 20px;
		letter-spacing: 0.07em;
		font-family: var(--FF_EN);
		font-size: var(--FZ_14_CONST);
	}
	.hd-nav__dropdownContainer{
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		transition: .3s;
		padding-top: 0px;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
	}
	.hd-nav > li[ontouchstart=""]:hover .hd-nav__dropdownContainer{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.hd-nav__dropdown,
	.hd-modalContents{
		background-color: var(--BGCOLOR_GOLD_2);
		overflow-y: scroll;
		max-height: calc(100vh - 210px);
		padding: 40px 0 60px;
	}
}
/* hd-category */
.hd-category{
	display: grid;
}
.hd-category li a{
	display: block;
}
@media screen and (min-width: 768px){
	.hd-category{
		grid-template-columns: repeat(auto-fill, minmax(273px, 1fr));
		gap: var(--GAP_40) var(--GAP_20);
	}
	.hd-category li a{
		display: flex;
		align-items: center;
		gap: 5px;
		padding: 0 5px 8px 5px;
		border-bottom: 1px solid var(--BGCOLOR_GRAY_1);
		font-size: var(--FZ_14);
		position: relative;
	}
	.hd-category li a::after{
		content: "/ "attr(data-en);
		font-size: var(--FZ_11);
		font-family: var(--FF_EN);
		letter-spacing: 0.05em;
	}
	.hd-category li a::before{
		content: "";
		display: inline-block;
		background: var(--BLACK);
		position: absolute;
		bottom: -1px;
		left: 0;
		width: 0;
		height: 1px;
		transition: .3s;
	}
	.hd-category li a:hover{
		opacity: 1;
	}
	.hd-category li a:hover::before{
		width: 100%;
	}
	.hd-category--shop{
		grid-template-columns: repeat(auto-fill, minmax(376px, 1fr));
	}
	.hd-category--shop li a::after{
		content: none;
	}
}
@media screen and (max-width: 767px){
	.hd-category{
		grid-template-columns: repeat(2,1fr);
	}
	.hd-category li{
		border-bottom: 1px solid var(--BDCOLOR_GRAY_1);
	}
	.hd-category li:nth-child(-n+5) {
    grid-column: span 2;
	}
	.hd-category li a{
		font-weight: var(--FF_W_M);
		padding: 11px 0;
		position: relative;
	}
	.hd-category li:nth-child(-n+5) a,
	.hd-category li:nth-child(n+6) a{
    padding-left: var(--HD_MODEL_PADDING);
	}
	.hd-category li:nth-child(-n+5) a{
		font-size: 15px;
	}
	.hd-category li:nth-child(n+6) a{
		font-size: 14px;
	}
	.hd-category li:nth-child(n+6):nth-child(even) a::after{
		content: "";
		display: inline-block;
		background: var(--BDCOLOR_GRAY_2);
		height: 33px;
		width: 1px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
	}
}
/* hd-user */
.hd-user{
	position: absolute;
	right: 0;
	display: flex;
	margin-bottom: 0;
}
.hd-user__item{
	width: 100%;
	display: block;
	background: var(--URL) no-repeat center center / var(--SIZE);
	aspect-ratio: 1/1;
}

button.hd-user__item--searchTrigger{
	--URL: url(../images/common/icon_search.svg);
	background-image: var(--URL);
}
.hd-user__item--searchTrigger.is-active{
	--URL: url(../images/common/icon_batsu.svg);
	background-image: var(--URL);
}
@media screen and (min-width: 768px){
	.hd-user{
		bottom: 15px;
		gap: 18px;
	}
	.hd-user li{
		width: 33px;
	}
	.hd-user__item{
		--SIZE: 21px;
		position: relative;
	}
	.hd-user__item::after{
		content: attr(data-text);
		font-family: var(--FF_BASE);
		font-size: 9px;
		white-space: nowrap;
		letter-spacing: 0.05em;
		position: absolute;
		left: 55%;
		transform: translateX(-50%);
		bottom: -12px;
		opacity: 0;
		transition: .1s;
	}
	.hd-user__item:hover{
		opacity: 1;
	}
	.hd-user__item:hover::after{
		opacity: 1;
	}
	.hd-user__item--searchTrigger.is-active{
		--SIZE: 15px;
	}
	.hd-user__item .fs-client-cart-count{
		transform: translate(80%, -30%);
	}
}
@media screen and (max-width: 767px){
	.hd-user{
		top: 50%;
		transform: translateY(-50%);
		gap: var(--GAP_20);
	}
	.hd-user li{
		width: 20px;
	}
	.hd-user__item{
		--SIZE: 21px;
	}
	.hd-user__item--searchTrigger.is-active{
		--SIZE: 15px;
	}
	.hd-user__item .fs-client-cart-count{
		transform: translate(50%, -50%);
	}
}
/* hd-spMenuTrigger */
@media screen and (max-width: 767px){
	.hd-spMenuTrigger{
		display: block;
		padding: 15px;
		background: url(../images/common/icon_menu.svg) no-repeat left center / 15px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
	}
	.hd-spMenuTrigger.is-active{
		background-image: url(../images/common/icon_batsu.svg);
	}
}
/* hd-modalContainer */
body.no-scroll{
	overflow-y: hidden;
}
.hd-modalContainer{
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	transition: .3s;
	width: 100%;
	position: absolute;
}
.hd-modalContainer.is-active{
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	z-index: 99;
}
.hd-modalContents{
	overflow-y: scroll;
	overscroll-behavior-y: contain;
}
@media screen and (min-width: 768px){
	.hd-modalContents{
		background-color: var(--BGCOLOR_GOLD_2);
	}
	.hd-modalContainer{
		top: 100%;
		left: 0;
	}
}
@media screen and (max-width: 767px){
	.hd-modal{
		--HD_MODEL_PADDING: 18px;
	}
	.hd-modalContainer{
		background-color: var(--DARK01_OP80);
	}
	.hd-modalContainer.is-active{
		position: fixed;
		top: calc(var(--HEADER_HEIGHT) + var(--HD_NOTICE_HEIGHT));
		height: calc(100vh - (var(--HEADER_HEIGHT) + var(--HD_NOTICE_HEIGHT)));
	}
	body:not(:has(.hd-noticeContainer)) .hd-modalContainer.is-active,
	body:has(.hd-noticeContainer:empty) .hd-modalContainer.is-active,
	body.header-fixed .hd-modalContainer.is-active{
		top: var(--HEADER_HEIGHT);
		height: calc(100vh - var(--HEADER_HEIGHT));
	}
	.hd-modalContents{
		height: 100%;
		background-color: var(--WHITE);
		width: 80%;
		max-width: 375px;
	}
	.hd-modalContainer--search .hd-modalContents{
		margin-left: auto;
	}
}
/* hd-modal__searchForm */
.hd-modal__searchForm dt{
	font-weight: var(--FF_W_M);
}
.hd-modal__searchForm__tagContainer{
	position: relative;
}
.hd-modal__searchForm__tagContainer::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: var(--FF_W_M);
	content: '\f078';
	font-size: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
}
.hd-modal__searchForm .hd-modal__searchForm__tag{
	background-color: var(--BGCOLOR_GRAY_1);
	width: 100%;
	padding: 12px 30px 12px 15px;
	font-size: 13px;
}
.hd-modal__searchForm input[type="text"]{
	width: 100%;
	background-color: var(--BGCOLOR_GRAY_1);
	padding: 10px 15px;
}
.hd-modal__searchForm__priceContainer{
	display: flex;
	align-items: stretch;
}
input[type="text"].hd-modal__searchForm__price{
	flex: 1;
}
.hd-modal__searchForm__priceContainer span{
	width: fit-content;
	font-weight: var(--FF_W_M);
}
.hd-modal__searchForm__currency{
	display: flex;
	align-items: flex-end;
	padding-left: 5px;
	font-size: 13px;
}
.hd-modal__searchForm__from{
	display: flex;
	align-items: center;
	padding: 0 3px;
}
.hd-modal__searchForm button[type="submit"]{
	display: block;
	width: 100%;
	background-color: var(--TXT_COLOR_BASE);
	color: var(--WHITE);
	font-size: 14px;
	padding: 10px 0;
}
.hd-modal__searchForm__stock{
	font-size: 13px;
	font-weight: var(--FF_W_M);
	padding-left: 30px;
	position: relative;
}
.hd-modal__searchForm__stock input[type="checkbox"]{
  position: absolute;
	white-space: nowrap;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	overflow: hidden;
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
}
.hd-modal__searchForm__stock__checkbox{
	content: "";
	display: inline-block;
	background: var(--BGCOLOR_GRAY_1);
	aspect-ratio: 1/1;
	width: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.hd-modal__searchForm__stock__checkbox::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: var(--FF_W_M);
	content: '\f00c';
	font-size: 15px;
	position: absolute;
	top: 50%;
	color: var(--GOLD02);
	transform: translateY(-50%);
	left: 2px;
	opacity: 0;
}
.hd-modal__searchForm__stock input[type="checkbox"]:checked+.hd-modal__searchForm__stock__checkbox::after{
	opacity: 1;
}
@media (hover: hover){
	.hd-modal__searchForm button[type="submit"]{
		transition: .5s;
	}
	.hd-modal__searchForm button[type="submit"]:hover{
		background-color: var(--GOLD02);
	}
	.hd-modal__searchForm__stock:hover{
		cursor: pointer;
	}
}
@media screen and (min-width: 768px){
	.hd-modal--search{
		display: grid;
		grid-template-columns: 240px 1fr;
		align-items: flex-start;
		gap: clamp( 30px, 7vw, 100px);
	}
	.hd-modal__searchForm dt{
		margin-bottom: 5px;
	}
	.hd-modal__searchForm dd{
		margin-bottom: 20px;
	}
	.hd-modal__searchForm button[type="submit"]{
		margin-top: 30px;
	}
	.hd-modal__searchForm input[type="text"]{
		font-size: 13px;
	}
}
@media screen and (max-width: 767px){
	.hd-modal__searchForm{
		padding: var(--HD_MODEL_PADDING) var(--HD_MODEL_PADDING) 0 var(--HD_MODEL_PADDING);
	}
	.hd-modal__searchForm dt{
		margin-bottom: 5px;
	}
	.hd-modal__searchForm dd{
		margin-bottom: 20px;
	}
	.hd-modal__searchForm button[type="submit"]{
		margin-top: 20px;
	}
}
/* hd-modal__product */
.hd-modal__product{
	display: grid;
}
.hd-modal__product__heading{
	font-weight: var(--FF_W_M);
	margin-bottom: 5px;
}
.hd-modal__product__link{
	text-align: right;
	margin-top: 10px;
}
.hd-modal__product__link a{
	padding-right: 13px;
	position: relative;
	font-weight: var(--FF_W_M);
	font-size: 11px;
}
.hd-modal__product__link a::after{
	content: ">";
	position: absolute;
	right: 0;
	top: -2px;
}
.hd-modal__product__newItem .fs-c-productListItem__viewMoreImageButton,
.hd-modal__product__newItem .fs-c-productListItem__control,
.hd-modal__product__newItem .fs-c-productPrice__main__label,
.hd-modal__product__newItem .product-review-link-get{
	display: none;
}
.hd-modal__product__newItem .productdetailcontents{
	margin-top: 5px;
}
.hd-modal__product__newItem .fs-c-productName__name{
	font-size: var(--FZ_12_CONST);
	white-space: break-spaces;
}
.hd-modal__product__newItem .fs-c-productMarks{
	display: none;
}
.hd-modal__product__newItem h2.fs-c-productListItem__productName{
	padding: 0;
}
.hd-modal__product__newItem .fs-c-productMark li,
.hd-modal__product__newItem .fs-c-productMark span,
.hd-modal__product__newItem .fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
	background-color: var(--WHITE);
	font-size: 8px;
	padding: 2px;
}
.fs-c-productPrice{
	display: flex;
	align-items: baseline;
	margin-top: 8px;
	gap: 2px;
}
.fs-c-productPrice__main{
	line-height: 1;
}
.fs-c-price__currencyMark{
	display: none;
}
.fs-c-price__value{
	font-size: var(--FZ_18);
	font-family: var(--FF_NUM);
}
.fs-c-productPrice--listed .fs-c-price__value{
	font-size: var(--FZ_15);
}
.fs-c-price__value::after{
	content: "円";
	font-size: var(--FZ_11_CONST);
}
.fs-c-productPrice__addon{
	font-size: var(--FZ_11_CONST);
}
.fs-c-productPrice__addon__label::before{
	content: "(";
}
.fs-c-productPrice__addon__label::after{
	content: ")";
}
.flywheel-recommend__frame[data-frame-id="history"] .fr3-productListStatic{
	display: block;
}
.flywheel-recommend__frame[data-frame-id="history_header"] .fr3-item__productName,
.flywheel-recommend__frame[data-frame-id="history_header"] .fr3-item__productPrice{
	display: none;
}
@media screen and (min-width: 1101px){
	.flywheel-recommend__frame[data-frame-id="history_header"] .fr3-productListStatic{
		grid-template-columns: repeat(6,1fr);
	}
	.flywheel-recommend__frame[data-frame-id="history_header"] .fr3-productListStatic .fr3-item:nth-of-type(n+7){
		display: none;
	}
}
@media screen and (min-width: 951px) and (max-width: 1100px){
	.flywheel-recommend__frame[data-frame-id="history_header"] .fr3-productListStatic{
		grid-template-columns: repeat(5,1fr);
	}
	.flywheel-recommend__frame[data-frame-id="history_header"] .fr3-productListStatic .fr3-item:nth-of-type(n+6){
		display: none;
	}
}
@media screen and (min-width: 951px){
	.hd-modal__product__newItem{
		grid-template-columns: repeat(5,1fr);
	}
}
@media screen and (min-width: 768px) and (max-width: 950px){
	.flywheel-recommend__frame[data-frame-id="history_header"] .fr3-productListStatic{
		grid-template-columns: repeat(4,1fr);
	}
	.flywheel-recommend__frame[data-frame-id="history_header"] .fr3-productListStatic .fr3-item:nth-of-type(n+5){
		display: none;
	}
	.hd-modal__product__newItem{
		grid-template-columns: repeat(4,1fr);
	}
	.hd-modal__product__newItem article:nth-of-type(n+5){
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 1250px){
	.flywheel-recommend__frame[data-frame-id="history"]{
		--SLICK_ARROW_TO_BODY: -20px;
	}
}
@media screen and (min-width: 768px){
	.hd-modal__product{
		gap: var(--GAP_40);
		font-size: var(--FZ_15_CONST);
		margin-bottom: 5px;
	}
	.hd-modal__product__newItem{
		display: grid;
		gap: 10px;
	}
	.flywheel-recommend__frame[data-frame-id="history_header"] .fr3-productListStatic{
		gap: 10px;
	}
}
@media screen and (max-width: 767px){
	.hd-modal__product{
		padding-bottom: 100px;
	}
	.hd-modal__product__heading{
		margin: 30px var(--HD_MODEL_PADDING) 0;
		border-top: 1px solid var(--BDCOLOR_GRAY_1);
		padding-top: 25px;
		margin-bottom: 15px;
	}
	.hd-modal__product__link{
		margin-right: var(--HD_MODEL_PADDING);
	}
	.flywheel-recommend__frame[data-frame-id="history_header"] .fr3-productListStatic,
	.hd-modal__product__newItem{
		display: flex;
		padding-left: var(--HD_MODEL_PADDING) !important;
		overflow-x: scroll;
		overflow-y: auto;
		white-space: nowrap;
		-ms-overflow-style: none;/* IE, Edge 対応 */
		scrollbar-width: none;/* Firefox 対応 */
		gap: 14px;
	}
	.flywheel-recommend__frame[data-frame-id="history_header"] .fr3-productListStatic::-webkit-scrollbar,
	.hd-modal__product__newItem::-webkit-scrollbar{
		display: none;
	}
	.flywheel-recommend__frame[data-frame-id="history_header"] .fr3-item,
	.hd-modal__product__newItem .fs-c-productList__list__item{
		min-width: 110px;
		max-width: 110px;
	}
}
/* hd-modal--spMenu */
@media screen and (max-width: 767px){
	.hd-modal__mypageBtnContainer{
		padding: 12px var(--HD_MODEL_PADDING);
	}
	.hd-modal__mypageBtn a{
		display: block;
		background-color: var(--BLACK);
		color: var(--WHITE);
		text-align: center;
		font-weight: var(--FF_W_M);
		padding: 15px 0;
	}
	.hd-modal__mypageBtn a:visited{
		color: var(--WHITE);
	}
	.hd-modal__linkContainer{
		background-color: var(--BGCOLOR_GRAY_1);
		padding-bottom: 100px;
	}
	.hd-modal__link > li{
		border-bottom: 1px solid var(--BDCOLOR_GRAY_1);
	}
	.hd-modal__link__item{
		display: block;
		padding: 11px var(--HD_MODEL_PADDING);
		font-weight: var(--FF_W_M);
		font-size: 15px;
	}
	.hd-modal__link__item--hasChild{
		position: relative;
	}
	.hd-modal__link__item--hasChild::after{
		font-family: 'Font Awesome 5 Pro';
		font-weight: var(--FF_W_M);
		content: '\f078';
		font-size: 12px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		transition: .3s;
		right: 20px;
	}
	.hd-modal__link__item--hasChild.is-active::after{
		transform: translateY(-50%) rotate(180deg);
	}
	.hd-modal__link__child{
		display: none;
		padding: 0 var(--HD_MODEL_PADDING);
		padding-bottom: 5px;
	}
	.hd-modal__link__child li a{
		display: block;
		padding: 5px 0;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
/* ft-mailmaga */
.ft-mailmaga{
	border-top: 1px solid var(--BDCOLOR_GRAY_1);
	margin-top: var(--GENERALSEC);
}
.ft-mailmaga__heading,
.ft-mailmaga__lead{
	text-align: center;
}
.ft-mailmag__from{
	display: grid;
	align-items: stretch;
}
.ft-mailmag__from.formReset input[type="text"]{
	background-color: var(--BGCOLOR_GRAY_1);
}
.ft-mailmag__from.formReset input[type="text"]::placeholder{
	color: var(--GRAY03);
}
.ft-mailmag__from.formReset input[type="submit"]{
	background-color: var(--BLACK);
	color: var(--WHITE);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
@media screen and (min-width: 768px){
	.ft-mailmaga__heading{
		font-size: 36px;
	}
	.ft-mailmaga__lead{
		font-size: 16px;
		margin-bottom: 30px;
	}
	.ft-mailmag__from{
		width: 600px;
		margin: 0 auto;
		grid-template-columns: 1fr 100px;
		gap: 20px;
	}
	.ft-mailmag__from.formReset input[type="text"]{
		padding: 13px 20px;
	}
}
@media screen and (max-width: 767px){
	.ft-mailmaga{
		padding: calc(var(--GENERALSEC) * 1.5) 0;
	}
	.ft-mailmaga__heading{
		font-size: 24px;
	}
	.ft-mailmaga__lead{
		margin-bottom: 20px;
	}
	.ft-mailmag__from{
		grid-template-columns: 1fr 80px;
		gap: 5px;
		margin: 10px 0;
	}
	.ft-mailmag__from.formReset input[type="text"]{
		padding: 10px 16px;
	}
	.ft-mailmag__from.formReset input[type="text"]::placeholder{
		letter-spacing: 1px;
		font-size: 13px;
	}
}
/* footerarea */
#footerarea{
	background-color: var(--BGCOLOR_GOLD_1);
	padding-top: var(--GENERALSEC);
}
.ft-sns{
	margin: var(--GENERALSEC) auto;
}
.g-sns{
	display: flex;
	justify-content: center;
	gap: 20px;
}
.g-sns li{
	width: 25px;
}
.g-sns li a{
	display: block;
	aspect-ratio: 1/1;
	background: no-repeat center center / 100%;
}
.ft-link{
	display: grid;
}
.ft-link__ttl{
	font-weight: var(--FF_W_M);
	border-bottom: 1px solid var(--DARK02_OP30);
}
.ft-termsLink{
	display: flex;
}
.ft-termsLink li{
	position: relative;
}
.ft-termsLink li:not(:last-child)::after{
	content: "";
	display: inline-block;
	background: var(--TXT_COLOR_BASE);
	width: 1px;
	height: 10px;
	position: absolute;
	top: 55%;
	transform: translateY(-50%);
	right: 0;
}
.ft-termsLink li a{
	font-size: 11px;
}
.ft-copy{
	font-size: 11px;
}
@media screen and (min-width: 1001px){
	.ft-link{
		grid-template-columns: repeat(5,1fr);
		gap: var(--GAP_40);
	}
	.ft-link > li:first-child{
		grid-column: span 2;
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px){
	.ft-link{
		grid-template-columns: repeat(3,1fr);
		gap: var(--GAP_40);
	}
	.ft-link > li:first-child{
		grid-column: span 3;
	}
	.ft-link > li:first-child .ft-link__ttl{
		text-align: center;
	}
}
@media screen and (min-width: 826px){
	.ft-btm{
		justify-content: space-between;
	}
}
@media screen and (min-width: 768px) and (max-width: 825px){
	.ft-btm{
		justify-content: center;
		gap: 20px;
	}
}
@media screen and (min-width: 768px){
	.ft-logo{
		width: 326px;
		margin: 0 auto;
	}
	.ft-link{
		margin-bottom: 130px;
	}
	.ft-link__ttl{
		font-size: var(--FZ_18);
		padding-bottom: 7px;
		margin-bottom: 10px;
	}
	.ft-link__list--col2{
		display: grid;
		grid-template-columns: repeat(2,1fr);
	}
	.ft-link__list,
	.ft-link__list__child{
		display: grid;
		row-gap: 5px;
	}
	.ft-link__list li a,
	.ft-link__list > li > p{
		font-size: var(--FZ_16);
	}
	.ft-link__list__child{
		margin: 5px 0 0 15px;
	}
	.ft-btm{
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		padding-bottom: 25px;
	}
	.ft-btm > *{
		width: fit-content;
	}
	.ft-termsLink li:not(:last-child){
		padding-right: 15px;
		margin-right: 15px;
	}
}
@media screen and (max-width: 767px){
	.ft-logo{
		width: 226px;
		margin: 0 auto;
	}
	.ft-link{
		gap: 20px;
		margin-bottom: var(--GENERALSEC);
	}
	.ft-link__ttl{
		font-size: 14px;
		padding-bottom: 5px;
		margin-bottom: 5px;
	}
	.ft-link__list,
	.ft-link__list__child{
		display: grid;
		row-gap: 2px;
	}
	.ft-link__list li a,
	.ft-link__list > li > p{
		font-size: 11px;
		display: block;
	}
	.ft-link__list > li > a{
		border-bottom: 1px solid var(--GRAY01);
		padding: 8px 0 10px;
	}
	.ft-link__list__child{
		margin-top: 2px;
		padding: 5px 0 8px 10px;
		border-bottom: 1px solid var(--GRAY01);
	}
	.ft-termsLink{
		justify-content: center;
	}
	.ft-termsLink li:not(:last-child){
		padding-right: 12px;
		margin-right: 12px;
	}
	.ft-copy{
		letter-spacing: 0;
		text-align: center;
		padding: 10px 0 25px;
	}
	.ft-link > li:last-child .ft-link__list li a{
		letter-spacing: 0px;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■side■■■■■■■■■■■■■■■■■■■■■■ */


/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -----------------dummyImg----------------- */
.dummyImg{
	position: relative;
}
.dummyImg::before{
	content: "ダミー画像";
	display: inline-block;
	background: rgba(33, 33, 33, 0.5);
	color: #e81010;
	text-shadow: 0 0 5px #fff;
	font-weight: bold;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
/* -----------------タブ切り替え共通css----------------- */
.tab-nav{
	display: flex;
}
.tab-btn{
	flex: 1;
}
.tab-contents {
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-contents.show {
	cursor: auto;
  height: auto;
  overflow: unset;
  opacity: 1;
  transition: .5s opacity;
}
@media screen and (min-width: 768px){
	.tab-btn:hover{
		cursor: pointer;
	}
	.tab-btn.show{
		cursor: auto;
	}
}
/* -----------------ポップアップ共通css----------------- */
body.fixed {
	position: fixed;
	width: 100%;
	overflow: hidden;
}
.popup-overlay {
  display: none; 
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.popup-overlay.fixed{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--WHITE);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.popup-overlay .popup-box{
	overflow-y: scroll;
}
.popup-overlay button.closePopup{
	position: absolute;
	aspect-ratio: 1/1;
  background: url(../images/top/youtube-close.svg);
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
}
@media screen and (min-width: 768px){
	.popup-overlay .popup-content{
		width: 95%;
		max-width: 900px;
	}
	.popup-overlay .popup-box{
		padding: 50px 30px;
		max-height: 90vh;
	}
	.popup-overlay button.closePopup{
    width: 50px;
		transform: translateY(-120%);
	}
	.popup-overlay button.closePopup::before{
		font-size: 23px;
	}
}
@media (hover: hover){
	.popup-overlay button.closePopup:hover{
		cursor: pointer;
	}
}
@media screen and (max-width: 767px){
	.popup-overlay .popup-content{
		width: 90%;
	}
	.popup-overlay .popup-box{
		padding: 30px 15px;
		max-height: 80vh;
	}
	.popup-overlay button.closePopup::before{
		font-size: 23px;
	}
	.popup-overlay button.closePopup{
    width: 40px;
		transform: translateY(-120%);
	}
	.popup-overlay button.closePopup::before{
		font-size: 18px;
	}
}
/* -----------------フューチャー調整CSS----------------- */
/* 内部の色設定 */
:root{
	--WISH_COLOR: #d42929;
	--FS_BTN_COLOR_1: var(--BLACK);
	--FS_BTN_COLOR_2: #908873;
	--REVIEW_COLOR: #edc622;
}
/* 内部幅設定 */
#wrapper{
	margin-left: auto;
	margin-right: auto;
	width: var(--INNER_WIDTH);
	max-width: var(--PC_MAX_WIDTH);
	margin-bottom: var(--GENERALSEC);
}
#mainarea{
	flex: 1;
}
#sidearea{
	background-color: #f2f2f2;
}
@media screen and (min-width: 1100px){
  #sidearea{
    width: 240px;
    margin-right: 50px;
  }
}
@media screen and (min-width: 951px) and (max-width: 1100px){
  #sidearea{
    width: 200px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 950px){
  #sidearea{
    display: none;
  }
}
@media screen and (min-width: 768px){
	#wrapper > .flex{
		align-items: flex-start;
	}
}
/* カートカウント */
.fs-client-cart-count{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	aspect-ratio: 1/1;
	width: 20px;
	font-size: 11px;
	background-color: #000;
	color: var(--WHITE);
	border-radius: 50%;
	position: absolute;
}
/* 商品マークリセット */
.fs-c-productMarks{
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	--BDRS: 2px;
}
.fs-c-productMark{
	gap: 5px;
}
.fs-c-productMark__mark{
	width: fit-content;
}
.fs-c-productMark li,
.fs-c-productMark span,
.fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
	margin: 0;
	font-size: 12px;
  background-color: var(--GOLD01);
  border-radius: var(--BDRS);
}
.fs-c-productMark__mark,
.fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
	display: inline-block;
	padding: 6px 10px 7px;
	line-height: 1;
}
.fs-c-productMark img{
	width: auto;
	height: 20px;
}
.fs-c-productMarks > .fs-c-mark{
	line-height: 1;
}
/* 1回のみ・定期 */
.fs-c-mark--normalAndSubscription .fs-c-mark__label{
	background-color: var(--BROWN02);
	color: var(--WHITE);
	border-radius: var(--BDRS);
}
/* 定期販売 */
.fs-c-mark--subscription .fs-c-mark__label{
	background-color: #D21341;
	color: var(--WHITE);
	border-radius: var(--BDRS);
}
/* 初回特別価格あり */
.fs-c-mark--firstTimeSpecialPrice .fs-c-mark__label{
	background-color: #FF506F;
	color: var(--WHITE);
	border-radius: var(--BDRS);
}
/* パンくずリセット  */
.fs-c-breadcrumb__list{
  padding: 0;
	width: var(--INNER_WIDTH);
	max-width: var(--PC_MAX_WIDTH);
	margin-left: auto;
	margin-right: auto;
}
#wrapper .fs-c-breadcrumb__list{
	width: unset;
}
.fs-c-breadcrumb__list > li {
  box-sizing: border-box;
}
.fs-c-breadcrumb__listItem {
  display: inline-block;
  word-break: break-all;
}
.fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem::before {
  content: " > ";
}
.fs-c-breadcrumb li,
.fs-c-breadcrumb li a {
	color: var(--TXT_COLOR_BASE);
}
.fs-c-breadcrumb li a{
	text-decoration: underline;
}
@media screen and (min-width: 768px) {
	.fs-c-breadcrumb {
		margin: 0 auto;
		padding: 10px 0;
		font-size: 14px;
    margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px) {
	.fs-c-breadcrumb {
		padding: 8px 0;
		font-size: 11px;
		overflow: hidden;
		position: relative;
	}
	.fs-c-breadcrumb::after{
		content: "";
    right: 0;
    width: 6.25rem;
    height: 100%;
    position: absolute;
    background: linear-gradient(270deg,#fff 21.11%,hsla(0,0%,100%,0) 107.22%);
    z-index: 10;
		top: 0;
	}
	.fs-c-breadcrumb__list{
		white-space: nowrap;
    overflow: scroll;
		padding-right: 40px;
	}
}
/* レビュー */
.fs-c-rating__value{
	color: var(--REVIEW_COLOR);
}
.fs-c-reviewStars::before{
	color: var(--REVIEW_COLOR);
}
/* ページャー */
.fs-c-listControl {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 2;
	padding: 6px 15px 4px;
	margin: 10px 0 40px;
}
.wp-pagenavi{
	display: flex;
	justify-content: center;
	align-items: center;
}
#next > span.pages{
	display: block;
	text-align: center;
	margin-top: 10px;
	display: none;
}
.found-postContainer,
.fs-c-listControl__status,
#next .post_range{
	font-size: 13px;
	text-align: center;
	margin-bottom: 16px;
	color: var(--TXT_COLOR);
}
.fs-c-pagination > *,
.wp-pagenavi > *{
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: normal;
	border-radius: 50%;
}
.fs-c-pagination__item{
	padding: 0;
}
.fs-c-pagination__item.is-active,
.wp-pagenavi .current{
	background-color:var(--FS_BTN_COLOR_1);
	color: var(--WHITE);
}
.fs-c-pagination > *,
.wp-pagenavi > *{
	font-weight: var(--FF_W_M);
}
.fs-c-pagination{
	font-weight: bold;
	align-items: center;
}
a.fs-c-pagination__item.fs-c-pagination__item--prev,
a.fs-c-pagination__item.fs-c-pagination__item--next,
#next a.previouspostslink,
#next a.nextpostslink{
	background-color: var(--GRAY02);
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	padding: 0;
	position: relative;
	font-weight: 400;
	width: 30px;
	height: 30px;
}
#next a.previouspostslink .navi-prev,
#next a.nextpostslink .navi-next{
	position: absolute;
	top: 50%;
	left: 52%;
	transform: translate(-50%, -50%);
}
.fs-c-pagination__item--prev::before,
.fs-c-pagination__item--next::before,
#next a.previouspostslink .navi-prev::before,
#next a.nextpostslink .navi-next::before{
	font-family: "Font Awesome 5 Pro" !important;
	font-weight: 400;
	display: inline-block;	color: var(--WHITE);
  vertical-align: text-bottom;
	position: absolute;
	top: 54%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.fs-c-pagination__item--prev::before,
#next a.previouspostslink .navi-prev::before{
	content: "\f104";
}
.fs-c-pagination__item--next::before,
#next a.nextpostslink .navi-next::before{
	content: "\f105";
}
@media screen and (min-width: 768px){
	.fs-c-pagination,
	.wp-pagenavi{
		font-size: 18px;
		gap: 15px;
	}
	#next {
		margin: var(--MG_50) auto 0;
	}
	.fs-c-pagination > *,
	.wp-pagenavi > *{
		width: 45px;
	}
	.fs-c-pagination__item--next:hover{
		color: var(--WHITE);
	}
	a.fs-c-pagination__item.fs-c-pagination__item--prev,
	a.fs-c-pagination__item.fs-c-pagination__item--next,
	#next a.previouspostslink,
	#next a.nextpostslink{
		font-size: 13px;
		width: 30px;
		height: 30px;
	}
}
@media screen and (max-width: 767px){
	.fs-c-pagination,
	.wp-pagenavi{
		font-size: 12px;
		gap: 3px;
	}
	#next {
		margin: var(--MG_30) auto 0;
	}
	.fs-c-pagination > *,
	.wp-pagenavi > *{
		width: 30px;
	}
	a.fs-c-pagination__item.fs-c-pagination__item--prev,
	a.fs-c-pagination__item.fs-c-pagination__item--next,
	#next a.previouspostslink,
	#next a.nextpostslink{
		font-size: 10px;
		width: 25px;
		height: 25px;
	}
}
/* aiレコメンドリセット */
.fs-p-heading--lv2,
.fr3-item__rankContainer{
	display: none;
}
.fr3-productListStatic{
	padding: 0 !important;
}
.fr3-item__productName{
	font-size: var(--FZ_13_CONST);
	line-height: 1.4;
}
.fr3-item__productPrice{
	display: flex;
	align-items: flex-end;
}
.fr3-item__productPrice__currencyMark{
	display: none;
}
.fr3-item__productPrice__price{
	font-family: var(--FF_NUM);
	font-size: var(--FZ_20_CONST) !important;
	line-height: 1;
	display: flex;
	align-items: flex-end;
	margin-top: 7px;
}
.fr3-item__productPrice__price::after{
	content: "円";
	display: inline-block;
	font-size: var(--FZ_12_CONST);
}
.fr3-item__productPrice__addon{
	line-height: 1;
	font-size: var(--FZ_12_CONST);
}
.g-historySection{
	overflow-x: clip;
}
@media (hover: hover){
	.fr3-item a:hover{
		color: var(--TXT_COLOR_BASE);
		opacity: 1;
	}
	.fr3-item a:hover img{
		opacity: 1!important;
	}
	.fr3-item__imageContainer{
		overflow: hidden;
	}
	.fr3-item__imageContainer img{
		transform: scale(1);
		transition: var(--ANIME_TRANSITION);
	}
	.fr3-item a:hover .fr3-item__imageContainer img{
		transform: scale(1.1);
	}
}
@media screen and (min-width: 768px){
	.fr3-item__link{
		gap: 15px;
	}
	.g-inner--pcHasSlickGap:has(.fr3-productListStatic.slick-slider),
	.g-inner--hasSlickGap:has(.fr3-productListStatic.slick-slider){
		--SLICK_GAP: 6px;
	}
	.g-inner--pcHasSlickGap:has(.fr3-productListStatic.slick-slider) [class*="g-slickArrow--"],
	.g-inner--hasSlickGap:has(.fr3-productListStatic.slick-slider) [class*="g-slickArrow--"]{
		top: 40%;
	}
	.fr3-productListStatic.slick-slider .slick-slide{
		margin: 0 var(--SLICK_GAP);
	}
	.fr3-productListStatic{
		grid-template-columns: repeat(3,1fr);
		gap: 37px 12px;
	}
	.g-product--col5 .fr3-productListStatic{
		grid-template-columns: repeat(5,1fr);
		gap: 37px 12px;
	}
	.g-product--col5 .fr3-productListStatic article:nth-of-type(n+6){
		display: none;
	}
}
@media screen and (max-width: 767px){
	.fr3-item__link{
		gap: 8px;
	}
	.g-inner--hasSlickGap:has(.fr3-productListStatic.slick-slider){
		width: 100%;
		--SLICK_GAP: 5px;
	}
	.g-inner--hasSlickGap:has(.fr3-productListStatic.slick-slider) [class*="g-slickArrow--"]{
		top: 30%;
		--SLICK_ARROW_TO_BODY: -17px;
	}
	.g-inner--hasSlickGap .fr3-productListStatic{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.g-inner--hasSlickGap .fr3-productListStatic .slick-list{
		overflow: visible;
	}
	.fr3-productListStatic.slick-slider .slick-slide{
		margin: 0 var(--SLICK_GAP);
	}
	.fr3-productListStatic{
		gap: 20px;
	}
}
/* -------------------g-heading-------------------- */
.g-heading > span{
	display: block;
}
.g-heading--center > span{
	text-align: center;
}
.g-heading__en{
	font-family: var(--FF_EN);
	font-weight: 400;
	line-height: 1;
}
@media screen and (min-width: 768px){
  .g-headingContainer{
		margin-bottom: var(--MG_30);
	}
	.g-heading__en{
		font-size: var(--FZ_32);
		margin-bottom: 10px;
	}
	.g-heading__ja{
		font-size: var(--FZ_13_CONST);
	}
}
@media screen and (max-width: 767px){
	.g-headingContainer,
	.g-headingContainerSp{
		margin-bottom: var(--GAP_50);
	}
	.g-heading--centerSp > span{
		text-align: center;
	}
	.g-heading__en{
		font-size: var(--FZ_22_CONST);
		margin-bottom: 5px;
	}
	.g-heading__ja{
		font-size: var(--FZ_12_CONST);
	}

}
/* -------------------g-btn-------------------- */
.g-btnContainer{
	display: grid;
}
.g-btnContainer--horizontal{
	display: flex;
	justify-content: center;
}
.g-btn,
.fs-c-continueShopping{
	width: 100%;
	max-width: 200px;
}
.g-btn--long{
	width: var(--INNER_WIDTH);
	max-width: 240px;
}
.g-btn a,
.fs-c-continueShopping a.fs-c-button--standard{
	display: block;
	text-align: center;
	letter-spacing: 0.05em;
	position: relative;
}
.g-btn--white a,
.fs-c-continueShopping a.fs-c-button--standard{
	background-color: var(--WHITE);
	border: 1px solid var(--BDCOLOR_GRAY_1);
}
.g-btn--black a{
	background-color: var(--BLACK);
	color: var(--WHITE);
}
.g-btn--black a:visited{
	color: var(--WHITE);
}
.g-btn--center,
.fs-c-continueShopping{
	margin-left: auto;
	margin-right: auto;
}
.g-btn--arrow a{
	position: relative;
}
.fs-c-continueShopping a.fs-c-button--standard{
	letter-spacing: 0.1em;
}
.g-btn--arrow a::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 100;
	content: '\f054';
	color: var(--BLACK);
	position: absolute;
}
.g-btn--black a::after{
	color: var(--WHITE);
}
.g-btn--anchor a::after{
	transform: rotate(90deg);
}
.g-btn--return a::after,
.fs-c-continueShopping a.fs-c-button--standard::after{
	transform: rotate(180deg) translateX(5px);
}
@media (hover: hover){
	.g-btn a:hover,
	.fs-c-continueShopping a.fs-c-button--standard:hover{
		opacity: 1;
	}
	.g-btn--white a:hover,
	.fs-c-continueShopping a.fs-c-button--standard:hover{
		opacity: 1;
		background-color: var(--GRAY01);
	}
	.g-btn--black a:hover{
		opacity: 1;
	}
	.g-btn a::before,
	.g-btn a::after{
		content: "";
		display: inline-block;
		width: 0%;
		height: 50%;
		position: absolute;
		transition: .4s ease-out;
		z-index: 1;
	}
	.g-btn a::before{
		top: 0;
		left: 0;
	}
	.g-btn a::after{
		bottom: 0;
		right: 0;
	}
	.g-btn a:hover::before,
	.g-btn a:hover::after{
		width: 100%;
	}
	.g-btn--black a::before,
	.g-btn--black a::after{
		background-color: var(--GOLD02);
	}
	.g-btn a span{
		position: relative;
		z-index: 3;
	}
}
@media screen and (min-width: 768px){
	.g-btnContainer{
		margin-top: var(--MG_30);
	}
	.g-btnContainer--horizontal{
		gap: var(--GAP_30);
	}
	.g-btnContainer--horizontalPc{
		display: flex;
		justify-content: center;
		gap: var(--GAP_30);
	}
	.g-btnContainer--vertical{
		gap: var(--GAP_20);
	}
	.g-btn--longPc{
		width: var(--INNER_WIDTH);
		max-width: 388px;
	}
	.g-btn a{
		font-size: var(--FZ_13_CONST);
		padding: 14px 0;
	}
	.g-btn--small{
		max-width: 120px;
	}
	.fs-c-continueShopping a.fs-c-button--standard{
		font-size: var(--FZ_13_CONST);
		padding: 15px 0;
	}
	.g-btn--arrow a::after,
	.fs-c-continueShopping a.fs-c-button--standard::after{
		font-size: 12px;
		top: 28%;
		right: 5px;
	}
	.fs-c-continueShopping a.fs-c-button--standard::after{
		top: 36%;
	}
	.g-btn--anchor a::after{
		font-size: 10px;
		top: 35%;
		right: 10px;
	}
	.fs-c-continueShopping a.fs-c-button--standard{
		margin: 40px 0 var(--GENERALSEC);
	}
	.g-btnContainer--hnPc{
		display: flex;
		gap: var(--GAP_30);
		justify-content: center;
	}
}
@media screen and (max-width: 767px){
	.g-btnContainer{
		margin-top: var(--MG_30);
	}
	.g-btnContainer--horizontal{
		gap: var(--GAP_20);
	}
	.g-btnContainer--vertical,
	.g-btnContainer--horizontalPc{
		gap: var(--GAP_20);
	}
	.g-btnContainer--vertical .g-btn,
	.g-btnContainer--horizontalPc .g-btn{
		margin-left: auto;
		margin-right: auto;
	}
	.g-btn,
	.fs-c-continueShopping{
		max-width: 240px;
	}
	.g-btn a,
	.fs-c-continueShopping a.fs-c-button--standard{
		font-size: var(--FZ_14_CONST);
		padding: 14px 0;
	}
	.fs-c-continueShopping a.fs-c-button--standard{
		font-size: var(--FZ_14_CONST);
		padding: 15px 0;
	}
	.g-btn--arrow a::after,
	.fs-c-continueShopping a.fs-c-button--standard::after{
		font-size: 12px;
		top: 28%;
		right: 5px;
	}
	.fs-c-continueShopping a.fs-c-button--standard::after{
		top: 36%;
	}
	.g-btn--anchor a::after{
		font-size: 8px;
		top: 37%;
		right: 10px;
	}
	.fs-c-continueShopping a.fs-c-button--standard{
		margin: 20px 0 var(--GENERALSEC);
	}
	.g-btnContainer--hnPc{
		display: grid;
		gap: var(--GAP_20);
	}
	.g-btnContainer--hnPc .g-btn{
		margin: 0 auto;
	}
}
/* ------------------g-txt------------------ */
.g-txt{
	display: grid;
}
.g-txt mark{
	background: linear-gradient(transparent 70%, #fff799 30%);
}
.g-txt__list > li{
	position: relative;
}
.g-txt__list > li::before{
	content: '';
	display: inline-block;
	background: var(--GOLD01);
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.g-txt__note li{
	position: relative;
	color: var(--GOLD02);
}
.g-txt__note li::before{
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}
.g-txt__order{
	counter-reset: original-counter;
}
.g-txt__order > li::before{
	content: counter(original-counter)'.';
	counter-increment: original-counter;
}
@media screen and (min-width: 768px){
	.g-txt *{
		font-size: var(--FZ_14_CONST);
	}
	.g-txt p:has(mark){
		line-height: 2.5;
	}
	.g-txt > p:not(:first-child){
		margin-top: var(--GAP_20);
	}
	.g-txt > *+.g-txt__list{
		margin-top: var(--GAP_20);
	}
	.g-txt mark{
		padding: 2px 5px 3px;
	}
	.g-txt__list > li{
		padding-left: 14px;
		margin-left: 10px;
	}
	.g-txt__list > li::before{
		width: 10px;
		top: 13px;
	}
	.g-txt__note li{
		font-size: var(--FZ_12);
		padding-left: 15px;
	}
}
@media screen and (max-width: 767px){
	.g-txt *{
		font-size: var(--FZ_14_CONST);
	}
	.g-txt p:has(mark){
		line-height: 2.5;
	}
	.g-txt > p:not(:first-child){
		margin-top: var(--GAP_20);
	}
	.g-txt > *+.g-txt__list{
		margin-top: var(--GAP_20);
	}
	.g-txt mark{
		padding: 2px 5px 3px;
	}
	.g-txt__list > li{
		padding-left: 16px;
	}
	.g-txt__list > li::before{
		width: 10px;
		top: 13px;
	}
	.g-txt__note li{
		font-size: var(--FZ_12_CONST);
		padding-left: 15px;
	}
	.timeImage-yamato{
		width: 100%;
	}
}
/* ------------------g-descWithImg------------------ */
.g-descWithImg{
	display: grid;
	gap: var(--GENERALSEC);
}
.g-descWithImg__desc{
	display: grid;
}
@media screen and (min-width: 768px){
	.g-descWithImg li{
		display: flex;
		gap: var(--GAP_40);
		align-items: flex-start;
	}
	.g-descWithImg--crossList li:nth-child(even){
		flex-direction: row-reverse;
	}
	.g-descWithImg li > *{
		flex: 1;
	}
	.g-descWithImg__desc{
		gap: var(--GAP_30);
	}
}
@media screen and (max-width: 767px){
	.g-descWithImg li{
		display: grid;
		gap: var(--GAP_20_CONST);
	}
	.g-descWithImg__desc{
		gap: var(--GAP_30);
	}
}
/* -------------------g-slickArrow---------------------- */
[class*="g-slickArrow--"]{
	width: var(--SLICK_ARROW_SIZE);
	background: url(../images/common/slider-part.svg) no-repeat center center / 100%;
	aspect-ratio: 1/1;
	position: absolute;
	z-index: 2;
}
.g-slickArrow--prev{
	left: var(--SLICK_ARROW_TO_BODY);
}
.g-slickArrow--next{
	right: var(--SLICK_ARROW_TO_BODY);
	transform: rotate(180deg);
}
@media (hover: hover){
	[class*="g-slickArrow--"]:hover{
		cursor: pointer;
	}
}
@media screen and (min-width: 768px){
	.g-hasSlickArrow{
		--SLICK_ARROW_SIZE: clamp( 20px, 2.2vw, 25px);
		--SLICK_ARROW_TO_BODY: calc(0px - var(--SLICK_ARROW_SIZE) + var(--SLICK_GAP) - 15px);
	}
}
@media screen and (max-width: 767px){
	.g-hasSlickArrow{
		--SLICK_ARROW_SIZE: 25px;
		--SLICK_ARROW_TO_BODY: 5px;
		overflow-x: clip;
	}
}
/* -------------------g-slickDots-------------------- */
.slick:has(.g-slickDots){
	line-height: 1;
	margin-bottom: 0;
}
.g-slickDots{
	display: flex;
	justify-content: center;
}
.g-slickDots button{
	font-size: 0;
	width: 20px;
	height: 20px;
	position: relative;
}
.g-slickDots button::before{
	content: "";
	display: inline-block;
	border: 1px solid var(--GOLD01);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.g-slickDots .slick-active button::before{
	background: var(--GOLD01);
}
@media screen and (min-width: 768px){
	.g-slickDots{
		gap: 5px;
		margin-top: 10px;
	}
	.g-slickDots button::before{
		width: 6px;
		height: 6px;
	}
}
@media screen and (max-width: 767px){
	.g-slickDots{
		gap: 2px;
	}
	.g-slickDots button::before{
		width: 5px;
		height: 5px;
	}
}
/* -------------------bgcolor-------------------- */
.bgcolor--gray{
	background-color: var(--BGCOLOR_GRAY_1);
}
/* --------------------お知らせ一覧------------------- */
.wp-news li{
	display: grid;
	align-items: center;
}
.wp-news li:not(:last-child){
	border-bottom: 1px solid var(--BDCOLOR_GRAY_2);
}
.wp-news__ttl:has(span){
	display: grid;
	align-items: center;
}
.wp-news__ttl span{
	background-color: var(--GRAY03);
	color: var(--WHITE);
	text-align: center;
	letter-spacing: 1px;
}
.wp-news__ttl a{
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	font-size: var(--FZ_13_CONST);
}
@media screen and (min-width: 768px){
	.wp-news li{
		grid-template-columns: 106px 1fr;
		padding: 11px 0;
	}
	.wp-news__time{
		padding-left: 10px;
		font-size: var(--FZ_13_CONST);
	}
	.wp-news__ttl:has(span){
		grid-template-columns: 105px auto;
		gap: 10px;
	}
	.wp-news__ttl span{
		font-size: var(--FZ_10_CONST);
		padding: 2px 0 3px;
	}
	.wp-news__ttl a{
		font-size: var(--FZ_13_CONST);
	}
}
@media screen and (max-width: 767px){
	.wp-news li{
		grid-template-columns: auto 1fr;
		padding: 8px 0;
	}
	.wp-news__time{
		padding-right: 10px;
		font-size: var(--FZ_11_CONST);
	}
	.wp-news__ttl:has(span){
		grid-template-columns: 82px auto;
		gap: 10px;
	}
	.wp-news__ttl span{
		font-size: 8px;
		padding: 2px 0 3px;
	}
	.wp-news__ttl a{
		font-size: var(--FZ_11_CONST);
	}
}
/* -------------------g-scroll-------------------- */
@media screen and (min-width: 768px){
	.g-scroll{
		display: inline-block;
		--SCORLL_LINE: 100px;
		height: var(--SCORLL_LINE);
		z-index: 99;
	}
	.g-scroll--down{
    position: absolute;
    bottom: 34px;
    right: 6%;
  }
	.g-scroll--up{
    position: fixed;
    bottom: 34px;
    right: 6%;
  }
	.g-scroll > span{
		display: inline-block;
	}
	.g-scroll__txt{
		writing-mode: vertical-rl;
		font-family: var(--FF_EN);
		font-size: var(--FZ_12_CONST);
	}
	.g-scroll__arrow {
		line-height: 1;
		color: var(--BLACK);
		font-family: var(--FF_EN);
		position: absolute;
		width: 1px;
		height: var(--SCORLL_LINE);
		overflow-y: clip;
		left: 0;
		top: 0;
	}
	.g-scroll__arrow::after{
		content: "";
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 1px;
		height: var(--SCORLL_LINE);
		background: var(--BLACK);
		opacity:0;
	}
	.g-scroll--down .g-scroll__arrow::after{
		animation: pathmovedown 1.3s ease-in-out infinite;
	}
	@keyframes pathmovedown{
		0%{
			height: 0;
			top: 0px;
			opacity: 0;
		}
		30%{
			height: var(--SCORLL_LINE);
			opacity: 1;
		}
		100%{
			height: 0;
			top: 130px;
			opacity: 0;
		}
	}
	.g-scroll--up{
		opacity: 0;
		pointer-events: none;
	}
	body.scroll .g-scroll--up{
		opacity: 0;
		pointer-events: auto;
		animation: var(--ANIME_FADEIN);
	}
	body.scroll.returnTop .g-scroll--up{
		opacity: 1;
		animation: var(--ANIME_FADEOUT);
	}
	.g-scroll--up .g-scroll__arrow::after{
		animation: pathmoveup 1.3s ease-in-out infinite;
	}
	@keyframes pathmoveup{
		0%{
			height: 0;
			top: 130px;
			opacity: 0;
		}
		30%{
			height: var(--SCORLL_LINE);
			opacity: 1;
		}
		100%{
			height: 0;
			top: 0px;
			opacity: 0;
		}
	}
}
/* -------------------g-coordinate-------------------- */
.g-coordinate__thumb img{
  aspect-ratio: 240/360;
  object-fit: cover;
}
@media (hover: hover){
  .g-coordinate li a{
    display: block;
    position: relative;
    overflow: hidden;
  }
  .g-coordinate li a::before{
    content: "";
    display: inline-block;
    background: var(--BLACK_OP50);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: var(--ANIME_TRANSITION);
    opacity: 0;
  }
  .g-coordinate li a:hover::before{
    opacity: 1;
  }
  .g-coordinate li a::after{
    content: "DETAIL";
    font-family: var(--FF_EN);
    color: var(--WHITE);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3);
    transition: var(--ANIME_TRANSITION);
    opacity: 0;
    font-size: var(--FZ_20);
  }
  .g-coordinate li a:hover::after{
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  .g-coordinate li a:hover,
  .g-coordinate li a:hover img{
    opacity: 1 !important;
  }
}
@media screen and (min-width: 951px){
  .g-coordinate{
    grid-template-columns: repeat(5,1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 950px){
  .g-coordinate{
    grid-template-columns: repeat(4,1fr);
  }
  .g-coordinate li:nth-of-type(n+5){
    display: none;
  }
}
@media screen and (min-width: 768px){
  .g-coordinate{
    display: grid;
  }
}
@media screen and (max-width: 767px){
  .g-coordinate .slick-slide{
    margin: 0 5px;
  }
}
/* g-coordinateContents */
.g-coordinateContents .popup-box{
  padding: 0;
}
.g-coordinateContents__wrap{
  display: grid;
}
.g-coordinateContents button.closePopup{
  background: url(../images/common/icon_batsu.svg) no-repeat center/ 30%;
  transform: unset;
}
.g-coordinateContents__product{
  display: grid;
}
.g-coordinateContents__product li a{
  display: block;
  border: 1px solid var(--BDCOLOR_GRAY_1);
}
@media screen and (min-width: 768px){
  .g-coordinateContents .popup-content{
    width: 800px;
    max-height: 800px;
  }
  .g-coordinateContents__wrap{
    max-height: 800px;
    overflow: hidden;
    grid-template-columns: 2fr 1fr;
  }
  .g-coordinateContents__thumb{
    grid-row: span 2;
  }
  .g-coordinateContents__productPcContainer{
    max-height: 80vh;
    max-height: 800px;
    overflow-y: scroll;
    -ms-overflow-style: none;/* IE, Edge 対応 */
    scrollbar-width: none;/* Firefox 対応 */
  }
  .g-coordinateContents__productPcContainer::-webkit-scrollbar{
    display: none;
  }
  .g-coordinateContents__product{
    gap: var(--GAP_10);
    padding: 0 var(--GAP_50) var(--GAP_50) var(--GAP_50);
  }
  .g-coordinateContents__heading{
    padding: 60px 0 30px;
  }
  .g-coordinateContents__heading .g-heading__en{
    font-size: var(--FZ_20);
  }
}
@media screen and (max-width: 767px){
  .g-coordinateContents__wrap{
    grid-template-columns: 19fr 10fr;
  }
  .g-coordinateContents__thumb{
    order: 2;
  }
  .g-coordinateContents__productPcContainer{
    display: contents;
  }
  .g-coordinateContents__heading{
    order: 1;
    grid-column: span 2;
    padding: 30px 0;
  }
  .g-coordinateContents__productSpContainer{
    order: 3;
  }
  .g-coordinateContents__productSpContainer{
    overflow-y: scroll;
    max-height: calc(80vh - 205px);
    -ms-overflow-style: none;/* IE, Edge 対応 */
    scrollbar-width: none;/* Firefox 対応 */
  }
  .g-coordinateContents__productSpContainer::-webkit-scrollbar{
    display: none;
  }
  .g-coordinateContents__product{
    gap: var(--GAP_10);
    padding: 0 var(--GAP_20);
  }
}
/* ------------------is-targetBlank--------------------- */
.is-targetBlank{
	display: inline-block;
	padding-right: 20px;
	position: relative;
}
.is-targetBlank::after{
	content: "";
	display: inline-block;
	background: url(../images/common/blank_white.svg) no-repeat center center / 100%;
	width: 15px;
	aspect-ratio: 1/1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.is-targetBlank--black::after{
	background: url(../images/common/blank_black.svg) no-repeat center center / 100%;
}
/* ■■■■■■■■■■コーディネート■■■■■■■■■■ */
@media screen and (min-width: 768px){
	.g-coordinate {
		gap: var(--GAP_20);
	}
}
@media screen and (max-width: 767px){
	.g-coordinateContents__wrap {
		grid-template-columns: none;
	}
	.g-coordinateContents__thumb {
		order: 1;
  }
	.g-coordinateContents__product {
		padding: 0 25px 30px;
		grid-template-columns: repeat(2,1fr);
  }
	.g-coordinate{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: 12px;
		padding: 0 20px;
	}
	.g-coordinateContents__thumb{
		padding: 30px 25px;
	}
	.g-coordinateContents__heading {
		padding: 0 0 25px 0;
  }
}
/* -------------------g-feature-------------------- */
.g-feature__thumb img{
  /*aspect-ratio: 392/260;*/
  object-fit: cover;
}
.g-feature__date{
  display: block;
}
.g-feature__ttl{
  line-height: 1.5;
}
@media (hover: hover){
  .g-feature__thumb{
    overflow: hidden;
  }
  .g-feature__thumb img{
    transform: scale(1);
    transition: var(--ANIME_TRANSITION);
  }
  .g-feature article a:hover .g-feature__thumb img{
    transform: scale(1.1);
  }
  .g-feature article a:hover,
  .g-feature article a:hover img{
    opacity: 1 !important;
  }
}
@media screen and (min-width: 768px){
  .g-feature{
    grid-template-columns: repeat(3,1fr);
    gap: 39px 12px;
  }
  .g-feature__date{
    font-size: var(--FZ_14);
    margin: 8px 0 7px;
  }
  .g-feature__ttl{
    font-size: var(--FZ_16);
  }
}
@media screen and (max-width: 767px){
  .g-feature{
    grid-template-columns: repeat(2,1fr);
    gap: 30px 8px;
  }
  .g-feature__date{
    font-size: var(--FZ_14);
    margin: 8px 0 2px;
  }
  .g-feature__ttl{
    font-size: var(--FZ_16);
  }
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}










/* -------------------クーポン所持ページの始まりの期限消す-------------------- */
.fs-c-couponExpiration__expiration .fs-c-time:first-child { display: none !important; }

.fs-c-coupon__description__appliedCondition {
    display: none;
}

/* -------------------商品詳細のお届け先のcss-------------------- */
.fs-c-modal--small .fs-c-modal__inner{
	padding: 10px;
}