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

	--GRAY01: #F0F0F0;
	--GRAY02: #C3C3C3;
	--GRAY03: #727272;
	--GRAY04: #404040;
	--GRAY05: #707070;
	--GRAY06: #1B1B1B;

	--RED01: #DB0000;

	--PINK01: #F096B3;
	--PINK02: #FFCCF5;
	--PINK03: #FFF5F8;
	--PINK04: #EE8EAB;
	--PINK05: #E571A6;
	--PINK06: #D578A3;

	--PURPLE01: #F9F4FF;
	--PURPLE02: #D8C3E3;

	--BLUE01: #90B7E1;

	--BEIGE01: #F4F3ED;

	--YELLOW01: #F2D36B;
	--YELLOW02: #F6FF86;
	--YELLOW03: #FDF8E8;

	--BEIGE01: #F4F3ED;

	--BROWN01: #996633;

	--ORANGE01: #FFA770;

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

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

	/* 背景カラー */
	--BGCOLOR_GRAY_1: var(--GRAY01);

	/* ランキングカラー */
	--RANKING_1ST: #DEC45A;
	--RANKING_2ND: #C3C3C3;
	--RANKING_3RD: #CE8D64;
	--RANKING_OTHER: #AD9CC7;

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

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

	/* ベース文字間隔 */
	--LETTER_SPACING: 0.06em;

	/* フォント */
	--FF_BASE: "Zen Kaku Gothic New", sans-serif;
	--FF_JOSEFIN: "Josefin Sans", serif;
	--FF_MONT: "Montserrat", serif;
	--FF_NOTO: "Noto Sans JP", serif;
	--FF_RUBIK: "Rubik", sans-serif;
	--FF_ZENMARU: "Zen Maru Gothic", serif;

	/* 英数字フォント */
	--FF_EN: var(--FF_ZENMARU);
	--FF_JP: var(--FF_GOTHIC);
	--FF_NUM: var(--FF_BASE);

	/* フォントウェイト */
	--FF_WEIGHT_BASE: 400;
	
	/* アニメーション */
	--ANIME_FADEIN: fadeIn .5s ease-in-out 0s forwards;
	--ANIME_FADEOUT: fadeOut .5s ease-in-out 0s forwards;

	/* フォトサイズ */
	--FZ_9: clamp(8px, 0.8vw, 9px);
	--FZ_10: clamp(8px, 0.8vw, 10px);
	--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_25: clamp(20px, 2vw, 25px);
	--FZ_28: clamp(22px, 2.5vw, 28px);
	--FZ_30: clamp(25px, 3vw, 30px);
	--FZ_35: clamp(25px, 3vw, 35px);
	--FZ_38: clamp(30px, 3.5vw, 38px);
	--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_12_CONST: 12px;
	--FZ_14_CONST: 14px;
	--FZ_15_CONST: 15px;
	--FZ_16_CONST: 16px;
	--FZ_18_CONST: 18px;
	--FZ_20_CONST: 20px;

	/* ブロック間 */
	--GAP_10: clamp( 5px, 1.1vw, 10px);
	--GAP_15: clamp( 10px, 1.2vw, 15px);
	--GAP_20: clamp( 15px, 1.7vw, 20px);
	--GAP_25: clamp( 15px, 1.7vw, 25px);
	--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_90: clamp( 60px, 6.5vw, 90px);
	--GAP_100: clamp( 70px, 7.5vw, 100px);
	--GAP_150: clamp( 100px, 12vw, 150px);
	--GAP_200: clamp( 100px, 15vw, 200px);
	--GAP_5_CONST: 5px;
	--GAP_10_CONST: 10px;
	--GAP_15_CONST: 15px;
	--GAP_20_CONST: 20px;
	--GAP_30_CONST: 30px;
	--GAP_40_CONST: 40px;

	/* 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;

	/* 親要素を超えて幅100% */
	--FULL_WIDTH: calc(50% - 50vw);

	/* セクション間隔半分 */
	--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: 50px;
	}
}
/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
.cssReset *{margin:0;padding:0;min-height: 0;min-width: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
.cssReset ul li{
	list-style:none;
}
.cssReset p{
	margin: 0;
}
.logout.my-false { display: none; }
.login.my-true { display: none; }
.fs-client-cart-count--0{display: none;}
html {height:100%;scroll-behavior: smooth;}
html.no-smooth-scroll {
	scroll-behavior: auto;
}
body{
	font-family: var(--FF_BASE);
	font-weight: var(--FF_WEIGHT_BASE);
	font-feature-settings: "palt" 1;
	letter-spacing: var(--LETTER_SPACING);
	width:100%;
	color: var(--TXT_COLOR_BASE);
	position:relative;
	z-index: 0;
	overflow-x: clip;
}
.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);
}
.formReset input[type="text"]{
	color: var(--TXT_COLOR_BASE);
}
.formReset input[type="text"]::placeholder{
	color: var(--GRAY02);
}
time{
	font-family: var(--FF_NOTO);
}
/* 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-block: var(--GENERALSEC);
}
.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-block: var(--GENERALSEC_HALF);
}
.g-pdt--half{
	padding-top: var(--GENERALSEC_HALF);
}
.g-pdb--half{
	padding-bottom: var(--GENERALSEC_HALF);
}
/* グリッド、フレックス */
.grid{
	display: grid;
}
.flex{
	display: flex;
}
/* スライダー読み込みまで非表示 */
.slick{
	opacity: 0;
	transition: opacity .3s linear;
}
.slick.slick-initialized{
	opacity: 1;
}
.swiper{
	overflow: hidden;
  opacity: 0;
	transition: opacity .3s linear;
}
.swiper.swiper-initialized{
	opacity: 1;
}
/* 縦書き */
.tategaki{
	writing-mode: vertical-rl;
}
@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;
	}
}

