@charset "utf-8";
/* リセット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(--fw-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(--fw-base);
	font-feature-settings: "palt" 1;
	letter-spacing: var(--ls-default);
	width:100%;
	color: var(--txt-c-base);
	position:relative;
	z-index: 0;
	overflow-x: clip;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--txt-c-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 :where(
	button,
	input[type="button"],
	input[type="submit"],
	input[type="text"],
	input[type="image"],
	select
){
	background-color: unset;
	color: var(--txt-c-base);
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	border: none;
}
.formReset :where(
	input[type="text"],
	input[type="text"]::placeholder
){
	font-family: var(--ff-base);
}
.formReset :where(input[type="text"]){
	color: var(--txt-c-base);
}
.formReset :where(input[type="text"]::placeholder){
	color: var(--txt-c-addon);
}
time{
	font-family: var(--ff-noto);
}
/* フォント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(--sec-spc);
}
.g-mgb{
	margin-bottom: var(--sec-spc);
}
.g-pd{
	padding-block: var(--sec-spc);
}
.g-pdt{
	padding-top: var(--sec-spc);
}
.g-pdb{
	padding-bottom: var(--sec-spc);
}
.g-mgt--half{
	margin-top: var(--sec-spc-half);
}
.g-mgb--half{
	margin-bottom: var(--sec-spc-half);
}
.g-pd--half{
	padding-block: var(--sec-spc-half);
}
.g-pdt--half{
	padding-top: var(--sec-spc-half);
}
.g-pdb--half{
	padding-bottom: var(--sec-spc-half);
}
/* グリッド */
.grid {
	display: grid;
	grid-template-columns: repeat(var(--grid-cols, 1), minmax(var(--grid-min-size, 0), 1fr));
	gap: var(--grid-gap, 0);
}
@media screen and (min-width: 768px){
	.grid{
		--grid-cols: var(--grid-cols-pc, 1);
		--grid-gap: var(--grid-gap-pc, 0);
	}
}
@media screen and (max-width: 767px){
	.grid{
		--grid-cols: var(--grid-cols-sp, 1);
		--grid-gap: var(--grid-gap-sp, 0);
	}
}
/* スライダー読み込みまで非表示 */
.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;
}
/* 文字間 */
::placeholder,
input[type="text"],
[class*="ttl"],
[class*="lead"],
[class*="heading"],
a{
	letter-spacing: var(--ls-default);
}
/* テキスト行間文字間 */
[class*="txt"]{
	letter-spacing: var(--ls-default);
}
/* スクロールバー消す */
.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: 16/9;
}
/* 改行用 */
.dib{
	display: inline-block;
}
/* 非表示 */
.displaynone{
	display: none;
}
/* 親要素超えて幅100% */
.full-width{
	width: 100vw;
	--oya: calc(50% - 50vw);;
	margin-left: var(--oya);
	margin-right: var(--oya);
}
a:hover{
	color: var(--txt-c-base);
}
@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;
}
.g-inner,
.g-inner--l,
.g-inner--m,
.g-inner--s,
.g-inner--ss{
	width: var(--inner-w);
	margin-inline: auto;
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 120px;
	}
	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--pc{
		width: var(--inner-w);
		margin-inline: auto;
	}
	.g-inner,
	.g-inner--m,
	.g-inner--pc{
		max-width: var(--pc-maw-md);
	}
	.g-inner--l{
		max-width: var(--pc-maw-lg);
	}
	.g-inner--s{
		max-width: var(--pc-maw-sm);
	}
	.g-inner--ss{
		max-width: var(--pc-maw-ss);
	}
	.g-inner--pcHasSlickGap{
		--inner-adjust: calc(var(--slick-gap) * 2);
		width: calc(var(--inner-w) + var(--inner-adjust));
		max-width: calc(var(--pc-maw-md) + var(--inner-adjust));
		margin-inline: auto;
	}
	.g-pd--halfPcOnly{
		padding-block: var(--sec-spc-half);
	}
	.sp{
		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; }
	.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: 90px;
	}
	body{
		font-size: var(--fz-14-const);
		line-height: 1.6;
	}
	.g-inner--sp{
		width: var(--inner-w);
		margin-inline: auto;
	}
	.g-pd--halfPcOnly{
		padding-block: var(--sec-spc);
	}
	.pc{
		display: none !important;
	}
	.sp-scroll--y{
		overflow-y: scroll;
		overflow-x: auto;
	}
	.sp-scroll--x{
		overflow-x: scroll;
		overflow-y: auto;
		padding-inline: calc((100% - var(--inner-w)) / 2);
	}
	.tategaki--sp{
		writing-mode: vertical-rl;
	}
	.formReset input[type="text"],
	.formReset input[type="text"]::placeholder{
		font-size: 16px;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
/* hd-top */
:root{
	--header-top-height-pc: 60px;
	--header-top-height-sp: 50px;
	--header-top-height-sp-scroll: 30px;
}
.hd-top{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--c-white);
	transition: .2s;
}
@media screen and (min-width: 768px){
	body{
		padding-top: calc(var(--header-top-height-pc) + var(--header-copy-height) + var(--header-brandLogo-height-pc));
	}
	body:not(:has(.hd-noticeContainer)){
		padding-top: calc(var(--header-top-height-pc) + var(--header-brandLogo-height-pc));
	}
	.hd-top{
		height: var(--header-top-height-pc);
		z-index: 99;
	}
	.hd-top__box{
		display: flex;
		align-items: center;
		height: 100%;
	}
}
@media screen and (max-width: 767px){
	body{
		padding-top: calc(var(--header-top-height-sp) + var(--header-copy-height) + var(--header-brandLogo-height-sp));
	}
	body:not(:has(.hd-noticeContainer)){
		padding-top: calc(var(--header-top-height-sp) + var(--header-brandLogo-height-sp));
	}
	.hd-top{
		height: var(--header-top-height-sp);
		z-index: 999;
	}
	body.scroll .hd-top{
		height: var(--header-top-height-sp-scroll);
	}
	.hd-top__box{
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
	}
}

/* hd-top */
@media screen and (min-width: 768px){
	.hd-groupLogo{
		width: 226px;
	}
}
@media screen and (max-width: 767px){
	.hd-groupLogo{
		width: 226px;
		transition: .5s;
	}
	body.scroll .hd-top .hd-groupLogo{
		width: 150px;
	}
}


