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

	--c-gray-100: #F5F5F5;
	--c-gray-200: #DEDEDE;
	--c-gray-300: #A7A7A7;

	/* サイトカラー */
	--c-pink: #CBA8AC;
	--c-lpink: #F0E5E6;
	--c-dpink: #B48288;
	--c-orange: #F9E7C9;
	--c-beige: #F3E9E0;
	--c-gray:#F2F0ED;

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

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

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

	/* ランキングカラー --ranking-color */
	--ranking-c-1st: #BA9700;
	--ranking-c-2nd: #A7A7A7;
	--ranking-c-3rd: #B75400;
	--ranking-c-other: #002C1B;

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

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

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

	/* フォント --font-family- */
	--ff-base: "Zen Kaku Gothic New", sans-serif;
	--ff-noto: "Noto Sans JP", 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.5vw, 14px);
	--fz-15: clamp(13px, 1.5vw, 15px);
	--fz-16: clamp(14px, 2vw, 16px);
	--fz-18: clamp(15px, 2vw, 18px);
	--fz-20: clamp(16px, 2vw, 20px);
	--fz-22: clamp(18px, 2.5vw, 22px);
	--fz-25: clamp(20px, 2.5vw, 25px);
	--fz-28: clamp(22px, 3vw, 28px);
	--fz-30: clamp(25px, 3vw, 30px);
	--fz-35: clamp(25px, 3vw, 35px);
	--fz-38: clamp(30px, 3.5vw, 38px);
	--fz-40: clamp(30px, 3.5vw, 40px);
	--fz-43: clamp(30px, 4vw, 43px);
	--fz-50: clamp(30px, 4vw, 50px);
	--fz-55: clamp(35px, 4.5vw, 55px);
	--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-25); /* 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: 800px;
	--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);

/* icon */
--ICON-IG: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iX+ODrOOCpOODpOODvF8xIiBkYXRhLW5hbWU9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDQ0OC4zIDQ0OC4yIj4KICA8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMjkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogMi4xLjAgQnVpbGQgMTQyKSAgLS0+CiAgPHBhdGggZD0iTTIyNC4yLDEwOS4yYy02My41LS4yLTExNS4xLDUxLjItMTE1LjMsMTE0LjdzNTEuMiwxMTUuMSwxMTQuNywxMTUuMywxMTUuMS01MS4yLDExNS4zLTExNC43LTUxLjItMTE1LjEtMTE0LjctMTE1LjNaTTIyMy42LDE0OS42YzQxLjItLjIsNzQuNywzMy4xLDc0LjksNzQuMy4yLDQxLjItMzMuMSw3NC43LTc0LjMsNzQuOS00MS4yLjItNzQuNy0zMy4xLTc0LjktNzQuMy0uMi00MS4yLDMzLjEtNzQuNyw3NC4zLTc0LjlaTTMxNywxMDQuNWMwLTE0LjgsMTItMjYuOCwyNi44LTI2LjhzMjYuOCwxMiwyNi44LDI2LjgtMTIsMjYuOC0yNi44LDI2LjgtMjYuOC0xMi0yNi44LTI2LjhaTTQ0Ni43LDEzMS43Yy0xLjctMzUuOS05LjktNjcuNy0zNi4yLTkzLjlDMzg0LjMsMTEuNiwzNTIuNSwzLjQsMzE2LjYsMS42Yy0zNy0yLjEtMTQ3LjktMi4xLTE4NC45LDAtMzUuOCwxLjctNjcuNiw5LjktOTMuOSwzNi4xQzExLjUsNjMuOSwzLjQsOTUuNywxLjYsMTMxLjZjLTIuMSwzNy0yLjEsMTQ3LjksMCwxODQuOSwxLjcsMzUuOSw5LjksNjcuNywzNi4yLDkzLjksMjYuMywyNi4yLDU4LDM0LjQsOTMuOSwzNi4yLDM3LDIuMSwxNDcuOSwyLjEsMTg0LjksMCwzNS45LTEuNyw2Ny43LTkuOSw5My45LTM2LjIsMjYuMi0yNi4yLDM0LjQtNTgsMzYuMi05My45LDIuMS0zNywyLjEtMTQ3LjgsMC0xODQuOFpNMzk4LjksMzU2LjJjLTcuOCwxOS42LTIyLjksMzQuNy00Mi42LDQyLjYtMjkuNSwxMS43LTk5LjUsOS0xMzIuMSw5cy0xMDIuNywyLjYtMTMyLjEtOWMtMTkuNi03LjgtMzQuNy0yMi45LTQyLjYtNDIuNi0xMS43LTI5LjUtOS05OS41LTktMTMyLjFzLTIuNi0xMDIuNyw5LTEzMi4xYzcuOC0xOS42LDIyLjktMzQuNyw0Mi42LTQyLjYsMjkuNS0xMS43LDk5LjUtOSwxMzIuMS05czEwMi43LTIuNiwxMzIuMSw5YzE5LjYsNy44LDM0LjcsMjIuOSw0Mi42LDQyLjYsMTEuNywyOS41LDksOTkuNSw5LDEzMi4xczIuNywxMDIuNy05LDEzMi4xWiIvPgo8L3N2Zz4=);
}