html.no-smooth-scroll {
	scroll-behavior: auto;
}
.g-inner,
.g-inner--l,
.g-inner--m,
.g-inner--s,
.g-inner--ss{
	width: var(--INNER_WIDTH);
	margin-inline: auto;
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 120px;
	}
	body{
		font-size: var(--FZ_14_CONST);
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	.sp{
		display: none;
	}
	.g-inner--pc{
		width: var(--INNER_WIDTH);
		margin-inline: auto;
	}
	.g-inner,
	.g-inner--m,
	.g-inner--pc{
		max-width: var(--PC_MAX_WIDTH_M);
	}
	.g-inner--l{
		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-inline: auto;
	}
	.g-pd--halfPcOnly{
		padding-block: var(--GENERALSEC_HALF);
	}
	/* 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; }
	.orderPc-21th { order: 21; }
	.orderPc-22th { order: 22; }
	.orderPc-23th { order: 23; }
	.orderPc-24th { order: 24; }
	.orderPc-25th { order: 25; }
	.orderPc-26th { order: 26; }
	.orderPc-27th { order: 27; }
	.orderPc-28th { order: 28; }
	.orderPc-29th { order: 29; }
	.orderPc-30th { order: 30; }
	.orderPc-31th { order: 31; }
	.orderPc-32th { order: 32; }
	.orderPc-33th { order: 33; }
	.orderPc-34th { order: 34; }
	.orderPc-35th { order: 35; }
	.orderPc-36th { order: 36; }
	.orderPc-37th { order: 37; }
	.orderPc-38th { order: 38; }
	.orderPc-39th { order: 39; }
	.orderPc-40th { order: 40; }
}
@media screen and (max-width: 767px){
	html{
		scroll-padding-top: 50px;
	}
	body{
		font-size: var(--FZ_14_CONST);
	}
	.pc{
		display: none !important;
	}
	.g-inner--sp{
		width: var(--INNER_WIDTH);
		margin-inline: auto;
	}
	.g-pd--halfPcOnly{
		padding-block: var(--GENERALSEC);
	}
	.formReset input[type="text"],
	.formReset input[type="text"]::placeholder{
		font-size: 16px;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
.hd-timer-bnr{
	height: var(--HEADER_TIME_BNR_HEIGHT);
	overflow: hidden;
}
.hd-timer-bnr a{
	display: block;
	height: 100%;
}
.hd-timer-bnr img{
	height: 100%;
	width: auto;
	object-fit: cover;
}
.g-postageGuide{
	background-color: var(--GRAY04);
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--POSTAGE_GUIDE_HEIGHT);
	margin-bottom: var(--HEADER_HEIGHT);
}
.g-postageGuide p{
	font-weight: 500;
	text-align: center;
	color: var(--WHITE);
}
.headerarea{
	width: 100%;
	position: absolute;
	top: var(--POSTAGE_GUIDE_HEIGHT);
	left: 0;
	z-index: 99;
	height: var(--HEADER_HEIGHT);
	background-color: var(--WHITE);
	display: flex;
	flex-direction: column;
}
body:has(.hd-timer-bnr) .headerarea{
	top: calc(var(--POSTAGE_GUIDE_HEIGHT) + var(--HEADER_TIME_BNR_HEIGHT));
}
.headerarea.is-fixed{
	position: fixed;
	top: 0;
	box-shadow: var(--COMMON_BXSD_BTM);
}
body:has(.hd-timer-bnr) .headerarea.is-fixed{
	top: 0;
}
.hd-container{
	flex: 1;
}
.formReset .hd-advanceSearchBtn{
	background-color: var(--GRAY04);
	border-radius: 35px;
}
.formReset .hd-advanceSearchBtn span{
	color: var(--WHITE);
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
}
.formReset .hd-advanceSearchBtn span::after{
	content: "";
	display: inline-block;
	--MASK: var(--ICON-search-menu) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--WHITE);
	aspect-ratio: 1/1;
}
.hd-user{
	display: flex;
	align-items: center;
}
.hd-user > li{
	position: relative;
}
.hd-user__icon{
	display: inline-block;
	aspect-ratio: 1/1;
	--MASK: var(--ICON) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--GRAY04);
}
.fs-client-cart-count{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	aspect-ratio: 1/1;
	width: 15px;
	font-size: 8px;
	letter-spacing: 0;
	color: var(--WHITE);
	border-radius: 50%;
	position: absolute;
}
.hd-user .fs-client-cart-count{
	background-color: var(--RED01);
	position: absolute;
}
@media (hover: hover){
	.formReset .hd-advanceSearchBtn{
		transition: .5s;
	}
	.formReset .hd-advanceSearchBtn:hover{
		opacity: 0.7;
	}
	.hd-user > li[ontouchstart=""]::after{
		transition: .3s;
	}
	.hd-user > li[ontouchstart=""]:hover:after{
		transform: translateY(-50%) rotate(270deg);
	}
	.hd-user__icon{
		transition: .5s;
	}
	.hd-user__icon:hover{
		opacity: 0.7;
	}
	.hd-menuTrigger{
		transition: .5s;
	}
	.hd-menuTrigger:hover{
		opacity: 0.7;
	}
}
@media screen and (min-width: 768px){
	:root{
		--POSTAGE_GUIDE_HEIGHT: 50px;
		--HEADER_HEIGHT: 142px;
	}
	.hd-container{
		display: flex;
		align-items: center;
	}
	.hd-logo{
		width: clamp( 120px, 15vw, 200px);
	}
	.hd-searchForm{
		margin-left: auto;
		width: clamp( 170px, 22vw, 250px);
	}
	.hd-searchForm input[type="text"],
	.hd-searchForm input[type="text"]::placeholder{
		font-size: var(--FZ_12);
	}
	.formReset .hd-advanceSearchBtn{
		min-height: 40px;
		padding-inline: 20px;
		margin-left: var(--GAP_10);
	}
	.formReset .hd-advanceSearchBtn span{
		gap: 7px;
		font-size: var(--FZ_12);
	}
	.formReset .hd-advanceSearchBtn span::after{
		width: 13px;
	}
	.hd-user{
		gap: 10px;
		margin-inline: var(--GAP_30);
	}
	.hd-user__icon{
		width: 30px;
	}
	.hd-user > li[ontouchstart=""]{
		padding-right: 8px;
		position: relative;
	}
	.hd-user > li[ontouchstart=""]::after{
		content: "";
		display: inline-block;
		--MASK: var(--ICON-arrow) no-repeat center center / 100%;
		mask: var(--MASK);
		-webkit-mask: var(--MASK);
		background-color: var(--GRAY04);
		aspect-ratio: 1/1;
		width: 8px;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%) rotate(90deg);
	}
	.hd-user__dropdown{
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		transition: .3s;
		--PADDING: 25px;
		padding-top: var(--PADDING);
		position: absolute;
		top: calc(100% - var(--PADDING) + 12px);
		left: 50%;
		transform: translateX(-50%);
		width: 120px;
	}
	.hd-user > li[ontouchstart=""]:hover .hd-user__dropdown{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.hd-user__menu{
		box-shadow: var(--COMMON_BXSD);
		background-color: var(--WHITE);
		border-radius: 10px;
		padding: 15px;
		display: grid;
		position: relative;
	}
	.hd-user__menu::before{
		content: "";
		display: inline-block;
		background: var(--WHITE);
		aspect-ratio: 1/1;
		width: 11px;
		clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
		position: absolute;
		bottom: 100%;
		left: 50%;
		transform: translateX(-50%);
	}
	.hd-user__menu ul{
		display: grid;
		gap: 10px;
	}
	.hd-user .fs-client-cart-count{
		top: -5px;
		right: -5px;
	}
	.hd-menuTrigger{
		background-color: var(--GRAY01);
		border-radius: 50%;
		width: 50px;
		aspect-ratio: 1;
	}
	.hamburger.hd-menuTrigger{
		margin-right: var(--GAP_30);
	}
	.hd-brandListLink{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.hd-brandListLink__label{
		margin-top: 3px;
		font-weight: 700;
		font-size: 10px;
		line-height: 1.2;
		letter-spacing: 0;
		text-align: center;
	}
	.hd-navContainer{
		position: relative;
	}
	.hd-nav{
		display: flex;
		gap: var(--GAP_30);
		padding-bottom: 15px;
	}
	.hd-nav__item{
		font-weight: 700;
		display: flex;
		gap: 7px;
	}
	.hd-nav__item:hover{
		cursor: pointer;
	}
	p.hd-nav__item::after{
		content: "";
		display: inline-block;
		--MASK: var(--ICON-arrow) no-repeat center center / 100%;
		mask: var(--MASK);
		-webkit-mask: var(--MASK);
		background-color: var(--TXT_COLOR_BASE);
		aspect-ratio: 1/1;
		width: 8px;
		transform: rotate(90deg);
		transition: .5s;
	}
	.hd-nav > li[ontouchstart=""]:hover p.hd-nav__item::after{
		transform: rotate(270deg);
	}
	.hd-nav__dropdownContainer{
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		transition: .3s;
		--PADDING: 26px;
		padding-top: var(--PADDING);
		position: absolute;
		top: calc(100% - var(--PADDING));
		left: 0;
		width: 100%;
	}
	.hd-nav > li[ontouchstart=""]:hover .hd-nav__dropdownContainer{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.hd-nav__dropdown{
		background-color: #fff;
		padding-block: 20px 50px;
		box-shadow: var(--COMMON_BXSD_BTM);
	}
	.hd-nav__menu{
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
		gap: var(--GAP_20);
		padding-left: var(--GAP_30);
	}
	.hd-nav__menu >li:has(>a){
		display: none;
	}
	.hd-nav__menu > li > p{
		font-weight: 700;
		margin-bottom: 15px;
		font-size: 14px;
	}
	.hd-nav__menu .g-menu__lv3{
		display: grid;
		gap: 15px;
	}
	.hd-nav__menu .g-menu__lv3 li a{
		position: relative;
		padding-left: 12px;
		display: block;
		font-size: 13px;
		padding-bottom: 5px;
		letter-spacing: 0;
	}
	.hd-nav__menu .g-menu__lv3 li a::before{
		content: "";
		display: inline-block;
		background: var(--GRAY02);
		aspect-ratio: 1/1;
		border-radius: 50%;
		width: 6px;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.hd-nav__menu .g-menu__lv3 li a::after{
		content: "";
		display: inline-block;
		background-color: var(--TXT_COLOR_BASE);
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: 0;
		left: 0;
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .3s;
	}
	.hd-nav__menu .g-menu__lv3 li a:hover::after{
		transform: scaleX(1);
		transform-origin: left;
	}
	.hd-nav__dropdown .g-brand__list{
		max-width: 970px;
	}
	.hd-nav__dropdown .g-brand__list li{
		flex: 1;
	}
	.hd-nav__dropdown .g-brand__list li a{
		border-radius: 30px;
	}
	.hd-nav__dropdown .g-brand__list li span{
		background-color: var(--BEIGE01);
	}
}
@media screen and (max-width: 767px){
	:root{
		--POSTAGE_GUIDE_HEIGHT: 40px;
		--HEADER_HEIGHT: 60px;
	}
	.hd-container{
		display: flex;
		align-items: center;
	}
	.hd-container .hd-searchForm{
		display: none;
	}
	.hd-container .hd-advanceSearchBtn{
		display: none;
	}
	.hd-logo{
		width: 112px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.hamburger.hd-menuTrigger{
		width: 25px;
		aspect-ratio: 1;
		order: 1;
	}
	.hd-user{
		margin-left: auto;
		order: 2;
		gap: 10px;
	}
	.hd-user__icon{
		width: 25px;
	}
	.hd-user .fs-client-cart-count{
		top: -5px;
		right: -5px;
	}
	.hd-spSearchContainer{
		padding-block: 15px;
	}
	.hd-spSearch{
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 10px;
	}
	.formReset .hd-advanceSearchBtn{
		padding-inline: 15px;
	}
	.formReset .hd-advanceSearchBtn span{
		gap: 5px;
		font-size: 11px;
	}
	.formReset .hd-advanceSearchBtn span::after{
		width: 10px;
	}
}
/* フォーム */
.g-searchForm{
	position: relative;
}
.formReset .g-searchForm input[type="text"]{
	background-color: var(--WHITE);
	border-radius: 35px;
	border: 2px solid var(--GRAY04);
}
.formReset .g-searchForm button[type="submit"]{
	aspect-ratio: 1/1;
	--MASK: var(--ICON-search) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--GRAY04);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (min-width: 768px){
	.formReset .g-searchForm input[type="text"]{
		min-height: 40px;
		padding-inline: 20px 50px;
	}
	.formReset .g-searchForm button[type="submit"]{
		width: 15px;
		right: 15px;
	}
}
@media screen and (max-width: 767px){
	.formReset .g-searchForm input[type="text"]{
		min-height: 40px;
		padding-inline: 20px 50px;
	}
	.formReset .g-searchForm input[type="text"]::placeholder{
		font-size: 14px;
	}
	.formReset .g-searchForm button[type="submit"]{
		width: 15px;
		right: 15px;
	}
}
/* ハンバーガー */
.hamburger--menu{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.hamburger__line{
	background-color: var(--TXT_COLOR_BASE);
	border-radius: 70px;
}
@media screen and (min-width: 768px){
	.hamburger--menu{
		gap: 4px;
	}
	.hamburger__line{
		width: 20px;
		height: 3px;
	}
}
@media screen and (max-width: 767px){
	.hamburger--menu{
		gap: 5px;
	}
	.hamburger__line{
		width: 25px;
		height: 4px;
	}
}
.hamburger--close{
	display: inline-block;
	aspect-ratio: 1/1;
	width: 38px;
	position: fixed;
	background: var(--WHITE) url(/asset2025/images/common/hamburger-close.svg) no-repeat center center / 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.hamburger--bottomClose{
	display: block;
	background-color: var(--GRAY03);
	padding-block: 10px;
}
.hamburger--bottomClose span{
	color: var(--WHITE);
	display: flex;
	justify-content: center;
	gap: 10px;
}
.hamburger--bottomClose span::after{
	content: "";
	display: inline-block;
	--MASK: var(--ICON-close) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--WHITE);
	aspect-ratio: 1/1;
	width: 10px;
}
.fat-nav {
  top: 0;
	left: -150%;
  z-index: 2002;
  position: fixed;
  display: none;  
  width: 80%;
  height: 100%;
  background: #fff;   
  transform: scale(1);
  transition-property: transform;
  transition-duration: 0.3s;
  overflow-y: auto;
  overflow-x: hidden;
	transition: all 0.8s;
	--FAT_NAV_PADDING_INLINE: 15px;
}
.fat-nav__wrapper {
  height: 100%;
  max-width:1100px;
  box-sizing: border-box;
}
.fat-nav.active{
	left: 0;
  transform: scale(1);
	transition: all 0.8s;
}
@media screen and (min-width: 768px){
	.fat-nav{
		max-width: 350px;
	}
}
@media screen and (max-width: 767px){
	.fat-nav{
		max-width: 300px;
	}
}
body.no-scroll{
	overflow: hidden;
}
body.no-scroll::before {
	background: var(--BLACK_OP50);
	content: '';
	display: block;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2000;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s;
	opacity: 0;
	animation: var(--ANIME_FADEIN);
}
.fn-head{
	background-color: var(--GRAY01);
	padding: var(--FAT_NAV_PADDING_INLINE);
}
.fn-head__en{
	font-size: 14px;
}
.fn-head__ja{
	font-size: 12px;
}
.fn-intro{
	display: flex;
	align-items: center;
	padding-inline: var(--FAT_NAV_PADDING_INLINE);
	height: 50px;
	gap: 8px;
}
.fn-intro__message{
	flex: 1;
	letter-spacing: 0.02em;
	line-height: 1;
	padding-bottom: 5px;
	text-align: center;
}
.fn-intro__message b{
	font-weight: 700;
}
.fn-intro__message--pointInfo{
	font-size: 13px;
	background: linear-gradient(transparent 60%, var(--PINK02) 40%);
}
.fn-intro__message--pointInfo strong{
	font-size: 19px;
}
.fn-intro__message--registerCoupon{
	font-size: 10px;
	background: linear-gradient(transparent 60%, var(--YELLOW02) 40%);
}
.fn-intro__message--registerCoupon b{
	font-size: 11px;
}
.fn-intro__message--registerCoupon strong{
	font-size: 19px;
}
.fn-intro__btn{
	width: 80px;
}
.fn-intro__btn a{
	display: block;
	border-radius: 5px;
	border: 1px solid var(--GRAY06);
	line-height: 1.2;
	letter-spacing: 0;
	font-size: 10px;
	text-align: center;
	padding-block: 5px;
	transition: .5s;
}
@media (hover: hover){
	.fn-intro__btn a:hover{
		background-color: var(--GRAY06);
		color: var(--WHITE);
	}
}
.fn-user{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	border: 1px solid var(--GRAY02);
	position: relative;
}
.fn-user::after{
	content: "";
	display: inline-block;
	background: var(--GRAY02);
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.fn-user li a{
	display: flex;
	align-items: center;
	grid-template-columns: 50px 1fr;
	height: 50px;
	padding-inline: var(--FAT_NAV_PADDING_INLINE);
	font-size: 12px;
}
.fn-user li a::before{
	content: "";
	display: inline-block;
	--MASK: var(--ICON) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--TXT_COLOR_BASE);
	aspect-ratio: 1/1;
	width: 30px;
}
.fn-advanceTrigger{
	padding: var(--GAP_20) var(--FAT_NAV_PADDING_INLINE);
}
.fn-advanceTrigger button{
	background-color: var(--GRAY02);
	width: 100%;
	text-align: center;
	flex-wrap: wrap;
	border-radius: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 40px;
	font-weight: 700;
	font-size: 12px;
	padding-inline: 20px;
	transition: .3s;
}
.fn-advanceTrigger button::after{
	content: "";
	display: inline-block;
	--MASK: var(--ICON-plus) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--TXT_COLOR_BASE);
	aspect-ratio: 1/1;
	width: 20px;
	transition: .3s;
}
@media (hover: hover){
	.fn-advanceTrigger button:hover{
		background-color: var(--TXT_COLOR_BASE);
		color: var(--WHITE);
	}
	.fn-advanceTrigger button:hover::after{
		background-color: var(--WHITE);
	}
}
.fn-menu .g-menu__lv1{
	display: grid;
	grid-template-columns: repeat(2,1fr);
}
.fn-menu .g-menu__lv1 li:has(.g-menu__lv2Container){
	grid-column: span 2;
}
.fn-menu .g-menu__lv1 > li > :is(p, a){
	display: flex;
	align-items: center;
	background-color: var(--GRAY01);
	padding-inline: calc(var(--FAT_NAV_PADDING_INLINE) + 5px);
	border-bottom: 1px solid var(--GRAY02);
	font-weight: 700;
}
.fn-menu .g-menu__lv1 > li:nth-child(odd):nth-child(n+5) > a{
	border-right: 1px solid var(--GRAY02);
}
.fn-menu ul[class*="g-menu__lv"] > li > p{
	display: flex;
	justify-content: space-between;
}
.fn-menu ul[class*="g-menu__lv"] > li > p::after{
	content: "";
	display: inline-block;
	--MASK: var(--ICON-arrow) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--TXT_COLOR_BASE);
	aspect-ratio: 1 / 1;
	width: 8px;
	transform: rotate(90deg);
	transition: .5s;
}
.fn-menu ul[class*="g-menu__lv"] > li > p.is-open::after{
	transform: rotate(270deg);
}
.fn-menu .g-menu__lv2 > li{
	border-bottom: 1px solid var(--GRAY02);
}
.fn-menu .g-menu__lv3:not(.g-menu__lv3--size) > li:not(:last-child){
	border-bottom: 1px solid var(--GRAY02);
}
.fn-menu .g-menu__lv3Container{
		border-top: 1px solid var(--GRAY02);
}
.fn-menu .g-menu__lv2 > li > :is(p, a),
.fn-menu .g-menu__lv3 > li > :is(p, a){
	padding-right: calc(var(--FAT_NAV_PADDING_INLINE) + 5px);
	display: flex;
	align-items: center;
	column-gap: 7px;
	height: 40px;
}
.fn-menu .g-menu__lv2 > li > :is(p, a){
	padding-left: calc(var(--FAT_NAV_PADDING_INLINE) + 15px);
}
.fn-menu .g-menu__lv3 > li > :is(p, a){
	padding-left: calc(var(--FAT_NAV_PADDING_INLINE) + 25px);
}
.fn-menu .g-menu__lv2 > li > a[style*="--ICON"]::before{
	content: "";
	display: inline-block;
	--MASK: var(--ICON) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--TXT_COLOR_BASE);
	width: 23px;
	aspect-ratio: 1/1;
}
.fn-menu .g-menu__lv3--size{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	margin-bottom: -1px;
}
.fn-menu .g-menu__lv3--size li{
	border-bottom: 1px solid var(--GRAY02);
}
.fn-menu .g-menu__lv3--size li:nth-child(odd){
	border-right: 1px solid var(--GRAY02);
}
.fn-menu .g-menu__lv2Container,
.fn-menu .g-menu__lv3Container{
	display: none;
}
.fn-menu .g-menu__brand{
	padding: var(--FAT_NAV_PADDING_INLINE);
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: calc(var(--FAT_NAV_PADDING_INLINE) - 5px);
}
.fn-menu .g-menu__brand li a{
	display: block;
	aspect-ratio: 2/1;
	border: 1px solid var(--GRAY02);
	display: flex;
	justify-content: center;
	align-items: center;
}
.fn-menu .g-menu__brand li a span{
	display: block;
	height: 40%;
}
.fn-menu .g-menu__brand li a span img{
	width: auto;
	height: 100%;
}
.fn-sns{
	justify-content: center;
}
@media (hover: hover){
	.fn-menu ul[class*="g-menu__lv"] > li > p,
	.fn-menu ul[class*="g-menu__lv"] a{
		transition: .3s;
	}
	.fn-menu ul[class*="g-menu__lv"] > li > p:hover{
		cursor: pointer;
	}
	.fn-menu ul[class*="g-menu__lv"] > li > p:hover,
	.fn-menu ul[class*="g-menu__lv"] a:hover{
		background-color: var(--GRAY02);
	}
}
@media screen and (min-width: 768px){
	.fn-menu .g-menu__lv1 > li > :is(p, a){
		height: 50px;
	}
	.fn-sns{
		margin-block: 30px;
	}
}
@media screen and (max-width: 767px){
	.fn-menu .g-menu__lv1 > li > :is(p, a){
		height: 42px;
	}
	.fn-menu ul[class*="g-menu__lv"] > li > p,
	.fn-menu ul[class*="g-menu__lv"] a{
		font-size: 12px;
	}
	.fn-sns{
		margin-block: 20px;
	}
	.fn-sns.g-sns li a{
		width: 23px;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■ブランドポップアップ■■■■■■■■■■■■■■■■■■■■■■ */
#popup-brandList .g-brand__list{
	display: grid;
	grid-template-columns: repeat(3,1fr);
}
#popup-brandList .g-brand__list li{
	width: 100%;
}
#popup-brandList .g-brand__list li a span{
	background-color: var(--BEIGE01);
}
@media screen and (min-width: 768px){
	#popup-brandList .popup-content{
		max-width: 600px;
	}
	#popup-brandList .popup-overlay .popup-box{
		padding-inline: 25px;
	}
	#popup-brandList .g-brand__list{
		display: grid;
		gap: var(--GAP_30);
	}
	#popup-brandList .g-brand__list li a{
		border-radius: 20px;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■詳細検索■■■■■■■■■■■■■■■■■■■■■■ */