/* ヘッダーお知らせ */
:root{
	--header-copy-height: 30px;
	--header-copy-height-sp-scroll: 20px;
}
.hd-noticeContainer{
	height: var(--header-copy-height);
	overflow: hidden;
	background-color: var(--bd-c-gray);
	position: fixed;
	width: 100%;
	left: 0;
	z-index: 99;
}
.hd-notice{
	font-weight: 400;
}
@media (hover: hover){
	.hd-notice:hover{
		background-color: var(--txt-c-emphasis);
		color: var(--c-white);
		opacity: 1;
	}
}
@media screen and (min-width: 768px){
	.hd-noticeContainer{
		top: var(--header-top-height-pc);
	}
	.hd-notice{
		text-align: center;
		font-size: var(--fz-12);
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
@media screen and (max-width: 767px){
	.hd-noticeContainer{
		overflow: hidden;
		top: var(--header-top-height-sp);
	}
	body.scroll .hd-noticeContainer{
		top: var(--header-top-height-sp-scroll);
		height: var(--header-copy-height-sp-scroll);
	}
	.hd-notice {
		display: flex;
		height: 100%;
		align-items: center;
		width: max-content;
	}
	.hd-notice__marquee{
		display: flex;
		animation: marquee-scroll 40s linear infinite;
		white-space: nowrap;
	}
	.hd-notice__marquee p{
		padding-right: 20px;
	}
	@keyframes marquee-scroll {
		0% { transform: translateX(0); }
		100% { transform: translateX(-100%); }
	}
	.hd-notice p{
		font-size: 12px;
		-webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
	transition: .3s;
	}
	body.scroll .hd-notice p{
		font-size: 10px;
	}
}
/* hd-brandLogo */
:root{
	--header-brandLogo-height-pc: 70px;
	--header-brandLogo-height-sp: 55px;
}
.hd-brandLogo{
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid var(--c-gray-100);
	position: fixed;
	width: 100%;
	background-color: var(--c-white);
	left: 0;
	z-index: 99;
}
body.scroll .hd-brandLogo{
	box-shadow: var(--bxsd-bottom);
}
.hd-brandLogo__item img{
	width: auto;
}
@media screen and (min-width: 768px){
	.hd-brandLogo{
		height: var(--header-brandLogo-height-pc);
		top: calc(var(--header-top-height-pc) + var(--header-copy-height));
		transition: .2s;
		gap: 20px;
	}
	.hd-brandLogo__item img{
		height: 35px;
		transition: .2s;
	}
	body:not(:has(.hd-noticeContainer)) .hd-brandLogo{
		top: var(--header-top-height-pc);
	}
	body.scroll .hd-brandLogo{
		height: 50px;

	}
	body.scroll .hd-brandLogo .hd-brandLogo__item img{
		height: 25px;
	}
}
@media screen and (max-width: 767px){
	.hd-brandLogo{
		height: var(--header-brandLogo-height-sp);
		top: calc(var(--header-top-height-sp) + var(--header-copy-height));
		gap: 15px;
	}
	body.scroll .hd-brandLogo{
		top: calc(var(--header-top-height-sp-scroll) + var(--header-copy-height-sp-scroll));
		height: 35px;
	}
	body:not(:has(.hd-noticeContainer)) .hd-brandLogo{
		top: var(--header-top-height-sp);
	}
	body:not(:has(.hd-noticeContainer)).scroll .hd-brandLogo{
		top: var(--header-top-height-sp-scroll);
	}
	.hd-brandLogo__item img{
		height: 35px;
		transition: .5s;
	}
	body.scroll .hd-brandLogo__item img{
		height: 25px;
	}
}

/* ナビ */
.g-navContainer{
	position: relative;
}
.g-nav{
	display: flex;
	justify-content: center;
}
.g-nav__item{
	font-weight: 700;
	display: block;
}
.g-nav__item--sale{
	color: var(--txt-c-emphasis);
}
.g-nav__item--sale:visited{
	color: var(--txt-c-emphasis);
}
.hd-dropdown{
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	transition: .3s;
	padding-top: var(--this-padding-top);
	position: absolute;
}
.hd-dropdown.is-show{
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	z-index: 99;
}
.hd-dropdown__box{
	background-color: var(--c-white);
}
.hd-dropdown__list li a{
	display: block;
}
.hd-dropdown__list li:not(:last-child) a{
	border-bottom: 1px solid var(--bd-c-gray);
}
@media screen and (min-width: 768px){
	.g-navContainer{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: var(--spc-50);
		padding-block: var(--spc-20);
	}
	.g-nav{
		gap: var(--spc-50);
	}
	.g-nav li{
		position: relative;
	}
	.g-nav__item{
		font-size: var(--fz-16);
	}
	.hd-searchForm.formReset{
		width: clamp( 200px, 22vw, 250px);
	}
	.hd-searchForm.formReset input[type="text"]{
		padding-inline: 24px 40px;
		background-color: var(--bg-c-gray);
		border-radius: 23px;
		min-height: 35px;
	}
	.hd-searchForm.formReset input[type="text"],
	.hd-searchForm.formReset input[type="text"]::placeholder{
		font-size: var(--fz-12);
	}
	.hd-searchForm.formReset button[type="submit"]{
		right: 10px;
	}
	.hd-dropdown{
		left: 50%;
		transform: translateX(-50%);
		width: 150px;
		--this-padding-top: 27px;
    top: calc(100% - var(--this-padding-top) + 15px);
	}
	.hd-dropdown__box{
		border-radius: var(--bdrs-md);
		position: relative;
		padding: var(--spc-10) var(--spc-20);
		box-shadow: var(--bxsd-default);
	}
	.hd-dropdown__box::before{
		content: "";
		display: inline-block;
		background-color: var(--c-white);
		aspect-ratio: 1;
		width: 20px;
		position: absolute;
		bottom: 100%;
		left: 50%;
		transform: translateX(-50%);
		box-shadow: var(--bxsd-default);
		clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	}
	.hd-dropdown__list li a{
		padding-block: 7px;
		font-size: var(--fz-14);
	}
}
@media screen and (max-width: 767px){
	.g-navContainer{
		padding-block: 15px;
		position: relative;
	}
	.g-nav{
		gap: 20px;
		position: relative;
		z-index: 2;
	}
	.g-nav__item{
		font-size: 12px;
	}
	.hd-dropdown{
		width: 100%;
		padding-top: 0;
		display: grid;
		grid-template-rows: 0fr;
		opacity: 0;
		visibility: visible;
		pointer-events: none;
		z-index: -1;
		transition: grid-template-rows .35s ease, opacity .35s ease;
		left: 0;
		top: calc(100% + 13px);
	}
	.hd-dropdown.is-show{
		grid-template-rows: 1fr;
		opacity: 1;
		pointer-events: auto;
		z-index: 99;
	}
	.hd-dropdown__box{
		min-height: 0;
		overflow: hidden;
		box-shadow: inset 0 10px 10px -10px rgba(0,0,0,.35);
		padding-inline: 20px;
	}
	.hd-dropdown__list li a{
		display: block;
		padding: 15px;
	}
}

/* セール */
.is-nowSale{
	display: none;
}


/* .g-userContainer */
.g-user{
	display: flex;
	height: 100%;
}
.g-user li{
	flex: 1;
	position: relative;
}
.g-user li > span{
	height: 100%;
}
.g-user__item{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1/1;
	gap: 2px;
}
.g-user__item::before{
	content: '';
	--this-mask: var(--this-icon) no-repeat center center / var(--this-size,100%);
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--txt-c-base);
	aspect-ratio: 1/1;
	width: 20px;
	display: block;
}
.g-user__item::after{
	display: block;
	text-align: center;
	content: attr(aria-label);
	font-family: var(--ff-en);
	font-size: 8px;
	color: var(--txt-c-base);
	letter-spacing: 0.05em;
	position: absolute;
	white-space: nowrap;
	left: 50%;
	transform: translateX(-50%);
	top: 105%;
	opacity: 0;
	transition: .3s;
}
@media (hover: hover){
	.g-user__item:hover{
		opacity: 1;
	}
	.g-user__item:hover::after{
		opacity: 1;
	}
}
@media screen and (min-width: 768px){
	.g-userContainer{
		flex: 1;
		display: flex;
		justify-content: flex-end;
	}
	.g-user{
		gap: var(--spc-40);
	}
	.g-user__item{
		width: 20px;
	}
	.g-user__item .fs-client-cart-count{
		top: -8px;
		right: -8px;
	}
	.g-user__item.active::after{
		opacity: 1;
	}
}
@media screen and (max-width: 767px){
	:root{
		--g-menu-width: 345px;
		--g-menu-height: 60px;
		--g-menu-bottom: 10px;
	}
	.g-userContainer{
		position: fixed;
		width: var(--g-menu-width);
		background-color: var(--bg-c-gray);
		left: 50%;
		transform: translateX(-50%);
		bottom: var(--g-menu-bottom);
		height: var(--g-menu-height);
		z-index: 1000;
		box-shadow: var(--bxsd-default);
	}
	.g-user li:not(:last-child)::after{
		content: "";
		display: inline-block;
		background: var(--bd-c-gray);
		width: 1px;
		height: calc(100% - 20px);
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.g-user__item{
		width: 100%;
		height: 100%;
	}
	.g-user__item.active::before{
		--this-mask: var(--this-icon-active);
	}
	.g-user__item .fs-client-cart-count{
		top: 20%;
		left: 55%;
	}
}

/* 検索フォーム */
.g-searchForm.formReset{
	position: relative;
}
.g-searchForm.formReset input[type="text"]{
	width: 100%;
}
.g-searchForm.formReset button[type="submit"]{
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	--this-mask: var(--data-icon-search) no-repeat center center / var(--this-mask-size);
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--txt-c-base);
	aspect-ratio: 1/1;
	--this-mask-size: 70%;
	height: 100%;
}
.g-hotword{
	display: flex;
	flex-wrap: wrap;
}
.g-hotword li a::before{
	content: '#';
	margin-right: 2px;
}

/* ハンバーガー */
.fn-close{
	display: block;
	aspect-ratio: 1/1;
	width: 40px;
	position: fixed;
	top: 0;
	right: 0;
	background-color: var(--c-white);
	margin-left: auto;
}
.fn-close span{
	display: block;
	aspect-ratio: 1/1;
	width: 100%;
	--this-mask: var(--data-icon-menu-close) no-repeat center center / 50%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--txt-c-base);
}
.fn-box{
	background-color: var(--bg-c-gray);
}
.fn-box .g-inner{
	max-width: 320px;
	margin-inline: auto;
}
.fn-logo{
	width: 170px;
	margin-inline: auto;
	padding-block: 30px;
}
.fat-nav__wrapper .g-btn{
	max-width: 300px;
}
.fat-nav--menu .g-searchForm{
	max-width: 300px;
	margin: 20px auto 40px;
}
.fat-nav__wrapper .g-searchForm input[type="text"]{
	background-color: var(--c-white);
	border-radius: 40px;
}
.fat-nav__wrapper .g-searchForm input[type="text"]::placeholder{
	color: var(--txt-c-addon);
	font-size: 13px;
}
.tab-wrap--fatNav{
	background-color: var(--c-white);
	padding-block: 30px;
}
.tab-wrap--fatNav .tab-nav{
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}
.tab-wrap--fatNav .tab-btn{
	flex: unset;
	position: relative;
	font-weight: 700;
}
.tab-wrap--fatNav .tab-btn:not(:last-child)::after{
	content: "";
	display: inline-block;
	background-color: var(--c-gray-300);
	width: 1px;
	height: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.tab-wrap--fatNav .tab-btn:nth-of-type(1){
	padding-right: 20px;
	font-size: 18px;
	line-height: 1.5;
}
.tab-wrap--fatNav .tab-btn:nth-of-type(2){
	padding-inline: 10px;
}
.tab-wrap--fatNav .tab-btn:nth-of-type(3){
	padding-left: 20px;
}
.tab-wrap--fatNav .tab-btn,
.tab-wrap--fatNav .tab-btn img{
	opacity: 0.5;
	height: 30px;
	width: auto;
}
.tab-wrap--fatNav .tab-btn.show,
.tab-wrap--fatNav .tab-btn.show img{
	opacity: 1;
}
.fn-nav__lv1{
	margin-top: 40px;
}
.fn-nav__lv1 >li+li{
	margin-top: 10px;
}
.fn-nav__lv1 >li:not(:last-child) .fn-nav__lv1__item{
	border-bottom: 1px solid var(--txt-c-base);
}
.fn-nav__lv1__item{
	display: block;
	font-weight: 700;
	font-size: 20px;
	border-bottom: 1px solid var(--txt-c-base);
	padding: 10px;
}
.fn-nav__lv1__item--sale{
	color: var(--txt-c-emphasis);
}
.fn-nav__lv2 >li .fn-nav__lv2__item{
	border-bottom: 1px solid var(--bd-c-gray);
}
.fn-nav__lv2__item{
	display: block;
	font-weight: 500;
	font-size: 16px;
	padding: 10px 20px;
	position: relative;
}
.fn-nav__lv2__item::after{
	content: "";
	display: inline-block;
	--this-mask: var(--data-icon-btn-arrow) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--txt-c-base);
	aspect-ratio: 1/1;
	width: 12px;
	position: absolute;
	top: 20px;
	right: 20px;
	transition: .2s;
}
p.fn-nav__lv2__item::after{
	transform: rotate(90deg);
}
p.fn-nav__lv2__item.is-active::after{
	transform: rotate(-90deg);
}
.fn-nav__lv3{
	display: none;
}
.fn-nav__lv3__item{
	display: block;
	font-weight: 500;
	font-size: 16px;
	padding: 10px 30px;
	background-color: var(--bg-c-gray);
}
.fn-nav__lv3 >li .fn-nav__lv3__item{
	border-bottom: 1px solid var(--bd-c-gray);
}
.fn-menu{
	display: grid;
	grid-template-columns: 18fr 15fr;
	align-items: flex-start;
	padding-block: 40px;
}
.fn-menu__list{
	display: grid;
	gap: 5px;
}
.fn-menu__list li:nth-of-type(2){
	margin-bottom: 10px;
}
.fn-menu__list--left li:nth-last-child(2){
	margin-top: 10px;
}
.fn-menu__list li a{
	font-size: 12px;
	font-weight: 500;
}
.fn-menu__list li a::before{
	content: '•';
	display: inline-block;
	margin-right: 5px;
}
.fat-nav__wrapper .ft-brandGuide > li{
	grid-template-columns: 120px 1fr;
	gap: 9px;
}
.fat-nav__wrapper .g-sns{
	gap: 20px;
	justify-content: flex-end;
}
.fat-nav__wrapper .g-sns li{
	width: 28px;
}
@media (hover: hover){
	.fn-nav__lv2__item{
		transition: .3s;
	}
	.fn-nav__lv2__item:hover{
		cursor: pointer;
		background-color: var(--bg-c-gray);
	}
}
@media screen and (min-width: 768px){
	body.no-scroll{
		overflow: hidden;
	}
	body.no-scroll::before {
		background: var(--c-black-op50);
		content: '';
		display: block;
		height: 100%;
		position: fixed;
		right: 0;
		top: 0;
		width: 100%;
		z-index: 998;
		transition: all 0.3s;
		opacity: 0;
		animation: var(--anime-fade-in);
	}
	.fat-nav {
		max-width: 375px;
		top: 0;
		right: -150%;
		z-index: 999;
		position: fixed;
		display: none;  
		width: 80%;
		height: 100%;
		background: #fff;   
		transform: scale(1);
		transition-property: transform;
		transition-duration: 0s;
		overflow-y: auto;
		overflow-x: hidden;
		transition: all 0.5s;
		--FAT_NAV_PADDING_INLINE: 15px;
	}
	.fat-nav__wrapper {
		height: 100%;
		max-width:1100px;
		box-sizing: border-box;
	}
	.fat-nav.active{
		right: 0;
		transform: scale(1);
		transition: all 0.8s;
	}
	.fn-box{
		padding-bottom: 90px;
	}
}
@media screen and (max-width: 767px){
	body:has(.fat-nav--search.active).no-scroll{
		overflow: hidden;
	}
	body:has(.fat-nav--search.active).no-scroll::before {
		background: var(--c-black-op50);
		content: '';
		display: block;
		height: 100%;
		position: fixed;
		right: 0;
		top: 0;
		width: 100%;
		z-index: 998;
		-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-fade-in);
	}
	.fat-nav{
		z-index: 99;
		position: fixed;
		display: none;  
		width: 100%;
		background: #fff;
		transform: scale(1);
		transition-property: transform;
		transition-duration: 0.4s;
		overflow-y: auto;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
	}
	.fat-nav--menu{
		height: 100%;
		top: 0;
		left: 0;
	}
	.fat-nav--menu.active {
		transform: scale(1);
	}
	.fat-nav--search{
		width: var(--g-menu-width);
		bottom: calc(var(--g-menu-bottom) + var(--g-menu-height) + 12px);
		left: 50%;
		transform: translate(-50%, 100%);
		height: fit-content;
		min-height: 112px;
		z-index: 999;
	}
	.fat-nav--search.active {
		transform: translate(-50%, 0%);
	}
	.fat-nav__wrapper {
		height: 100%;
		max-width:1100px;
		box-sizing: border-box;
	}
	.fat-nav--search .fat-nav__wrapper{
		padding: 20px;
	}
	.fn-box{
		padding-block: 70px 100px;
	}
}