@media screen and (min-width: 768px){
	:root{
		/* --inner-width */
		--inner-w: 95%;
		/* --section-space */
		--sec-spc: clamp(70px, 8vw, 100px);
	}
}
@media screen and (max-width: 767px){
	:root{
		--inner-w: 87.201%;
		--sec-spc: 50px;
	}
}
/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
/* フェードイン */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}
.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fadeinup_1 {
	visibility: visible !important;
	-webkit-animation-duration: 2.5s;
	    -ms-animation-duration: 2.5s;
	        animation-duration: 2.5s;
}
.fadeinup_1 {
	-webkit-animation-name: fadeinup_1;
	        animation-name: fadeinup_1;
}
@-webkit-keyframes fadeinup_1 {
	0% {
	opacity: 0;
		-webkit-transform: translateY(40px);
		    -ms-transform: translateY(40px);
		        transform: translateY(40px);
	}
	100% {
	opacity: 1;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeinup_1 {
	0% {
	opacity: 0;
		-webkit-transform: translateY(40px);
		    -ms-transform: translateY(40px);
		        transform: translateY(40px);
	}
	100% {
	opacity: 1;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}
}
.fadeinup_2 {
	visibility: visible !important;
	-webkit-animation-duration: 2.5s;
	    -ms-animation-duration: 2.5s;
	        animation-duration: 2.5s;
}
.fadeinup_2 {
	-webkit-animation-name: fadeinup_2;
	        animation-name: fadeinup_2;
}
@-webkit-keyframes fadeinup_2 {
	0% {
	opacity: 0;
		-webkit-transform: translateY(80px);
		    -ms-transform: translateY(80px);
		        transform: translateY(80px);
	}
	100% {
	opacity: 1;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeinup_2 {
	0% {
	opacity: 0;
		-webkit-transform: translateY(80px);
		    -ms-transform: translateY(80px);
		        transform: translateY(80px);
	}
	100% {
	opacity: 1;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(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;
	background: var(--c-lpink);
}
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);
}
time{
	font-family: var(--ff-base);
}
/* imgリセット */
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
}
/* セクション間隔*/
.g-mgt{
	margin-top: var(--sec-spc);
}
.g-mgb{
	margin-bottom: var(--sec-spc);
}
.g-pd{
	padding-block: var(--sec-spc);
}
.g-pdt{
	padding-top: var(--sec-spc);
}
.g-pdb{
	padding-bottom: var(--sec-spc);
}
.g-mgt--half{
	margin-top: var(--sec-spc-half);
}
.g-mgb--half{
	margin-bottom: var(--sec-spc-half);
}
.g-pd--half{
	padding-block: var(--sec-spc-half);
}
.g-pdt--half{
	padding-top: var(--sec-spc-half);
}
.g-pdb--half{
	padding-bottom: var(--sec-spc-half);
}
/* グリッド */
.grid {
	display: grid;
	grid-template-columns: repeat(var(--grid-cols, 1), minmax(var(--grid-min-size, 0), 1fr));
	gap: var(--grid-gap, 0);
}
@media screen and (min-width: 768px){
	.grid{
		--grid-cols: var(--grid-cols-pc, 1);
		--grid-gap: var(--grid-gap-pc, 0);
	}
}
@media screen and (max-width: 767px){
	.grid{
		--grid-cols: var(--grid-cols-sp, 1);
		--grid-gap: var(--grid-gap-sp, 0);
	}
}
/* スライダー読み込みまで非表示 */
.slick{
	opacity: 0;
	transition: opacity .3s linear;
}
.slick.slick-initialized{
	opacity: 1;
}
.swiper{
	overflow: hidden;
  opacity: 0;
	transition: opacity .3s linear;
}
.swiper.swiper-initialized{
	opacity: 1;
}
/* 縦書き */
.tategaki{
	writing-mode: vertical-rl;
}
/* 文字間 */
::placeholder,
input[type="text"],
[class*="ttl"],
[class*="lead"],
[class*="heading"],
a{
	letter-spacing: var(--ls-default);
}
/* テキスト行間文字間 */
[class*="txt"]{
	letter-spacing: var(--ls-default);
}
/* スクロールバー消す */
.noscrollbar,
.noscrollbar{
	-ms-overflow-style: none;/* IE, Edge 対応 */
	scrollbar-width: none;/* Firefox 対応 */
}
.noscrollbar::-webkit-scrollbar,
.noscrollbar::-webkit-scrollbar{/* Chrome, Safari 対応 */
	display: none;
}
/* youtube */
.youtubeContainer iframe {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}
/* 改行用 */
.dib{
	display: inline-block;
}
/* 非表示 */
.displaynone{
	display: none;
}
/* 親要素超えて幅100% */
.full-width{
	width: 100vw;
	--oya: calc(50% - 50vw);;
	margin-left: var(--oya);
	margin-right: var(--oya);
}
@media (hover: hover){
	.formReset button:hover,
	.formReset input[type="button"]:hover,
	.formReset input[type="submit"]:hover,
	.formReset input[type="image"]:hover,
	.formReset select:hover{
		cursor: pointer;
	}
	a:hover{
		opacity: 0.7;
		text-decoration: none;
	}
	a:hover img{
		opacity:0.75 !important;
	}
}
html.no-smooth-scroll {
	scroll-behavior: auto;
}
.g-inner,
.g-inner--l,
.g-inner--m,
.g-inner--s,
.g-inner--ss{
	width: var(--inner-w);
	margin-inline: auto;
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 120px;
	}
	body{
		font-size: var(--fz-15-const);
		line-height: 1.7;
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	.g-inner--pc{
		width: var(--inner-w);
		margin-inline: auto;
	}
	.g-inner,
	.g-inner--m,
	.g-inner--pc{
		max-width: var(--pc-maw-md);
	}
	.g-inner--l{
		max-width: var(--pc-maw-lg);
	}
	.g-inner--s{
		max-width: var(--pc-maw-sm);
	}
	.g-inner--ss{
		max-width: var(--pc-maw-ss);
	}
	.g-inner--pcHasSlickGap{
		--inner-adjust: calc(var(--slick-gap) * 2);
		width: calc(var(--inner-w) + var(--inner-adjust));
		max-width: calc(var(--pc-maw-md) + var(--inner-adjust));
		margin-inline: auto;
	}
	.g-pd--halfPcOnly{
		padding-block: var(--sec-spc-half);
	}
	.sp{
		display: none !important;
	}
	.tategaki--pc{
		writing-mode: vertical-rl;
	}
	/* pc順番付与 */
	.orderPc-1st { order: 1; }
	.orderPc-2nd { order: 2; }
	.orderPc-3rd { order: 3; }
	.orderPc-4th { order: 4; }
	.orderPc-5th { order: 5; }
	.orderPc-6th { order: 6; }
	.orderPc-7th { order: 7; }
	.orderPc-8th { order: 8; }
	.orderPc-9th { order: 9; }
	.orderPc-10th { order: 10; }
	.orderPc-11th { order: 11; }
	.orderPc-12th { order: 12; }
	.orderPc-13th { order: 13; }
	.orderPc-14th { order: 14; }
	.orderPc-15th { order: 15; }
	.orderPc-16th { order: 16; }
	.orderPc-17th { order: 17; }
	.orderPc-18th { order: 18; }
	.orderPc-19th { order: 19; }
	.orderPc-20th { order: 20; }
	.orderPc-21th { order: 21; }
	.orderPc-22th { order: 22; }
	.orderPc-23th { order: 23; }
	.orderPc-24th { order: 24; }
	.orderPc-25th { order: 25; }
	.orderPc-26th { order: 26; }
	.orderPc-27th { order: 27; }
	.orderPc-28th { order: 28; }
	.orderPc-29th { order: 29; }
	.orderPc-30th { order: 30; }
	.orderPc-31th { order: 31; }
	.orderPc-32th { order: 32; }
	.orderPc-33th { order: 33; }
	.orderPc-34th { order: 34; }
	.orderPc-35th { order: 35; }
	.orderPc-36th { order: 36; }
	.orderPc-37th { order: 37; }
	.orderPc-38th { order: 38; }
	.orderPc-39th { order: 39; }
	.orderPc-40th { order: 40; }
}
@media screen and (max-width: 767px){
	html{
		scroll-padding-top: 50px;
	}
	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■■■■■■■■■■■■■■■■■■■■■■ */
#headerarea {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 900;
}
.hd-container {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
}
.hd-container--logo {
	width: 35%;
	max-width: 200px;
	transition: .3s;
}
.hd-container__menu {
	display: flex;
	align-items: center;
	gap: var(--spc-20);
}
.hd-container__menu--contact a {
	color: var(--c-white);
	background: var(--c-pink);
	border-radius: 30px;
}
body.scroll .hd-container__menu--contact a{
	color: var(--c-dpink);
	background: var(--c-lpink);
}
@media screen and (min-width: 768px){
	.hd-container__menu--ig span{
		aspect-ratio: 1 / 1;
		--MASK: var(--ICON) no-repeat center center / 100%;
		mask: var(--MASK);
		-webkit-mask: var(--MASK);
		background-color: var(--c-white);
		display: block;
		width: 30px;
	}
	.hd-container__menu--contact a {
		border: 1px solid var(--c-white);
		font-size: var(--fz-16);
		padding: 3px 20px;	}
	body.scroll .hd-container__menu--ig span{
		background-color: var(--c-dpink);
		width: 25px;
	}
	body.scroll .hd-container__menu--contact a{
		border: 1px solid var(--c-dpink);
		font-size: var(--fz-14);
	}
	body.scroll .hd-container--logo{
		max-width: 120px;
		transition: .3s;
	}
	.hd-container--logo{
		max-width: 170px;
	}

}
@media screen and (max-width: 767px){
	.hd-container__menu--contact a {
		border: 1px solid var(--c-white);
		font-size: var(--fz-13);
		padding: 2px 10px;
	}
	body.scroll .hd-container__menu--contact a{
		border: 1px solid var(--c-dpink);
	}
	body.scroll .hd-container--logo{
		width: 26%;
	}
}
/* ローディング */
.loading_area {
	position: fixed;
	z-index: 999999;
	width: 100%;
	height: 100vh;
}
.loading_area.hide {
	opacity: 0;
	pointer-events: none;
	transition: opacity 500ms;
}
#loader_bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: var(--c-pink);
	z-index: 1000000;
}
#loader_area {
	width: 30px;
	height: 30px;
	margin: -20px 0px 0px -20px;
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 2000000;
}
.loader {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--c-lpink);
	animation: pulse 0.8s infinite alternate ease-in-out;
}
@keyframes pulse {
	0% {
		transform: scale(0.2);
	}
	50% {
		transform: scale(1);
	}
	100% {
		transform: scale(0.2);
	}
}