@media screen and (min-width: 768px){
	#popup-adsearch .popup-content{
		max-width: 600px;
	}
	#popup-adsearch .popup-overlay .popup-box{
		padding-inline: 25px;
	}
}
/* フォーム */
.g-adsearch__keywordInput{
	position: relative;
}
.formReset .g-adsearch__keywordInput input[type="text"]{
	background-color: var(--WHITE);
	border-radius: 35px;
	border: 2px solid var(--GRAY04);
}
.formReset .g-adsearch__keywordInput button[type="submit"]{
	aspect-ratio: 1/1;
	--MASK: var(--ICON-search) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--GRAY04);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (min-width: 768px){
	.formReset .g-adsearch__keywordInput{
		max-width: 400px;
		margin-inline: auto;
	}
	.formReset .g-adsearch__keywordInput input[type="text"]{
		min-height: 46px;
		padding-inline: 20px 50px;
	}
	.formReset .g-adsearch__keywordInput button[type="submit"]{
		width: 15px;
		right: 15px;
	}
}
@media screen and (max-width: 767px){
	.formReset .g-adsearch__keywordInput input[type="text"]{
		min-height: 40px;
		padding-inline: 20px 50px;
	}
	.formReset .g-adsearch__keywordInput button[type="submit"]{
		width: 15px;
		right: 15px;
	}
}
/* g-adsearch__conditions */
.g-adsearch__conditions > div{
	background: var(--LINE_REPEAT_LINE) repeat-x bottom left / 8px 1px;
}
.g-adsearch__conditions dt{
	font-weight: 700;
	letter-spacing: 0;
}
@media screen and (min-width: 768px){
	.g-adsearch__conditions > div{
		padding-block: var(--GAP_35);
		display: grid;
		grid-template-columns: 90px 1fr;
		align-items: center;
	}
	.g-adsearch__conditions dt{
		font-size: 14px;
	}
}
@media screen and (max-width: 767px){
	.g-adsearch__conditions > div{
		padding-block: 25px;
	}
	.g-adsearch__conditions dt{
		text-align: center;
		font-size: 14px;
		margin-bottom: 20px;
	}
}
/* g-adsearch__word */
.g-adsearch__word{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.g-adsearch__word li > 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;
}
.g-adsearch__word li label{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--BEIGE01);
	border: 1px solid var(--BEIGE01);
	border-radius: 12px;
	font-weight: 500;
	letter-spacing: 0;
	transition: .2s;
}
.g-adsearch__word li input[type="checkbox"]:checked+label{
	border-color: var(--TXT_COLOR_BASE);
	background-color: var(--TXT_COLOR_BASE);
	color: var(--WHITE);
}
.g-adsearch__word li label::before{
	content: '#';
}
.g-adsearch__multValue__values{
	display: none;
}
@media (hover: hover){
	.g-adsearch__word li:hover label{
		border-color: var(--TXT_COLOR_BASE);
	}
}
@media screen and (min-width: 768px){
	.g-adsearch__word li label{
		height: 26px;
		font-size: 14px;
		padding-inline: 10px;
	}
}
@media screen and (max-width: 767px){
	.g-adsearch__word li label{
		height: 22px;
		font-size: 12px;
		padding-inline: 7px;
	}
}
/* g-adsearch__radio */
.g-adsearch__radio{
	display: grid;
}
.g-adsearch__radio li 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;
}
.g-adsearch__radio li label{
	--CHECK_STYLE: 4px solid var(--TXT_COLOR_BASE);
	position: relative;
  display: block;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.g-adsearch__radio li label::before{
	content: "";
  display: inline-block;
  border: 1px solid var(--GRAY03);
  aspect-ratio: 1/1;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
	border-radius: 50%;
	transition: .2s;
}
@media (hover: hover){
	.g-adsearch__radio li:hover label::before{
		border: var(--CHECK_STYLE);
	}
}
@media screen and (min-width: 768px){
	.g-adsearch__radio{
		gap: 15px 10px;
	}
	.g-adsearch__radio li label{
		padding-left: 19px;
		font-size: 14px;
	}
	.g-adsearch__radio li label::before{
		width: 14px;
	}
	.g-adsearch__radio li input[type="checkbox"]:checked+label::before{
		border: var(--CHECK_STYLE);
	}
}
@media screen and (max-width: 767px){
	.g-adsearch__radio{
		gap: 15px 10px;
	}
	.g-adsearch__radio li label{
		padding-left: 19px;
		font-size: 14px;
	}
	.g-adsearch__radio li label::before{
		width: 14px;
	}
	.g-adsearch__radio li input[type="checkbox"]:checked+label::before{
		border: var(--CHECK_STYLE);
	}
}
/* 各カラム */
.g-adsearch__item li label{
	letter-spacing: 0;
}
.g-adsearch__sex{
	grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
}
.g-adsearch__item{
	grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
}
.g-adsearch__size{
	grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
}
/* g-adsearch__brand */
.g-adsearch__brand{
	display: grid;
}
.g-adsearch__brand li 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;
}
.g-adsearch__brand li label{
  display: grid;
  aspect-ratio: 1/1;
  overflow: hidden;
  grid-template-rows: 124fr 60fr;
	border-radius: 14px;
	background-color: var(--BEIGE01);
	border: 1px solid var(--WHITE);
	transition: .3s;
}
.g-adsearch__brand li input[type="checkbox"]:checked+label{
	border-color: var(--TXT_COLOR_BASE);
}
.g-adsearch__brand li label::before{
  content: "";
  display: inline-block;
  flex: 1;
  background: var(--IMAGE) no-repeat center center / cover;
  width: 100%;
}
.g-adsearch__brand li span{
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-adsearch__brand li span img{
  width: auto;
}
@media (hover: hover){
	.g-adsearch__brand li:hover label{
		border-color: var(--TXT_COLOR_BASE);
	}
}
@media screen and (min-width: 768px){
	.g-adsearch__brand{
		width: 90%;
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
		gap: 13px;
	}
	.g-adsearch__brand li span img{
		height: 50%;
	}
}
@media screen and (max-width: 767px){
	.g-adsearch__brand{
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
		gap: 10px;
	}
	.g-adsearch__brand li span img{
		height: 70%;
	}
}
/* g-adsearch__color */
:root{
	--COLOR_CHIP_WHITE: #FFFFFF;
	--COLOR_CHIP_BLACK: #000000;
	--COLOR_CHIP_GRAY: #C1C1C1;
	--COLOR_CHIP_BROWN: #87786C;
	--COLOR_CHIP_BEIGE: #E0D2B0;
	--COLOR_CHIP_TEA: #818C64;
	--COLOR_CHIP_GREEN: #009600;
	--COLOR_CHIP_BLUE: #0E00F1;
	--COLOR_CHIP_NAVY: #242F72;
	--COLOR_CHIP_PURPLE: #802EBD;
	--COLOR_CHIP_PINK: #E9B8D5;
	--COLOR_CHIP_RED: #D62425;
	--COLOR_CHIP_ORANGE: #DC7D3B;
	--COLOR_CHIP_YELLOW: #F8EC68;
}
.g-adsearch__color{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(23px, 1fr));
	gap: 7px;
}
.g-adsearch__color li{
	position: relative;
}
.g-adsearch__color 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;
}
.g-adsearch__color i{
	background-color: var(--COLOR);
	border: 1px solid var(--COLOR);
	display: block;
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: relative;
}
[for="is-adsearch-color-white"] i{
	border-color: #DBDBDB;
}
.g-adsearch__color i::before{
	content: "";
	display: inline-block;
	border: 1.5px solid var(--BLACK);
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	opacity: 0;
}
.g-adsearch__color i::after{
	content: "";
	display: inline-block;
	background: var(--GRAY03);
	--MASK: var(--ICON_CHECK) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	width: 12px;
	aspect-ratio: 1 / 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-10deg);
	opacity: 0;
}
.g-adsearch__color input[type="checkbox"]:checked + label i::before,
.g-adsearch__color input[type="checkbox"]:checked + label i::after{
	opacity: 1;
}
.g-adsearch__color span{
	display: block;
	text-align: center;
	font-size: var(--FZ_11);
	letter-spacing: 0px;
	white-space: nowrap;
}
@media (hover: hover){
	.g-adsearch__color label:hover{
		cursor: pointer;
	}
	.g-adsearch__color label i::after{
		transition: .1s;
	}
	.g-adsearch__color label:hover i::before,
	.g-adsearch__color label:hover i::after{
		opacity: 0.7;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
/* .ft-spMenuContainer */
@media screen and (max-width: 767px){
	:root{
		--SPMENU_HEIGHT: 60px;
	}
	.ft-spMenuContainer{
		position: fixed;
		width: 100%;

		bottom: 0;
		left: 0;
		height: var(--SPMENU_HEIGHT);
		z-index: 999;
	}
	.ft-spMenu{
		background-color: var(--GRAY03);
		display: flex;
		height: 100%;
		position: relative;
		z-index: 2;
	}
	.ft-spMenu li{
		flex: 1;
		position: relative;
	}
	.ft-spMenu li::after{
		content: "";
		display: inline-block;
		background: var(--GRAY02_OP40);
		width: 1px;
		height: calc(100% - 20px);
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.ft-spMenu__item{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		gap: 2px;
	}
	.ft-spMenu__item::before{
		content: '';
		--MASK: var(--ICON) no-repeat center center / 100%;
		mask: var(--MASK);
		-webkit-mask: var(--MASK);
		background-color: var(--WHITE);
		aspect-ratio: 1/1;
		width: 28px;
		display: block;
	}
	.ft-spMenu__item.active::before{
		mask-image: var(--ACTIVE_ICON);
	}
	.ft-spMenu__item::after{
		display: block;
		text-align: center;
		content: attr(aria-label);
		color: var(--WHITE);
		font-size: 11px;
		letter-spacing: 0.05em;
	}
	.ft-spSubMenu{
		width: 100%;
		position: absolute;
		left: 0;
		bottom: var(--SPMENU_HEIGHT);
		transform: translateY(100%);
		transition: .3s;
		z-index: 1;
		background-color: var(--WHITE);
		box-shadow: var(--COMMON_BXSD_TOP);
	}
	.ft-spSubMenu.is-show{
		bottom: var(--SPMENU_HEIGHT);
		transform: translateY(0);
	}
	.ft-spSubMenu .g-menu__lv2 > li:has(>a){
		display: none;
	}
	.ft-spSubMenu .g-menu__lv2 > li > p{
		padding-inline: 20px;
	}
	.ft-spSubMenu .g-menu__lv3 > li > a{
		padding-inline: 20px;
	}
	.ft-spSubMenu .g-menu__lv3{
		display: grid;
		grid-template-columns: repeat(3,1fr);
		margin-bottom: -1px;
	}
	.fn-menu .g-menu__lv3 li{
		border-bottom: 1px solid var(--GRAY02) !important;
	}
	.fn-menu .g-menu__lv3 li:not(:nth-of-type(3n)){
		border-right: 1px solid var(--GRAY02) !important;
	}

}
/* ページトップ */
.pagetop{
	position: fixed;
	z-index: 99;
	border-radius: 50%;
}
.pagetop::before{
	content: "";
	display: inline-block;
	background-color: var(--WHITE);
	width: 60%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.pagetop a{
	display: block;
	aspect-ratio: 1/1;
	border-radius: 50%;
	--MASK: var(--ICON_page-top) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--TXT_COLOR_BASE);
	position: relative;
	z-index: 2;
}
@media (hover: hover){
	.pagetop a{
		transition: .3s;
	}
	.pagetop a:hover{
		opacity: 1;

		transform: translateY(-5px);
	}
}
@media screen and (min-width: 768px){
	.pagetop{
		width: 50px;
		bottom: 20px;
		right: 3%;
	}
}
@media screen and (max-width: 767px){
	.pagetop{
		width: 40px;
		bottom: 80px;
		right: 10px;
	}
}
/* footerarea */
.footerarea{
	background-color: var(--GRAY01);
	position: relative;
}
.footerarea::before{
	content: "";
	display: inline-block;
	--MASK: var(--FOOTER_COVER) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--WHITE);
	aspect-ratio: 30/2;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.ft-brand{
	gap: var(--GAP);
	display: flex;
}
.ft-brand li a{
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1/1;
	background-color: var(--WHITE);
	border-radius: 50%;
}
.ft-brand li a span{
	display: inline-block;
}
.ft-brand li a span img{
	width: auto;
	height: 100%;
}
.ft-terms{
	display: flex;
}
.ft-terms li:not(:last-child){
	border-right: 1px solid var(--TXT_COLOR_BASE);
}
.g-sns{
	display: flex;
}
.g-sns li a{
	display: inline-block;
	aspect-ratio: 1/1;
	--MASK: var(--ICON) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--TXT_COLOR_BASE);
}
@media (hover: hover){
	.ft-brand li a{
		transition: .5s;
	}
	.ft-brand li a:hover{
		transform: scale(1.1);
	}
	.g-sns li a{
		transition: .3s;
	}
	.g-sns li a:hover{
		opacity: 0.7;
	}
	.ft-menu li a{
		position: relative;
	}
	.ft-menu li a::after{
		content: "";
		display: inline-block;
		background-color: var(--GRAY02);
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: 0;
		left: 0;
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .3s;
	}
	.ft-menu li a:hover::after{
		transform: scaleX(1);
		transform-origin: left;
	}
	.ft-terms li a{
		transition: .3s;
	}
	.ft-terms li a:hover{
		opacity: 0.7;
	}
}
@media screen and (min-width: 768px){
	.footerarea{
		padding-block: var(--GAP_200) var(--GAP_40);
	}
	.cssReset .ft-logo{
		width: 246px;
		margin: 0 auto var(--GAP_60);
	}
	.ft-brand{
		--GAP: var(--GAP_20);
		margin-bottom: var(--GENERALSEC);
	}
	.ft-brand li{
		flex: 1;
	}
	.ft-brand li a span{
		height: 19%;
	}
	.ft-menu{
		display: flex;
		gap: var(--GAP_80);
	}
	.ft-menu > div{
		flex: 1;
	}
	.ft-menu dt{
		font-weight: 700;
		border-bottom: 1px solid var(--TXT_COLOR_BASE);
		font-size: var(--FZ_16);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.ft-menu ul{
		display: grid;
		gap: 10px;
	}
	.ft-menu ul li a{
		display: block;
		padding-bottom: 8px;
		font-size: var(--FZ_14);
	}
	.ft-realShopLinkContainer{
		margin-top: -10px;
	}
	.cssReset .ft-realShopLink{
		margin-left: auto;
	}
	.ft-foot{
		margin-top: var(--GAP_60);
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: baseline;
		gap: var(--GAP_20);
	}
	.ft-terms{
		grid-column: span 2;
		order: 1;
	}
	.ft-terms li:not(:last-child){
		padding-right: 20px;
		margin-right: 20px;
	}
	.ft-terms li a{
		font-size: var(--FZ_14);
	}
	.ft-copy{
		order: 2;
		font-size: 11px;
		letter-spacing: 0;
	}
	.g-sns{
		order: 3;
		gap: 30px;
	}
	.g-sns li a{
		width: 28px;
	}
}
@media screen and (max-width: 767px){
	.footerarea{
		padding-block: 80px 90px;
	}
	.cssReset .ft-logo{
		width: 150px;
		margin: 0 auto 45px;
	}
	.ft-brand{
		width: 85%;
		max-width: 500px;
		margin-inline: auto;
		flex-wrap: wrap;
		--GAP: 16px;
	}
	.ft-brand li{
		width: calc((100% - var(--GAP)*2) / 3);
	}
	.ft-brand li a span{
		height: 19%;
	}
	.ft-terms{
		justify-content: center;
		margin-block: 40px 30px;
	}
	.ft-terms li:not(:last-child){
		padding-right: 10px;
		margin-right: 10px;
	}
	.ft-terms li a{
		font-size: 11px;
		letter-spacing: 0;
	}
	.g-sns{
		justify-content: center;
		gap: 30px;
	}
	.g-sns li a{
		width: 28px;
	}
	.cssReset .ft-copy{
		font-size: 11px;
		line-height: 1.5;
		margin-top: 20px;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -------------------見出し-------------------- */
.g-heading{
	display: grid;
}
.g-heading--center > span{
	text-align: center;
}
.g-heading__en{
	display: block;
	font-family: var(--FF_EN);
	font-weight: 700;
}
.g-heading__ja{
	display: block;
	font-weight: 500;
}
@media screen and (min-width: 768px){
  .g-headingContainer{
		margin-bottom: var(--GAP_25);
	}
	.g-heading{
		gap: 10px;
	}
	.g-heading--horizontalPc{
		display: flex;
		align-items: baseline;
		gap: var(--GAP_10);
	}
	.g-heading__en{
		font-size: var(--FZ_40);
	}
	.g-heading__ja{
		font-size: var(--FZ_16);
	}
}
@media screen and (max-width: 767px){
	.g-headingContainer{
		margin-bottom: 30px;
	}
	.g-heading--centerSp > span{
		text-align: center;
	}
	.g-heading__en{
		font-size: 30px;
		margin-bottom: 2px;
		white-space: nowrap;
	}
	.g-heading__ja{
		font-size: 14px;
	}
}
/* -------------------ボタン-------------------- */
/* コンテナベース */
.g-btnContainer{
	display: grid;
}
@media screen and (min-width: 768px){
	.g-btnContainer{
		margin-top: var(--GAP_50);
	}
	.g-btnContainer:has(.ecbn-selection-image-loading-more){
		margin-top: var(--GAP_50) !important;
	}
}
@media screen and (max-width: 767px){
	.g-btnContainer{
		margin-top: 30px;
	}
	.g-btnContainer:has(.ecbn-selection-image-loading-more){
		margin-top: 30px !important;
	}
}
/* コンテナベース - 横並び */
.g-btnContainer--horizontal{
	display: flex;
	justify-content: center;
}
@media screen and (min-width: 768px){
	.g-btnContainer--horizontal{
		gap: var(--GAP_30);
	}
}
@media screen and (max-width: 767px){
	.g-btnContainer--horizontal{
		gap: 10px;
	}
}
/* コンテナベース - PCのみ横並び */
@media screen and (min-width: 768px){
	.g-btnContainer--horizontalPc{
		display: flex;
		justify-content: center;
		gap: var(--GAP_30);
	}
}
@media screen and (max-width: 767px){
	.g-btnContainer--horizontalPc{
		gap: 10px;
	}
	.g-btnContainer--horizontalPc .g-btn{
		margin-inline: auto;
	}
}
/* コンテナベース - 縦並び */
@media screen and (min-width: 768px){
	.g-btnContainer--vertical{
		gap: var(--GAP_20);
	}
}
@media screen and (max-width: 767px){
	.g-btnContainer--vertical{
		gap: var(--GAP_20);
	}
	.g-btnContainer--vertical .g-btn{
		margin-inline: auto;
	}
}
/* ボタンベース */
.g-btn{
	width: 100%;
}
.g-btn.ecbn-selection-image-loading-more{
	width: 100% !important;
}
.g-btn > a,
.g-btn > button{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.2em;
	border-radius: 25px;
	position: relative;
}
.g-btn > a.ecbn-selection-more-btn{
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	font-weight: 600 !important;
	letter-spacing: 0.2em !important;
	border-radius: 25px !important;
	position: relative !important;
	width: 100% !important;
	border: none !important;
}
.g-btn > button{
	width: 100%;
}
.g-btn > a.ecbn-selection-more-btn{
	margin: 0 auto !important;
}
@media screen and (min-width: 768px){
	.g-btn{
		max-width: 250px;
	}
	.g-btn.ecbn-selection-image-loading-more{
		max-width: 250px !important;
	}
	.g-btn > a,
	.g-btn > button{
		min-height: 47px;
	}
	.g-btn > a.ecbn-selection-more-btn{
		min-height: 47px !important;
	}
}
@media screen and (max-width: 767px){
	.g-btn{
		max-width: 270px;
	}
	.g-btn.ecbn-selection-image-loading-more{
		max-width: 270px !important;
	}
	.g-btn > a,
	.g-btn > button{
		min-height: 47px;
	}
	.g-btn > a.ecbn-selection-more-btn{
		min-height: 47px !important;
	}
}
/* ボタンベース_フォントサイズ */
.g-btn__label{
	letter-spacing: 0.1em;
}
@media screen and (min-width: 768px){
	.g-btn__label{
		font-size: var(--FZ_16);
	}
	.ecbn-selection-more-btn .g-btn__label{
		font-size: var(--FZ_16);
	}
}
@media screen and (max-width: 767px){
	.g-btn__label{
		font-size: 14px;
	}
}
.g-btn__label--en{
	letter-spacing: 0;
}
/* カラーバリエーション */
.g-btn--white > a,
.g-btn--white > button{
	background-color: var(--WHITE);
	border: 1px solid var(--GRAY04);
}
.g-btn--black > a,
.g-btn--black > button{
	background-color: var(--GRAY04);
	color: var(--WHITE);
}
.g-btn--black > a:visited{
	color: var(--WHITE);
}
.g-btn--white > a:visited{
	color: var(--TXT_COLOR_BASE);
}
.g-btn--pink > a,
.g-btn--pink > button{
	background-color: var(--PINK04);
	color: var(--WHITE);
}
.g-btn--pink > a.ecbn-selection-more-btn{
	background-color: var(--PINK04) !important;
	color: var(--WHITE);
}
.g-btn--pink > a:visited{
	color: var(--WHITE);
}
.g-btn--yellow > a,
.g-btn--yellow > button{
	background-color: var(--YELLOW01);
	color: var(--TXT_COLOR_BASE);
}
.g-btn--yellow > a.ecbn-selection-more-btn{
	background-color: var(--YELLOW01) !important;
	color: var(--TXT_COLOR_BASE);
}
.g-btn--yellow > a:visited{
	color: var(--TXT_COLOR_BASE);
}
.g-btn--purple > a,
.g-btn--purple > button{
	background-color: var(--PURPLE02);
	color: var(--WHITE);
}
.g-btn--purple > a.ecbn-selection-more-btn{
	background-color: var(--PURPLE02) !important;
	color: var(--WHITE);
}
.g-btn--purple > a:visited{
	color: var(--WHITE);
}
@media (hover: hover){
	.g-btn > a,
	.g-btn > button{
		transition: .5s;
	}
	.g-btn > a:hover{
		opacity: 1;
	}
	.g-btn--white > a:hover{
		opacity: 0.7;
	}
	.g-btn--black > a:hover{
		opacity: 0.7;
	}
	.g-btn--white > a:hover{
		opacity: 0.7;
	}
	.g-btn--pink > a:hover{
		opacity: 0.7;
	}
	.g-btn--purple > a:hover{
		opacity: 0.7;
	}
	.g-btn--yellow > a:hover{
		opacity: 0.7;
	}
	.g-btn > button:hover{
		opacity: 0.7;
	}
}
/* 大きさ - long */
.g-btn--long{
	width: var(--INNER_WIDTH);
	max-width: 388px;
}
/* 大きさ - small */
@media screen and (min-width: 768px){
	.g-btn--small{
		max-width: 180px;
	}
	.g-btn--small > a{
		padding: 7px 0;
		min-height: 44px;
	}
	.g-btn--small .g-btn__label{
		font-size: 14px;
	}
}
@media screen and (max-width: 767px){
	.g-btn--small{
		max-width: 128px;
	}
	.g-btn--small > a{
		padding: 7px 0;
		min-height: 30px;
	}
	.g-btn--small .g-btn__label{
		font-size: 10px;
	}
}
/* タイプ - center */
.g-btn--center{
	margin: 0 auto !important;
}
/* タイプ - arrow */
.g-btn--arrow > a{
	position: relative;
}
.g-btn--arrow > a::after{
	content: "";
	display: inline-block;
	--MASK: var(--ICON-arrow) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	aspect-ratio: 1/1;
	position: absolute;
}
.g-btn--arrow.g-btn--white > a::after{
	background-color: var(--TXT_COLOR_BASE);
}
.g-btn--arrow.g-btn--black > a::after{
	background-color: var(--WHITE);
}
.g-btn--arrow.g-btn--pink > a::after{
	background-color: var(--WHITE);
}
.g-btn--arrow.g-btn--yellow > a::after{
	background-color: var(--TXT_COLOR_BASE);
}
.g-btn--arrow.g-btn--purple > a::after{
	background-color: var(--WHITE);
}
@media screen and (min-width: 768px){
	.g-btn--arrow > a::after{
		width: 8px;
		top: 42%;
		right: 15px;
	}
}
@media screen and (max-width: 767px){
	.g-btn--arrow > a::after{
		width: 8px;
		top: 42%;
		right: 15px;
	}
}
/* タイプ - return */
.g-btn--arrow.g-btn--return a::after{
	transform: rotate(180deg) translateX(5px);
	right: unset;
}
@media screen and (min-width: 768px){
	.g-btn--arrow.g-btn--return a::after{
		left: 10px;
	}
}
@media screen and (max-width: 767px){
	.g-btn--arrow.g-btn--return a::after{
		left: 10px;
	}
}
/* タイプ - anchor */
.g-btn--arrow.g-btn--anchor > a::after,
.ecbn-selection-image-loading-more.g-btn--more > a::after{
	transform: rotate(90deg);
}
@media screen and (min-width: 768px){
	.g-btn--arrow.g-btn--anchor > a::after,
	.ecbn-selection-image-loading-more.g-btn--more > a::after{
		font-size: 12px;
		top: 43%;
		right: 16px;
	}
}
@media screen and (max-width: 767px){
	.g-btn--arrow.g-btn--anchor > a::after,
	.ecbn-selection-image-loading-more.g-btn--more > a::after{
		font-size: 10px;
		top: 40%;
		right: 15px;
	}
}
/* -----------------タブ切り替え共通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: var(--BLACK_OP50);
}
.popup-overlay.fixed{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
.popup-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--WHITE);
}
.popup-overlay .popup-box{
	overflow-y: scroll;
}
.popup-overlay button.closePopup{
	position: absolute;
	width: fit-content;
	display: flex;
	align-items: center;
	z-index: 999;
}
.popup-overlay button.closePopup::after{
	content: "";
	display: inline-block;
	--MASK: var(--ICON-close) no-repeat center center / 70%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--BLACK);
	aspect-ratio: 1/1;
}
@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{
		top: 16px;
		right: 12px;
		font-size: 14px;
		gap: 10px;
	}
	.popup-overlay button.closePopup::after{
		width: 20px;
	}
}
@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{
		top: 10px;
		right: 10px;
		font-size: 11px;
		gap: 3px;
	}
	.popup-overlay button.closePopup::after{
		width: 15px;
	}
}

/* -------------------g-slickArrow---------------------- */
[class*="g-slickArrow--"]{
	width: var(--SLICK_ARROW_SIZE);
  background-image: unset;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: inline-block;
	position: absolute;
	z-index: 2;
}
[class*="g-slickArrow--"]::before{
  content: "";
  display: inline-block;
  --MASK: var(--THIS_ICON) no-repeat center center;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  aspect-ratio: 1/1;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.g-slickArrow--prev{
	left: var(--SLICK_ARROW_TO_BODY);
}
.g-slickArrow--next{
	right: var(--SLICK_ARROW_TO_BODY);
	transform: rotate(180deg);
}
.g-slickArrow--white{
  background-color: var(--WHITE);
}
.g-slickArrow--white::before{
  background-color: var(--BLACK);
}
.g-slickArrow--black{
  background-color: var(--BLACK);
}
.g-slickArrow--black::before{
  background-color: var(--WHITE);
}
@media (hover: hover){
  [class*="g-slickArrow--"]{
    transition: .3s;
  }
	[class*="g-slickArrow--"]:hover{
		cursor: pointer;
	}
  .g-slickArrow--white:hover{
    background-color: var(--BLACK);
  }
  .g-slickArrow--white:hover::before{
    background-color: var(--WHITE);
  }
  .g-slickArrow--black:hover{
    background-color: var(--BLACK);
  }
  .g-slickArrow--black:hover::before{
    background-color: var(--WHITE);
  }
}
@media screen and (min-width: 768px){
	.g-hasSlickArrow{
		--SLICK_ARROW_SIZE: clamp( 30px, 3.2vw, 40px);
		--SLICK_ARROW_TO_BODY: calc(0px - var(--SLICK_ARROW_SIZE) + var(--SLICK_GAP) - 5px);
	}
	[class*="g-slickArrow--"]::before{
		--THIS_ICON: var(--ICON_SLIDE_ARROW);
		mask-size: 35%;
	}
}
@media screen and (max-width: 767px){
	.g-hasSlickArrow{
		--SLICK_ARROW_SIZE: 30px;
		--SLICK_ARROW_TO_BODY: calc(0px - var(--SLICK_ARROW_SIZE) + var(--SLICK_GAP) - 5px);
	}
	[class*="g-slickArrow--"]::before{
		--THIS_ICON: var(--ICON_SLIDE_ARROW);
		mask-size: 40%;
	}
}
/* -------------------g-slickDots-------------------- */
.slick:has(.g-slickDots){
	margin-bottom: 0;
}
.g-slickDots{
	display: flex;
	justify-content: center;
	gap: 8px;
}
.g-slickDots li{
	aspect-ratio: 1/1;
	position: relative;
}
.g-slickDots button{
	font-size: 0;
	background-color: var(--GRAY02);
	aspect-ratio: 1/1;
	border-radius: 50%;
	padding: 0;
	display: block;
}
.g-slickDots .slick-active button{
	background-color: var(--GRAY03)
}
@media screen and (min-width: 768px){
	.g-slickDots{
		margin-top: 20px;
	}
	.g-slickDots button{
		width: 8px;
	}
}
@media screen and (max-width: 767px){
	.g-slickDots li{
		margin-top: 15px;
	}
	.g-slickDots button{
		width: 6px;
	}
}
/* -------------------bgcolor-------------------- */
.bgcolor--beige{
	background-color: var(--BEIGE01);
}
/* -------------------is-targetBlank-------------------- */
.is-targetBlank{
	display: inline-block;
	position: relative;
	padding-right: 17px;
}
.is-targetBlank::after{
	content: "";
	display: inline-block;
	--MASK: var(--ICON_TARGET_BLANK) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	aspect-ratio: 1/1;
	width: 13px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.is-targetBlank--brown::after{
	background-color: var(--TXT_COLOR_BASE);
}
.is-targetBlank--white::after{
	background-color: var(--TXT_COLOR_WHITE);
}

/* -------------------FS商品カルーセル解除-------------------- */
.g-fsProductList{
	overflow: hidden;
}
.g-fsProductList .fs-c-productListCarousel{
	display: block;
}
.g-fsProductList .fs-c-productListCarousel__ctrl{
	display: none;
}
.g-fsProductList .fs-c-productListCarousel__list{
	overflow: visible;
	display: grid;
}
.g-fsProductList .fs-c-productListCarousel__list__itemTrack{
	display: contents;
}
.g-fsProductList .fs-c-productListCarousel__list__item{
	min-width: unset;
	max-width: unset;
	margin: 0;
}
.g-fsProductList .fs-c-productListItem__image__image{
	margin-bottom: 0;
}
.g-fsProductList .fs-c-productPrice--listed{
	margin-bottom: 5px !important;
}
.g-fsProductList .fs-c-productListCarousel__list__item{
	display: flex;
	flex-direction: column;
}
.g-fsProductList .fs-c-productListItem__imageContainer{
	order: 1;
}
.g-fsProductList .fs-c-productListItem__productName{
	order: 3;
	margin: 0 !important;
}
.g-fsProductList .fs-c-productMarks{
	order: 2;
}
.g-fsProductList .fs-c-productListItem__prices{
	order: 4;
	/* flex: 1; */
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.g-fsProductList .fs-c-productListItem__salesPeriod{
	order: 5;
}
.g-fsProductList .fs-c-productListItem__prices .fs-c-productPrice--listed{
	display: none;
}
.g-fsProductList .fs-c-productListItem__prices .fs-c-productPrice--listed+.fs-c-productPrice--selling *{
	color: var(--TXT_COLOR_BASE);
}
@media (hover: hover){
	.g-fsProductList .fs-c-productListItem__image a{
		display: block;
		overflow: hidden;
	}
	.g-fsProductList .fs-c-productListItem__image__image{
		transition: .3s;
	}
	.g-fsProductList .fs-c-productListItem__image a:hover .fs-c-productListItem__image__image{
		transform: scale(1.1);
	}
	.fr3-item__imageContainer{
		overflow: hidden;
	}
	.fr3-item__image{
		transition: .3s;
	}
	.fr3-item__link:hover .fr3-item__image{
		transform: scale(1.1);
	}
}
@media screen and (min-width: 1001px){
	.g-fsProductList .fs-c-productListCarousel__list,
	.t-ranking .fr3-productListStatic{
		grid-template-columns: repeat(5,1fr);
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px){
	.g-fsProductList .fs-c-productListCarousel__list,
	.t-ranking .fr3-productListStatic{
		grid-template-columns: repeat(4,1fr);
	}
	.g-fsProductList .fs-c-productListCarousel__list__item:nth-of-type(n+5),
	.t-ranking .fr3-productListStatic .fr3-item:nth-of-type(n+5){
		display: none;
	}
}
@media screen and (min-width: 768px){
	.g-fsProductList .fs-c-productListCarousel__list,
	.t-ranking .fr3-productListStatic{
		gap: var(--GAP_40) var(--GAP_20);
	}
}
@media screen and (max-width: 767px){
	.g-fsProductList .fs-c-productListCarousel__list,
	.t-ranking .fr3-productListStatic{
		grid-template-columns: repeat(3,1fr);
		row-gap: 30px;
	}
	.g-fsProductList .fs-c-productListCarousel__list__item>*:not(.fs-c-productListItem__imageContainer),
	.t-ranking :is(.fr3-item__productName, .fr3-item__productPrice){
		padding-inline: 8px;
	}
}
/* ランキング - 任意商品パーツ */
.t-ranking .fs-c-productListCarousel__list{
	counter-reset: original-counter;
}
.t-ranking .fs-c-productListCarousel__list__item{
	position: relative;
}
.t-ranking .fs-c-productListCarousel__list__item::before{
	display: block;
	content: ''counter(original-counter);
	counter-increment: original-counter;
	font-weight: 900;
	color: var(--WHITE);
	aspect-ratio: 38/45;
	background-color: var(--RANKING_OTHER);
	display: flex;
	justify-content: center;
	clip-path: polygon(100% 0, 100% 100%, 50% 78%, 0 100%, 0 0);
	position: absolute;
	top: 0;
	z-index: 2;
}
.t-ranking .fs-c-productListCarousel__list__item:nth-of-type(1)::before{
	background-color: var(--RANKING_1ST);
}
.t-ranking .fs-c-productListCarousel__list__item:nth-of-type(2)::before{
	background-color: var(--RANKING_2ND);
}
.t-ranking .fs-c-productListCarousel__list__item:nth-of-type(3)::before{
	background-color: var(--RANKING_3RD);
}
@media screen and (min-width: 768px){
	.t-ranking .fs-c-productListCarousel__list__item::before{
		width: 38px;
		font-size: 24px;
		left: 18px;
		padding-top: 5px;
	}
}
@media screen and (max-width: 767px){
	.t-ranking .fs-c-productListCarousel__list__item::before{
		width: 28px;
		font-size: 18px;
		left: 12px;
		padding-top: 3px;
	}
}
/* ランキング - AIレコメンド */
.t-ranking .fs-p-heading--lv2{
	display: none;
}
.t-ranking .fr3-productListStatic{
	counter-reset: original-counter;
	padding: 0;
}
.t-ranking .fr3-item{
	position: relative;
}
.t-ranking .fr3-item::before{
	display: block;
	content: ''counter(original-counter);
	counter-increment: original-counter;
	font-weight: 900;
	color: var(--WHITE);
	aspect-ratio: 38/45;
	background-color: var(--RANKING_OTHER);
	display: flex;
	justify-content: center;
	clip-path: polygon(100% 0, 100% 100%, 50% 78%, 0 100%, 0 0);
	position: absolute;
	top: 0;
	z-index: 2;
}
.t-ranking .fr3-item:nth-of-type(1)::before{
	background-color: var(--RANKING_1ST);
}
.t-ranking .fr3-item:nth-of-type(2)::before{
	background-color: var(--RANKING_2ND);
}
.t-ranking .fr3-item:nth-of-type(3)::before{
	background-color: var(--RANKING_3RD);
}
@media screen and (min-width: 768px){
	.t-ranking .fr3-item::before{
		width: 38px;
		font-size: 24px;
		left: 18px;
		padding-top: 5px;
	}
}
@media screen and (max-width: 767px){
	.t-ranking .fr3-item::before{
		width: 28px;
		font-size: 18px;
		left: 12px;
		padding-top: 3px;
	}
}
/* -------------------商品タブ-------------------- */
.tab-wrap--product ul li{
	list-style: none;
}
.tab-wrap--product .tab-nav{
	position: relative;
}
.tab-wrap--product .tab-btn.show{
	border-color: var(--COLOR);
}
.tab-wrap--product .tab-btn span{
	display: block;
	color: var(--COLOR);
	font-weight: 700;
	border: 3px solid var(--COLOR);
	border-bottom: none;
	border-radius: 17px 17px 0 0;
	text-align: center;
}
.tab-wrap--product .tab-btn.show span{
	background-color: var(--COLOR);
	color: var(--WHITE);
}
.tab-wrap--product .tab-btn.show::after{
	content: "";
	display: inline-block;
	background-color: var(--COLOR);
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: 0;
	left: 0;
}
@media (hover: hover){
	.tab-wrap--product .tab-btn{
		transition: .3s;
	}
	.tab-wrap--product .tab-btn:hover{
		border-color: var(--COLOR);
	}
	.tab-wrap--product .tab-btn span{
		transition: .3s;
	}
	.tab-wrap--product .tab-btn:hover span{
		background-color: var(--COLOR);
		color: var(--WHITE);
	}
}
@media screen and (min-width: 768px){
	.tab-wrap--product .tab-nav{
		gap: 10px;
		margin-bottom: var(--GAP_30);
	}
	.tab-wrap--product .tab-btn{
		width: 160px;
		flex: unset;
		border-bottom: 8px solid var(--WHITE);
	}
	.tab-wrap--product .tab-btn span{
		font-size: 26px;
		padding-block: 10px;
	}
}
@media screen and (max-width: 767px){
	.tab-wrap--product .tab-nav{
		width: 97%;
		margin: 0 auto 20px;
		gap: 7px;
	}
	.tab-wrap--product .tab-btn{
		border-bottom: 7px solid var(--WHITE);
	}
	.tab-wrap--product .tab-btn span{
		font-size: 20px;
		padding-block: 8px;
	}
}
/* ランキング */
@media screen and (max-width: 767px){
	.t-ranking .g-fsProductList .fs-c-productListCarousel__list,
	.t-ranking .fr3-productListStatic{
		display: flex;
		overflow-x: auto;
		white-space: nowrap;
		-ms-overflow-style: none;/* IE, Edge 対応 */
		scrollbar-width: none;/* Firefox 対応 */
		gap: 0;
	}
	.t-ranking .g-fsProductList .fs-c-productListCarousel__list::-webkit-scrollbar,
	.t-ranking .fr3-productListStatic::-webkit-scrollbar{
		display: none;/* Chrome, Safari 対応 */
	}
	.t-ranking .g-fsProductList .fs-c-productListCarousel__list__item,
	.t-ranking .fr3-productListStatic .fr3-item{
		flex: 0 0 auto;
		--WIDTH: 140px;
		min-width: var(--WIDTH);
		max-width: var(--WIDTH);
	}
	.t-ranking .g-fsProductList .fs-c-productName__name,
	.t-ranking .fr3-item__productName{
		white-space: wrap;
	}
}

/* -------------------------g-brand-------------------------- */
.g-brand__list{
  display: flex;
  flex-wrap: wrap;
  gap: var(--GAP);
}
.g-brand__list li a{
  display: grid;
  aspect-ratio: 1/1;
  overflow: hidden;
  grid-template-rows: 124fr 60fr;
}
.g-brand__list li a::before{
  content: "";
  display: inline-block;
  flex: 1;
  background: var(--IMAGE) no-repeat center center / cover;
  width: 100%;
}
.g-brand__list li span{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--WHITE);
	height: 100%;
}
.g-brand__list li span img{
  width: auto;
}
@media (hover: hover){
  .g-brand__list li a{
    transition: 0.3s;
  }
  .g-brand__list li a:hover{
    transform: scale(1.05);
  }
}
@media screen and (min-width: 1001px){
  .g-brand__list li{
    flex: 1;
  }
}
@media screen and (max-width: 1000px){
  .g-brand__list{
    max-width: 700px;
    margin-inline: auto;
  }
  .g-brand__list li{
    flex: unset;
    width: calc((100% - var(--GAP)*2)/3);
  }
}
@media screen and (min-width: 768px){
  .g-brand__list{
    --GAP: var(--GAP_20);
  }
  .g-brand__list li a{
    border-radius: 40px;
  }
  .g-brand__list li span img{
    height: 50%;
  }
}
@media screen and (max-width: 767px){
  .g-brand__list{
    --GAP: 8px;
  }
  .g-brand__list li a{
    border-radius: 20px;
  }
  .g-brand__list li span img{
    height: 50%;
  }
}


/* -------------------区切り線-------------------- */
.g-separatorLine{
	background: var(--LINE_REPEAT_LINE) repeat-x center left / 8px 1px;
	height: 8px;
	width: var(--INNER_WIDTH);
	max-width: var(--PC_MAX_WIDTH);
	margin: 0 auto var(--GENERALSEC);
	position: relative;
}
.g-separatorLine::before{
	content: "";
	display: inline-block;
	background: var(--WHITE) var(--LINE_RIBON) no-repeat center center / 90%;
	aspect-ratio: 30/16;
	width: 18px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}


/* --------------------閲覧履歴-------------------- */
[data-frame-id="top_history"] :is(.fs-p-heading--lv2, .fr3-item__productPrice, .fr3-item__productName){
	display: none;
}
[data-frame-id="top_history"] .fr3-productListStatic{
	padding-inline: 0;
}
[data-frame-id="top_history"] .fr3-productListStatic{
	display: flex;
	overflow-x: auto;
	white-space: nowrap;
}
[data-frame-id="top_history"] .fr3-item{
	flex: 0 0 auto;
	min-width: var(--WIDTH);
	max-width: var(--WIDTH);
}
@media (hover: hover){
	[data-frame-id="top_history"] .fr3-item__link{
		overflow: hidden;
	}
	[data-frame-id="top_history"] .fr3-item__image{
		transition: .3s;
	}
	[data-frame-id="top_history"] .fr3-item__link:hover .fr3-item__image{
		transform: scale(1.1);
	}
}
@media screen and (min-width: 768px){
	[data-frame-id="top_history"] .fr3-item{
		--WIDTH: 132px;
	}
	[data-frame-id="top_history"] .fr3-productListStatic{
		padding: 0 0 10px 0 !important;
	}
	[data-frame-id="top_history"] .fr3-productListStatic::-webkit-scrollbar{
		height: 5px;
	}
	[data-frame-id="top_history"] .fr3-productListStatic::-webkit-scrollbar-thumb{
		background-color: var(--GRAY01);
	}
	[data-frame-id="top_history"] .fr3-productListStatic::-webkit-scrollbar-thumb:hover{
		cursor: grab;
	}
}
@media screen and (max-width: 767px){
	[data-frame-id="top_history"] .fr3-productListStatic{
		gap: 5px;
		padding: 0 0 0 calc((100% - var(--INNER_WIDTH)) / 2) !important;
		-ms-overflow-style: none;/* IE, Edge 対応 */
		scrollbar-width: none;/* Firefox 対応 */
	}
	[data-frame-id="top_history"] .fr3-productListStatic::-webkit-scrollbar{
		display: none;/* Chrome, Safari 対応 */
	}
	[data-frame-id="top_history"] .fr3-item{
		--WIDTH: 80px;
	}
}