@charset "utf-8";
/* リセットCSS */
*{margin:0;padding:0;min-height: 0;min-width: 0;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-visible, *:focus-visible{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{ 
  display:block;
}
.fs-l-page{
	overflow: hidden;
}
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{
	transition: opacity 0.5s ease, color 0.5s ease;
}
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;
	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);
}
.fs-pt-column__item,.fs-pt-column__image{
	display: block;
}
.fs-pt-column img{
	display: block;
	width: 100%;
	justify-self: auto;
}
/* フォント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;
}
.splide{
	overflow: hidden;
  opacity: 0;
	transition: opacity .3s linear;
}
.splide.is-initialized{
	opacity: 1;
}
/* アニメーション軽減設定 */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}
/* 縦書き */
.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{
	-ms-overflow-style: none;/* IE, Edge 対応 */
	scrollbar-width: none;/* Firefox 対応 */
}
.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);
}
@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.5;
		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-14);
		line-height: 1.7;
		-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: 50px;
	}
	body{
		font-size: var(--fz-14-const);
		line-height: 1.6;
		padding-bottom: var(--g-userMenu-height);
	}
	.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■■■■■■■■■■■■■■■■■■■■■■ */
/* ハンバーガー */
.hamburger{
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 5%;
  width: 60px;
  height: 60px;
  padding: 10px 10px;
  z-index: 998;
  box-sizing: border-box;
  touch-action: manipulation;
  --hamburger-line-color: #070707;
  --hamburger-line-ps: 9px;
}
.hamburger--menu{
  top: 10px;
}
.hamburger--search{
  top: 80px;
}
.hamburger:after{
  content: var(--this-label);
  position: absolute;
  top: 100%;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  min-width: 65px;
  text-align: center;
}
.hamburger.active:after{
  content: var(--this-label-active);
}
.hamburger__icon {
  position: relative;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--hamburger-line-color);
  transition-property: background-color, transform;
  transition-duration: 0.4s;
}
.hamburger .hamburger__icon:before{
	width: 100% !important;
}
.hamburger .hamburger__icon:after {
	width: 100% !important;
}
.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: "";
}
.hamburger__icon:before {
  top: calc(0px - var(--hamburger-line-ps));
}
.hamburger__icon:after {
  top: var(--hamburger-line-ps);
}
.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: var(--hamburger-line-color);
}
.hamburger.active .hamburger__icon:before {
  transform: translateY(var(--hamburger-line-ps)) rotate(45deg);
  background-color: var(--hamburger-line-color);
}
.hamburger.active .hamburger__icon:after {
  transform: translateY(calc(0px - var(--hamburger-line-ps))) rotate(-45deg);
  background-color: var(--hamburger-line-color);
}
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: opacity 0.7s ease;
	opacity: 0;
	animation: var(--anime-fade-in);
}

@media screen and (min-width: 768px){
	.fat-nav{
		display: none;
    z-index: 9999;
    position: fixed;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: var(--inner-w);
		max-width: 800px;
		padding: var(--spc-40) var(--spc-50);
		height: auto;
		max-height: 85vh;
	}
}
@media screen and (max-width: 767px){
.fat-nav{
max-width: 90%;
left: 0;
top: 0;
z-index: 999;
position: fixed;
display: none;
width: 100%;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
background: var(--c-gray-400);
transform: translateX(-100%);
transition: transform 0.5s ease, opacity 0.5s ease !important;
}
.fat-nav.active{
transform: translateX(0);
}
.fat-nav__wrapper{
	padding-block: 40px;
}
}


/* ------------ ヘッダー ------------  */
/* 上スクロール固定 */
@media screen and (min-width: 768px){
	body.is-return{
		padding-top: var(--pc-hd-height);
	}
	body.is-return .hd-wrap{
		position: fixed;
		top: 0;
		right: 0;
		z-index: 100;
		width: 100%;
		animation: var(--anime-fade-in);
	}
}