/* トップ */
.t-fvSection {
	position: relative;
}
.t-fvSection::after,
.t-fvSection--inner::after {
	position: absolute;
	color: rgb(255 255 255 / 30%);
	font-weight: 900;
}
h2.t-fvSection--catch {
	position: absolute;
	color: var(--c-white);
	font-weight: 500;
	z-index: 2;
}
.t-fvSection--mainSlider img,
.t-fvSection--subSlider img {
	object-fit: cover;
	overflow: hidden;
}
@media screen and (min-width: 768px){
	.t-fvSection::before {
		content: "";
		background: var(--c-pink);
		width: 100%;
		height: 95%;
		display: block;
		position: absolute;
		left: 0;
		top: 0;
	}
	section.t-fvSection.g-pd {
		padding: 0;
	}
	.t-fvSection--inner {
		width: 90%;
		position: relative;
	}
	.t-fvSection--mainSlider {
			width: 62%;
	}
	.t-fvSection--subSlider {
			width: 40%;
	}
	.t-fvSection--mainSlider img {
		border-radius:500px;
		aspect-ratio: 6/7;
	}
	.t-fvSection--subSlider {
		margin: -10% 0 0 auto;
	}
	.t-fvSection--subSlider img {
		border-radius:410px;
		aspect-ratio: 6/7;
	}
	h2.t-fvSection--catch {
		font-size: var(--fz-70);
		font-weight: 500;
		line-height: 1.3;
		bottom: 12%;
		left: 0;
	}
	.t-fvSection--inner::after {
		content: "private\Asalon";
		white-space: pre;
		text-align: right;
		top: 25%;
		right: 0;
		font-size: clamp(90px, 10vw, 120px);
		line-height: .9;
		filter: blur(7px);
	}

}
@media screen and (min-width: 1030px){
	.t-fvSection--mainSlider {
		margin-top: -10%;
	}
}
@media screen and (min-width:768px) and (max-width:1031px) {
	.t-fvSection--mainSlider {
		margin-top: -5%;
	}
}

	@media screen and (max-width: 767px){
	.t-fvSection {
		background: var(--c-pink);
		overflow: hidden;
	}
	.t-fvSection--mainSlider {
		transform: scale(1.4);
		padding: calc(var(--spc-100) * 1.3) 0 var(--spc-100);
	}
	.t-fvSection--mainSlider img {
		border-radius: 422px;
		aspect-ratio: 6 / 7;
	}
	h2.t-fvSection--catch {
		font-size: clamp(32px, 8vw, 60px);
		bottom: 9%;
		left: 5%;
		line-height: 1.3;
	}
	.t-fvSection::after {
		content: "privatesalon";
		bottom: 5%;
		font-size: clamp(60px, 18vw, 140px);
		line-height: 1;
		filter: blur(4px);
		left: 50%;
		transform: translateX(-50%);
	}

}
@media screen and (max-width: 767px) and (max-height: 800px){
	.t-fvSection {
		height: 100vh;
	}
}
@media screen and (max-width: 767px) and (min-height: 801px){
	.t-fvSection {
		padding-bottom: 120px;
	}
}
/* アバウト */
h2.t-heading.t-heading--about {
	margin: 0 0 var(--spc-30) auto;
}
.t-heading--en {
	display: block;
}
.t-heading--ja {
	letter-spacing: .3em;
	line-height: 1.5;
}
.t-aboutContainer {
	position: relative;
}
.t-about--text {
	margin-bottom: var(--spc-65);
}
.t-aboutSlider .slick-slide {
	margin: 0 10px;
}
.t-aboutSlider .slick-slide:nth-of-type(even){
	margin-top: 30px;
}
.t-aboutSlider img{
	border-radius: 375px;
}
@media screen and (min-width: 768px){
	.t-heading--en {
		font-size: var(--fz-22);
	}
	.t-heading--ja {
		font-size: var(--fz-30);
	}
	.t-aboutSection{
		padding-top: 150px;
	}
	.t-about--text {
		font-size: var(--fz-22);
	}
	.t-heading--about{
		position: absolute;
		right: 0;
		top: 0;
	}
}
@media screen and (max-width: 767px){
	.t-heading--en {
		font-size: var(--fz-15);
	}
	.t-heading--ja {
		font-size: var(--fz-25);
	}
	.t-about--text {
		font-size: var(--fz-18);
	}

}
/* 共通 */
h2.g-heading {
	text-align: center;
	margin-bottom: var(--spc-50);
	line-height: 1.4;
}
.g-heading--en {
	display: block;
	font-weight: 600;
}
.g-heading--ja {
}
@media screen and (min-width: 768px){
	.g-heading--en {
		font-size: clamp(30px, 4vw, 40px);
	}
	.g-heading--ja {
		font-size: clamp(13px, 2vw, 15px);
	}
}
@media screen and (max-width: 767px){
	.g-heading--en {
		font-size: clamp(28px, 5vw, 33px);
	}
	.g-heading--ja {
		font-size: clamp(11px, 2vw, 13px);
	}

}
/* こだわり */
#features {
	background: var(--c-white);
}
.t-feature__list li {
	position: relative;
}
.t-feature__list--slider img {
	border-radius: 60px;
	object-fit: cover;
}
.t-feature__list.slick-slider {
	margin-bottom: 10px;
}
.t-feature__list--wrap::after{
	content: "";
	background-color: rgb(240 229 230 / 75%);
	display: inline-block;
	aspect-ratio: 1 / 1;
	border-radius: 25px;
	position: absolute;
}
.t-feature__list--num {
	letter-spacing: .1em;
}
h2.t-feature__list--ttl {
	position: relative;
	line-height: 1.4;
	z-index: 3;
}
.t-feature__list--text {
	position: relative;
	font-weight: 400;
	z-index: 3;
}
.t-feature__list--wrap {
	position: relative;
}
@media screen and (min-width: 768px){
	span.t-feature__list--label{
		display: none;
	}
	.t-feature__list li {
		display: flex;
		align-items: center;
		gap: var(--spc-80);
	}
	.t-feature__list li:not(:last-child) {
		margin-bottom: var(--spc-80);
	}
	.t-feature__list li:nth-of-type(even) {
		flex-direction: row-reverse;
	}
	.t-feature__list--slider {
		width: 40%;
	}
	.t-feature__list--wrap {
		width: 50%;
	}
	.t-feature__list--slider img {
		aspect-ratio: 4/5;
	}
	.t-feature__list--wrap::after{
		width: 27%;
		max-width: 110px;
		top: clamp(15px, 2vw, 25px);
		left: -1.5em;
	}
	h2.t-feature__list--ttl {
		font-size: var(--fz-25);
		margin-bottom: var(--spc-30);
		letter-spacing: .2em;
	}
	.t-feature__list--num {
		display: block;
		margin-bottom: var(--spc-20);
	}
	.t-feature__list--text {
		font-size: var(--fz-16);
		margin-bottom: var(--spc-50);
	}
}
@media screen and (max-width: 767px){
	span.t-feature__list--label{
		writing-mode: vertical-rl;
		position: absolute;
		right: 0;
		top: 0;
		color: var(--c-dpink);
		font-size: var(--fz-18);
		z-index: 2;
	}
	.t-feature__list--slider {
		width: 88%;
		margin-right: auto;
	}
	.t-feature__list--slider img {
		aspect-ratio: 1/1;
	}
	.t-feature__list li:not(:last-child) {
		margin-bottom: var(--spc-60);
	}
	.t-feature__list--wrap {
		padding-inline: 15% 5%;
	}
	.t-feature__list li:nth-of-type(odd) .t-feature__list--wrap {
		padding-inline: 25% 5%;
	}
	.t-feature__list--wrap::after{
		width: 32%;
		max-width: 150px;
	}
	.t-feature__list--wrap::after{
		right: 30px;
		top: -30px;
	}
	.t-feature__list li:nth-of-type(odd) .t-feature__list--wrap::after{
		left: 30px;
		top: -30px;
	}
	h2.t-feature__list--ttl {
		font-size: var(--fz-22);
		margin-bottom: var(--spc-15);
	}
	.t-feature__list--num {
		position: absolute;
		left: -2em;
	}
	.t-feature__list--text {
		font-size: var(--fz-16);
	}

}
/* ドット */
.t-feature__list li .slick-dots {
	list-style: none;
	margin: 0;
	padding: 0;
	width: fit-content;
}
.t-feature__list li .slick-dots li{
	width: auto;
	height: auto;
}
.t-feature__list li .slick-dots li button {
	display: block;
	position: relative;
	overflow: hidden;
	width: 5px;
	height: 5px;
	padding: 0;
	border-radius: 4px;
	background: transparent;
	border: .5px solid var(--c-pink);
	transition: all 0.3s ease;
}
.t-feature__list li .slick-dots li button:before {
	display: none;
}
.t-feature__list li .slick-dots li.slick-active button::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: 5px;
	height: 8px;
	transform: translateX(-50%);
	border-radius: 4px;
	background: var(--c-pink);
	animation: slick_dot_progress 4s linear forwards;
}
@keyframes slick_dot_progress {
	0% { height: 8px; }
	100% { height: 100%; }
}
@media screen and (min-width: 768px){
	.slick-dotted.slick-slider{
		margin: 0;
	}
	.t-feature__list--wrap .slick-dots {
		display: flex !important;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		position: static;
		margin-top: 20px;
	}
	.t-feature__list li .slick-dots li {
		margin: 0 2px;
	}
	.t-feature__list li .slick-dots li.slick-active button {
		width: 70px;
		height: 5px;
	}
	.t-feature__list li .slick-dots li.slick-active button::after {
		left: 0;
		top: 0;
		transform: scaleX(0);
		transform-origin: left;
		width: 100%;
		height: 100%;
		border-radius: 4px;
		animation: slick_dot_progress_pc 4s linear forwards;
	}
	@keyframes slick_dot_progress_pc {
		0% { transform: scaleX(0); }
		100% { transform: scaleX(1); }
	}
}
@media screen and (max-width: 767px){
	.slick-dotted.slick-slider{
		margin-bottom: var(--spc-10);
	}
	.t-feature__list--slider .slick-dots {
		display: flex !important;
		flex-direction: column;
		align-items: center;
		position: absolute;
		right: -9.5%;
		bottom: 0;
	}
	.t-feature__list li .slick-dots li {
		margin: 2px 0;
	}
	.t-feature__list li .slick-dots li.slick-active button {
		height: 70px;
	}
	.t-feature__list li .slick-dots li.slick-active button::before {
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		animation: slick_dot_progress 4s linear forwards;
	}
}
/* 背景 */
.t-menuSection--bg {
	position: sticky;
	top: 0;
	z-index: -1;
}
/* メニュー */
.t-menuSection {
	background: var(--c-lpink);
}
.t-menu__list li {
	line-height: 2.5;
	font-size: var(--fz-16);
}
.t-menu__list li > p {
	display: flex;
	justify-content: space-between;
	align-items: center;
	letter-spacing: .03em;
	line-height: 1.3;
}
.t-menu__list--price {
	font-style: italic;
	font-weight: 300;
	text-align: right;
}
.t-menu__list--student {
	font-size: var(--fz-13);
	font-weight: 400;
	margin-top: -10px;
}
.t-menu__list:not(:last-child) {
	border-bottom: 1px dotted;
}
.t-menu__list.bd--non {
	border: none;
}
.t-menu__list li > p.t-menu__list--note {
	font-size: var(--fz-13);
	line-height: 1.5;
	font-weight: 400;
}
.t-menu__list:last-child p:last-child {
	margin-bottom: 0;
}
.t-menu__list li {
	font-size: var(--fz-18);
}
.t-menu__list--name span {
	font-size: var(--fz-14);
}
.t-menu__list--name.bold {
	font-weight: bold;
	font-size: var(--fz-20);
}
h3.t-menu__list--ttl {
	margin-bottom: 30px;
	font-size: var(--fz-20);
	font-weight: bold;
}
h3.t-menu__list--ttl span {
	display: block;
	font-size: var(--fz-14);
}
.t-menu__list--and {
	margin-bottom: var(--spc-50);
	background: rgb(255 255 255 / 60%);
	padding: var(--spc-30);
}
.t-menu__list li > p.mgb30 {
	margin-bottom: 30px;
}
@media screen and (min-width: 768px){
	.t-menuContainer.g-inner--ss {
		max-width: 580px;
		margin-inline: auto;
	}
	.t-menu__list:not(:last-child) {
		margin-bottom: 40px;
		padding-bottom: 20px;
	}
	.t-menu__list li > p {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px){
	.t-menu__list:not(:last-child) {
		margin-bottom: 30px;
		padding-bottom: 10px;
	}
	.t-menu__list li > p {
		margin-bottom: 20px;
	}

}
/* スタイリスト */
.t-stylistSection {
	background: var(--c-white);
}
.t-stylist--img {
	margin-bottom: var(--spc-20);
}
.t-stylist--img img {
	border-radius: 60px;
}
h3.t-stylist--name {
	font-size: var(--fz-25);
	margin-bottom: var(--spc-20);
}
h3.t-stylist--name span {
	margin-left: 1em;
	font-size: var(--fz-20);
}
.t-stylist--text {
	font-size: var(--fz-16);
	font-weight: 400;
}
@media screen and (min-width: 768px){
	.t-stylist--wrap {
		display: flex;
		align-items: center;
		gap: var(--spc-50);
	}
	.t-stylist--img {
		width: 35%;
		max-width: 300px;
	}
	.t-stylist--textarea {
		flex: 1;
	}
}
/* インスタグラム */
.t-instaSection{
	background: var(--c-white);
}
#instagram-gallery-feed-0 {
	margin-bottom: var(--spc-50);
}
.instagram-gallery__actions {
	display: none !important;
}
.g-btn--ig span.g-btn__label::before {
	content: "";
	background: url(../images/common/icon_ig.svg) no-repeat;
	background-size: contain;
	width: 15px;
	height: 15px;
	display: inline-block;
	margin-right: .5em;
	vertical-align: text-bottom;
}
@media screen and (min-width: 768px){
	.instagram-gallery-list[data-feed_layout=gallery] .instagram-gallery-item {
		width: calc( ( 100% - 30px ) / 4) !important;
	}
	.instagram-gallery-item:nth-of-type(n+9) {
		display: none !important;
	}
	.g-heading--insta .g-heading--en span {
		font-size: var(--fz-30);
	}
}
@media screen and (max-width: 767px){
	.instagram-gallery-list[data-feed_layout=gallery] .instagram-gallery-item {
		width: calc( ( 100% - 12px ) / 3) !important;
	}
	.g-heading--insta .g-heading--en span {
		font-size: var(--fz-25);
	}
}
/* アクセス */
.t-accessSection{
	background: var(--c-lpink);
}
.t-access--map {
	overflow: hidden;
	margin-bottom: var(--spc-50);
}
.t-access--map iframe {
	filter: grayscale(1);
}
h3.t-access--name {
	width: 70%;
	max-width: 250px;
	margin: 0 auto var(--spc-30);
}
.t-access--text {
	text-align: center;
	font-size: var(--fz-14);
	font-weight: 400;
	margin-bottom: var(--spc-20);
}
.t-access--sns {
	width: 30px;
	margin-inline: auto;
}
@media screen and (min-width: 768px){
	.t-access--map.fadein.is-show {
		max-width: 700px;
		margin-inline: auto;
	}
	.t-access--map {
		border-radius: 45px;
}
	.t-access--map iframe {
		height: 400px;
	}

}
@media screen and (max-width: 767px){
	.t-access--map iframe {
		height: 300px;
	}
	.t-access--map {
		border-radius: 25px;
	}

}
/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
#footerarea{
	background: var(--c-lpink);
}
.ft-Container.g-inner--ss {
	background: var(--c-pink);
	padding: var(--spc-30);
	color: var(--c-white);
	border-radius: 25px;
	margin-bottom: var(--spc-40);
}
h2.ft-heading {
	font-size: var(--fz-22);
	margin-bottom: var(--spc-10);
	text-align: center;
}
.ft-text {
	font-size: var(--fz-14);
	font-weight: 400;
	margin-bottom: var(--spc-20);
	text-align: center;
}
.ft-btn--line a {
	display: block;
	margin-inline: auto;
	text-align: center;
	background: var(--c-white);
	padding: 10px 0;
	border-radius: 23px;
	color: #02C755;
	font-weight: 600;
	font-size: var(--fz-15);
	letter-spacing: 0;
}
.ft-btn--line a::before{
		content: "";
		background: url(../images/common/icon_line.svg) no-repeat;
		background-size: contain;
		width: 20px;
		height: 20px;
		display: inline-block;
		margin-right: .5em;
		vertical-align: text-bottom;
}
.copy {
	background: var(--c-dpink);
	text-align: center;
	color: var(--c-white);
	font-size: var(--fz-13);
	line-height: 1;
	padding: 10px 0;
}
@media screen and (min-width: 768px){
	.ft-Container.g-inner--ss {
		max-width: 700px;
	}
}
/* ページトップ */
.pagetop{
	position: fixed;
	z-index: 99;
	background-color: var(--c-white);
	border-radius: 50%;
}
.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);
}
@media screen and (min-width: 1025px){
	.pagetop{
		width: 50px;
		bottom: 20px;
		right: 3%;
	}
}
@media screen and (max-width: 1024px){
	.pagetop{
		width: 35px;
		bottom: 80px;
		right: 10px;
	}
}


