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

	--GRAY01: #F2F2F2;
	--GRAY02: #D1D1D1;
	--GRAY02_OP20: rgba(209, 209, 209, 0.2);
	--GRAY03: #8D8D8D;

	--DARK01: #111111;
	--DARK01_OP80: rgba(17, 17, 17, 0.8);

	--GREEN01: #92B566;
	--GREEN01_OP20: rgba(146, 181, 102, 0.2);
	--GREEN02: #ECF0E6;
	--GREEN03: #527626;

	--RED01: #C21632;

	--BROWN01: #E3DFD5;
	--BROWN02: #6C4F00;
  --BROWN03: #E3DFD5;

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

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

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

	/* ランキングカラー */
	--RANKING_1ST: #BA9700;
	--RANKING_2ND: #A7A7A7;
	--RANKING_3RD: #B75400;
	--RANKING_OTHER: #002C1B;

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

	/* 共通ボックス影 */
	--COMMON_BXSD: 0px 0px 15px -5px var(--GRAY02);
	--COMMON_BXSD_BTM: 0px 5px 15px -5px var(--GRAY02);
	
	/* ベースフォント */
	--FF_BASE: "Noto Serif JP", serif;
	--FF_NOTO: "Noto Sans JP", serif;
	/* 英数字フォント */
	--FF_EN: var(--FF_BASE);
	--FF_NUM: var(--FF_BASE);

	/* フォントウェイト */
	--FF_WEIGHT_BASE: var(--FF_W_R);
	--FF_W_L: 300;
	--FF_W_R: 400;
	--FF_W_M: 500;
	--FF_W_B: 700;
	
	/* アニメーション */
	--ANIME_FADEIN: fadeIn .5s ease-in-out 0s forwards;
	--ANIME_FADEOUT: fadeOut .5s ease-in-out 0s forwards;

	/* フォトサイズ */
	--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.5vw, 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_43: clamp(30px, 4vw, 43px);
	--FZ_50: clamp(30px, 4vw, 50px);
	--FZ_55: clamp(40px, 5vw, 55px);
	--FZ_60: clamp(40px, 5vw, 60px);
	--FZ_70: clamp(50px, 6vw, 70px);
	--FZ_10_CONST: 10px;
	--FZ_12_CONST: 12px;
	--FZ_14_CONST: 14px;
	--FZ_15_CONST: 15px;
	--FZ_16_CONST: 16px;
	--FZ_18_CONST: 18px;
	--FZ_20_CONST: 20px;

	/* 行間 */
	--LINE_HEIGHT_S: 1.5;
	--LINE_HEIGHT_M: 1.7;
	--LINE_HEIGHT_L: 2;

	/* ブロック間 */
	--GAP_10: clamp( 5px, 1.1vw, 10px);
	--GAP_15: clamp( 10px, 1.2vw, 15px);
	--GAP_20: clamp( 15px, 1.7vw, 20px);
	--GAP_25: clamp( 15px, 1.7vw, 25px);
	--GAP_35: clamp( 20px, 2.5vw, 35px);
	--GAP_30: clamp( 20px, 2.5vw, 30px);
	--GAP_38: clamp( 20px, 2.5vw, 38px);
	--GAP_40: clamp( 30px, 3.5vw, 40px);
	--GAP_50: clamp( 30px, 3.5vw, 50px);
	--GAP_55: clamp( 40px, 4.5vw, 55px);
	--GAP_60: clamp( 40px, 4.5vw, 60px);
	--GAP_65: clamp( 50px, 5.5vw, 65px);
	--GAP_75: clamp( 60px, 6.5vw, 75px);
	--GAP_80: clamp( 50px, 5.5vw, 80px);
	--GAP_5_CONST: 5px;
	--GAP_10_CONST: 10px;
	--GAP_15_CONST: 15px;
	--GAP_20_CONST: 20px;
	--GAP_30_CONST: 30px;
	--GAP_40_CONST: 40px;

	/* マージン */
	--MG_5: 5px;
	--MG_10: 10px;
	--MG_15: 15px;
	--MG_20: 20px;
	--MG_30: 30px;
	--MG_40: 40px;
	--MG_50: 50px;
	--MG_60: 60px;
	--MG_80: 80px;

	/* PCマックス幅 */
	--PC_MAX_WIDTH: var(--PC_MAX_WIDTH_M);
	--PC_MAX_WIDTH_SS: 800px;
	--PC_MAX_WIDTH_S: 1030px;
	--PC_MAX_WIDTH_M: 1030px;
	--PC_MAX_WIDTH_L: 1300px;

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

	/* セクション間隔半分 */
	--GENERALSEC_HALF: calc(var(--GENERALSEC) / 2);
}