@media screen and (min-width: 768px){
	:root{
		--pc-hd-height: 82px;
	}
	.hd-wrap{
		height: var(--pc-hd-height);
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
	}
	.hd-inner{
		display: flex;
		align-items: center;
	}
	.hd-logo{
		width: clamp( 40px, 3.472vw, 50px);
		margin-right: clamp( 20px, 4.167vw, 60px);
	}

	/* 探す */
	.hd-search{
		display: flex;
		align-items: center;
	}
	.hd-search__text{
		font-size: var(--fz-14);
	}
	.hd-search > li:not(:last-child) a{
		margin-right: 15px;
		padding-right: 15px;
		border-right: 1px solid var(--c-gray-400);
	}
	.hd-search > li > a{
		display: block;
		line-height: 1.9;
	}

	.hd-box{
		margin-left: auto;
		display: flex;
		align-items: center;
	}
	/* 絞り込み */
	.hd-detail{
		display: flex;
		align-items: center;
		gap: 3px;
		border: 1px solid;
		border-radius: 50px;
		padding: 3px 15px;
		font-size: 11px;
	}
	.hd-detail::before{
		content: "";
		display: inline-block;
		background: var(--data-icon-sp-menu-search) no-repeat center center / 100%;
		aspect-ratio: 1;
		width: 17px;
	}
	/* メニュー */
	.hd-menu{
		width: clamp( 240px, 19.861vw, 286px);
		display: flex;
	}
	.hd-menu > li{
		flex: 1;
	}
	.hd-menu > li:not(:last-child){
		border-right: 1px solid var(--c-gray-400);
	}
	.hd-menu__item{
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		position: relative;
	}
	.hd-menu__item::before {
		content: '';
		background: var(--this-icon) no-repeat center center / var(--this-size, 100%);
		aspect-ratio: 1 / 1;
		width: 21px;
		display: block;
	}
	.hd-menu__item::after {
		display: block;
		text-align: center;
		content: attr(aria-label);
		font-size: 10px;
		letter-spacing: 0.05em;
		margin-top: 1px;
	}
	/* ドロップのメニュー */
	.hd-search__triger{
		position: relative;
	}
	.hd-search__drop {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: .3s;
		padding-top: 10px;
    position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		width: 180px;
	}
	.hd-search__triger[ontouchstart=""]:hover .hd-search__drop {
		pointer-events: auto;
		visibility: visible;
		z-index: 90;
		opacity: 1;
	}
	.hd-search__box{
		position: relative;
		padding: var(--spc-10) var(--spc-20);
		background: var(--c-white);
		box-shadow: var(--bxsd-default);
	}
	.hd-search__list a{
		display: block;
		padding-block: 10px;
		font-size: 13px;
		transition: .3s;
	}
	.hd-search__list li:not(:last-child) a{
		border-bottom: 1px solid var(--c-gray-200);
	}


	/* ドロップのメニュー - 背景黒 */
	/* .hd-search__drop {
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		position: absolute;
		width: 100%;
		transition: 0.3s;
		padding-top: 80px;
		left: 50%;
		transform: translateX(-50%);
		max-width: 800px;
	}
	.hd-search__triger[ontouchstart=""]:hover .hd-search__drop {
		pointer-events: auto;
		visibility: visible;
		opacity: 0.98;
		z-index: 90;
	}
	body:has(.hd-search__triger:hover)::before{
		background: var(--c-black-op50);
    content: '';
    display: block;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    transition: opacity 0.3s ease;
    opacity: 0;
    animation: fadeIn .3s ease-in-out 0s forwards;
	}
	.hd-search__box {
		margin-inline: auto;
		background-color: var(--c-white);
		opacity: 0.95;
		box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
		padding: var(--spc-30);
		display: grid;
		gap: var(--spc-40);
  }
	.hd-search__list{
		display: grid;
		grid-template-columns: repeat(4,1fr);
		gap: var(--spc-30);
		width: 100%;
	}
	.hd-search__list a{
		display: block;
		line-height: 2;
		font-weight: 500;
		font-size: 12px;
		position: relative;
	} */

	/* 検索窓 */
	.hd-menu__search{
		position: relative;
		cursor: pointer;
		transition: .3s;
	}
	.hd-menu__searchForm{
		visibility: hidden;
		opacity: 0;
		position: absolute !important;
		z-index: -1;
		transition: 0.3s;
		width: clamp( 200px, 21.429vw, 300px) !important;
		left: 50%;
		transform: translateX(-50%);
		bottom: -50px;
	}
	.hd-menu__searchForm.active{
		visibility: visible;
		opacity: 1;
		z-index: 10;
	}
	.hd-menu__search .hd-menu__item{
		transition: .3s;
	}
}
@media (hover: hover){
	.hd-menu__search:hover .hd-menu__item{
		opacity: 0.7;
	}
	.hd-search__list a:hover{
		transform: scale(1.05);
		opacity: 1;
	}
}
@media screen and (max-width: 767px){
	.hd-wrap{
		padding-block: 10px;
	}
	.hd-logo{
		width: 46px;
		margin-inline: auto;
	}
}

/* 検索 */
.g-search{
	position: relative;
	margin-inline: auto;
}
.g-search__area{
	width: 100%;
	min-height: 40px !important;
	border: 1px solid !important;
	border-radius: 10px !important;
	background-color: var(--c-white) !important;
}
input.g-search__area::placeholder{
	color: var(--c-gray-300) !important;
	opacity: 1 !important;
	font-size: 12px !important;
}
.g-search__submit{
	height: 100%;
	aspect-ratio: 1;
	display: inline-block;
	background: var(--data-icon-search) no-repeat center / 50%;
	position: absolute;
	right: 0;
	top: 0;
	transition: .3s;
}
@media screen and (min-width: 768px){
	.g-search{
		width: 300px;
	}
	.fat-searchTag{
		margin-top: 20px;
	}
}
@media (hover: hover){
	.g-search__submit:hover{
		opacity: .7;
	}
}
@media screen and (max-width: 767px){
	.g-search{
		max-width: 300px;
	}
	.fat-searchTag{
		margin-top: 10px;
	}
	.fat-searchTag .g-hot a{
		font-size: 12px;
	}
	.g-search__area{
		padding-inline: 15px !important;
	}
}


/* ------ 詳細検索 -------- */
/* キーワード */
@media screen and (min-width: 768px){
.fat-searchUpper{
	margin-top: var(--spc-40);
	padding-top: var(--spc-40);
	border-top: 1px solid #DEDEDE;
}
}
@media screen and (max-width: 767px){
	.fat-searchUpper{
		padding-inline: var(--sp-scroll-padding-left);
		margin-bottom: 25px;
	}
	.fat-searchTag .g-hot a{
		background: var(--c-white);
	}
}


.fat-searchInner{
	display: flex;
	align-items: center;
	gap: 5px;
}
@media screen and (min-width: 768px){
	.fat-searchFilter{
		background: var(--c-white);
		padding-inline: var(--sp-scroll-padding-left);
	}
	.fat-navClose{
		width: 20px;
		aspect-ratio: 1;
		background: var(--data-icon-sp-menu-close) no-repeat center center / 100%;
		position: absolute;
		right: 10px;
		top: 10px;
	}
	.fat-search{
		display: grid;
	}

	.fat-searchUpper{
		order: 2;
	}
}
@media screen and (max-width: 767px){
	.fat-searchFilter{
		background: var(--c-white);
		padding: 25px var(--sp-scroll-padding-left);
	}
}