/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -------------------見出し-------------------- */
.g-heading--center > span{
	text-align: center;
}
.g-heading__ja{
	display: block;
	font-weight: 700;
}
.g-heading__en{
	display: block;
	font-family: var(--ff-en);
}
@media screen and (min-width: 1025px){
  .g-headingContainer{
		margin-bottom: var(--spc-30);
	}
	.g-heading__ja{
		font-size: var(--fz-38);
	}
	.g-heading__en{
		font-size: var(--fz-16);
	}
}
@media screen and (max-width: 1024px){
	.g-headingContainer{
		margin-bottom: 20px;
	}
	.g-heading__ja{
		font-size: 26px;
	}
	.g-heading__en{
		font-size: 16px;
	}
}
/* -------------------ボタン-------------------- */
/* コンテナベース */
.g-btnContainer{
	display: grid;
}
@media screen and (min-width: 1025px){
	.g-btnContainer{
		margin-top: var(--spc-50);
	}
}
@media screen and (max-width: 1024px){
	.g-btnContainer{
		margin-top: 30px;
	}
}
/* コンテナベース - 横並び */
.g-btnContainer--horizontal{
	display: flex;
	justify-content: center;
}
@media screen and (min-width: 1025px){
	.g-btnContainer--horizontal{
		gap: var(--spc-30);
	}
}
@media screen and (max-width: 1024px){
	.g-btnContainer--horizontal{
		gap: 10px;
	}
}
/* コンテナベース - PCのみ横並び */
@media screen and (min-width: 1025px){
	.g-btnContainer--horizontalPc{
		display: flex;
		justify-content: center;
		gap: var(--spc-30);
	}
}
@media screen and (max-width: 1024px){
	.g-btnContainer--horizontalPc{
		gap: 10px;
	}
	.g-btnContainer--horizontalPc .g-btn{
		margin-inline: auto;
	}
}
/* コンテナベース - 縦並び */
@media screen and (min-width: 1025px){
	.g-btnContainer--vertical{
		gap: var(--spc-20);
	}
}
@media screen and (max-width: 1024px){
	.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;
	font-weight: 600;
	letter-spacing: 0.2em;
	border: 1px solid var(--bd-c-gray);
	border-radius: 30px;
	position: relative;
}
.g-btn > button{
	width: 100%;
}
@media screen and (min-width: 1025px){
	.g-btn{
		max-width: 300px;
	}
	.g-btn > a,
	.g-btn > button{
		min-height: 50px;
	}
}
@media screen and (max-width: 1024px){
	.g-btn{
		max-width: 250px;
	}
	.g-btn > a,
	.g-btn > button{
		min-height: 40px;
	}
}
/* ボタンベース_フォントサイズ */
@media screen and (min-width: 1025px){
	.g-btn__label{
		font-size: var(--fz-16);
	}
}
@media screen and (max-width: 1024px){
	.g-btn__label{
		font-size: var(--fz-14);
	}
}
/* カラーバリエーション */
.g-btn--white > a,
.g-btn--white > button{
	background-color: var(--c-white);
	border: 1px solid var(--c-gray-300);
}
.g-btn--black > a,
.g-btn--black > button{
	background-color: var(--c-gray-300);
	color: var(--c-white);
}
.g-btn--black > a:visited{
	color: var(--c-white);
}
.g-btn--white > a:visited{
	color: var(--c-navy);
}
@media (hover: hover){
	.g-btn > a,
	.g-btn > button{
		transition: .5s;
	}
	.g-btn > a:hover{
		opacity: 1;
	}
	.g-btn > a:hover::after{
		transform: rotate(-10deg);
		top: 33%;
		right: 4%;
		transition: .3s;
	}
	.g-btn--white > a:hover{
		background-color: var(--c-lpink);
	}
	.g-btn--black > a:hover{
		opacity: 0.7;
	}
	.g-btn--yellow > a:hover{
		opacity: 0.7;
	}
	.g-btn > button:hover{
		opacity: 0.7;
	}
}
/* 大きさ - long */
.g-btn--long{
	width: var(--inner-w);
	max-width: 388px;
}
/* 大きさ - small */
@media screen and (min-width: 1025px){
	.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: 1024px){
	.g-btn--small{
		max-width: 128px;
	}
	.g-btn--small > a{
		padding: 7px 0;
		min-height: 30px;
	}
	.g-btn--small .g-btn__label{
		font-size: 10px;
	}
}
/* タイプ - center */
.g-btn--center{
	margin-inline: auto;
}
/* タイプ - arrow */
.g-btn--arrow > a{
	position: relative;
}
.g-btn--arrow > a::after{
	content: '';
	background: url(../images/common/btn_arrow.svg) no-repeat;
	background-size: contain;
	width: 18px;
	height: 8px;
	display: inline-block;
	position: absolute;
}
.g-btn--arrow.g-btn--secondary > a::after{
	color: var(--c-black);
}
.g-btn--arrow.g-btn--primary > a::after{
	color: var(--c-white);
}
@media screen and (min-width: 1025px){
	.g-btn--arrow > a::after{
		font-size: 12px;
		top: 37%;
		right: 5%;
	}
}
@media screen and (max-width: 1024px){
	.g-btn--arrow > a::after{
		font-size: 12px;
		top: 35%;
		right: 5%;
	}
}
/* タイプ - return */
.g-btn--arrow.g-btn--return a::after{
	transform: rotate(180deg) translateX(5px);
	right: unset;
}
@media screen and (min-width: 1025px){
	.g-btn--arrow.g-btn--return a::after{
		left: 10px;
	}
}
@media screen and (max-width: 1024px){
	.g-btn--arrow.g-btn--return a::after{
		left: 10px;
	}
}
/* タイプ - anchor */
.g-btn--arrow.g-btn--anchor > a::after{
	transform: rotate(90deg);
}
@media screen and (min-width: 1025px){
	.g-btn--arrow.g-btn--anchor > a::after{
		font-size: 12px;
		top: 35%;
		right: 10px;
	}
}
@media screen and (max-width: 1024px){
	.g-btn--arrow.g-btn--anchor > a::after{
		font-size: 10px;
		top: 37%;
		right: 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: 1025px){
	.tab-btn:hover{
		cursor: pointer;
	}
	.tab-btn.show{
		cursor: auto;
	}
}
/* -----------------ポップアップ共通css----------------- */
body.fixed {
	position: fixed;
	width: 100%;
	overflow: hidden;
}
.popup-overlay{
  display: none; 
  width: 100%;
  height: 100%;
  background-color: var(--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: 1025px){
	.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: 1024px){
	.popup-overlay .popup-content{
		width: 90%;
	}
	.popup-overlay .popup-box{
		padding: 30px 15px;
		max-height: 80vh;
	}
	.popup-overlay button.closePopup{
		top: 10px;
		right: 10px;
		font-size: 11px;
		gap: 3px;
	}
	.popup-overlay button.closePopup::after{
		width: 15px;
	}
}

/* -------------------g-slickArrow---------------------- */
[class*="g-slickArrow--"]{
	width: var(--slick-arrow-size);
  background-image: unset;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: inline-block;
	position: absolute;
	z-index: 2;
}
[class*="g-slickArrow--"]::before{
  content: "";
  display: inline-block;
  --this-mask: var(--data-icon-slide-arrow) no-repeat center center;
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  aspect-ratio: 1/1;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.g-slickArrow--prev{
	left: var(--slick-arrow-to-body);
}
.g-slickArrow--next{
	right: var(--slick-arrow-to-body);
	transform: rotate(180deg);
}
.g-slickArrow--c-white{
  background-color: var(--c-white);
}
.g-slickArrow--c-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--c-white:hover{
    background-color: var(--c-black);
  }
  .g-slickArrow--c-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: 1025px){
	.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: 1024px){
	.g-hasSlickArrow{
		--slick-arrow-size: 30px;
		--slick-arrow-to-body: calc(0px - var(--slick-arrow-size) + var(--slick-gap) - 5px);
	}
	[class*="g-slickArrow--"]::before{
		mask-size: 40%;
	}
}
/* -------------------g-slickDots-------------------- */
.slick:has(.g-slickDots){
	margin-bottom: 0;
}
.g-slickDots{
	display: flex;
	justify-content: center;
	gap: 15px;
}
.g-slickDots li{
	aspect-ratio: 1/1;
	position: relative;
}
.g-slickDots button{
	font-size: 0;
	background-color: var(--bg-c-gray);
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.g-slickDots .slick-active button{
	background-color: var(--c-black)
}
@media screen and (min-width: 1025px){
	.g-slickDots li{
		width: 15px;
		margin-top: 10px;
	}
	.g-slickDots button{
		width: 8px;
	}
}
@media screen and (max-width: 1024px){
	.g-slickDots li{
		width: 15px;
		margin-top: 10px;
	}
	.g-slickDots button{
		width: 8px;
	}
}
/* -------------------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);
}

/* 定期ラベル */
article.fs-c-productList__list__item.fs-c-productListItem {
	position: relative;
}
.fs-c-productMarks{
	gap: 0 5px;
}
.fs-c-productMark{
	position: absolute;
	top: 10px;
	left: 10px;
}
img.fs-c-productMark__image {
	height: 50px;
}
span.fs-c-mark--subscription.fs-c-mark,
span.fs-c-mark--firstTimeSpecialPrice.fs-c-mark{
	width: auto;
	padding: 0;
	margin: 0;
}
.fs-c-productMarks > .fs-c-mark--normalAndSubscription.fs-c-mark .fs-c-mark__label{
	background-color: var(--mark-c-subscription);
}
.fs-c-productMarks > .fs-c-mark--firstTimeSpecialPrice .fs-c-mark__label {
	background-color: var(--mark-c-first);
}
.fs-c-productMarks > .fs-c-mark--subscription .fs-c-mark__label{
	background-color: var(--mark-c-subscription);
}