/* .fat-nav--search */
@media screen and (max-width: 767px){
	.g-userSearch{
		display: grid;
		gap: 10px;
	}
	.g-userSearch .g-searchForm.formReset{
		width: 100%;
	}
	.g-userSearch .g-searchForm.formReset input[type="text"]{
		padding-inline: 24px 40px;
		background-color: var(--bg-c-gray);
		border-radius: 23px;
		min-height: 40px;
	}
	.g-userSearch .g-searchForm.formReset button[type="submit"]{
		right: 10px;
		--this-mask-size: 55%;
	}
	.g-userSearch .g-hotword{
		gap: 3px 15px;
	}
	.g-hotword li a{
		letter-spacing: 0;
		font-size: 12px;
	}
}




/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */

/* ページトップ */
.pagetop{
	position: fixed;
	z-index: 99;
}
.pagetop::before{
	content: "";
	display: inline-block;
	background-color: var(--c-white);
	aspect-ratio: 1;
	width: 90%;
	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%;
	--this-mask: var(--data-icon-page-top) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--txt-c-base);
	position: relative;
	z-index: 2;
}
@media screen and (min-width: 768px){
	.pagetop{
		width: 50px;
		bottom: 20px;
		right: 3%;
	}
}
@media screen and (max-width: 767px){
	.pagetop{
		width: 35px;
		bottom: 80px;
		right: 10px;
	}
}