@media screen and (min-width: 768px){
	:root{
		--INNER_WIDTH: 95%;
		--GENERALSEC: clamp(70px, 9vw, 120px);

			/* 角丸ー */
	--IMG_BDRS: 5px;
	}
}
@media screen and (max-width: 767px){
	:root{
	--INNER_WIDTH: 90%;
	--GENERALSEC: 50px;

		/* 角丸ー */
		--IMG_BDRS: 3px;
	}
}
/* フェードインアニメーション */
@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(--FF_WEIGHT_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(--FF_WEIGHT_BASE);
	font-feature-settings: "palt" 1;
	letter-spacing: 0.1em;
	width:100%;
	color: var(--TXT_COLOR_BASE);
	position:relative;
	z-index: 0;
	overflow-x: clip;
}
body > *{
	overflow-x: clip;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--TXT_COLOR_BASE);
}
a:visited{
	color: var(--TXT_COLOR_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="reset"],
.formReset input[type="image"],
.formReset select{
	background-color: unset;
	color: var(--TXT_COLOR_BASE);
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
}
.formReset input[type="text"],
.formReset input[type="text"]::placeholder{
	font-family: var(--FF_BASE);
	color: var(--TXT_COLOR_BASE);
}
time{
	font-family: var(--FF_NUM);
}
/* フォント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(--GENERALSEC);
}
.g-mgb{
	margin-bottom: var(--GENERALSEC);
}
.g-pd{
	padding: var(--GENERALSEC) 0;
}
.g-pdt{
	padding-top: var(--GENERALSEC);
}
.g-pdb{
	padding-bottom: var(--GENERALSEC);
}
.g-mgt--half{
	margin-top: var(--GENERALSEC_HALF);
}
.g-mgb--half{
	margin-bottom: var(--GENERALSEC_HALF);
}
.g-pd--half{
	padding: var(--GENERALSEC_HALF) 0;
}
.g-pdt--half{
	padding-top: var(--GENERALSEC_HALF);
}
.g-pdb--half{
	padding-bottom: var(--GENERALSEC_HALF);
}
/* グリッド、フレックス */
.grid{
	display: grid;
}
.flex{
	display: flex;
}
.fxw{
	display: flex;
	flex-wrap: wrap;
}
.jcsb{
	display: flex;
	justify-content: space-between;
}
.aic{
	display: flex;
	align-items: center;
}
/* スライダー読み込みまで非表示 */
.slick{
	opacity: 0;
	transition: opacity .3s linear;
	line-height: 1;
}
.slick.slick-initialized{
	opacity: 1;
}
.swiper{
	overflow: hidden;
  opacity: 0;
	transition: opacity .3s linear;
}
.swiper.swiper-initialized{
	opacity: 1;
}
/* 縦書き */
.tategaki{
	writing-mode: vertical-rl;
	text-orientation: upright;
}
/* 文字間 */
::placeholder,
input[type="text"],
[class*="ttl"],
[class*="lead"],
[class*="heading"],
a{
  letter-spacing: 0.1em;
}
/* テキスト行間文字間 */
[class*="txt"]{
  line-height: var(--LINE_HEIGHT_L);
	letter-spacing: 0.1em;
}
/* スクロールバー消す */
.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: 10000/5625;
}
/* 改行用 */
.dib{
	display: inline-block;
}
/* 非表示 */
.displaynone{
	display: none;
}
/* 親要素超えて幅100% */
.widthOverParent{
	width: 100vw;
	--OYA: calc(50% - 50vw);;
	margin-left: var(--OYA);
	margin-right: var(--OYA);
}
@media (hover: hover){
	.formReset button:hover,
	.formReset input[type="button"]:hover,
	.formReset input[type="submit"]:hover,
	.formReset input[type="image"]:hover,
	.formReset select:hover{
		cursor: pointer;
	}
	a:hover{
		opacity: 0.5;
		text-decoration: none;
	}
	a:hover img{
		opacity:0.75 !important;
	}
}
html.no-smooth-scroll {
	scroll-behavior: auto;
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 80px;
	}
	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,
	.g-inner--pc,
	.g-inner--l,
	.g-inner--lPc,
	.g-inner--m,
	.g-inner--s{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.g-inner,
	.g-inner--pc{
		max-width: var(--PC_MAX_WIDTH_M);
	}
	.g-inner--l,
	.g-inner--lPc{
		max-width: var(--PC_MAX_WIDTH_L);
	}
	.g-inner--s{
		max-width: var(--PC_MAX_WIDTH_S);
	}
	.g-inner--ss{
		max-width: var(--PC_MAX_WIDTH_SS);
	}
	.g-inner--pcHasSlickGap{
		--INNER_ADJUST: calc(var(--SLICK_GAP) * 2);
    width: calc(var(--INNER_WIDTH) + var(--INNER_ADJUST));
    max-width: calc(var(--PC_MAX_WIDTH_M) + var(--INNER_ADJUST));
		margin-left: auto;
		margin-right: auto;
	}
	.g-pd--halfPcOnly{
		padding: var(--GENERALSEC_HALF) 0;
	}
	.sp{
		display: none !important;
	}
	.hamburger{
		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; }
}
@media screen and (max-width: 767px){
	body{
		font-size: var(--FZ_14_CONST);
		line-height: 1.6;
	}
	.g-inner,
	.g-inner--sp,
	.g-inner--l,
	.g-inner--m,
	.g-inner--s{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.g-pd--halfPcOnly{
		padding: var(--GENERALSEC) 0;
	}
	.pc{
		display: none !important;
	}
	.sp-scroll--y{
		overflow-y: scroll;
		overflow-x: auto;
	}
	.sp-scroll--x{
		overflow-x: scroll;
		overflow-y: auto;
		padding-left: calc((100% - var(--INNER_WIDTH)) / 2);
		padding-right: calc((100% - var(--INNER_WIDTH)) / 2);
	}
	.tategaki--sp{
		writing-mode: vertical-rl;
	}
	.formReset input[type="text"],
	.formReset input[type="text"]::placeholder{
		font-size: var(--FZ_16_CONST);
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -----------------パンくずリセット-----------------  */
.fs-c-breadcrumb{
	top: unset;
	z-index: 1;
}
.fs-c-breadcrumb__list{
  padding: 0;
	width: var(--INNER_WIDTH);
	max-width: var(--PC_MAX_WIDTH_L);
	margin-left: auto;
	margin-right: auto;
}
#wrapper .fs-c-breadcrumb__list{
	width: unset;
}
.fs-c-breadcrumb__list > li {
  box-sizing: border-box;
}
.fs-c-breadcrumb__listItem {
  display: inline-block;
  word-break: break-all;
}
.fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem::before {
  content: " > ";
}
.fs-c-breadcrumb li,
.fs-c-breadcrumb li a {
	color: var(--TXT_COLOR_BASE);
}
.fs-c-breadcrumb li a{
	text-decoration: underline;
}
@media screen and (min-width: 768px) {
	.fs-c-breadcrumb {
		margin: 0 auto;
		padding-top: 20px;
		font-size: 14px;
    margin-bottom: 30px;
	}
}
@media screen and (max-width: 767px) {
	.fs-c-breadcrumb {
		padding: 8px 0;
		font-size: 11px;
		overflow: hidden;
		position: relative;
    margin-bottom: 20px;
	}
	.fs-c-breadcrumb::after{
		content: "";
    right: 0;
    width: 6.25rem;
    height: 100%;
    position: absolute;
    background: linear-gradient(270deg,#fff 21.11%,hsla(0,0%,100%,0) 107.22%);
    z-index: 10;
		top: 0;
	}
	.fs-c-breadcrumb__list{
		white-space: nowrap;
    overflow: scroll;
		padding-right: 40px;
	}
}
/* -----------------ページャー----------------- */
.fs-c-listControl {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 2;
	padding: 6px 15px 4px;
	margin: 10px 0 40px;
}
.wp-pagenavi{
	display: flex;
	justify-content: center;
	align-items: center;
}
#next > span.pages{
	display: block;
	text-align: center;
	margin-top: 10px;
	display: none;
}
.found-postContainer,
.fs-c-listControl__status,
#next .post_range{
	font-size: 13px;
	text-align: center;
	margin-bottom: 16px;
}
.fs-c-pagination > *,
.wp-pagenavi > *{
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: normal;
	border-radius: 50%;
}
.fs-c-pagination__item{
	padding: 0;
}
.fs-c-pagination__item.is-active,
.wp-pagenavi .current{
	background-color:var(--FS_BTN_COLOR_1);
	border: 1px solid var(--FS_BTN_COLOR_1);
	color: var(--WHITE);
}
.fs-c-pagination > *,
.wp-pagenavi > *{
	font-weight: 500;
}
.fs-c-pagination{
	font-weight: bold;
	align-items: center;
}
a.fs-c-pagination__item.fs-c-pagination__item--prev,
a.fs-c-pagination__item.fs-c-pagination__item--next,
#next a.previouspostslink,
#next a.nextpostslink{
	border: 1px solid var(--FS_BTN_COLOR_1);
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	padding: 0;
	position: relative;
	font-weight: 400;
}
#next a.previouspostslink .navi-prev,
#next a.nextpostslink .navi-next{
	position: absolute;
	top: 50%;
	left: 52%;
	transform: translate(-50%, -50%);
}
.fs-c-pagination__item--prev::before,
.fs-c-pagination__item--next::before,
#next a.previouspostslink .navi-prev::before,
#next a.nextpostslink .navi-next::before{
	font-family: "Font Awesome 5 Pro" !important;
	font-weight: 400;
	display: inline-block;
  vertical-align: text-bottom;
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
}
.fs-c-pagination__item--prev::before,
#next a.previouspostslink .navi-prev::before{
	content: "\f104";
}
.fs-c-pagination__item--next::before,
#next a.nextpostslink .navi-next::before{
	content: "\f105";
}
@media screen and (min-width: 768px){
	.fs-c-pagination,
	.wp-pagenavi{
		font-size: 18px;
		gap: 15px;
	}
	#next {
		margin: var(--MG_50) auto 0;
	}
	.fs-c-pagination > *,
	.wp-pagenavi > *{
		width: 45px;
	}
	.fs-c-pagination__item--next:hover{
		color: var(--WHITE);
	}
	a.fs-c-pagination__item.fs-c-pagination__item--prev,
	a.fs-c-pagination__item.fs-c-pagination__item--next,
	#next a.previouspostslink,
	#next a.nextpostslink{
		font-size: 13px;
		width: 45px;
		height: 45px;
	}
}
@media screen and (max-width: 767px){
	.fs-c-pagination,
	.wp-pagenavi{
		font-size: 12px;
		gap: 3px;
	}
	#next {
		margin: var(--MG_30) auto 0;
	}
	.fs-c-pagination > *,
	.wp-pagenavi > *{
		width: 30px;
	}
	a.fs-c-pagination__item.fs-c-pagination__item--prev,
	a.fs-c-pagination__item.fs-c-pagination__item--next,
	#next a.previouspostslink,
	#next a.nextpostslink{
		font-size: 10px;
		width: 30px;
		height: 30px;
	}
}
/* -----------------dummyImg----------------- */
.dummyImg{
	position: relative;
}
.dummyImg::before{
	content: "ダミー画像";
	display: inline-block;
	background: rgba(33, 33, 33, 0.5);
	color: #e81010;
	text-shadow: 0 0 5px #fff;
	font-weight: bold;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
/* -----------------タブ切り替え共通css----------------- */
.tab-nav{
	display: flex;
}
.tab-btn{
	flex: 1;
}
.tab-contents {
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-contents.show {
	cursor: auto;
  height: auto;
  overflow: unset;
  opacity: 1;
  transition: .5s opacity;
}
@media screen and (min-width: 768px){
	.tab-btn:hover{
		cursor: pointer;
	}
	.tab-btn.show{
		cursor: auto;
	}
}
/* -----------------ポップアップ共通css----------------- */
body.fixed {
	position: fixed;
	width: 100%;
	overflow: hidden;
}
.popup-overlay {
  display: none; 
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.popup-overlay.fixed{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--WHITE);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.popup-overlay .popup-box{
	overflow-y: scroll;
}
.popup-overlay button.closePopup{
	position: absolute;
	aspect-ratio: 1/1;
	border-radius: 50%;
	border: 1px solid #fff;
	background-color: var(--GREEN01);
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
}
.popup-overlay button.closePopup::before{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 100;
	content: '\f00d';
	display: block;
	line-height: 1;
	height: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
}
@media screen and (min-width: 768px){
	.popup-overlay .popup-content{
		width: 95%;
		max-width: 750px;
	}
	.popup-overlay .popup-box{
		padding: 50px 30px;
		max-height: 90vh;
	}
	.popup-overlay button.closePopup{
		width: 40px;
	}
	.popup-overlay button.closePopup::before{
		font-size: 23px;
	}
}
@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::before{
		font-size: 23px;
	}
	.popup-overlay button.closePopup{
		width: 30px;
	}
	.popup-overlay button.closePopup::before{
		font-size: 18px;
	}
}
/* -------------------g-btn-------------------- */
.g-btnContainer{
	display: grid;
}
.g-btnContainer--horizontal{
	display: flex;
	justify-content: center;
}
.g-btn--long{
	width: var(--INNER_WIDTH);
	max-width: 388px;
}
.g-btn a,
.fs-c-continueShopping a.fs-c-button--standard{
	display: block;
	text-align: center;
	font-weight: var(--FF_W_M);
	letter-spacing: 0.2em;
	border: 1px solid var(--TXT_COLOR_BASE);
	position: relative;
	font-family: var(--FF_NOTO);
}
.g-btn--white a,
.fs-c-continueShopping a.fs-c-button--standard{
	background-color: var(--WHITE);
}
.g-btn--black a{
	background-color: var(--BLACK);
	color: var(--WHITE);
}
.g-btn--center,
.fs-c-continueShopping{
	margin-left: auto;
	margin-right: auto;
}
.g-btn--arrow a{
	position: relative;
}
.fs-c-continueShopping a.fs-c-button--standard{
	letter-spacing: 0.1em;
}
.g-btn--arrow a::after,
.fs-c-continueShopping a.fs-c-button--standard::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 100;
	content: '\f054';
	color: var(--BLACK);
	position: absolute;
}
.g-btn--black a::after{
	color: var(--WHITE);
}
.g-btn--anchor a::after{
	transform: rotate(90deg);
}
.g-btn--return a::after,
.fs-c-continueShopping a.fs-c-button--standard::after{
	transform: rotate(180deg) translateX(5px);
}
.g-btn__icon{
	position: relative;
}
.g-btn__icon::after{
	--MASK: var(--URL) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	display: inline-block;
	content: "";
	aspect-ratio: 1/1;
	position: absolute;
	right: 0;
}
.g-btn--white .g-btn__icon::after{
	background-color: var(--TXT_COLOR_BASE);
}
@media (hover: hover){
	.g-btn a:hover,
	.fs-c-continueShopping a.fs-c-button--standard:hover{
		opacity: 1;
	}
	.g-btn--white a:hover,
	.fs-c-continueShopping a.fs-c-button--standard:hover{
		opacity: 1;
		background-color: var(--GRAY01);
	}
	.g-btn--black a:hover{
		opacity: 1;
		color: var(--GRAY03);
		background-color: var(--WHITE);
	}
	.g-btn__icon::after{
		transition: .5s;
	}
	.g-btn--white a:hover .g-btn__icon::after{
		background-color: var(--WHITE);
	}
}
@media screen and (min-width: 768px){
	.g-btnContainer{
		margin-top: var(--MG_50);
	}
	.g-btnContainer--horizontal{
		gap: var(--GAP_30);
	}
	.g-btnContainer--horizontalPc{
		display: flex;
		justify-content: center;
		gap: var(--GAP_30);
	}
	.g-btnContainer--vertical{
		gap: var(--GAP_20);
	}
	.g-btn,
	.fs-c-continueShopping{
		max-width: 300px;
		width: 100%;
	}
	.g-btn--longPc{
		width: var(--INNER_WIDTH);
		max-width: 388px;
	}
	.g-btn a{
		font-size: var(--FZ_14_CONST);
		padding: 10px 0 11px;
	}
	.g-btn--small{
		max-width: 150px;
	}
	.g-btn--small a{
		padding: 7px 0;
		font-size: var(--FZ_12_CONST);
	}
	.fs-c-continueShopping a.fs-c-button--standard{
		font-size: var(--FZ_14_CONST);
		padding: 15px 0;
	}
	.g-btn--arrow a::after,
	.fs-c-continueShopping a.fs-c-button--standard::after{
		font-size: 12px;
		top: 28%;
		right: 5px;
	}
	.fs-c-continueShopping a.fs-c-button--standard::after{
		top: 36%;
	}
	.g-btn--anchor a::after{
		font-size: 10px;
		top: 35%;
		right: 10px;
	}
	.fs-c-continueShopping a.fs-c-button--standard{
		margin: 40px 0 var(--GENERALSEC);
	}
	.g-btn__icon{
		padding-right: 20px;
		background-size: 15px;
	}
	.g-btn__icon::after{
		width: 15px;
		top: 50%;
		transform: translateY(-50%);
	}
}
@media screen and (max-width: 767px){
	.g-btn{
	width: 80%;
}
	.g-btnContainer{
		margin-top: var(--MG_30);
	}
	.g-btnContainer--horizontal{
		gap: var(--GAP_20);
	}
	.g-btnContainer--vertical,
	.g-btnContainer--horizontalPc{
		gap: var(--GAP_20);
	}
	.g-btnContainer--vertical .g-btn,
	.g-btnContainer--horizontalPc .g-btn{
		margin-left: auto;
		margin-right: auto;
	}
	.g-btn a,
	.fs-c-continueShopping a.fs-c-button--standard{
		font-size: var(--FZ_14_CONST);
		padding: 10px 0;
	}
	.fs-c-continueShopping a.fs-c-button--standard{
		font-size: var(--FZ_14_CONST);
		padding: 15px 0;
	}
	.g-btn--longPc a{
		font-size: var(--FZ_12_CONST);
		letter-spacing: 0.05em;
	}
	.g-btn--small{
		max-width: 198px;
	}
	.g-btn--small a{
		padding: 7px 0;
		font-size: var(--FZ_12_CONST);
	}
	.g-btn--arrow a::after,
	.fs-c-continueShopping a.fs-c-button--standard::after{
		font-size: 12px;
		top: 28%;
		right: 5px;
	}
	.fs-c-continueShopping a.fs-c-button--standard::after{
		top: 36%;
	}
	.g-btn--anchor a::after{
		font-size: 8px;
		top: 37%;
		right: 10px;
	}
	.fs-c-continueShopping a.fs-c-button--standard{
		margin: 20px 0 var(--GENERALSEC);
	}
	.g-btn__icon{
		padding-right: 20px;
		background-size: 15px;
	}
	.g-btn__icon::after{
		width: 15px;
		top: 50%;
		transform: translateY(-50%);
	}
}
/* ------------------g-txt------------------ */
.g-txt{
	display: grid;
}
.g-txt mark{
	background: linear-gradient(transparent 70%, #fff799 30%);
}
.g-txt__list > li{
	position: relative;
	margin-left: 10px;
}
.g-txt__list > li::before{
	content: '';
	display: inline-block;
	background: var(--BLACK);
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.g-txt__note li{
	position: relative;
	color: var(--GRAY03);
}
.g-txt__note li::before{
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}
.g-txt__order{
	counter-reset: original-counter;
}
.g-txt__order > li::before{
	content: counter(original-counter)'.';
	counter-increment: original-counter;
}
@media screen and (min-width: 768px){
	.g-txt *{
		font-size: var(--FZ_12);
	}
	.g-txt p:has(mark){
		line-height: 2.5;
	}
	.g-txt > p:not(:first-child){
		margin-top: var(--GAP_20);
	}
	.g-txt > *+.g-txt__list{
		margin-top: var(--GAP_20);
	}
	.g-txt mark{
		padding: 2px 5px 3px;
	}
	.g-txt__list > li{
		padding-left: 10px;
	}
	.g-txt__list > li::before{
		width: 4px;
		top: 13px;
	}
	.g-txt__note li{
		font-size: var(--FZ_12);
		padding-left: 15px;
	}
}
@media screen and (max-width: 767px){
	.g-txt *{
		font-size: var(--FZ_13);
	}
	.g-txt p:has(mark){
		line-height: 2.5;
	}
	.g-txt > p:not(:first-child){
		margin-top: var(--GAP_20);
	}
	.g-txt > *+.g-txt__list{
		margin-top: var(--GAP_20);
	}
	.g-txt mark{
		padding: 2px 5px 3px;
	}
	.g-txt__list > li{
		padding-left: 12px;
	}
	.g-txt__list > li::before{
		width: 5px;
		top: 13px;
	}
	.g-txt__note li{
		font-size: var(--FZ_12);
		padding-left: 15px;
	}
}
/* ------------------g-descWithImg------------------ */
.g-descWithImg{
	display: grid;
	gap: var(--GENERALSEC);
}
.g-descWithImg__desc{
	display: grid;
}
@media screen and (min-width: 768px){
	.g-descWithImg li{
		display: flex;
		gap: var(--GAP_40);
		align-items: flex-start;
	}
	.g-descWithImg--crossList li:nth-child(even){
		flex-direction: row-reverse;
	}
	.g-descWithImg li > *{
		flex: 1;
	}
	.g-descWithImg__desc{
		gap: var(--GAP_30);
	}
}
@media screen and (max-width: 767px){
	.g-descWithImg li{
		display: grid;
		gap: var(--GAP_20_CONST);
	}
	.g-descWithImg__desc{
		gap: var(--GAP_30);
	}
}
/* -------------------g-slickArrow---------------------- */
[class*="g-slickArrow--"]{
	width: var(--SLICK_ARROW_SIZE);
	background: url(../images/ec/common/slider_parts_2.svg) no-repeat center center / 100%;
	aspect-ratio: 1/1;
	position: absolute;
	z-index: 2;
}
.g-slickArrow--prev{
	left: var(--SLICK_ARROW_TO_BODY);
}
.g-slickArrow--next{
	right: var(--SLICK_ARROW_TO_BODY);
	transform: rotate(180deg);
}
@media (hover: hover){
	[class*="g-slickArrow--"]:hover{
		cursor: pointer;
	}
}
@media screen and (min-width: 768px){
	.g-hasSlickArrow{
		--SLICK_ARROW_SIZE: clamp( 10px, 2vw, 20px);
		--SLICK_ARROW_TO_BODY: calc(0px - var(--SLICK_ARROW_SIZE) + var(--SLICK_GAP) - 0px);
	}
}
@media screen and (max-width: 767px){
	.g-hasSlickArrow{
		--SLICK_ARROW_SIZE: 25px;
		--SLICK_ARROW_TO_BODY: 5px;
		overflow-x: clip;
	}
}
/* -------------------g-slickDots-------------------- */
.slick:has(.g-slickDots){
	line-height: 1;
	margin-bottom: 0;
}
.g-slickDots{
	display: flex;
	justify-content: center;
	gap: var(--GAP_10);
}
.g-slickDots li{
	aspect-ratio: 1/1;
	position: relative;
}
.g-slickDots button{
	font-size: 0;
	width: 100%;
	aspect-ratio: 1/1;
	/* border: 1.5px solid #cecece; */
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #d9d9d9;
}
.g-slickDots .slick-active button{
	background-color: #7f7f7f;;
}
@media screen and (min-width: 768px){
	.g-slickDots li{
		width: 8px;
	}
}
@media screen and (max-width: 767px){
	.g-slickDots li{
		width: 6px;
	}
}
/* -------------------is-targetBlank-------------------- */
.is-targetBlank{
	display: inline-block;
	position: relative;
	padding-right: 20px;
}
.is-targetBlank::after{
	content: "";
	display: inline-block;
	mask: url(../images/common/icon_linkBlack.svg) no-repeat center center / 100%;
	-webkit-mask: url(../images/common/icon_linkBlack.svg) no-repeat center center / 100%;
	aspect-ratio: 1/1;
	width: 13px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.is-targetBlank--black::after{
	background-color: var(--TXT_COLOR_BASE);
}
.is-targetBlank--white::after{
	background-color: var(--TXT_COLOR_WHITE);
}
/* -------------------bgcolor-------------------- */
.bgcolor--gray{
	background-color: var(--GRAY01);
}
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* -------------------g-news__list-------------------- */
.g-news__list li:not(:last-child){
	border-bottom: 1px solid var(--GRAY01);
}
.g-news__list li:first-child{
	padding-top: 0;
}
.g-news__list li:last-child{
	padding-bottom: 0;
}
.g-news__list__cat{
	display: inline-block;
	text-align: center;
}
.g-news__list__cat a{
	display: inline-block;
	letter-spacing: 0.02em;
}
.g-news__list__cat a:nth-of-type(n+2){
	display: none;
}
.g-news__list__ttl a{
	overflow: hidden;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}
@media screen and (min-width: 768px){
	.g-news__list li{
		display: flex;
		align-items: center;
		padding: 20px 0;
	}
	.g-news__list_wrap{
		display: flex;
		align-items: center;
	}
	.g-news__list__date{
		width: auto;
		font-size: var(--FZ_14);
		margin-right: var(--GAP_20);
	}
	.g-news__list__cat{
		width: auto;
		margin-right: var(--GAP_20);
		font-size: var(--FZ_13);
		padding-inline: 10px;
	}
	.g-news__list__ttl{
		flex: 1;
	}
	.g-news__list__ttl a{
		font-size: var(--FZ_14);
		-webkit-line-clamp: 1;
	}
}
@media screen and (max-width: 767px){
	.g-news__list li{
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
		gap: 8px 4px;
		padding: 15px 0;
	}
	.g-news__list_wrap{
		display: grid;
		grid-template-columns: auto 1fr;
		column-gap: 15px;
		padding: 15px 0;
	}
	.g-news__list li:nth-of-type(n+3){
		display: none;
	}
	.g-news__list__date{
		font-size: 11px;
	}
	.g-news__list__cat{
		width: fit-content;
		font-size: 12px;
		padding: 2px 0;
	}
	.g-news__list__cat a{
		padding-inline: 8px;
	}
	.g-news__list__ttl{
		grid-column: span 2;
	}
	.g-news__list__ttl a{
		font-size: 12px;
		-webkit-line-clamp: 1;
	}
}
/* ------------------- -------------------- */
.g-sns{
	display: flex;
}
.g-sns li a{
	display: block;
	--MASK: var(--URL) no-repeat center center / 100%;
	mask: var(--MASK);
	-webkit-mask: var(--MASK);
	background-color: var(--WHITE);
	aspect-ratio: 1/1;
}
@media screen and (min-width: 768px){
	.g-sns{
		gap: var(--GAP_30);
	}
	.g-sns li a{
		width: 28px;
	}
}
@media screen and (max-width: 767px){
	.g-sns{
		justify-content: center;
		gap: var(--GAP_30);
	}
	.g-sns li a{
		width: 28px;
	}
}
/* -------------------lity-------------------- */
.lity{
  background: rgba(0, 0, 0, 0.9);
}
.lity-close{
  text-shadow: unset;
}
.lity-close::after{
  content: "";
  display: inline-block;
  background: url(../images/common/close.svg) no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px){
  .lity-close{
    width: 100px;
    height: 100px;
    top: 35px;
    right: 35px;
  }
  .lity-close:active {
    top: 36px;
    right: 35px;
  }
}
@media screen and (max-width: 767px){
  .lity-close{
    width: 60px;
    height: 60px;
    top: 20px;
    right: 20px;
  }
  .lity-close:active {
    top: 21px;
    right: 20px;
  }
}
/* -------------------g-insta__list-------------------- */
.g-insta__list{
  display: grid;
}
.g-insta__list li a{
  display: block;
}
.g-insta__list li a img{
  aspect-ratio: 1 / 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
	border-radius: var(--IMG_BDRS);
}
.g-insta__list li a video{
  aspect-ratio: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
	border-radius: var(--IMG_BDRS);
}
@media screen and (min-width: 768px){
	.g-insta__list{
		grid-template-columns: repeat(5, 1fr);
    gap: var(--GAP_20);
  }
}
@media screen and (max-width: 767px){
	.g-insta__list{
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
	.g-insta__list li:nth-of-type(n+10){
		display: none;
	}
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}

/* 旧説明文閉じタグ抜け対策 */
.g-closeMissingTagForcedTable{
  width: 100%;
}

/* 2025.3.31追記 */
.accordion{
  overflow: hidden;
  position: relative;
}
.accordion::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(transparent 10%, var(--WHITE) 90%);
  pointer-events: none;
  z-index: 1;
}
.accordion.is-open{
  height: auto;
  overflow: visible;
}
.accordion.is-open::before{
  content: "";
  display: none;

}
.otoriyose_reviewtoggle-btn{
  background-color: #da883f;
  color: white;
  border: none;
  padding: 8px 50px;
  font-size: 14px;
  cursor: pointer;
  width: 300px;
  margin-top: 10px;
  border-radius: 4px;
  transition: opacity 0.4s;
  display: block;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: var(--GAP_30);
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px){
  .accordion{
    height: 480px;
  }
}
@media screen and (max-width: 767px){
  .accordion{
    height: 480px;
  }
}
@media (hover: hover){
.accordion .toggle-btn:hover {
    opacity: 0.7;
  }
}