@charset "utf-8";
/* CSS関数設定 */
:root {
	/* カラーパレット --color-  */
	--c-white: #FFFFFF;
	--c-white-op85: rgba(255, 255, 255, 0.85);
	--c-white-op50: rgba(255, 255, 255, 0.5);
	--c-black: #000000;
	--c-black-op50: rgba(0, 0, 0, 0.5);

	--c-gray-100: #F5F5F5;
  --c-gray-150: #EAEAEA;
	--c-gray-200: #D1D1D1;
	--c-gray-250: #a7a7a7;
	--c-gray-300: #8D8D8D;
	--c-gray-400: #707070;
	

	--c-sliver-500: #B4C5CC;

	--c-blue-005: #F2F4F5;
	--c-blue-500: #0E5772;
	--c-blue-600: #00439F;
	--c-blue-600-op20: rgba(0, 67, 159, 0.2);

	--c-beige-300: #F5F3F2;

	--c-dark-700: #222222;

	--c-red-500: #E72420;
	--c-red-700: #A50300;

	--c-pink-300: #fef5f5;

	--c-yellow-400: #FFC51B;

	--c-gold-700: #AC9F6D;

	/* カラーテーマ --color-theme- */
	--theme-c-main: var(--c-green-500);

	/* テキストカラー --text-color- */
	--txt-c-base: var(--c-dark-700);
	--txt-c-white: var(--c-white);
	--txt-c-addon: var(--c-gray-300);
	--txt-c-emphasis: var(--c-red-700);

	/* ボーダーカラー --border-color- */
	--bd-c-gray: var(--c-gray-200);

	/* 背景カラー --background-color- */
	--bg-c-gray: var(--c-gray-100);
	--bg-c-beige: var(--c-beige-300);
	--bg-c-pink: var(--c-pink-300);

	/* ランキングカラー --ranking-color */
	--ranking-c-1st: var(--c-yellow-400);
	--ranking-c-2nd: var(--c-sliver-500);
	--ranking-c-3rd: var(--c-red-700);

	/* 共通角丸 --border-radius- */
	--bdrs-sm: 5px;
	--bdrs-md: 10px;
	--bdrs-lg: 20px;

	/* 共通ボックス影 --box-shadow- */
	--bxsd-default: 0px 0px 15px -5px var(--bd-c-gray);
	--bxsd-bottom: 0px 5px 15px -5px var(--bd-c-gray);

	/* ベース文字間隔 --letter-spacing */
	--ls-default: 0.05em;

	/* フォント --font-family- */
	--ff-base: "Zen Kaku Gothic New", sans-serif;

	/* 英数字フォント --font-family- */
	--ff-en: var(--ff-base);
	--ff-num: var(--ff-base);

	/* フォントウェイト --font-weight- */
	--fw-base: 500;
	
	/* アニメーション */
	--anime-fade-in: fadeIn .5s ease-in-out 0s forwards;
	--anime-fade-out: fadeOut .5s ease-in-out 0s forwards;

	/* フォントサイズ --font-size */
	--fz-9: clamp(8px, 0.8vw, 9px);
	--fz-10: clamp(8px, 0.8vw, 10px);
	--fz-11: clamp(10px, 1.1vw, 11px);
	--fz-12: clamp(10px, 1.1vw, 12px);
	--fz-13: clamp(11px, 1vw, 13px);
	--fz-14: clamp(12px, 1.2vw, 14px);
	--fz-15: clamp(13px, 1.4vw, 15px);
	--fz-16: clamp(14px, 1.5vw, 16px);
	--fz-18: clamp(15px, 1.6vw, 18px);
	--fz-20: clamp(16px, 1.8vw, 20px);
	--fz-22: clamp(18px, 2vw, 22px);
	--fz-25: clamp(20px, 2vw, 25px);
	--fz-26: clamp(20px, 2.2vw, 26px);
	--fz-28: clamp(22px, 2.5vw, 28px);
	--fz-30: clamp(25px, 3vw, 30px);
	--fz-35: clamp(25px, 3vw, 35px);
	--fz-38: clamp(30px, 3.5vw, 38px);
	--fz-40: clamp(30px, 3.5vw, 40px);
	--fz-42: clamp(30px, 4vw, 42px);
	--fz-50: clamp(30px, 4vw, 50px);
	--fz-60: clamp(40px, 5vw, 60px);
	--fz-70: clamp(50px, 6vw, 70px);
	--fz-14-const: 14px;
	--fz-15-const: 15px;

	--fz-xs: var(--fz-10); /* extra small */
	--fz-ss: var(--fz-12); /* super small */
	--fz-sm: var(--fz-14); /* small */
	--fz-md: var(--fz-16); /* medium */
	--fz-lg: var(--fz-26); /* large */
	--fz-xl: var(--fz-38); /* extra large */
	--fz-xxl: var(--fz-50); /* double extra large */

	/* ブロック間 --space */
	--spc-10: clamp( 5px, 1.1vw, 10px);
	--spc-15: clamp( 10px, 1.2vw, 15px);
	--spc-20: clamp( 15px, 1.7vw, 20px);
	--spc-25: clamp( 15px, 1.7vw, 25px);
	--spc-35: clamp( 20px, 2.5vw, 35px);
	--spc-30: clamp( 20px, 2.5vw, 30px);
	--spc-40: clamp( 30px, 3.5vw, 40px);
	--spc-50: clamp( 30px, 3.5vw, 50px);
	--spc-60: clamp( 40px, 4.5vw, 60px);
	--spc-65: clamp( 50px, 5.5vw, 65px);
	--spc-75: clamp( 60px, 6.5vw, 75px);
	--spc-80: clamp( 50px, 5.5vw, 80px);
	--spc-90: clamp( 60px, 6.5vw, 90px);
	--spc-100: clamp( 70px, 7.5vw, 100px);

	--spc-xs: var(--spc-10); /* extra small */
	--spc-ss: var(--spc-15); /* super small */
	--spc-sm: var(--spc-20); /* small */
	--spc-md: var(--spc-30); /* medium */
	--spc-lg: var(--spc-50); /* large */
	--spc-xl: var(--spc-80); /* extra large */
	--spc-xxl: var(--spc-100); /* double extra large */


	/* PCマックス幅 --pc-max-width */
	--pc-maw: var(--pc-maw-md);
	--pc-maw-ss: 900px;
	--pc-maw-sm: 1000px;
	--pc-maw-md: 1200px;
	--pc-maw-lg: 1440px;

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

	/* セクション間隔半分 --section-space */
	--sec-spc-half: calc(var(--sec-spc) / 2);

	/* sp横スクロール用padding */
	--sp-scroll-padding-left: calc((100% - var(--inner-w)) / 2);
}

@media screen and (min-width: 768px){
	:root{
		/* --inner-width */
		--inner-w: 90%;
		/* --section-space */
		--sec-spc: clamp(80px, 10vw, 120px);
	}
}
@media screen and (max-width: 767px){
	:root{
		--inner-w: calc(335 / 375 * 100%);
		--sec-spc: 60px;
	}
}
/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
/* リセットCSS */
*{margin:0;padding:0;min-height: 0;min-width: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
html {height:100%;scroll-behavior: smooth;}
ul li ,ol li{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight: var(--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 button,
.formReset input[type="button"],
.formReset input[type="submit"],
.formReset input[type="text"],
.formReset input[type="image"],
.formReset select{
	background-color: unset;
	color: var(--txt-c-base);
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
}
.formReset input[type="text"],
.formReset input[type="text"]::placeholder{
	font-family: var(--ff-base);
}
.formReset input[type="text"]{
	color: var(--txt-c-base);
}
.formReset input[type="text"]::placeholder{
	color: var(--txt-c-addon);
	font-weight: 400;
}
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-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);
}
@media screen and (min-width: 768px){
	.g-pd{
		padding-block: calc(var(--sec-spc) / 1.5);
	}
	.g-pdt{
		padding-top: calc(var(--sec-spc) / 1.5);
	}
	.g-pdb{
		padding-bottom: calc(var(--sec-spc) / 1.5);
	}
}
@media screen and (max-width: 767px){
	.g-pd{
		padding-block: var(--sec-spc);
	}
	.g-pdt{
		padding-top: var(--sec-spc);
	}
	.g-pdb{
		padding-bottom: var(--sec-spc);
	}
}
/* グリッド */
.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);
}
@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 (hover: hover){
	a.hover-zoom{
		display: block;
		overflow: hidden;
	}
	a.hover-zoom img{
		transition: 0.3s;
	}
	a.hover-zoom:hover,
	a.hover-zoom:hover img{
		opacity: 1 !important;
	}
	a.hover-zoom:hover img{
		transform: scale(1.1);
	}
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: calc( var(--notice-height) + var(--header-body-height) + var(--nav-height));
	}
	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: 10px;
	}
	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■■■■■■■■■■■■■■■■■■■■■■ */