/* セレクト */
.fat-searchSelectContainer{
	background: var(--c-gray-400) var(--under-arrow) no-repeat center right 10px / 12px;
}
.fat-searchSelect{
	width: 100%;
	min-height: 40px !important;
	letter-spacing: 0.1em;
}
.fat-searchSelect:has(option[value=""]:checked) {
  color: #838383;
}
.fat-searchHd{
	font-weight: 300;
}
@media screen and (min-width: 768px){
	.fat-searchBox{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: var(--spc-20) var(--spc-40);
	}
	.fat-searchSelectContainer{
		flex: 1;
	}
	.fat-searchSelect{
		font-size: 14px;
	}
	.fat-searchHd {
		font-size: var(--fz-14);
		width: 60px;
	}
}
@media screen and (max-width: 767px){
	.fat-searchBox{
		display: grid;
		gap: 22px;
	}
	.fat-searchSelect{
		font-size: 14px;
	}
	.fat-searchSelectContainer{
		flex: 1;
	}
	.fat-searchHd {
		font-size: 14px;
		width: 60px;
	}
}

/* 価格 */
.fat-searchPrice{
	flex: 1;
	display: grid;
	grid-template-columns: 1fr auto 1fr ;
	align-items: center;
	gap: 6px;
}
.fat-searchPrice .fat-searchSelect{
	font-size: 12px;
}

/* 在庫 */
.fat-searchStock{
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	gap: 5px;
	font-size: 14px;
	font-weight: 300;
}
.fat-searchStock input[type="checkbox"]{
	width: 16px;
	height: 16px;
	border: 1px solid;
}
@media screen and (min-width: 768px){
	.fat-searchStock{
		margin-block: var(--spc-40) var(--spc-20);
	}
}
@media screen and (max-width: 767px){
	.fat-searchStock{
		margin-block: 35px 30px;
	}
}

/* ------ ハンバーガー -------- */
@media screen and (max-width: 767px){
	.fn-top,.fn-bottom{
		padding-inline: var(--sp-scroll-padding-left);
	}
	.fat-searchUpper--menu{
		padding-inline: 0px;
	}
	.fn-top{
		margin-bottom: 40px;
	}
	.fn-btn{
		margin-block: 40px;
	}

	.fn-upper{
		margin-bottom: 40px;
	}
	.fn-banner{
		display: block;
		margin-bottom: 40px;
	}
	.fn-login__text{
		text-align: center;
		font-size: 16px;
		font-weight: 500;
		position: relative;
		width: fit-content;
		margin-inline: auto;
		margin-bottom: 8px;
	}
	.fn-login__text::before,
	.fn-login__text::after{
		content: "";
		display: inline-block;
		width: 2px;
		height: 17px;
		position: absolute;
		background: var(--c-gray-300);
	}
	.fn-login__text::before{
		left: -10px;
		top: 7px;
		transform: rotate(-30deg);
	}
	.fn-login__text::after{
		right: -10px;
		top: 7px;
		transform: rotate(30deg);
	}
	.g-btn.fn-login--btn{
		max-width: 270px;
	}
	.fn-logout{
		font-size: 16px;
		font-weight: 500;
		text-align: center;
	}
	.fn-logout .small{
		font-size: 12px;
	}

	.fn-banner{
		margin-bottom: 40px;
	}

	.fn-cate__ttl{
		font-size: 15px;
		font-weight: 500;
		padding: 0 8px 10px;
		border-bottom: 1px solid #DBDBDB;
	}
	.fn-cate__inner{
		border-bottom: 1px solid #DBDBDB;
	}
	.fn-cate__hd{
		font-size: 16px;
		font-weight: 500;
		padding: 10px 8px;
		position: relative;
	}
	.fn-cate__list{
		max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
	}
	.fn-cate__list a{
		font-size: 13px;
		font-weight: 500;
		display: block;
		line-height: 2;
		padding-left: 18px;
	}
	.fn-cate__list a{
		padding-block: 4px;
	}
	.fn-cate__list a:first-child{
		padding-top: 0;
	}
	.fn-cate__list a:last-child{
		padding-bottom: 8px;
	}
	.fn-cate__hd.active .g-accordionArrow{
		transform: rotate(270deg);
	}
	.fn-cate__link--single{
		display: block;
		font-size: 16px;
		font-weight: 500;
		padding: 10px 8px;
	}

	/* 閲覧履歴 */
	.fn-history:not(:has(.fs-c-productList__list__item)){
		display: none;
	}
	.fn-history{
		background: var(--c-white);
		padding-block: 30px;
	}
	.fn-history .g-headingContainer{
		margin-bottom: 20px;
	}

	.fn-bottom{
		padding-block: 40px;
	}
	.fn-links{
		display: grid;
		grid-template-columns: auto auto;
		gap: 20px;
	}
	.fn-links a{
		font-size: 14px;
		font-weight: 500;
	}
	.fn-sns .f-sns{
		background: var(--c-white);
		width: fit-content;
		margin: 30px auto;
		flex-direction: column-reverse;
		padding: 20px;
		gap: 15px;
	}
	.fn-links--btm a{
		font-size: 12px;
	}
}