/* footerarea */
#footerarea{
	padding-top: var(--sec-spc);
}
.ft-body{
	margin-bottom: var(--sec-spc);
}
.ft-logo{
	margin: 0 auto var(--sec-spc);
}
.ft-brandGuide > li{
	display: grid;
}
.ft-brandGuide > li:not(:last-child){
	border-bottom: 1px solid var(--bd-c-gray);
}
.g-sns{
	display: flex;
}
.g-sns li a{
	display: block;
	content: "";
	display: inline-block;
	--this-mask: var(--this-icon) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--txt-c-base);
	aspect-ratio: 1;
	width: 100%;
}
.ft-copy{
	text-align: center;
	padding-bottom: 20px;
}
@media (hover: hover){
	.ft-menu__list li a:hover{
		opacity: 0.5;
	}
}
@media screen and (min-width: 768px){
	.ft-logo{
		width: 197px;
	}
	.ft-body{
		display: grid;
		grid-template-columns: 5fr 6fr;
		align-items: flex-start;
		gap: var(--spc-90);
	}
	.ft-menu{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		align-items: flex-start;
		gap: var(--spc-40);
	}
	.ft-menu__list{
		display: grid;
		gap: 5px;
	}
	.ft-menu__list li:nth-of-type(2){
		margin-bottom: 10px;
	}
	.ft-menu__list li a{
		font-size: var(--fz-14);
		display: block;
		position: relative;
		padding-left: var(--spc-15);
	}
	.ft-menu__list li a:before{
		content: '・';
		position: absolute;
		top: 0;
		left: 0;
	}
	.ft-menu__list:last-child li:nth-last-child(2){
		margin-top: var(--spc-40);
	}
	.ft-brandGuide > li{
		grid-template-columns: 170px 1fr;
		align-items: center;
		gap: var(--spc-60);
		padding-left: var(--spc-20);
	}
	.ft-brandGuide > li:first-child{
		padding-bottom: var(--spc-20);
		margin-bottom: var(--spc-30);
	}
	.ft-sns{
		gap: var(--spc-30);
	}
	.ft-sns li{
		width: 28px;
	}
	.ft-brandGuide__logo--jantzen{
		width: 50%;
		margin-inline: auto;
	}
	.ft-copy{
		font-size: 14px;
	}
}
@media screen and (max-width: 767px){
	.ft-logo{
		width: 150px;
	}
	.ft-brandGuide > li{
		grid-template-columns: 124px 1fr;
		align-items: center;
		gap: 20px;
		padding-left: 10px;
	}
	.ft-brandGuide > li:first-child{
		padding-bottom: 20px;
		margin-bottom: 30px;
	}
	.ft-sns{
		justify-content: flex-end;
		gap: 20px;
	}
	.ft-sns li{
		width: 28px;
	}
	.ft-brandGuide__logo--jantzen{
		width: 50%;
		margin-inline: auto;
	}
	.ft-copy{
		padding-bottom: calc(var(--g-menu-bottom) + var(--g-menu-height) + 12px);;
	}
}