:root{
	--header-body-element-height: clamp( 40px, 4.5vw, 50px);
	--header-body-element-bdrs: 25px;
}
@media screen and (min-width: 768px){
	:root{
		--notice-height: clamp( 35px, 4vw, 44px);
		--header-body-height: clamp( 80px, 9vw, 110px);
		--nav-height: clamp( 40px, 4.5vw, 50px);
	}
}
@media screen and (max-width: 767px){
	:root{
		--notice-height: 44px;
	}
}
@media screen and (min-width: 768px){
	body{
		padding-top: calc( var(--notice-height) + var(--header-body-height) + var(--nav-height));
	}
	body:not(:has(.g-notice)){
		padding-top: calc(var(--header-body-height) + var(--nav-height));
	}
}

/* g-notice */
.g-notice{
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--notice-height);
	width: 100%;
}
.g-notice__txt{
	font-size: 14px;
	letter-spacing: 0.03em;
}
.g-notice__txt strong{
	color: var(--txt-c-emphasis);
}
@media screen and (min-width: 768px){
	.g-notice{
		position: absolute;
		top: 0;
		left: 0;
	}
}
/* headerarea */
@media screen and (min-width: 768px){
	#headerarea{
		position: absolute;
		width: 100%;
		left: 0;
		top: var(--notice-height);
		z-index: 99;
		background-color: var(--c-white);
	}
	body:not(:has(.g-notice)) #headerarea{
		position: fixed;
		top: 0;
	}
	#headerarea.is-fixed{
		position: fixed;
		top: 0;
	}
}
@media screen and (max-width: 767px){
	#headerarea{
		border-bottom: 1px solid var(--bd-c-gray);
	}
}
/* hd-body */
@media screen and (min-width: 768px){
	.hd-body{
		display: flex;
		align-items: center;
		height: var(--header-body-height);
	}
  .scroll .hd-body{
    height: 60px;
    transition: .3s;
  }
  .hd-body{
    transition: .3s;
  }
}
@media screen and (max-width: 767px){
	.hd-body{
		display: grid;
		padding-block: 20px;
		gap: 20px;
	}
}
/* hd-logo */
@media screen and (min-width: 768px){
	.hd-logo{
		flex: 1;
		max-width: 312px;
		margin-right: var(--spc-50);
	}
  .scroll .hd-logo{
    max-width: 250px;
    transition: .3s;
  }
  .hd-logo{
    transition: .3s;
  }
}
@media screen and (max-width: 767px){
	.hd-logo{
		width: 250px;
		margin-inline: auto;
	}
}
/* hd-search */
.hd-search.formReset{
	--this-bdrs: var(--header-body-element-bdrs);
	--this-input-padding-right: 35px;
	--this-button-width: 15px;
	--header-body-element-height: 50px;
	width: 300px;
	display: flex;
	border: 1px solid var(--txt-c-base);
	border-radius: var(--this-bdrs);
	position: relative;
	background-color: var(--c-white);
}
.hd-search.formReset .hd-search__select{
	width: 113px;
	position: relative;
}
.hd-search.formReset .hd-search__select::before{
	content: "";
	display: inline-block;
	--this-mask: var(--data-icon-arrow) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--txt-c-base);
	aspect-ratio: 1;
	width: 7px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	right: 15px;
	z-index: 1;
}
.hd-search.formReset .hd-search__select::after{
	content: "";
	--this-color-1: var(--txt-c-base);
	--this-color-2: transparent;
	--this-width: 1.5px;
	--this-height: 4px;
	--this-size: 1.5px;
	background-image: linear-gradient(to bottom, var(--this-color-1) 0%, var(--this-color-1) var(--this-size), var(--this-color-2) var(--this-size), var(--this-color-2) var(--this-height));
	background-size: var(--this-size) var(--this-height);
	background-repeat: repeat-y;
	height: 70%;
	width: var(--this-size);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: calc(0px - (var(--this-size)) / 2);
}
.hd-search.formReset .hd-search__select select{
	height: var(--header-body-element-height);
	font-size: 12px;
	font-weight: var(--fw-base);
	padding-inline: 21px 25px;
	position: relative;
	border-radius: var(--this-bdrs) 0 0 var(--this-bdrs);
	z-index: 2;
}
.hd-search.formReset input[type="text"]{
	flex: 1;
	border-radius: 0 var(--this-bdrs) var(--this-bdrs) 0;
	height: var(--header-body-element-height);
	padding-inline: 12px var(--this-input-padding-right)
}
.hd-search.formReset button[type="submit"]{
	--this-mask: var(--data-icon-search) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--txt-c-base);
	aspect-ratio: 1;
	width: var(--this-button-width);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: calc(var(--this-input-padding-right) - var(--this-button-width));
}
@media screen and (min-width: 768px){
	.hd-search.formReset{
		margin-inline: auto var(--spc-20);
	}
	.hd-search.formReset input[type="text"]{
		font-size: 12px;
	}
	.hd-search.formReset input[type="text"]::placeholder{
		font-size: 12px;
	}
  .scroll .hd-search.formReset{
    height: 40px;
    transition: .3s;
  }
  .scroll .hd-search.formReset .hd-search__select select{
    height: 100%;
    min-height: unset;
    transition: .3s;
  }
  .scroll .hd-search.formReset input[type="text"]{
    height: 100%;
    min-height: unset;
    transition: .3s;
  }
}
@media screen and (max-width: 767px){
	.hd-search.formReset{
		margin-inline: auto;
	}
	.hd-search.formReset input[type="text"]{
		padding-bottom: 7px;
	}
	.hd-search.formReset input[type="text"]::placeholder{
		font-size: 12px;
	}
	#headerarea .hd-search.formReset{
		display: none;
	}
	#fs_Top .hd-search.formReset{
		display: flex;
	}
}
/* hd-user */
@media screen and (min-width: 1101px){
	.hd-user{
		width: fit-content;
		display: flex;
		gap: 10px;
	}
	.hd-user__item{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 5px;
		width: 110px;
		height: var(--header-body-element-height);
		background-color: var(--txt-c-emphasis);
		border-radius: var(--header-body-element-bdrs);
	}
  .scroll .hd-user__item{
    height: 40px;
    transition: .3s;
  }
	.hd-user__item::before{
		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(--c-white);
		aspect-ratio: 1;
		width: 15px;
	}
	.hd-user__label{
		color: var(--c-white);
		font-size: var(--fz-14);
		line-height: 1.2;
		letter-spacing: 0;
		display: block;
	}
	.hd-user__label small{
		font-size: var(--fz-12);
		display: block;
	}
  .scroll .hd-user__label{
		font-size: var(--fz-13);
    transition: .3s;
	}
	.scroll .hd-user__label small{
		font-size: var(--fz-11);
    transition: .3s;
  }
	.hd-user__item .fs-client-cart-count{
		position: static;
		margin-left: -2px;
		background-color: var(--txt-c-base);
		color: var(--c-white);
	}
	.hd-user > li[ontouchstart=""]{
		position: relative;
	}
	.hd-user__dropdownContainer{
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		transition: .3s;
		--this-padding-top: 11px;
		padding-top: var(--this-padding-top);
		position: absolute;
		top: calc(120% - var(--this-padding-top));
		left: 50%;
		transform: translateX(-50%);
	}
	.hd-user > li[ontouchstart=""]:hover .hd-user__dropdownContainer{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.hd-user__dropdown{
		width: 100px;
		box-shadow: var(--bxsd-default);
		border: 1px solid var(--txt-c-base);
		background-color: #fff;
		border-radius: var(--bdrs-md);
		padding-block: 10px;
		display: flex;
		justify-content: center;
	}
	.hd-user__dropdown ul{
		display: grid;
		gap: 5px;
	}
	.hd-user__dropdown ul li a{
		display: flex;
		align-items: center;
		gap: 3px;
	}
	.hd-user__dropdown__label{
		font-size: 11px;
	}
	.hd-user__dropdown :is(
		.fs-client-cart-count,
		.fs-client-subscriptionCart-count
	){
		position: static;
	}
}
@media screen and (max-width: 1100px){
	.hd-user{
		display: none;
	}
}
@media (hover: hover){
	.hd-user__dropdown ul li a:hover{
		opacity: 1;
		color: var(--txt-c-emphasis);
	}
}
/* hd-hamburger  */
.hd-hamburger{
	height: var(--header-body-element-height);
	aspect-ratio: 1;
	border-radius: 50%;
	background-color: var(--txt-c-emphasis);
	position: relative;
}
.hd-hamburger::after{
	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(--c-white);
	aspect-ratio: 1;
	width: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
@media screen and (min-width: 1101px){
	.hd-hamburger{
		display: none;
	}
}
@media screen and (max-width: 1100px){
	.hd-hamburger{
		display: block;
	}
}
@media screen and (max-width: 767px){
	.hd-hamburger{
		display: none;
	}
}
/* hd-nav */
@media screen and (min-width: 768px){
	.hd-nav{
		height: var(--nav-height);
		border: 1px solid var(--bd-c-gray);
		border-left: none;
		border-right: none;
		display: flex;
		align-items: center;
	}
	.hd-nav__inner{
		display: flex;
		align-items: center;
	}
	.hd-nav .hd-category{
		flex: 1;
		display: flex;
		justify-content: space-between;
		padding-inline: var(--spc-30);
	}
	.hd-nav .hd-category__item{
		font-size: var(--fz-15);
		font-weight: 700;
		letter-spacing: 0.03em;
		position: relative;
	}
	/* .hd-nav .hd-category > li[ontouchstart=""] p.hd-category__item{
		display: none;
	} */
	.hd-nav .hd-category > li[ontouchstart=""]{
		position: relative;
	}
	.hd-nav .hd-category__dropdownContainer{
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		transition: .3s;
		--this-padding-top: 11px;
		padding-top: var(--this-padding-top);
		position: absolute;
		top: calc(120% - var(--this-padding-top));
		left: 50%;
		transform: translateX(-50%);
	}
	.hd-nav .hd-category > li[ontouchstart=""]:hover .hd-category__dropdownContainer{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.hd-nav .hd-category__dropdown{
		width: 250px;
		box-shadow: var(--bxsd-default);
		border: 1px solid var(--txt-c-base);
		background-color: #fff;
		border-radius: var(--bdrs-md);
		padding: var(--spc-15) var(--spc-20);
	}
	.hd-nav .hd-category__dropdown ul{
		display: grid;
		gap: 5px;
	}
	.hd-nav .hd-category__dropdown ul li a{
		font-size: var(--fz-14);
		display: block;
	}
}
@media screen and (min-width: 1101px){
	.hd-guide{
		width: fit-content;
		display: flex;
		justify-content: space-between;
		gap: var(--spc-20);
		padding-inline: var(--spc-25);
		border-left: 1.5px solid var(--bd-c-gray);
	}
	.hd-guide__item{
		display: flex;
		align-items: center;
		gap: 3px;
		font-size: var(--fz-12);
		letter-spacing: 0;
		font-weight: 700;
	}
	.hd-guide__item::before{
		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(--c-red-500);
		aspect-ratio: 1;
		width: 15px;
	}
	.hd-guide > li[ontouchstart=""]{
		position: relative;
	}
	.hd-guide__dropdownContainer{
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		transition: .3s;
		--this-padding-top: 20px;
		padding-top: var(--this-padding-top);
		position: absolute;
		top: calc(157% - var(--this-padding-top));
		left: -10px;
	}
	.hd-guide > li[ontouchstart=""]:hover .hd-guide__dropdownContainer{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.hd-guide__dropdown{
		width: 293px;
		box-shadow: var(--bxsd-default);
		background-color: #fff;
		border-radius: var(--bdrs-md);
		padding-block: var(--spc-20);
		display: flex;
		justify-content: center;
	}
	.hd-guide__dropdown ul{
		display: grid;
		gap: 10px;
	}
	.hd-guide__dropdown ul li a{
		font-size: var(--fz-12);
		line-height: 1.5;
		display: block;
		position: relative;
		padding-left: 12px;
	}
	.hd-guide__dropdown ul li a:before{
		content: "";
		background-color: var(--txt-c-emphasis);
		aspect-ratio: 1;
		width: 5px;
		border-radius: 50%;
		display: inline-block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
	}
}
@media (hover: hover){
	.hd-guide__dropdown ul li a:hover{
		color: var(--txt-c-emphasis);
		opacity: 1;
	}
}
@media screen and (max-width: 1100px){
	.hd-guide{
		display: none;
	}
}
@media (hover: hover){
	.hd-category__item:hover,
	.hd-category > li[ontouchstart=""]:hover .hd-category__item{
		color: var(--txt-c-emphasis);
		opacity: 1;
	}
	.hd-category > li[ontouchstart=""] .hd-category__item::after{
    content: "";
    display: inline-block;
    --this-mask: var(--data-icon-arrow) no-repeat center center / 100%;
    mask: var(--this-mask);
    -webkit-mask: var(--this-mask);
    background-color: var(--txt-c-emphasis);
    aspect-ratio: 1;
    width: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    right: -12px;
    opacity: 0;
		transition: .3s;
	}
	.hd-category > li[ontouchstart=""]:hover .hd-category__item::after{
		opacity: 1;
	}
	.hd-category__dropdown ul li a:hover,
	.hd-guide__dropdown ul li a:hover{
		color: var(--txt-c-emphasis);
		opacity: 1;
	}
	.hd-guide__item:hover,
	.hd-guide > li[ontouchstart=""]:hover .hd-guide__item{
		color: var(--txt-c-emphasis);
		opacity: 1;
	}
}
/* g-keyword */
.g-keyword__list li a{
	position: relative;
}
.g-keyword__list li a::before{
	content: '#';
	color: var(--txt-c-emphasis);
}
@media (hover: hover){
	.g-keyword__list li a:hover{
		opacity: 1;
	}
	.g-keyword__list li a::after{
		content: "";
		display: inline-block;
		background-color: var(--txt-c-emphasis);
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: -2px;
		left: 0;
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .3s;
	}
	.g-keyword__list li a:hover::after{
		transform: scaleX(1);
		transform-origin: left;
	}
}
@media screen and (min-width: 768px){
	.g-keyword{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: var(--spc-15);
		padding-block: var(--spc-15) var(--spc-15);
	}
	.g-keyword__label{
		font-size: var(--fz-14);
		display: flex;
		align-items: center;
		gap: 7px;
	}
	.g-keyword__label::after{
		content: "";
		display: inline-block;
		--this-mask: var(--data-icon-arrow) no-repeat center center / 100%;
		mask: var(--this-mask);
		-webkit-mask: var(--this-mask);
		background-color: var(--txt-c-base);
		aspect-ratio: 1;
		width: 7px;
	}
	.g-keyword__list{
		display: flex;
		gap: var(--spc-15);
	}
	.g-keyword__list li a{
		font-size: var(--fz-14);
	}
}
@media screen and (max-width: 767px){
	.g-keyword{
		overflow-x: scroll;
		overflow-y: hidden;
		padding-left: var(--sp-scroll-padding-left);
		-ms-overflow-style: none;
		scrollbar-width: none;
		display: flex;
		align-items: center;
		padding-block: 15px 20px;
	}
	.g-keyword::-webkit-scrollbar{
		display: none;
	}
	.g-keyword__label{
		flex: 0 0 auto;
		font-size: 12px;
		display: flex;
		align-items: center;
		gap: 7px;
		margin-inline: 10px;
	}
	.g-keyword__label::before,
	.g-keyword__label::after{
		content: "";
		display: inline-block;
		background: var(--txt-c-base);
		width: 1px;
		height: 10px;
	}
	.g-keyword__list{
		display: flex;
		flex: 0 0 auto;
		gap: 10px;
	}
	.g-keyword__list li a{
		font-size: 12px;
	}
}
/* fat-nav */
.fat-nav{
	top: 0;
  z-index: 999;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: var(--bg-c-beige);
  transform: scale(1);
  transition-property: transform;
  transition-duration: 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
/* .fat-nav--menu{
  top: 0;
} */
.fat-nav.active {
  transform: scale(1);
}
.fat-nav__wrapper{
  height: 100%;
  padding: 20px 0% 50px;
  max-width:1100px;
  box-sizing: border-box;
}
.fat-nav--menu .fat-nav__wrapper{
	height: 100%;
}
.fn-inner{
	margin-inline: auto;
}
@media screen and (min-width: 768px){
	.fat-nav--menu{
		right: -150%;
		max-width: 400px;
		transition: all 0.8s;
	}
	.fat-nav--menu.active{
		right: 0;
	}
	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;
		-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);
	}
	.fn-inner{
		max-width: 280px;
	}
}
@media screen and (max-width: 767px){
	.fat-nav{
		right: 0;
	}
	/* .fat-nav--menu{
		right: 0;
	}
	.fat-nav--search{
		bottom: -100%;
		transition: all 0.3s;
	}
	.fat-nav--search.active{
		bottom: 0;
	}
	.fat-nav--search{
		height: 80vh;
	} */
	.fn-inner{
		max-width: 300px;
	}
}
.fat-nav--menu .hd-hamburger{
	position: absolute;
	top: 20px;
	right: 20px;
}
.fn-logo{
	width: 167px;
}
.fat-nav--menu .hd-search{
	margin-block: 30px 40px;
}
.fn-block{
	border-top: 1px solid var(--bd-c-gray);
}
.fn-block:not(:has(.fn-user)){
	padding-top: 40px;
	margin-bottom: 40px;
}
.fn-user{
	display: flex;
	width: 90%;
	margin-inline: auto;
	max-width: 375px;
}
.fn-user li{
	flex: 1;
	position: relative;
}
.fn-user li:not(:last-child)::after{
	content: "";
	display: inline-block;
	background-color: var(--bd-c-gray);
	width: 1px;
	height: calc(100% - 30px);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.fn-user li a{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	height: 80px;
	color: var(--txt-c-emphasis);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
}
.fn-user li a::before{
	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-emphasis);
	aspect-ratio: 1;
	width: 25px;
}
.fn-user li a small{
	display: block;
	text-align: center;
	font-size: 14px;
}
.fn-menu dt{
	font-weight: 14;
	font-weight: 700;
	margin-bottom: 17px;
}
.fn-menu .hd-category{
	display: block;
}
.fn-menu .hd-category > li{
	position: relative;
}
.fn-menu .hd-category > li::before{
	content: "";
	--this-color-1: var(--bd-c-gray);
	--this-color-2: transparent;
	--this-width: 8px;
	--this-height: 1px;
	--this-size: 3px;
	background-image: linear-gradient(to right, var(--this-color-1), var(--this-color-1) var(--this-size), var(--this-color-2) var(--this-size), var(--this-color-2) var(--this-width));
	background-size: var(--this-width) var(--this-height);
	background-repeat: repeat-x;
	width: 100%;
	height: var(--this-height);
	position: absolute;
	left: 0;
	top: 0;
}
.fn-menu .hd-category__item{
	display: block;
	font-weight: 700;
	font-size: 18px;
	padding: 10px 20px;
	position: relative;
	transition: .3s;
}
/* .fn-menu .hd-category > li[ontouchstart=""] a.hd-category__item{
	display: none;
} */
.fn-menu .hd-category > li[ontouchstart=""] .hd-category__item::after {
	content: "";
	display: inline-block;
	--this-mask: var(--data-icon-toggle) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--txt-c-emphasis);
	aspect-ratio: 1;
	width: 13px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	transition: .3s;
	opacity: 1;
}
.fn-menu .hd-category > li[ontouchstart=""] .hd-category__item.is-active{
	color: var(--txt-c-emphasis);
}
.fn-menu .hd-category > li[ontouchstart=""] .hd-category__item.is-active::after{
	background-color: var(--txt-c-emphasis);
	transform: translateY(-50%) rotate(-180deg);
}
.fn-menu .hd-category__dropdownContainer{
	display: none;
}
.fn-menu .hd-category__dropdown ul{
	margin-block: 5px 20px;
	display: grid;
	gap: 5px;
}
.fn-menu .hd-category__dropdown ul li a{
	display: block;
	position: relative;
	color: var(--txt-c-emphasis);
	padding-left: 30px;
}
.fn-menu .hd-category__dropdown ul li a::before{
	content: '・';
	color: var(--txt-c-emphasis);
}
.fn-guide{
	display: grid;
	gap: 13px;
}
.fn-guide li a{
	font-size: 14px;
	font-weight: 700;
}
.fn-block .ft-media{
	--grid-gap-pc: 10px var(--spc-20);
}
.fn-block .ft-sns li a::before{
	width: 40px;
}
.fn-end{
	padding-bottom: calc(var(--sp-menu-height) + 30px);
}
.fn-end .ft-terms{
	width: 90%;
	margin-inline: auto;
}
.fn-end .ft-terms li a{
	color: var(--txt-c-base);
}
.fn-end .ft-terms li:not(:last-child){
	padding-right: 15px;
	margin-right: 15px;
}
.fn-end .ft-terms li:not(:last-child)::after{
	background-color: var(--txt-c-base);
}
.fat-nav--menu .fn-end .ft-terms li:not(:last-child){
	padding-right: 8px;
	margin-right: 8px;
}
/* ■■■■■■■■■■■■■■■■■■■■■■side■■■■■■■■■■■■■■■■■■■■■■ */

/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
/* .ft-spMenuContainer */
@media screen and (max-width: 767px){
	:root{
		--sp-menu-height: 65px;
	}
	.ft-spMenuContainer{
		position: fixed;
		width: 100%;
		background-color: var(--c-beige-300);
		bottom: 0;
		left: 0;
		height: var(--sp-menu-height);
		z-index: 999;
		box-shadow: var(--bxsd-default);
	}
	.ft-spMenu{
		display: flex;
		height: 100%;
	}
	.ft-spMenu li{
		flex: 1;
		position: relative;
	}
	.ft-spMenu li > span{
		height: 100%;
	}
	.ft-spMenu__item{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		gap: 3px;
	}
	.ft-spMenu__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(--c-red-500);
		aspect-ratio: 1/1;
		width: 23px;
		display: block;
	}
	.ft-spMenu__item.active::before{
		--this-mask: var(--this-icon-active);
	}
	.ft-spMenu__item::after{
		display: block;
		text-align: center;
		content: attr(aria-label);
		font-family: var(--ff-en);
		font-size: 10px;
		color: var(--theme-c-main);
		letter-spacing: 0.05em;
	}
	.ft-spMenu__item.hamburger--search.active::after{
		content: '閉じる';
	}
	.ft-spMenu__item.active::after{
		content: var(--this-label-active);
	}
	.ft-spMenu__item .fs-client-cart-count{
		top: 2px;
		right: 20%;
	}
}
/* ページトップ */
.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: 45px;
		right: 1%;
	}
}
@media screen and (max-width: 767px){
	.pagetop{
		width: 40px;
		bottom: calc( var(--sp-menu-height) + 8px);
		right: 13px;
	}
}
/* ft-body */
.ft-body{
	--grid-gap-pc: var(--spc-40);
}
/* ft-logo */
@media screen and (min-width: 768px){
	.ft-logo{
		width: 312px;
	}
}
@media screen and (max-width: 767px){
	.ft-logo{
		max-width: 223px;
		margin: 0 auto 30px;
	}
}
/* ft-nav */
.ft-nav{
	display: grid;
}
.ft-nav dt{
	font-weight: 700;
	border-bottom: 1px solid var(--bd-c-gray);
}
.ft-media{
	--grid-cols-pc: 2;
	--grid-gap-pc: var(--spc-10) var(--spc-80);
	--grid-cols-sp: 2;
	--grid-gap-sp: 5px var(--spc-30);
}
.ft-media li img{
	aspect-ratio: 18/10;
	object-fit: cover;
}
.ft-menu li a{
	display: block;
	font-weight: 400;
	position: relative;
}
.g-sns{
	display: flex;
}
.g-sns li{
	flex: 1;
}
.g-sns li a{
	display: grid;
}
.g-sns li a::before{
	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;
	margin-inline: auto;
}
.g-sns li a::after{
	content: attr(aria-label);
	display: block;
	text-align: center;
}
.ft-sns li a::before{
	width: 28px;
}
.ft-sns li a::after{
	font-size: 12px;
}
@media (hover: hover){
	.ft-menu li a:hover span{
		opacity: 1;
		color: var(--txt-c-emphasis);
	}
	.ft-menu li a span{
		position: relative;
	}
	.ft-menu li a span::after{
		content: "";
		display: inline-block;
		background-color: var(--txt-c-emphasis);
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: -3px;
		left: 0;
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .3s;
	}
	.ft-menu li a span:hover::after{
		transform: scaleX(1);
		transform-origin: left;
	}
	.ft-sns li a:hover{
		opacity: 1;
	}
	.ft-sns li a::before,
	.ft-sns li a::after{
		transition: .3s;
	}
	.ft-sns li a:hover::before{
		background-color: var(--txt-c-emphasis);
	}
	.ft-sns li a:hover::after{
		color: var(--txt-c-emphasis);
	}
}
@media screen and (min-width: 901px){
	.ft-nav{
		gap: var(--spc-40) clamp( 80px, 10vw, 131px);
	}
	.ft-menu li a{
		font-size: var(--fz-14);
	}
}
@media screen and (min-width: 768px) and (max-width: 900px){
	.ft-nav{
		gap: var(--spc-40);
	}
	.ft-menu li a{
		font-size: var(--fz-12);
		letter-spacing: 0;
	}
}
@media screen and (min-width: 768px){
	.ft-nav{
		grid-template-columns: 600fr 468fr;
	}
	.ft-nav__item--media{
		grid-row: 1 / 3;
		grid-column: 2 / 3;
	}
	.ft-nav dt{
		font-size: var(--fz-16);
		padding-bottom: 12px;
	}
	.ft-menu{
		display: grid;
		grid-template-columns: repeat(3,1fr);
	}
	.ft-nav__item--beginner .ft-menu li:nth-child(even){
		grid-column: span 2;
	}
	.ft-menu li a{
		letter-spacing: 0.03em;
	}
	.ft-menu{
		gap: var(--spc-10) var(--spc-30);
		margin-top: 12px;
	}
	.ft-sns{
		max-width: 313px;
		margin: var(--spc-20) auto 0;
	}
	.ft-media{
		max-width: 348px;
		margin: var(--spc-25) auto 0;
	}
}
@media screen and (max-width: 767px){
	.ft-nav{
		gap: 30px;
	}
	.ft-nav dt{
		font-size: 15px;
		padding-bottom: 10px;
	}
	.ft-menu{
		display: flex;
		flex-wrap: wrap;
		gap: 8px 20px;
		margin-top: 10px;
	}
	.ft-menu li a{
		font-size: 12px;
		letter-spacing: 0;
	}
	.ft-sns{
		margin-top: 20px;
	}
	.ft-media{
		margin: 10px auto 0;
		max-width: 370px;
	}
}
/* ft-end */
.ft-end{
	background-color: var(--txt-c-base);
}
.ft-copy{
	color: var(--c-white);
	letter-spacing: 0;
	font-size: 12px;
}
.ft-terms{
	display: flex;
}
.ft-terms li:not(:last-child){
	position: relative;
}
.ft-terms li:not(:last-child)::after{
	content: "";
	display: inline-block;
	background-color: var(--c-white);
	height: 10px;
	width: 1px;
	position: absolute;
	top: 55%;
	transform: translateY(-50%);
	right: 0;
}
.ft-terms li a{
	color: var(--c-white);
}
@media screen and (min-width: 768px){
	.ft-end{
		padding-block: var(--spc-60) var(--spc-20);
	}
	.ft-end__inner{
		display: flex;
		justify-content: space-between;
		align-items: baseline;
	}
	.ft-copy{
		width: fit-content;
		font-size: var(--fz-12);
	}
	.ft-terms{
		width: fit-content;
	}
	.ft-terms li a{
		font-size: 12px;
	}
  .ft-terms li:not(:last-child){
    padding-right: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px){
	.ft-end{
		padding-block: 20px calc(var(--sp-menu-height) + 30px);
	}
	.ft-end__inner{
		display: grid;
		gap: 30px;
		padding-bottom: 20px;
	}
	.ft-terms{
		justify-content: center;
	}
	.ft-terms li a{
		font-size: 11px;
	}
  .ft-terms li:not(:last-child){
    padding-right: 8px;
    margin-right: 8px;
  }
}

/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -------------------見出し-------------------- */
.g-heading--center > span{
	display: block;
	text-align: center;
}
.g-heading__en{
	display: block;
	font-weight: 700;
}
.g-heading__en--firstLetterRed::first-letter{
	color: var(--c-red-500);
}
.g-heading__ja{
	display: block;
	font-weight: 700;
}
.g-heading__onlyJa{
	font-weight: 700;
}
.g-heading__onlyJaSmall{
	font-weight: 700;
}
.g-heading--white > *{
	color: var(--c-white);
}
@media screen and (min-width: 768px){
  .g-headingContainer{
		margin-bottom: var(--spc-30);
	}
	.g-heading--centerPcOnly > span{
		display: block;
		text-align: center;
	}
	.g-heading__en{
		font-size: var(--fz-42);
	}
	.g-heading--center .g-heading__en{
		font-size: var(--fz-50);
	}
	.g-heading__ja{
		font-size: var(--fz-26);
	}
	.g-heading__en+.g-heading__ja{
		margin-top: 10px;
	}
	.g-heading__onlyJa{
		font-size: var(--fz-42);
	}
	.g-heading__onlyJaSmall{
		font-size: var(--fz-26);
	}
}
@media screen and (max-width: 767px){
	.g-headingContainer{
		margin-bottom: 30px;
	}
	.g-heading__en{
		font-size: 30px;
	}
	.g-heading--center .g-heading__en{
		font-size: 40px;
	}
	.g-heading__ja{
		font-size: 20px;
	}
	.g-heading__en+.g-heading__ja{
		margin-top: 3px;
	}
	.g-heading__onlyJa{
		font-size: 25px;
	}
	.g-heading__onlyJaSmall{
		font-size: 22px;
		line-height: 1.5;
	}
}
/* -------------------ボタン-------------------- */
/* コンテナベース */
.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: 2px solid var(--txt-c-base);
	--this-bdrs: 27px;
	border-radius: var(--this-bdrs);
	position: relative;
}
.g-btn--secondary > a,
.g-btn--secondary > button{
	border-color: var(--txt-c-emphasis);
}
.g-btn > button{
	width: 100%;
}
@media screen and (min-width: 768px){
	.g-btn{
		max-width: 300px;
	}
	.g-btn > a,
	.g-btn > button{
		min-height: 52px;
	}
}
@media screen and (max-width: 767px){
	.g-btn{
		max-width: 300px;
	}
	.g-btn > a,
	.g-btn > button{
		min-height: 52px;
	}
}
/* ボタンベース_フォントサイズ */
.g-btn__label{
	font-weight: 500;
}
@media screen and (min-width: 768px){
	.g-btn__label{
		font-size: var(--fz-md);
	}
}
@media screen and (max-width: 767px){
	.g-btn__label{
		font-size: 16px;
	}
}
/* カラーバリエーション */
.g-btn--primary > a,
.g-btn--primary > button{
	background-color: var(--c-white);
	color: var(--txt-c-base);
}
.g-btn--primary > a:visited{
	color: var(--txt-c-base);
}
.g-btn--secondary > a,
.g-btn--secondary > button{
	background-color: var(--txt-c-emphasis);
	color: var(--c-white);
}
.g-btn--secondary > a:visited{
	color: var(--c-white);
}
.g-btn--tertiary > a,
.g-btn--tertiary > button{
	background-color: var(--txt-c-base);
	color: var(--c-white);
}
.g-btn--tertiary > a:visited{
	color: var(--c-white);
}
@media (hover: hover){
	.g-btn > a,
	.g-btn > button{
		opacity: 1;
		transition: .5s;
	}
	.g-btn > a::before,
	.g-btn > button::before{
		content: "";
		display: inline-block;
		border: 3px solid var(--txt-c-base);
		width: 100%;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		border-radius: var(--this-bdrs);
		opacity: 0;
		transition: .3s;
	}
	.g-btn--secondary > a::before,
	.g-btn--secondary > button::before{
		border: 3px solid var(--txt-c-emphasis);
	}
	.g-btn--primary > a:hover,
	.g-btn--primary > button:hover{
		opacity: 1;
	}
	.g-btn--primary > a:hover::before,
	.g-btn--primary > button:hover::before{
		opacity: 1;
	}
	.g-btn--secondary > a:hover,
	.g-btn--secondary > button:hover{
		opacity: 1;
	}
	.g-btn--secondary > a:hover::before,
	.g-btn--secondary > button:hover::before{
		opacity: 1;
	}
	.g-btn--tertiary > a:hover,
	.g-btn--tertiary > button:hover{
		opacity: 1;
	}
	.g-btn--tertiary > a:hover::before,
	.g-btn--tertiary > button:hover::before{
		opacity: 1;
	}
}
/* 大きさ - 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: "";
	display: inline-block;
	--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;
	width: 10px;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
}
.g-btn--arrow.g-btn--secondary > a::after,
.g-btn--arrow.g-btn--secondary > button::after{
	background-color: var(--c-white);
}
.g-btn--arrow.g-btn--primary > a::after,
.g-btn--arrow.g-btn--primary > button::after{
	background-color: var(--txt-c-base);
}
.g-btn--arrow.g-btn--tertiary > a::after,
.g-btn--arrow.g-btn--tertiary > button::after{
	background-color: var(--c-white);
}
@media (hover: hover){
	.g-btn--arrow > a::after,
	.g-btn--arrow > button::after{
		transition: .3s;
	}
	.g-btn--arrow > a:hover::after,
	.g-btn--arrow > button:hover::after{
		right: 10px;
	}
	.g-btn--arrow.g-btn--anchor > a::after{
		right: 15px;
		top: 55%;
	}
}
/* タイプ - return */
.g-btn--arrow.g-btn--return a::after{
	transform: translateY(-50%) rotate(180deg);
	right: unset;
	left: 15px;
}
/* タイプ - anchor */
.g-btn--arrow.g-btn--anchor > a::after{
	transform: rotate(90deg);
}
@media screen and (min-width: 768px){
	.g-btn--arrow.g-btn--anchor > a::after{
		font-size: 12px;
		top: 35%;
		right: 10px;
	}
}
@media screen and (max-width: 767px){
	.g-btn--arrow.g-btn--anchor > a::after{
		font-size: 10px;
		top: 37%;
		right: 10px;
	}
}
/* g-btnAddon */
.g-btnAddon{
	width: fit-content;
	margin-inline: auto;
	position: relative;
	font-weight: 700;
}
.g-btnAddon::before,
.g-btnAddon::after{
	content: "";
	display: inline-block;
	background-color: var(--txt-c-base);
	width: 1px;
	height: 18px;
	transform-origin: center center;
	position: absolute;
	bottom: 0;
}
.g-btnAddon::before{
	transform: rotate(-20deg) translateX(-10px);
}
.g-btnAddon::after{
	transform: rotate(20deg) translateX(10px);
}
@media screen and (min-width: 768px){
	.g-btnAddon{
		font-size: var(--fz-18);
		padding-bottom: 3px;
		margin-bottom: var(--spc-10);
	}
}
@media screen and (max-width: 767px){
	.g-btnAddon{
		font-size: 16px;
		padding-bottom: 2px;
		margin-bottom: 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--product */
.tab-wrap--product .tab-nav{
	overflow-x: scroll;
	overflow-y: hidden;
}
.tab-wrap--product .tab-btn{
	background-color: var(--bg-c-beige);
	border-radius: 27px;
	flex: 0 0 auto;
}
.tab-wrap--product .tab-btn.show{
	background-color: var(--txt-c-emphasis);
	color: var(--c-white);
}
@media (hover: hover){
	.tab-wrap--product .tab-btn{
		transition: .3s;
	}
	.tab-wrap--product .tab-btn:hover{
		background-color: var(--txt-c-emphasis);
		color: var(--c-white);
	}
}
@media screen and (min-width: 951px){
	.tab-wrap--product .tab-nav{
		width: var(--inner-w);
		max-width: var(--pc-maw);
		margin-inline: auto;
	}
}
@media screen and (max-width: 950px){
	.tab-wrap--product .tab-nav{
		padding-left: calc((100% - var(--inner-w)) / 2);
	}
}
@media screen and (min-width: 768px){
	.tab-wrap--product .tab-nav{
		margin-bottom: var(--spc-30);
		gap: var(--spc-20);
	}
	.tab-wrap--product .tab-btn{
		font-size: var(--fz-16);
		padding: 7px 50px;
	}
}
@media screen and (max-width: 767px){
	.tab-wrap--product .tab-nav{
		padding-left: var(--sp-scroll-padding-left);
		-ms-overflow-style: none;
		scrollbar-width: none;
		padding-bottom: 30px;
		gap: 10px;
	}
	.tab-wrap--product .tab-nav::-webkit-scrollbar{
		display: none;
	}
	.tab-wrap--product .tab-btn{
		padding: 6px 20px;
		font-size: 14px;
	}
	.tab-wrap--product .tab-btn.show{
		position: relative;
	}
	.tab-wrap--product .tab-btn.show::after{
		content: "";
		display: inline-block;
		background-color: var(--txt-c-emphasis);
		aspect-ratio: 2/1;
		clip-path: polygon(50% 100%, 0 0, 100% 0);
		width: 12px;
		height: auto;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 100%;
	}
}
/* -----------------ポップアップ共通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-toggle) no-repeat center center;
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  aspect-ratio: 1/1;
  width: 100%;
  position: absolute;
  top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.g-slickArrow--prev{
	left: var(--slick-arrow-to-body);
}
.g-slickArrow--next{
	right: var(--slick-arrow-to-body);
	transform: rotate(180deg);
}
.g-slickArrow--red::after{
	content: "";
	display: inline-block;
	background-color: var(--c-white);
	border-radius: 50%;
	aspect-ratio: 1/1;
	object-fit: cover;
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.g-slickArrow--red::before{
  background-color: var(--txt-c-emphasis);
}
.g-slickArrow--prev{
	transform: rotate(90deg);
}
.g-slickArrow--next{
	transform: rotate(-90deg);
}
@media (hover: hover){
	[class*="g-slickArrow--"]:hover{
		cursor: pointer;
	}
	.g-slickArrow--red::before{
    transition: .3s;
	}
  .g-slickArrow--red:hover::before{
    background-color: var(--txt-c-emphasis);
  }
}
@media screen and (min-width: 768px){
	.g-hasSlickArrow{
		--slick-arrow-size: clamp( 20px, 2.5vw, 30px);
		--slick-arrow-to-body: calc(0px - var(--slick-arrow-size) + var(--slick-gap) - -15px);
	}
	[class*="g-slickArrow--"]::before{
		mask-size: 100%;
	}
}
@media screen and (max-width: 767px){
	.g-hasSlickArrow{
		--slick-arrow-size: 20px;
		--slick-arrow-to-body: calc(0px - var(--slick-arrow-size) + var(--slick-gap) - -10px);
	}
	[class*="g-slickArrow--"]::before{
		mask-size: 100%;
	}
}
/* -------------------g-slickDots-------------------- */
.slick:has(.g-slickDots){
	margin-bottom: 0;
}
.g-slickDots{
	display: flex;
	justify-content: center;
	gap: 10px;
}
.g-slickDots li{
	width: fit-content;
	height: 20px;
	position: relative;
}
.g-slickDots button{
	display: block;
	font-size: 0;
	height: 100%;
}
.g-slickDots button::before,
.g-slickDots button::after{
	content: "";
	display: inline-block;
	width: 100%;

	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.g-slickDots button::before{
	background-color: var(--c-gray-250);
	height: 1.5px;
}
.g-slickDots .slick-active button::after{
	background: var(--txt-c-emphasis);
	height: 3px;
}
@media screen and (min-width: 768px){
	.g-slickDots{
		margin-top: 10px;
	}
	.g-slickDots button{
		width: 50px;
	}
}
@media screen and (max-width: 767px){
	.g-slickDots{
		margin-top: 5px;
	}
	.g-slickDots button{
		width: 40px;
	}
}
/* -------------------bgcolor-------------------- */
.bgcolor--beige{
	background-color: var(--bg-c-beige);
}
.bgcolor--pink{
	background-color: var(--bg-c-pink);
}
.bgcolor--white{
	background-color: var(--c-white);
}
/* -------------------is-targetBlank-------------------- */
.is-targetBlank{
	display: inline-block;
	position: relative;
	padding-right: 20px;
  line-height: 1.3;
}
.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--black::after{
	background-color: var(--txt-c-base);
}
.is-targetBlank--white::after{
	background-color: var(--c-white);
}

/* --------------------g-fsProductListCarouselUnSlick-------------------- */
.g-fsProductListCarouselUnSlick :is(
	.fs-c-productListCarousel,
	.fs-c-productListCarousel__list
){
	display: contents;
}
.g-fsProductListCarouselUnSlick .fs-c-productListCarousel__ctrl{
	display: none;
}
.g-fsProductListCarouselUnSlick .fs-c-productListCarousel__list__item{
	max-width: unset;
	min-width: unset;
	flex-basis: unset;
	margin: 0;
	display: flex;
	flex-direction: column;
}
.g-fsProductListCarouselUnSlick .fs-c-productListCarousel__list__item .fs-c-productListItem__preorderMessage+.fs-c-productListItem__salesPeriod{
	margin-top: 0;
}
/* --------------------g-fsProductListSlick-------------------- */
.g-fsProductListSlick :is(
	.fs-c-productListCarousel,
	.fs-c-productListCarousel__list,
){
	display: contents;
}
.g-fsProductListSlick :is(
	.fs-c-productListCarousel__ctrl,
	.fs-c-productListItem__control
){
	display: none;
}
.g-fsProductListSlick .slick-slide{
	margin-inline: var(--slick-gap);
}
.g-fsProductListSlick .g-slickDots{
	margin-top: var(--spc-40);
}
[class*="g-fsProductListSlick__arrow"]{
	top: 25%;
}
@media screen and (min-width: 768px){
	.s-productBox .g-fsProductListSlick{
		margin-inline: var(--spc-35);
		--slick-gap: var(--spc-15);
	}

}
@media screen and (max-width: 767px){
	.s-productBox .g-fsProductListSlick{
		margin-inline: 15px;
		--slick-gap: 10px;
	}
}


/* ----------------------g-productList------------------- */
.g-productList .fs-c-productListCarousel__list__itemTrack{
	display: grid;
}
.g-productList :is(
	.fs-c-productMarks,
	.fs-c-productListItem__control
){
	display: none;
}
@media screen and (min-width: 768px) and (max-width: 950px){
	.t-newItem .fs-c-productListItem__salesPeriod{
		padding: 7px;
	}
	.t-newItem .fs-c-productListItem__salesPeriod .fs-c-salesPeriod__date{
		font-size: 10px;
		gap: 5px;
	}
	.t-newItem .fs-c-productListItem__prices .fs-c-productPrice--preorder .fs-c-productPrice__main__label{
		font-size: 12px;
	}
	.t-newItem .fs-c-productListItem__prices .fs-c-price__value{
		font-size: 16px;
	}
	.t-newItem .fs-c-productPrice__addon--listed{
		display: none;
	}
	.t-newItem .fs-c-productListItem__prices .fs-c-productPrice__addon__label{
		font-size: 11px !important;
	}
}
@media screen and (min-width: 768px){
	.g-productList .fs-c-productListCarousel__list__itemTrack{
		grid-template-columns: repeat(4,1fr);
		gap: var(--spc-md);
	}
}
@media screen and (max-width: 767px){
	.g-productList .fs-c-productListCarousel__list__itemTrack{
		grid-template-columns: repeat(2,1fr);
		gap: 20px 15px;
	}
}
/* g-productList--ranking */
.g-productList--ranking .fs-c-productListCarousel__list__itemTrack{
	counter-reset: original-counter;
	overflow: hidden;
}
.g-productList--ranking .fs-c-productListCarousel__list__item{
	position: relative;
}
.g-productList--ranking .fs-c-productListCarousel__list__item::before{
	display: block;
	content: ''counter(original-counter);
	counter-increment: original-counter;
	position: absolute;
	z-index: 2;
	border-radius: 50%;
	background-color: var(--c-white);
	border: 1px solid var(--c-white);
	aspect-ratio: 1;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.g-productList--ranking .fs-c-productListCarousel__list__item:nth-of-type(1)::before{
	border-color: var(--ranking-c-1st);
}
.g-productList--ranking .fs-c-productListCarousel__list__item:nth-of-type(2)::before{
	border-color: var(--ranking-c-2nd);
}
.g-productList--ranking .fs-c-productListCarousel__list__item:nth-of-type(3)::before{
	border-color: var(--ranking-c-3rd);
}
.g-productList--ranking .fs-c-productListCarousel__list__item:nth-of-type(-n+3)::after{
	content: "";
	display: inline-block;
	background: var(--this-icon) no-repeat center center / 100%;
	aspect-ratio: 3/2;
	z-index: 3;
	position: absolute;
}
.g-productList--ranking .fs-c-productListCarousel__list__item:nth-of-type(1)::after{
	--this-icon: var(--data-icon-ranking-1st);
}
.g-productList--ranking .fs-c-productListCarousel__list__item:nth-of-type(2)::after{
	--this-icon: var(--data-icon-ranking-2nd);
}
.g-productList--ranking .fs-c-productListCarousel__list__item:nth-of-type(3)::after{
	--this-icon: var(--data-icon-ranking-3rd);
}
@media screen and (min-width: 768px){
	.g-productList--ranking .fs-c-productListCarousel__list__itemTrack{
		grid-template-columns: repeat(5,1fr);
	}
	.g-productList--ranking .fs-c-productListCarousel__list__item::before{
		top: 10px;
		left: 10px;
		width: 34px;
	}
	.g-productList--ranking .fs-c-productListCarousel__list__item:nth-of-type(-n+3)::after{
		top: 13px;
		left: 22px;
		width: 11px;
	}
}
@media screen and (max-width: 767px){
	.g-productList--ranking .fs-c-productListCarousel__list__itemTrack{
		overflow-x: scroll;
		overflow-y: hidden;
		padding-left: var(--sp-scroll-padding-left);
		-ms-overflow-style: none;
		scrollbar-width: none;
		display: flex;
		padding-bottom: 3px;
		gap: 20px;
	}
	.g-productList--ranking .fs-c-productListCarousel__list__itemTrack::-webkit-scrollbar{
		display: none;
	}
	.g-productList--ranking .fs-c-productListCarousel__list__item{
		flex: 0 0 auto;
		--this-width: 180px;
		min-width: var(--this-width);
		max-width: var(--this-width);
	}
	.g-productList--ranking .fs-c-productListCarousel__list__item::before{
		top: 10px;
		left: 10px;
		width: 34px;
	}
	.g-productList--ranking .fs-c-productListCarousel__list__item:nth-of-type(-n+3)::after{
		top: 14px;
    left: 24px;
		width: 8px;
	}
}
/* ---------------------g-productStaffComment------------------- */
.g-productStaffComment{
	border-radius: 20px;
	display: flex;
}
.g-productStaffComment__photo img{
	border-radius: 50%;
}
.g-productStaffComment__body{
	flex: 1;
}
.g-productStaffComment__name{
	display: flex;
	align-items: center;
	gap: 5px;
}
.g-productStaffComment__name::before{
	content: "";
	display: inline-block;
	background: var(--c-red-500);
	width: 10px;
	height: 1px;
}
/* グループの中のスタイル調整 */
.fs-c-productListItem .g-productStaffComment__ttl{
	font-weight: 400;
}
.fs-c-productListItem .g-productStaffComment__txt{
	font-weight: 400;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	display: none;
}
.fs-c-productListItem .g-productStaffComment__name{
	font-weight: 400;
}
@media screen and (min-width: 768px){
	.fs-c-productListItem .g-productStaffComment{
		align-items: center;
		padding: 10px 15px;
		gap: 13px;
		margin-top: 15px;
	}
	.fs-c-productListItem .g-productStaffComment__photo{
		width: 78px;
	}
	.fs-c-productListItem .g-productStaffComment__ttl{
		font-size: var(--fz-14);
	}
	.fs-c-productListItem .g-productStaffComment__name{
		font-size: var(--fz-12);
		margin-top: 5px;
	}
}
@media screen and (max-width: 767px){
	.fs-c-productListItem .g-productStaffComment{
		padding: 15px;
		margin-top: 10px;
		gap: 10px;
	}
	.fs-c-productListItem .g-productStaffComment__photo{
		width: 78px;
	}
	.fs-c-productListItem .g-productStaffComment__ttl{
		font-size: 12px;
	}
	.fs-c-productListItem .g-productStaffComment__name{
		font-size: 12px;
		margin-top: 5px;
	}
}
/* 商品詳細の詳細 */
.p-staffRecommend:has(.product-comment_9:empty){
	display: none;
}
.p-staffRecommend .g-productStaffComment__ttl{
	font-weight: bold;
}
.p-staffRecommend .g-productStaffComment__txt{
	font-weight: 400;
}
.p-staffRecommend .g-productStaffComment__name{
	font-weight: 400;
}
@media screen and (min-width: 768px){
	.p-staffRecommend{
		margin-bottom: var(--spc-100);
	}
	.p-staffRecommend .g-productStaffComment{
		padding: var(--spc-50);
		gap: var(--spc-50);
		align-items: center;
	}
	.p-staffRecommend .g-productStaffComment__photo{
		width: 154px;
	}
	.p-staffRecommend .g-productStaffComment__ttl{
		font-size: var(--fz-18);
	}
	.p-staffRecommend .g-productStaffComment__txt{
		font-size: var(--fz-14);
		margin-block: var(--spc-15);
	}
	.p-staffRecommend .g-productStaffComment__name{
		font-size: var(--fz-12);
	}
}
@media screen and (max-width: 767px){
	.p-staffRecommend{
		margin-bottom: var(--sec-spc);
	}
	.p-staffRecommend .g-productStaffComment{
		padding: 30px;
		display: grid;
		grid-template-columns: 80px 1fr;
		gap: 15px 20px;
	}
	.p-staffRecommend .g-productStaffComment__body{
		display: contents;
	}
	.p-staffRecommend .g-productStaffComment__ttl{
		font-size: 14px;
	}
	.p-staffRecommend .g-productStaffComment__txt{
		font-size: 14px;
		grid-column: span 2;
	}
	.p-staffRecommend .g-productStaffComment__name{
		font-size: 12px;
		grid-column: span 2;
		text-align: right;
	}
}



/* ---------------------g-search------------------- */
.g-searchContainer{
	display: grid;
}
.g-search__form.formReset{
	width: var(--inner-w);
	margin-inline: auto;
	position: relative;
}
.g-search__form.formReset input[type="text"]{
	background-color: var(--c-white);
	border: 1.5px solid var(--txt-c-base);
	border-radius: 30px;
	padding-right: var(--this-input-padding-right);
}
.g-search__form.formReset button[type="submit"]{
	--this-mask: var(--data-icon-search) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--txt-c-base);
	aspect-ratio: 1;
	width: var(--this-button-width);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: calc(var(--this-input-padding-right) - var(--this-button-width));
}
.g-searchContainer .g-keyword{
	padding-block: 0px;
}
@media screen and (min-width: 768px){
	.g-searchContainer{
		gap: var(--spc-30);
		margin-bottom: var(--spc-50);
	}
	.g-search__form.formReset{
		--this-button-width: 13px;
		--this-input-padding-right: 40px;
		max-width: 500px;
	}
	.g-search__form.formReset input[type="text"]{
		min-height: 60px;
		padding-left: 30px;
	}
}
@media screen and (max-width: 767px){
	.g-searchContainer{
		gap: var(--spc-30);
		margin-bottom: var(--spc-50);
	}
	.g-search__form.formReset{
		--this-button-width: 13px;
		--this-input-padding-right: 40px;
	}
	.g-search__form.formReset input[type="text"]{
		min-height: 60px;
		padding-left: 30px;
	}
}
/* g-search__select__list */
.g-search__select{
	display: grid;
}
.g-search__select__list{
	--grid-cols-pc: 5;
	--grid-gap-pc: var(--spc-35) var(--spc-md);
	--grid-cols-sp: 3;
	--grid-gap-sp: 20px 15px;
}
.g-search__select__item__img{
	aspect-ratio: 1/1;
	overflow: hidden;
}
.g-search__select__item__img img{
	aspect-ratio: 1/1;
	object-fit: cover;
}
.g-search__select__item__label{
	text-align: center;
}
@media screen and (min-width: 768px){
	.g-search__select{
		gap: var(--spc-100);
	}
	.g-search__select__item__label{
		font-size: var(--fz-18);
		margin-top: 10px;
	}
}
@media screen and (max-width: 767px){
	.g-search__select{
		gap: 50px;
	}
	.g-search__select__item__label{
		font-size: 14px;
		margin-top: 6px;
		letter-spacing: 0;
	}
}

/* ---------------------g-box------------------- */
@media screen and (min-width: 768px){
	.g-box{
		border-radius: clamp( 70px, 8vw, 100px);
	}
}
@media screen and (max-width: 767px){
	.g-box{
		border-radius: 30px;
		padding-block: 40px;
	}
}


/* ---------------------g-guide------------------- */
.g-guide__item::before{
	content: "";
	display: inline-block;
	background: var(--c-white) var(--this-icon) no-repeat center center / 50%;
	border-radius: 50%;
	border: 1px solid var(--txt-c-emphasis);
	aspect-ratio: 1;
}
.g-guide__item{
	display: grid;
	position: relative;
}
.g-guide__item h3{
	font-weight: 700;
}
.g-guide__item p{
	font-weight: 400;
}
.g-guide__item p a{
	text-decoration: underline;
}
@media screen and (min-width: 768px){
	.g-guide__list{
		display: flex;
	}
	.g-guide__item{
		flex: 1;
		padding-bottom: var(--spc-30);
	}
	.g-guide__item:not(:last-child)::after{
		content: "";
		--this-color-1: var(--bd-c-gray);
		--this-color-2: transparent;
		--this-width: 2px;
		--this-height: 10px;
		--this-size: 2px;
		background-image: linear-gradient(to bottom, var(--this-color-1) 0%, var(--this-color-1) var(--this-size), var(--this-color-2) var(--this-size), var(--this-color-2) var(--this-height));
		background-size: var(--this-size) var(--this-height);
		background-repeat: repeat-y;
		height: 100%;
		width: var(--this-size);
		position: absolute;
		top: 0;
		right: calc(0px - (var(--this-size)) / 2);
	}
	.g-guide__item::before{
		width: 76px;
		margin-inline: auto;
	}
	.g-guide__item h3{
		font-size: var(--fz-20);
		text-align: center;
		margin-block: var(--spc-20);
	}
	.g-guide__item p{
		text-align: center;
		font-size: var(--fz-14);
	}
}
@media screen and (max-width: 767px){
	.g-guide__item{
		grid-template: auto 1fr / 50px 1fr;
		align-items: center;
		gap: 10px;
		padding-block: 20px;
	}
	.g-guide__item:first-child{
		padding-top: 0;
	}
	.g-guide__item:not(:last-child)::after{
		content: "";
		--this-color-1: var(--bd-c-gray);
		--this-color-2: transparent;
		--this-width: 5px;
		--this-height: 2px;
		--this-size: 2px;
		background-image: linear-gradient(to right, var(--this-color-1), var(--this-color-1) var(--this-size), var(--this-color-2) var(--this-size), var(--this-color-2) var(--this-width));
		background-size: var(--this-width) var(--this-height);
		background-repeat: repeat-x;
		width: 100%;
		height: var(--this-height);
		position: absolute;
		left: 0;
		bottom: 0;
	}
	.g-guide__item h3{
		font-size: 18px;
	}
	.g-guide__item p{
		grid-column: span 2;
		font-size: 14px;
	}
}

/* -------------------g-about-------------------- */
.g-about__photo{
  background: no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.g-about__photo::after{
  content: "";
  display: inline-block;
  background-color: var(--c-blue-600-op20);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.g-about__photo .g-heading{
  margin-top: var(--this-negative-margin);
  position: relative;
  z-index: 2;
}
.g-about__box{
  position: relative;
  z-index: 2;
  margin-top: var(--this-negative-margin);
}
.g-about__list{
  --grid-gap-pc: var(--spc-100);
  --grid-gap-sp: 30px;
}
.g-about__list__ttl{
  display: flex;
  align-items: center;
  font-weight: 700;
}
.g-about__list__ttl::before{
  content: "";
  display: inline-block;
  --this-mask: var(--data-icon-about-ttl-icon) no-repeat center center / 100%;
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  background-color: var(--c-red-500);
  aspect-ratio: 1;
}
.g-about__list__txt p{
  font-weight: 400;
}
@media screen and (min-width: 768px){
  .g-about{
    --this-negative-margin: calc(0px - var(--spc-100));
  }
  .g-about__photo{
    height: 500px;
  }
  .g-about__list__ttl{
    font-size: var(--fz-26);
    margin-bottom: var(--spc-20);
    gap: 5px;
  }
  .g-about__list__ttl::before{
    width: 23px;
  }
  .g-about__list__body{
    display: flex;
    gap: var(--spc-40);
  }
  .g-about__list__body > *{
    flex: 1;
  }
  .g-about__list li:nth-child(even) .g-about__list__body{
    flex-direction: row-reverse;
  }
  .g-about__list__txt p{
    line-height: 2;
    font-size: var(--fz-16);
  }
}
@media screen and (max-width: 767px){
  .g-about{
    --this-negative-margin: calc(0px - 30px);
  }
  .g-about__photo{
    height: 220px;
  }
  .g-about__list__ttl{
    font-size: 20px;
    margin-bottom: 20px;
    gap: 5px;
  }
  .g-about__list__ttl::before{
    width: 23px;
  }
  .g-about__list__body{
    display: grid;
    gap: 20px;
  }
  .g-about__list li:nth-child(even) .g-about__list__body{
    flex-direction: row-reverse;
  }
  .g-about__list__txt p{
    line-height: 2;
    font-size: 13px;
  }
}


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


/* g-logoLink */
.g-logoLink{
	position: relative;
}
.g-logoLink img{
	position: relative;
	z-index: 1;
}
a[class*="g-logoLink__"]{
	position: absolute;
	top: 0;
	height: 100%;
	z-index: 2;
}
.g-logoLink__onlinestore{
	width: 57%;
	left: 0;
}
.g-logoLink__machico{
	width: 43%;
	right: 0;
}
@media screen and (min-width: 768px){
  .i-header .g-logoLink__onlinestore{
    width: 200px;
    left: 45%;
    transform: translateX(-50%);
  }
  .i-header .g-logoLink__machico{
    width: 150px;
    right: 42%;
    transform: translateX(50%);
  }
}
@media screen and (max-width: 767px){
  .i-header .g-logoLink__onlinestore{
    width: 120px;
    left: 40%;
    transform: translateX(-50%);
  }
  .i-header .g-logoLink__machico{
    width: 80px;
    right: 35%;
    transform: translateX(50%);
  }
}



/* -----------------共通----------------- */
/* g-heading */
h1.g-heading{
	padding: var(--sec-spc-half) 0;
}
/* s-txt */
.s-txt{
	display: grid;
	font-weight: 500;
}
.s-txt mark{
	background: linear-gradient(transparent 70%, #fff799 30%);
}
.s-txt b{
	color: var(--txt-c-emphasis);
}
.s-txt a{
	color: var(--txt-c-emphasis);
	text-decoration: underline;
}
.s-txt__list{
	display: grid;
}
.s-txt__list > li{
	position: relative;
}
.s-txt__list > li::before{
	content: '';
	display: inline-block;
	border: 1px solid var(--txt-c-base);
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: absolute;
}
.s-txt__note li{
	position: relative;
	color: var(--txt-c-addon);
}
.s-txt__note li::before{
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}
.s-txt__order{
	counter-reset: original-counter;
}
.s-txt__order > li::before{
	content: counter(original-counter)'.';
	counter-increment: original-counter;
}
@media screen and (min-width: 768px){
	.s-txt *{
		font-size: var(--fz-16);
		line-height: 2;
		letter-spacing: 0.08em;
	}
	.s-txt p:has(mark){
		line-height: 2.5;
	}
	.s-txt > p:not(:first-child){
		margin-top: var(--spc-20);
	}
	.s-txt > *+.s-txt__list{
		margin-top: var(--spc-20);
	}
	.s-txt mark{
		padding: 2px 5px 3px;
	}
	.s-txt__list{
		gap: var(--spc-10);
	}
	.s-txt__list > li{
		padding-left: 30px;
	}
	.s-txt__list > li::before{
		width: 12px;
		top: 10px;
		left: 8px;
	}
	.s-txt__note li{
		font-size: var(--fz-12);
		padding-left: 15px;
	}
}
@media screen and (max-width: 767px){
	.s-txt *{
		font-size: 14px;
		line-height: 1.8;
	}
	.s-txt p:has(mark){
		line-height: 2.5;
	}
	.s-txt > p:not(:first-child){
		margin-top: var(--spc-20);
	}
	.s-txt > *+.s-txt__list{
		margin-top: var(--spc-20);
	}
	.s-txt mark{
		padding: 2px 5px 3px;
	}
	.s-txt__list{
		gap: 10px;
	}
	.s-txt__list > li{
		padding-left: 25px;
	}
	.s-txt__list > li::before{
		width: 8px;
		top: 7px;
		left: 8px;
	}
	.s-txt__note li{
		font-size: var(--fz-12);
		padding-left: 15px;
	}
}
/* -----------------アドレスイタリックをノーマルに----------------- */
.fs-p-address{
  font-style: normal;
}