/* アコーディオン */
.g-accordionArrow{
	content: "";
	display: inline-block;
	background: var(--hot-arrow) no-repeat center center / 100%;
	width: 10px;
	aspect-ratio: 1;
	position: absolute;
	top: 40%;
	transform: rotate(90deg);
	right: 10px;
	transition: 0.3s;
}


/* メッセージ */
.g-message{
	background: var(--c-gray-400);
	text-align: center;
}

/* アニメーション */
.g-message {
  --message-line: 2.2;
  overflow: hidden;
  height: calc(1em * var(--message-line));
	display: flex;
	align-items: flex-start;
	justify-content: center;
	font-size: 12px;
}

.g-message__track.is-sliding {
  transition: transform .6s ease;
  transform: translateY(calc(-1em * var(--message-line)));
}

.g-message__text,
.g-message__text a{
	display: block;
  margin: 0;
  line-height: var(--message-line);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
	font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .g-message__track.is-sliding { transition: none; }
}

/* SUMMER COLLECTION */
.g-summer{
	position: fixed;
	left: 0;
	z-index: 90;
}
.g-summer__btn{
	background: #e0c775;
	border-radius: 0 20px 20px 0px;
	padding: 13px 13px 13px 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.g-summer__btn::before{
	content: "";
	display: block;
	background: var(--summer) no-repeat center center / 100%;
	aspect-ratio: 1;
	margin-bottom: 5px;
}
.g-summer__btn__label{
	display: block;
	writing-mode: vertical-rl;
	color: var(--c-white);
	font-family: var(--ff-lato);
	letter-spacing: 0.05em;
}
.g-heading--summer{
	font-family: var(--ff-lato);
	letter-spacing: 0.05em;
	color:#e0c775;
	font-size: var(--fz-30);
}
.popup-overlay--summer .popup-box{
	overflow-y: initial !important;
	overflow-x: hidden;
}
@media screen and (min-width: 768px){
	.g-summer{
		top: 13%;
	}
	.g-summer__btn{
		transition: .3s;
		cursor: pointer;
	}
	.g-summer__btn__label{
		font-size: 13px;
	}
	.g-summer__btn::before{
		width: 18px;
		margin-bottom: 5px;
	}
	.g-heading--summer{
		font-size: var(--fz-30) !important;
	}
}
@media (hover: hover){
	.g-summer__btn:hover{
		padding-left: 15px;
	}
}
@media screen and (max-width: 767px){
	.g-summer{
		top: 16%;
		transition: .2s;
	}
	body.scroll .g-summer{
		top: 3%;
	}
	.g-summer__btn{
		padding: 13px 9px 13px 8px;
	}
	.g-summer__btn__label{
		font-size: 11px;
	}
	.g-summer__btn::before{
		width: 15px;
		margin-bottom: 5px;
	}
	.g-heading--summer{
		font-size: 20px !important;
	}
}

/* 固定バナー */
.ft-fixedBnr {
	display: none;
  position: fixed;
  z-index: 90;
}
.ft-fixedBnr.is-show {
  display: block;
}
.ft-fixedBnr button {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}
.ft-fixedBnr button::before{
  content: "";
  display: inline-block;
	background: var(--data-icon-sp-menu-close) no-repeat center center / 100%;
  aspect-ratio: 1/1;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.scroll-true .ft-fixedBnr a{
	opacity: .3;
}
@media (hover: hover){
  .ft-fixedBnr button:hover{
    cursor: pointer;
  }
}
@media screen and (min-width: 768px){
	.ft-fixedBnr{
		bottom: 60px;
		right: 20px;
		width: 150px;
	}
}
@media screen and (max-width: 767px){
	.ft-fixedBnr{
		bottom: 130px;
		right: 10px;
		width: 150px;
	}
}


/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
/* ページトップ */
.g-pagetop{
	position: fixed;
	z-index: 10;
	display: flex;
	align-items: center;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.g-pagetop::after{
	content: "";
	display: inline-block;
	background: var(--page-top) no-repeat center center / 100%;
	aspect-ratio: 7/39;
	transition: .3s;
}
@media screen and (min-width: 768px){
	.g-pagetop{
		bottom: 0;
		right: 40px;
		font-size: 9px;
	}
	.g-pagetop::after{
		width: 6px;
	}
}
@media (hover: hover){
	.g-pagetop:hover::after{
		transform: translateY(-5px);
	}
}
@media screen and (max-width: 767px){
	.g-pagetop{
		bottom: 62px;
		right: 10px;
		font-size: 9px;
	}
	.g-pagetop::after{
		width: 6px;
	}
}

.f-shipping__free{
	color: var(--c-red-500);
	font-weight: 600;
}
.f-register__hd{
	font-weight: 500;
}
.f-register__hd a{
	text-decoration: underline;
}
.f-register__item{
	background: var(--c-gray-400);
	font-weight: 500;
}

.f-sns{
	background: var(--c-gray-400);
	border-radius: 15px;
}
.f-sns__list{
	display: flex;
	gap: 15px;
}
.f-sns__list a{
	display: block;
	aspect-ratio: 1;
	background: no-repeat center center / 100%;
}
.f-sns__text{
	font-weight: 600;
	line-height: 1;
}

.f-links__hd{
	font-weight: 500;
	padding-bottom: 7px;
	border-bottom: 1px solid;
	margin-bottom: 5px;
}
.f-links a{
	font-weight: 300;
}
@media screen and (min-width: 951px){
	#footerarea{
		padding-block: var(--spc-50) 20px;
	}
	.f-top{
		display: grid;
		grid-template-columns: 180px 1fr;
		gap: clamp( 30px, 5.556vw, 80px);
		align-items: center;
		margin-bottom: var(--spc-40);
		padding-left: var(--spc-50);
	}
	.f-logo{
		width: 64px;
		margin-inline: auto;
	}
	.f-topBox{
		display: grid;
		grid-template-columns: 315fr 540fr;
		gap: var(--spc-30);
	}
	.f-shipping{
		text-align: center;
		background: var(--c-gray-400);
		padding: var(--spc-15);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
	.f-shipping__top{
		font-weight: 500;
	}
	.f-shipping__free{
		font-size: clamp( 13px, 1.181vw, 17px);
		margin-top: 5px;
	}
	.f-register{
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		background: var(--c-gray-400);
		padding: 10px 15px;
		text-align: center;
	}
	.f-register__hd{
		font-size: clamp( 12px, 0.972vw, 14px);
		margin-bottom: 8px;
	}
	.f-register__list{
		display: grid;
		grid-template-columns: repeat(3,1fr);
		gap: 6px;
		width: 100%;
	}
	.f-register__item{
		padding: 5px;
		font-size: clamp( 10px, 0.833vw, 12px);
		line-height: 1.4;
		text-align: center;
		background: var(--c-white);
		letter-spacing: 0.01em;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.f-mid{
		display: grid;
		grid-template-columns: 180px 1fr;
		align-items: start;
		gap: clamp( 30px, 5.556vw, 80px);
		margin-bottom: var(--spc-40);
		padding-left: var(--spc-50);
	}
	.f-sns{
		display: grid;
		gap: 15px;
		padding: var(--spc-20);
	}
	.f-sns__list{
		display: grid;
		grid-template-columns: repeat(3,1fr);
	}
	.f-sns__text{
		order: 2;
		text-align: center;
		font-size: var(--fz-13);
	}

	.f-midInner{
		display: grid;
		grid-template-columns: 167fr 323fr 323fr;
		gap: clamp(15px, 2.778vw, 40px);
	}
	.f-links__hd{
		font-size: var(--fz-16);
	}
	.f-links a{
		display: block;
		line-height: 2.1;
		font-size: clamp( 11px, 0.972vw, 14px);
		position: relative;
	}
	.f-support__link{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		column-gap: 10px;
	}
}
@media screen and (max-width: 950px){
	#footerarea{
		padding-block: 60px 30px;
	}
	.f-logo{
		width: 64px;
		margin: 0 auto 60px;
	}
	.f-shipping{
		border: 1px solid #707070;
		padding-block: 15px;
		text-align: center;
		margin-bottom: 60px;
	}
	.f-shipping__top{
		display: flex;
		justify-content: center;
		font-size: 13px;
		font-weight: 400;
	}
	.f-shipping__free{
		font-size: 18px;
	}
	.f-register{
		margin-bottom: 60px;
		text-align: center;
	}
	.f-register__hd{
		font-size: 16px;
		margin-bottom: 15px;
	}
	.f-register__list{
		display: grid;
		gap: 6px;
	}
	.f-register__item{
		padding-block: 8px;
		font-size: 13px;
	}
	.f-register__link{
		display: block;
		width: fit-content;
		margin-inline: auto;
		border-bottom: 1px solid;
		font-size: 14px;
		margin-top: 15px;
		font-size: 13px;
		font-weight: 300;
	}

	.f-mid{
		display: grid;
		gap: 30px;
	}
	.f-sns{
		order: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		padding-block: 12px;
		gap: 25px;
	}
	.f-sns__text{
		font-size: 16px;
	}
	.f-sns__list{
		display: flex;
	}
	.f-sns__item{
		width: 34px;
	}
	.f-sns__list a{
		display: block;
		aspect-ratio: 1;
	}

	.f-midInner{
		display: grid;
		gap: 30px;
	}
	.f-contact{
		order: -1;
	}
	.f-links__hd{
		font-size: 16px;
	}
	.f-myPage__link,.f-support__link{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		column-gap: 15px;
	}
	.f-links a{
		line-height: 2.2;
		font-size: 14px;
	}
}


/* お問い合わせ */
.f-contact__upper{
	font-weight: 500;
}
.f-contact__mail,.f-contact__tel__box{
	background: var(--txt-c-base);
	border-radius: 14px;
	color: var(--c-white);
	font-weight: 500;
}
a.f-contact__tel__box{
	pointer-events: auto;
}
.f-contact__mail::before{
	content: "";
	display: inline-block;
	background: var(--mail) no-repeat center center / 100%;
	aspect-ratio: 27/20;
}
.f-contact__tel__box::before{
	content: "";
	display: inline-block;
	background: var(--tel) no-repeat center center / 100%;
	aspect-ratio: 29/28;
}
.f-contact__tel__num > span{
	display: block;
}
.f-contact__tel__text{
	font-weight: 500;
	letter-spacing: 0.02em;
}
.f-contact__tel__num__low{
	font-family: var(--ff-lato);
	letter-spacing: 0.11em;
	font-weight: 600;
}
a.f-contact__mail:visited{
	color: var(--c-white);
}
@media screen and (min-width: 951px){
	.f-contact__upper{
		font-size: clamp( 11px, 0.972vw, 14px);
		margin-bottom: 10px;
	}
	.f-contact__mail{
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 10px 20px;
		font-size: clamp( 11px, 0.972vw, 14px);
	}
	.f-contact__mail::before{
		width: 27px;
	}

	.f-contact__tel{
		margin-top: 10px;
	}
	.f-contact__tel__box{
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 10px 20px;
	}
	.f-contact__tel__box::before{
		width: 29px;
	}
	.f-contact__tel__num__upper{
		font-size: clamp( 11px, 0.972vw, 14px);
		margin-bottom: 2px;
	}
	.f-contact__tel__num__upper__time{
		font-size: 10px;
		margin-left: 10px;
		letter-spacing: 0.02em;
	}
	.f-contact__tel__num__low{
		font-size: clamp( 18px, 1.736vw, 25px);
		line-height: 1.1;
	}
	.f-contact__tel__text{
		font-size: 10px;
		margin-top: 5px;
		text-align: right;
	}

	.f-contact__tel__text{
		display: none;
	}
}
@media screen and (min-width: 951px) and (max-width: 1300px){
	.f-contact__tel__num__upper__time{
		display: block;
		margin-left: 0;
	}
}
@media (hover: hover){
	.f-contact__mail:hover{
		color: var(--c-white) !important;
	}
}
@media screen and (max-width: 950px){
	.f-contact__upper{
		font-size: 14px;
		margin-bottom: 10px;
	}
	.f-contact__box{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: 20px;
	}
	.f-contact__mail{
		display: grid;
		align-items: center;
		grid-template-columns: 27px 1fr;
		gap: 8px;
		padding: 15px;
		font-size: 14px;
	}
	.f-contact__tel__box{
		display: grid;
		align-items: center;
		grid-template-columns: 29px 1fr;
		gap: 8px;
		padding: 15px;
		font-size: 14px;
	}
	.f-contact__tel__text{
		margin-top: 5px;
		text-align: center;
		font-size: 10px;
	}

	.f-contact__tel__num__upper__time{
		display: none;
	}
}

/* 下部 */
.f-term{
	display: flex;
}
.f-term a{
	display: inline-block;
	line-height: 1;
	font-size: 10px;
	font-weight: 300;
}
.f-term li:first-child a{
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid;
}
.f-copy{
	font-weight: 500;
	font-size: 10px;
}
@media screen and (min-width: 951px){
	.f-bottom{
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
	}
}
@media screen and (max-width: 950px){
	.f-bottom{
		margin-top: 30px;
	}
	.f-term{
		justify-content: center;
		margin-bottom: 20px;
	}
	.f-term a{
		font-size: 12px;
	}
	.f-copy{
		text-align: center;
		font-size: 10px;
	}
}

/* sp固定メニュー */
@media screen and (max-width: 767px){
:root{
	--g-userMenu-height: 52px;
}
.g-userMenuContainer{
	position: fixed;
	width: 100%;
	background-color: var(--bg-c-gray);
	bottom: 0;
	left: 0;
	transform: translateY(100%);
	transition:
		transform 0.3s,
		visibility 0s 0.3s,
		z-index 0s 0.3s;
	height: var(--g-userMenu-height);
	z-index: -1;
	visibility: hidden;
	box-shadow: var(--bxsd-default);
}
/* 上スクロール時固定 */
body.is-return .g-userMenuContainer,
body.top-scroll .g-userMenuContainer{
	transform: translateY(0);
	z-index: 1000;
	visibility: visible;
	transition:
	transform 0.3s,
	visibility 0s,
	z-index 0s;
}
.g-userMenu{
	display: flex;
	height: 100%;
}
.g-userMenu li{
	flex: 1;
	position: relative;
	padding-top: 2px;
}
.g-userMenu li > span{
	height: 100%;
}

.g-userMenu__item{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	gap: 1.5px;
}
.g-userMenu__item::before{
	content: '';
	background: var(--this-icon) no-repeat center center / var(--this-size,100%);
	aspect-ratio: 1/1;
	width: 21px;
	display: block;
}
.g-userMenu__item.active::before{
	background-image: var(--this-icon-active);
}
.g-userMenu__item::after{
	display: block;
	text-align: center;
	content: attr(aria-label);
	font-size: 10px;
	letter-spacing: 0.05em;
	font-weight: 500;
}
.g-userMenu__item.active::after{
	content: var(--this-label-active);
}
.g-userMenu__item .fs-client-cart-count{
	top: 5px;
	right: 25%;
}
}
/* ページトップ */
.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;
	}
}


/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -------------------見出し-------------------- */
.g-heading{
	line-height: 1;
}
.g-heading--center{
	text-align: center;
}
@media screen and (min-width: 768px){
  .g-headingContainer{
		margin-bottom: var(--spc-30);
	}
	.g-heading{
		font-size: var(--fz-22);
	}
}
@media screen and (max-width: 767px){
	.g-headingContainer{
		margin-bottom: 30px;
	}
	.g-heading{
		font-weight: 500;
		font-size: 17px;
	}
}
/* -------------------ボタン-------------------- */
/* コンテナベース */
.g-btnContainer{
	display: grid;
	margin-top: 30px;
}

/* ボタンベース */
.g-btn{
	width: 100%;
}
.g-btn > a,
.g-btn > button{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 100px;
	position: relative;
	background: var(--txt-c-base);
	transition: .3s;
}
.g-btn > button{
	width: 100%;
}
@media screen and (min-width: 768px){
	.g-btn{
		max-width: 250px;
	}
	.g-btn > a,
	.g-btn > button{
		min-height: 40px;
	}
}
@media (hover: hover){
	.g-btn > a:hover,
	.g-btn > button:hover{
		opacity: 0.7;
	}
}
@media screen and (max-width: 767px){
	.g-btn{
		max-width: 250px;
	}
	.g-btn > a,
	.g-btn > button{
		min-height: 44px;
	}
}
/* ボタンベース_フォントサイズ */
.g-btn__label{
	letter-spacing: 0.15em;
	color: var(--c-white);
	line-height: 1;
}
@media screen and (min-width: 768px){
	.g-btn__label{
		font-size: 12px;
		font-weight: 300;
	}
}
@media screen and (max-width: 767px){
	.g-btn__label{
		font-size: 14px;
		font-weight: 400;
		transform: translateY(-0.5px);
	}
}

/* 赤 */
.g-btn--red > a,
.g-btn--red > button{
	background: var(--c-red-500);
}

/* コンテナベース - 横並び */
.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--primary > a,
.g-btn--primary > button{
	background-color: var(--c-black);
	color: var(--c-white);
}
.g-btn--primary > a:visited{
	color: var(--c-white);
}
.g-btn--secondary > a,
.g-btn--secondary > button{
	background-color: var(--c-white);
}
.g-btn--secondary > a:visited{
	color: var(--c-black);
}
@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;
		color: var(--c-black);
		background-color: var(--c-white);
	}
	.g-btn--secondary > a:hover,
	.g-btn--secondary > button:hover{
		opacity: 1;
		background-color: var(--bg-c-gray);
	}
}
/* 大きさ - 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,
.g-btn--arrow > button{
	position: relative;
}
.g-btn--arrow > a::after,
.g-btn--arrow > button::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,
.g-btn--arrow.g-btn--secondary > button::after {
	background-color: var(--c-black);
}
.g-btn--arrow.g-btn--primary > a::after,
.g-btn--arrow.g-btn--primary > button::after {
	background-color: var(--c-white);
}
@media screen and (min-width: 768px){
	.g-btn--arrow > a::after,
	.g-btn--arrow > button::after {
		width: 12px;
		top: 40%;
		right: 10px;
	}
}
@media screen and (max-width: 767px){
	.g-btn--arrow > a::after,
	.g-btn--arrow > button::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-btn{
		transition: 0.3s;
	}
}
@media (hover: hover){
	.tab-btn:hover{
		opacity: 0.5;
	}
	.tab-btn.show{
		opacity: 1;
	}
}
/* -----------------ポップアップ共通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-sp-menu-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: 20px;
		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: 20px;
	}
}

/* -------------------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(--c-white);
  }
  .g-slickArrow--black:hover{
    background-color: var(--c-black);
  }
  .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: 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{
		mask-size: 40%;
	}
}
/* -------------------g-slickDots-------------------- */
.slick:has(.g-slickDots){
	margin-bottom: 0;
}
.g-slickDots{
	display: flex;
	justify-content: center;
}
.g-slickDots li{
	aspect-ratio: 1/1;
	position: relative;
}
.g-slickDots button{
	font-size: 0;
	border: 1px solid var(--c-gray-300);
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.g-slickDots button.is-active{
	background-color: var(--txt-c-base);
	border-color: var(--txt-c-base);
}
@media screen and (min-width: 768px){
	.g-slickDots{
		gap: 15px;
		margin-top: 20px;
	}
	.g-slickDots li{
		width: 15px;
	}
	.g-slickDots button{
		width: 10px;
	}
}
@media screen and (max-width: 767px){
	.g-slickDots{
		gap: 10px;
		margin-top: 10px;
	}
	.g-slickDots li{
		width: 15px;
	}
	.g-slickDots button{
		width: 10px;
	}
}

/* --------------------splide-------------------- */
/* Splide ページネーション - 罫線型 */
.splide__pagination{
  position: static;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.splide__pagination__page{
  width: 30px;
  height: 2px;
  border-radius: 6px;
  background-color: var(--txt-c-base);
  opacity: 0.3;
  margin: 0;
  border: none;
  transition: opacity .3s ease;
}
.splide__pagination__page.is-active{
  opacity: 1;
  background-color: var(--txt-c-base);
  transform: none;
}

/* PC */
@media screen and (min-width: 768px){
  .splide__pagination{
    margin-top: 10px;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .splide__pagination{
    margin-top: 5px;
  }
  .splide__pagination__page{
    width: 20px;
  }
}

/* --------------------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: 8px;
	--grid-cols-sp: 5;
	--grid-gap-sp: 5px;
	margin-block: 20px 10px;
}
.g-payment li{
	border: 1px solid var(--bd-c-gray);
	border-radius: 4px;
	font-weight: 500;
	font-size: 10px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	text-align: center;
	line-height: 1.3;
	letter-spacing: 0.07em;
	overflow: hidden;
	min-height: 40px;
}
.g-payment li small{
	display: block;
	font-weight: 400;
}

/* -------------------swiper - 矢印---------------------- */
/* 矢印 */
.swiper-button-next, .swiper-button-prev{
  width: 30px !important;
  height: 30px !important;
  transform: translateY(-50%) !important;
	transition: 0.3s;
}
.swiper-button-next::before, .swiper-button-prev::before{
	content: '';
	display: block;
	width: 24px;
	aspect-ratio: 1;
  background:var(--slider-arrow) no-repeat center center / 100%;
}
:is(.swiper-button-next, .swiper-button-prev)::after{
  display: none !important;
}
.swiper-button-next{
  transform: translateY(-50%) rotate(180deg) !important;
}
@media screen and (min-width: 768px){
	.swiper-button-next, .swiper-button-prev{
		top: 58% !important;
	}
  .swiper-button-prev{
    left: -35px !important;
  }
  .swiper-button-next{
    right: -35px !important;
  }
}
@media (hover: hover){
	:is(.swiper-button-next, .swiper-button-prev):hover{
		cursor: pointer;
		opacity: .7;
	}
}
@media screen and (min-width: 768px) and (max-width: 1300px){
  .swiper-button-prev{
    left: -10px !important;
  }
  .swiper-button-next{
    right: -10px !important;
  }
}
@media screen and (max-width: 767px) {
	.swiper-button-next, .swiper-button-prev{
		top: 62% !important;
	}
  .swiper-button-prev{
    left: -6px !important;
  }
  .swiper-button-next{
    right: -6px !important;
  }
}

/* -------------------swiper - ドット---------------------- */
/* ページネーション */
.swiper-pagination-bullet{
	width: 30px !important;
	height: 3px !important;
	background: #DEDEDE;
	border-radius: 0px !important;
}
.swiper-pagination-bullet-active{
	background: #707070 !important;
}

/* ----------------------商品名---------------------- */
.fs-c-productListItem__productName .fs-c-productName__name{
	display: block;
	font-weight: 300;
	font-family: var(--ff-base);
	overflow: hidden;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}
.fs-c-productListItem__image a{
	display: flex !important;
	align-items: center;
	overflow: hidden;
}
@media screen and (min-width: 768px){
	.fs-c-productListItem__productName{
		margin-block: 5px 0px;
	}
	.fs-c-productListItem__productName .fs-c-productName__name{
		font-size: var(--fz-sm);
		line-height: 1.6;
		-webkit-line-clamp: 2;
	}
}
@media screen and (max-width: 767px){
	.fs-c-productList__list__item .fs-c-productListItem__productName{
		margin-block: 5px 0px !important;
	}
	.fs-c-productListItem__productName .fs-c-productName__name{
		font-size: 12px !important;
		line-height: 1.4 !important;
		-webkit-line-clamp: 2 !important;
		margin: 0px !important;
	}
	.fs-c-productName__variation{
		font-size: 11px;
	}
}
/* ----------------------商品価格---------------------- */
.fs-c-productListItem .fs-c-productPrices{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	flex: 1;
	margin-top: 1px;
}
.fs-c-productListItem .fs-c-productPrices *{
	line-height: 1.4;
}
.fs-c-productListItem .fs-c-productPrice{
	display: flex;
	align-items: baseline;
}
.fs-c-productListItem .fs-c-price{
  display: flex;
  flex-direction: row-reverse;
	align-items: baseline;
}
.fs-c-productListItem .fs-c-price__value{
  letter-spacing: 0.02em;
}
.fs-c-productListItem .fs-c-price__value::before{
	content: '¥';
	display: inline-block;
	margin-right: 2px;
	font-size: var(--fz-11);
}
.fs-c-productListItem .fs-c-price__currencyMark{
  font-size: 0;
}
.fs-c-productListItem .fs-c-price__currencyMark::after{
  content: "円";
	font-weight: 300;
}
.fs-c-productListItem .fs-c-productPrice__main{
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
}
.fs-c-productListItem .fs-c-productPrice__main__label{
	display: none;
}
.fs-c-productListItem :is(
  .fs-c-productPrice__addon,
  .fs-c-productPrice__main__addon
){
  display: flex;
  align-items: baseline;
	font-weight: 300;
}
.fs-c-productListItem .fs-c-productPrice__addon::before{
	content: "(";
}
.fs-c-productListItem .fs-c-productPrice__addon::after{
	content: ")";
}
.fs-c-productListItem .fs-c-productPrice__main__addon::before{
	content: "(";
}
.fs-c-productListItem .fs-c-productPrice__main__addon::after{
	content: ")";
}
.fs-c-productPrice__addon.fs-c-productPrice__addon--listed::before,
.fs-c-productPrice__addon.fs-c-productPrice__addon--listed::after{
	display: none;
}
@media screen and (min-width: 768px){
  .fs-c-productListItem .fs-c-productPrices{
		gap: 1px;
  }
	.fs-c-productListItem .fs-c-productPrice{
		gap: 1px;
	}
	.fs-c-productListItem .fs-c-productPrice__main{
		gap: 3px;
	}
	.fs-c-productListItem .fs-c-productPrice__main__price{
		gap: 1px;
	}
  .fs-c-productListItem .fs-c-price__currencyMark::after{
    font-size: 12px;
  }
	.fs-c-productListItem :is(
		.fs-c-productPrice__addon,
		.fs-c-productPrice__main__addon
	){
			font-size: 12px;
		}
	.fs-c-productListItem .fs-c-price__value{
		font-size: var(--fz-16);
	}
}
@media screen and (max-width: 767px){
  .fs-c-productListItem .fs-c-productPrices{
		gap: 1px;
		margin-top: 3px;
  }
	.fs-c-productListItem .fs-c-productPrice{
		gap: 1px;
	}
	.fs-c-productListItem .fs-c-productPrice__main{
		gap: 3px;
	}
	.fs-c-productListItem .fs-c-productPrice__main__price{
		gap: 1px;
	}
  .fs-c-productListItem .fs-c-price__currencyMark::after{
    font-size: 11px;
  }
	.fs-c-productListItem :is(
		.fs-c-productPrice__addon,
		.fs-c-productPrice__main__addon
	){
			font-size: 11px;
		}
	.fs-c-productListItem .fs-c-price__value{
		font-size: 12px;
	}
}

/* -----------------reCAPTCHA----------------- */
@media screen and (min-width: 768px){
	.grecaptcha-badge{
		bottom: 100px !important;
	}
}
@media screen and (max-width: 767px){
  .grecaptcha-badge{
    bottom: 100px !important;
  }
}