/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -------------------見出し-------------------- */
.g-heading--center > span{
	text-align: center;
}
.g-heading{
	position: relative;
}
.g-heading::after{
	content: "";
	display: inline-block;
	background-color: var(--txt-c-emphasis);
	width: 32px;
	height: 2px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.g-heading__en{
	display: block;
	font-family: var(--ff-en);
	letter-spacing: 0.08em;
	line-height: 1;
}
.g-heading__ja{
	display: block;
	font-weight: 500;
}
@media screen and (min-width: 768px){
  .g-headingContainer{
		margin-bottom: var(--spc-60);
	}
	.g-heading__en{
		font-size: var(--fz-25);
	}
	.g-heading::after{
		bottom: -30px;
	}
	.g-heading__ja{
		font-size: 26px;
	}
}
@media screen and (max-width: 767px){
	.g-headingContainer{
		margin-bottom: 40px;
	}
	.g-heading__en{
		font-size: 26px;
	}
	.g-heading::after{
		bottom: -20px;
	}
	.g-heading__ja{
		font-size: 18px;
	}
}

/* スクリーンリーダー用 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* -------------------ボタン-------------------- */
/* コンテナベース */
.g-btnContainer{
	display: grid;
}
@media screen and (min-width: 768px){
	.g-btnContainer{
		margin-top: var(--spc-50);
	}
}
@media screen and (max-width: 767px){
	.g-btnContainer{
		margin-top: 30px;
	}
}
/* コンテナベース - 横並び */
.g-btnContainer--horizontal{
	display: flex;
	justify-content: center;
}
@media screen and (min-width: 768px){
	.g-btnContainer--horizontal{
		gap: var(--spc-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(--spc-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(--spc-20);
	}
}
@media screen and (max-width: 767px){
	.g-btnContainer--vertical{
		gap: var(--spc-20);
	}
	.g-btnContainer--vertical .g-btn{
		margin-inline: auto;
	}
}
/* ボタンベース */
.g-btn{
	width: 100%;
}
.g-btn > a,
.g-btn > button{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid var(--txt-c-base);
	border-radius: 4px;
	position: relative;
}
.g-btn > button{
	width: 100%;
}
@media screen and (min-width: 768px){
	.g-btn{
		max-width: 250px;
	}
	.g-btn > a,
	.g-btn > button{
		min-height: 50px;
	}
}
@media screen and (max-width: 767px){
	.g-btn{
		width: 100%;
	}
	.g-btn > a,
	.g-btn > button{
		min-height: 50px;
	}
}
/* ボタンベース_フォントサイズ */
.g-btn__label{
	letter-spacing: 0.15em;
}
@media screen and (min-width: 768px){
	.g-btn__label{
		font-size: var(--fz-sm);
	}
}
@media screen and (max-width: 767px){
	.g-btn__label{
		font-size: 14px;
	}
}
/* カラーバリエーション */
.g-btn--primary > a,
.g-btn--primary > button{
	background-color: var(--c-white);
}
.g-btn--primary > a:visited{
	color: var(--txt-c-base);
}
.g-btn--secondary > a,
.g-btn--secondary > button{
	background-color: var(--txt-c-base);
	color: var(--c-white);
}
.g-btn--secondary > a:visited{
	color: var(--c-white);
}
@media (hover: hover){
	.g-btn > a,
	.g-btn > button{
		opacity: 1;
		transition: .5s;
	}
	.g-btn--primary > a:hover,
	.g-btn--primary > button:hover{
		opacity: 1;
		background-color: var(--bg-c-gray);
	}
	.g-btn--secondary > a:hover,
	.g-btn--secondary > button:hover{
		opacity: 1;
		background-color: var(--bg-c-gray);
		color: var(--txt-c-base);
	}
}
/* 大きさ - long */
.g-btn--long{
	width: var(--inner-w);
	max-width: 388px;
}
/* 大きさ - small */
@media screen and (min-width: 768px){
	.g-btn--small{
		max-width: 150px;
	}
	.g-btn--small > a{
		padding: 7px 0;
		min-height: 40px;
	}
	.g-btn--small .g-btn__label{
		font-size: 12px;
	}
}
@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-inline: auto;
}
/* タイプ - arrow */
.g-btn--arrow > a{
	position: relative;
}
.g-btn--arrow > a::after{
	content: "";
	--this-mask: var(--data-icon-btn-arrow) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	aspect-ratio: 1;
	position: absolute;
}
.g-btn--arrow.g-btn--secondary > a::after{
	background-color: var(--c-black);
}
.g-btn--arrow.g-btn--primary > a::after{
	background-color: var(--c-white);
}
@media screen and (min-width: 768px){
	.g-btn--arrow > a::after{
		width: 10px;
		top: 40%;
		right: 10px;
	}
}
@media screen and (max-width: 767px){
	.g-btn--arrow > a::after{
		width: 8px;
		top: 40%;
		right: 5px;
	}
}
/* タイプ - anchor */
.g-btn--arrow.g-btn--anchor > a::after{
	transform: rotate(90deg);
}
/* タイプ - 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: 15px;
	}
}
@media screen and (max-width: 767px){
	.g-btn--arrow.g-btn--return a::after{
		left: 10px;
	}
}

/* -----------------タブ切り替え共通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;
	}
}
/* tab-wrap--feature */
.tab-wrap--feature .tab-btn{
	opacity: 0.5;
}
.tab-wrap--feature .tab-btn.show{
	opacity: 1;
}
.t-feature__brand img{
	width: auto;
	margin-inline: auto;
}
.t-feature__list{
	--grid-cols-pc: 4;
	--grid-gap-pc: var(--spc-20);
	--grid-cols-sp: 2;
	--grid-gap-sp: 15px;
}
.t-feature__brand{
	border-bottom: 1px solid var(--txt-c-base);
}
.t-feature__brand--marisa{
	border-color: var(--c-marisa);
}
.t-feature__date{
	display: block;
}
.t-feature__tags{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;;
	margin-top: 10px;
}
.t-feature__ttl br{
	display: none;
}
.t-feature__tags li a{
	display: flex;
	background-color: var(--c-yellow-100);
	font-size: var(--fz-12);
	padding-inline: 5px;
}
.t-feature__tags li a::before{
	content: '#';
	margin-right: 2px;
}
@media screen and (min-width: 768px){
	.t-feature__spContainer{
		display: contents;
	}
	.tab-wrap--feature .tab-nav{
		gap: var(--spc-20);
		margin-bottom: var(--spc-20);
	}
	.t-feature__brand{
		padding-block: var(--spc-10);
	}
	.t-feature__brand img{
		height: 35px;
	}
	.t-feature__date{
		font-size: var(--fz-14);
		margin-block: 10px 5px;
	}
	.t-feature__ttl{
		font-size: var(--fz-15);
	}
}
@media screen and (max-width: 767px){
	.t-feature [class*="tab-"]{
		display: contents;
	}
	.t-feature__spContainer{
		display: grid;
	}
	.t-feature__item:nth-of-type(n+3){
		display: none;
	}
	.t-feature__brand--jantzen{
		order: 1;
	}
	.t-feature__list--jantzen{
		order: 2;
	}
	.t-feature__list--jantzen+.g-btnContainer{
		order: 3;
		margin-bottom: 30px;
	}
	.t-feature__brand--marisa{
		order: 4;
	}
	.t-feature__list--marisagrace{
		order: 5;
	}
	.t-feature__list--marisagrace+.g-btnContainer{
		order: 6;
	}
	.t-feature__brand{
		padding-block: 8px;
		margin-bottom: 20px;
	}
	.t-feature__brand img{
		height: 35px;
	}
	.t-feature__date{
		font-size: 12px;
		margin-block: 7px 3px;
	}
	.t-feature__ttl{
		font-size: 12px;
	}
}

/* -----------------ポップアップ共通css----------------- */
body.fixed {
	position: fixed;
	width: 100%;
	overflow: hidden;
}
.popup-overlay{
  display: none; 
  width: 100%;
  height: 100%;
  background-color: var(--c-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(--c-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;
	--this-mask: var(--data-icon-popup-close) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--c-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;
  --this-mask: var(--data-icon-slide-arrow) no-repeat center center;
  mask: var(--this-mask);
  -webkit-mask: var(--this-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(--c-white); */
}
.g-slickArrow--white::before{
  background-color: var(--c-black);
}
.g-slickArrow--black{
  background-color: var(--c-black);
}
.g-slickArrow--black::before{
  background-color: var(--c-white);
}
@media (hover: hover){
  [class*="g-slickArrow--"]{
    transition: .3s;
  }
	[class*="g-slickArrow--"]:hover{
		cursor: pointer;
	}
  .g-slickArrow--white:hover{
    /* background-color: var(--c-black); */
  }
  .g-slickArrow--white:hover::before{
    background-color: var(--theme-c-main);
  }
  .g-slickArrow--black:hover{
    background-color: var(--c-red-500);
  }
  .g-slickArrow--black:hover::before{
    background-color: var(--c-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{
		mask-size: 100%;
	}
}
@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{
		mask-size: 40%;
	}
}
/* -------------------g-slickDots-------------------- */
.slick:has(.g-slickDots){
	margin-bottom: 0;
}
.g-slickDots{
	display: flex;
	justify-content: center;
	gap: 15px;
}
.g-slickDots li{
	aspect-ratio: 1/1;
	position: relative;
}
.g-slickDots button{
	font-size: 0;
	background-color: var(--bg-c-gray);
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.g-slickDots .slick-active button{
	background-color: var(--c-black)
}
@media screen and (min-width: 768px){
	.g-slickDots{
		margin-top: 20px;
	}
	.g-slickDots li{
		width: 15px;
	}
	.g-slickDots button{
		width: 10px;
	}
}
@media screen and (max-width: 767px){
	.g-slickDots{
		margin-top: 20px;
	}
	.g-slickDots li{
		width: 15px;
	}
	.g-slickDots button{
		width: 10px;
	}
}

/* --------------------g-txtLink-------------------- */
.g-txtLink{
	text-align: center;
	margin-top: var(--spc-30);
}
.g-txtLink a{
	display: inline-block;
	border-bottom: 1px solid var(--txt-c-base);
	font-size: var(--fz-14);
}
/* -------------------bgcolor-------------------- */
.bgcolor--gray{
	background-color: var(--c-gray-100);
}
/* -------------------is-targetBlank-------------------- */
.is-targetBlank{
	display: inline-block;
	position: relative;
	padding-right: 17px;
}
.is-targetBlank::after{
	content: "";
	display: inline-block;
	--this-mask: var(--data-icon-target-blank) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	aspect-ratio: 1/1;
	width: 13px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.is-targetBlank--brown::after{
	background-color: var(--txt-c-base);
}
.is-targetBlank--c-white::after{
	background-color: var(--txt-c-white);
}

/* --------------------g-payment-------------------- */
.g-payment{
	--grid-cols-pc: 5;
	--grid-gap-pc: 12px;
	--grid-cols-sp: 5;
	--grid-gap-sp: 8px;
	margin-top: var(--spc-40);
}
.g-payment li{
	border: 1px solid var(--bd-c-gray);
	border-radius: 4px;
	font-weight: 500;
	font-size: 9px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	text-align: center;
	line-height: 1.4;
	letter-spacing: 0;
	overflow: hidden;
	min-height: 42px;
}
.g-payment li small{
	display: block;
	font-weight: 400;
}


/* --------------------g-category-------------------- */
.g-category__search{
	display: grid;
}
.g-category__search .g-searchForm.formReset input[type="text"]{
	background-color: var(--c-white);
	border-radius: 40px;
}
.g-category__list{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(var(--category-icon-size), 1fr));
}
.g-category__list li a{
	display: flex;
	flex-direction: column;
}
.g-category__list li a::before{
	content: '';
	background: var(--c-white) var(--this-icon) no-repeat center center / 60%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	width: var(--category-icon-size);
	margin-inline: auto;
	display: block;
}
.g-category__list li a span{
	display: block;
	text-align: center;
	font-weight: 700;
	line-height: 1.5;
}
@media screen and (min-width: 768px){
	.g-category__search{
		width: 700px;
		margin-inline: auto;
		gap: 15px;
		margin-bottom: var(--spc-50);
	}
  .g-category__search .g-searchForm.formReset input[type="text"]{
		min-height: 80px;
		padding-inline: 30px 50px;
	}
	.g-category__search .g-searchForm.formReset input[type="text"],
	.g-category__search .g-searchForm.formReset input[type="text"]::placeholder{
		font-size: var(--fz-18);
	}
	.g-category__search .g-searchForm.formReset button[type="submit"]{
		--this-mask-size: 35%;
	}
	.g-category__search .g-hotword{
		justify-content: center;
		gap: 10px 20px;
	}
	.g-category__search .g-hotword li a{
		font-size: var(--fz-14);
	}
	.g-category__list{
		--category-icon-size: 86px;
		gap: var(--spc-20);
	}
	.g-category__list li a::before{
		margin-bottom: 5px;
	}
	.g-category__list li a span{
		font-size: var(--fz-14);
	}
}
@media screen and (max-width: 767px){
	.g-category__search{
		gap: 10px;
		position: relative;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.g-category__search::after{
		content: "";
		display: inline-block;
		--this-mask: var(--repeat-line-md) repeat-x left center / 8px 2px;
		mask: var(--this-mask);
		-webkit-mask: var(--this-mask);
		background-color: var(--c-white);
		width: var(--inner-w);
		height: 2px;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 0;
	}
	.g-category__search .g-searchForm.formReset{
		width: var(--inner-w);
		margin-inline: auto;
	}
	.g-category__search .g-searchForm.formReset input[type="text"]{
		min-height: 50px;
		padding-inline: 30px 40px;
	}
	.g-category__search .g-searchForm.formReset button[type="submit"]{
		--this-mask-size: 50%;
	}
	.g-category__search .g-hotword{
		flex-wrap: nowrap;
		overflow-x: scroll;
		overflow-y: hidden;
		padding-left: var(--sp-scroll-padding-left);
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.g-category__search .g-hotword::-webkit-scrollbar {
		display: none;
	}
	.g-category__search .g-hotword li{
		flex: 0 0 auto;
		display: inline-block;
		margin-right: 20px;
	}
	.g-category__list{
		--category-icon-size: 59px;
		gap: 20px 10px;
	}
	.g-category__list li a::before{
		width: 54px;
		margin: 0 auto 5px;
	}
	.g-category__list li a span{
		font-size: 11px;
		letter-spacing: 0;
	}
}


/* --------------------g-productList-------------------- */
.g-productList{
	--grid-cols-pc: 5;
	--grid-gap-pc: var(--spc-50) var(--spc-20);
	--grid-cols-sp: 3;
	--grid-gap-sp: 20px 12px;
}
.g-productList__item__name{
	overflow: hidden;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	font-weight: 400;
	line-height: 1.5;
}
.g-productList__item__price{
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.g-productList__item__name{
		margin-block: 10px 2px;
		-webkit-line-clamp: 3;
		font-size: 13px;
	}
	.g-productList__item__price{
		font-size: var(--fz-16);
	}
	.g-productList__item__price small{
		font-size: var(--fz-12);
	}
}
@media screen and (max-width: 767px){
	.g-productList__item:nth-of-type(n+10){
		display: none;
	}
	.g-productList__item__name{
		margin-block: 7px 2px;
		-webkit-line-clamp: 2;
		font-size: 12px;
	}
	.g-productList__item__price{
		font-size: 12px;
	}
	.g-productList__item__price small{
		font-size: 10px;
	}
}

/* g-productList--ranking */
.g-productList--ranking{
	counter-reset: original-counter;
}
.g-productList--ranking .g-productList__item{
	position: relative;
}
.g-productList--ranking .g-productList__item::before{
	content: ''counter(original-counter);
	counter-increment: original-counter;
	font-weight: 900;
	position: absolute;
	z-index: 2;
	line-height: 1;
	top: 0;
	transform: translateY(-50%);
}
.g-productList--ranking .g-productList__item:nth-of-type(1)::before{
	color: var(--ranking-c-1st);
}
.g-productList--ranking .g-productList__item:nth-of-type(2)::before{
	color: var(--ranking-c-2nd);
}
.g-productList--ranking .g-productList__item:nth-of-type(3)::before{
	color: var(--ranking-c-3rd);
}
@media screen and (min-width: 768px){
	.g-productList--ranking{
		row-gap: var(--spc-50);
	}
	.g-productList--ranking .g-productList__item::before{
		font-size: var(--fz-50);
		left: var(--spc-10);
	}
}
@media screen and (max-width: 767px){
	.g-productList--ranking .g-productList__item::before{
		font-size: 30px;
		left: 5px;
	}
}

/* tab-wrap--product */
.tab-wrap--product .tab-btn{
	flex: unset;
	display: flex;
	align-items: center;
	letter-spacing: 0;
	font-weight: 700;
}
.tab-wrap--product .tab-btn.show{
	color: var(--txt-c-emphasis);
}
@media screen and (min-width: 768px){
	.tab-wrap--product{
		margin-top: var(--spc-80);
	}
	.tab-wrap--product .tab-nav{
		margin-bottom: var(--spc-30);
		justify-content: space-around;
		border-bottom: 1px solid var(--bd-c-gray);
	}
	.tab-wrap--product .tab-btn{
		padding-bottom: 5px;
		font-size: var(--fz-16);
		position: relative;
	}
	.tab-wrap--product .tab-btn.show::after{
		content: "";
		display: inline-block;
		background-color: var(--txt-c-emphasis);
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: -1px;
		left: 0;
		z-index: 2;
	}
}
@media screen and (max-width: 767px){
	.tab-wrap--product .tab-nav{
		overflow-x: scroll;
		overflow-y: hidden;
		padding-left: var(--sp-scroll-padding-left);
		-ms-overflow-style: none;
		scrollbar-width: none;
		margin-bottom: 30px;
	}
	.tab-wrap--product .tab-nav::-webkit-scrollbar {
		display: none;
	}
	.tab-wrap--product .tab-btn{
		flex: 0 0 auto;
		font-size: 12px;
		border-bottom: 1px solid var(--bd-c-gray);
		padding-inline: 15px;
	}
	.tab-wrap--product .tab-btn span{
		height: 100%;
		display: flex;
		align-items: center;
		padding-bottom: 5px;
		position: relative;
	}
	.tab-wrap--product .tab-btn.show span::after{
		content: "";
		display: inline-block;
		background-color: var(--txt-c-emphasis);
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: -1px;
		left: 0;
		z-index: 2;
	}
}
/* --------------------t-infomation-------------------- */
.t-infomation__list{
	--grid-cols-pc: 4;
	--grid-gap-pc: var(--spc-50) var(--spc-20);
	--grid-cols-sp: 1;
	--grid-gap-sp: 20px;
}
.t-infomation__item__date{
	display: block;
}
@media screen and (min-width: 768px){
	.t-infomation__item__date{
		font-size: var(--fz-14);
		margin-block: 10px 1px;
	}
	.t-infomation__item__ttl{
		font-size: var(--fz-15);
	}
}
@media screen and (max-width: 767px){
	.t-infomation__list{
		width: 90%;
		margin-inline: auto;
	}
	.t-infomation__item{
		display: grid;
		grid-template: auto auto 1fr / 76fr 207fr;
		align-items: flex-start;
		gap: 2px 12px;
	}
	.t-infomation__item__thumb{
		grid-row: span 3;
	}
	.t-infomation__item__date{
		font-size: 10px;
		margin-top: 5px;
	}
	.t-infomation__item__ttl span{
		overflow: hidden;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		display: -webkit-box;
		font-size: 12px;
	}
}
/* カテゴリー */
.wp-post__cats{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.wp-post__cats li a{
	width: fit-content;
	padding: 1px 8px;
	display: block;
	border: 1px solid var(--c-black);
	border-radius: 3px;
	font-size: 12px;
}
@media screen and (min-width: 768px){
	.wp-post__cats{
		margin-top: 10px;
	}
}
@media screen and (max-width: 767px){
	.wp-post__cats li a{
		font-size: 9px;
	}
}

/* --------------------g-history-------------------- */
@media screen and (min-width: 768px){
	.g-history__list{
		display: grid;
		grid-template-columns: repeat(7,1fr);
		gap: var(--spc-25);
	}
	.g-history__list li:nth-of-type(n+8){
		display: none;
	}
}
@media screen and (max-width: 767px){
	.g-history__list{
		display: flex;
		overflow-x: scroll;
		overflow-y: hidden;
		padding-left: var(--sp-scroll-padding-left);
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.g-history__list::-webkit-scrollbar {
		display: none;
	}
	.g-history__list li{
		flex: 0 0 auto;
		display: inline-block;
		--this-width: 100px;
		min-width: var(--this-width);
		max-width: var(--this-width);
		margin-right: 12px;
	}
}


/* -----------------g-shopGuide----------------- */
.g-shopGuide{
	border-top: 1px solid var(--bd-c-gray);
}
.g-shopGuide__item::before{
	content: "";
	display: inline-block;
	background: var(--c-white) var(--this-icon) no-repeat center center / var(--this-size, 100%);
	aspect-ratio: 1/1;
	border-radius: 50%;
}
@media screen and (min-width: 768px){
	.g-shopGuide .g-heading__en{
		font-size: 26px;
	}
	.g-shopGuide__list{
		display: flex;
		max-width: 1000px;
		margin-inline: auto;
	}
	.g-shopGuide__item{
		flex: 1;
		padding-inline: var(--spc-40);
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-block: 10px;
	}
	.g-shopGuide__item:not(:last-child){
		border-right: 1px solid var(--bd-c-gray);
	}
	.g-shopGuide__item::before{
		width: 76px;
		margin-inline: auto;
	}
	.g-shopGuide__item__ttl{
		font-size: var(--fz-18);
		margin-block: var(--spc-20);
	}
	.g-shopGuide__item__txt{
		font-size: var(--fz-14);
		text-align: center;
	}
}
@media screen and (max-width: 767px){
	.g-shopGuide{
		margin-bottom: var(--sec-spc);
	}
	.g-shopGuide__list{
		display: grid;
		gap: 20px;
	}
	.g-shopGuide__item{
		display: grid;
		grid-template: auto 1fr / 76px 1fr;
		gap: 5px 20px;
	}
	.g-shopGuide__item::before{
		grid-row: span 2;
		--this-size: 60%;
		background-color: var(--bg-c-gray);
	}
	.g-shopGuide__item__ttl{
		font-size: 16px;
	}
	.g-shopGuide__item__txt{
		font-size: 12px;
	}
}
