@charset "utf-8";
/* CSS関数設定 */
:root {
	/* カラーパレット */
	--WHITE: #FFFFFF;
	--BLACK: #000000;

	--GRAY01: #F5F5F5;
	--GRAY02: #C3C3C3;
	--GRAY03: #767676;
	--GRAY04: #E2E2E2;

	--DARK01: #272727;

	--BROWN01: #7D6930;
	--BROWN01_OP10: rgba(125, 104, 48, 0.1);
	--BROWN01_OP20: rgba(125, 104, 48, 0.2);
	--BROWN01_OP30: rgba(125, 104, 48, 0.3);
	--BROWN02: #E5E1D5;
	--BROWN03: #A4966E;
	--BROWN04: #D8D1C0;

	--BEIGE01: #F8F4EA;
	
	--ORANGE01: #FDA500;

	--PINK: #cc939d;

  --YELLOW: #dbc040;

	/* テキストカラー */
	--TXT_COLOR_BASE: var(--BROWN01);
	--TXT_COLOR_BLACK: var(--DARK01);
	--TXT_COLOR_WHITE: var(--WHITE);
	--TXT_COLOR_ORANGE_1: var(--ORANGE01);
	--TXT_BGCOLOR_BROWN_1: var(--BROWN01);
	--TXT_BGCOLOR_BROWN_2: var(--BROWN01_OP10);
	--TXT_BGCOLOR_GRAY_1: var(--GRAY01);

	/* ボーダーカラー */
	--BDCOLOR_BROWN_1: var(--BROWN01);
	--BDCOLOR_BROWN_2: var(--BROWN01_OP30);
	--BDCOLOR_GRAY_1: var(--GRAY02);

	/* 背景カラー */
	--BGCOLOR_BEIGE_1: var(--BEIGE01);

	/* ランキングカラー */
	--RANKING_1ST: #C4A65D;
	--RANKING_2ND: #A7A7A7;
	--RANKING_3RD: #B15500;
	--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 Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;

	/* 英数字フォント */
	--FF_EN: var(--FF_BASE);
	--FF_NUM: "Roboto", sans-serif;

	/* フォントウェイト */
  --FF_WEIGHT_BASE: var(--FF_W_M);
  --FF_W_R: 300;
  --FF_W_M: 400;
  --FF_W_B: 500;
  --FF_W_MB: 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_24: clamp(21px, 2vw, 24px);
	--FZ_25: clamp(22px, 2vw, 25px);
	--FZ_28: clamp(22px, 2.5vw, 28px);
	--FZ_30: clamp(25px, 3vw, 30px);
	--FZ_35: clamp(25px, 3vw, 35px);
	--FZ_40: clamp(30px, 3.5vw, 40px);
	--FZ_43: clamp(30px, 4vw, 43px);
	--FZ_45: clamp(30px, 4vw, 45px);
	--FZ_50: clamp(30px, 4vw, 50px);
	--FZ_60: clamp(40px, 5vw, 60px);
	--FZ_70: clamp(50px, 6vw, 70px);
	--FZ_100: clamp(80px, 90vw, 100px);
  --FZ_10_CONST: 10px;
  --FZ_12_CONST: 12px;
  --FZ_14_CONST: 14px;
  --FZ_15_CONST: 15px;
  --FZ_16_CONST: 16px;
  --FZ_17_CONST: 17px;
  --FZ_18_CONST: 18px;
  --FZ_19_CONST: 19px;
  --FZ_20_CONST: 20px;
  --FZ_22_CONST: 22px;
  --FZ_30_CONST: 30px;

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

	/* ブロック間 */
  --GAP_10: clamp(10px, 1.1vw, 10px);
  --GAP_15: clamp(15px, 1.2vw, 15px);
  --GAP_20: clamp(20px, 1.7vw, 20px);
  --GAP_35: clamp(35px, 2.5vw, 35px);
  --GAP_30: clamp(30px, 2.5vw, 30px);
  --GAP_40: clamp(30px, 3.5vw, 40px);
  --GAP_50: clamp(30px, 3.5vw, 50px);
  --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: 1040px;
	--PC_MAX_WIDTH_M: 1200px;
	--PC_MAX_WIDTH_L: 1440px;

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

@media screen and (min-width: 768px){
	:root{
		--INNER_WIDTH: 95%;
		--GENERALSEC: clamp(80px, 10vw, 120px);
	}
}
@media screen and (max-width: 767px){
	:root{
	--INNER_WIDTH: 92%;
	--GENERALSEC: 50px;
	}
}
/* フェードインアニメーション */
@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: hidden;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	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{
	width: 100%;
	vertical-align: bottom;
}
.formReset button,
.formReset input[type="button"],
.formReset input[type="submit"],
.formReset input[type="text"],
.formReset input[type="image"],
.formReset input[type="checkbox"],
.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); */
}
/* 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;
}
/* 文字間 */
::placeholder,
input[type="text"],
[class*="ttl"],
[class*="lead"],
[class*="heading"],
a{
}

[class*="mainttl"]{
	letter-spacing:0.2em;
}
[class*="ttl"]{
	letter-spacing:0.1em;
}
/* テキスト行間文字間 */

[class*="excerpt"],
[class*="name"]{
  line-height: var(--LINE_HEIGHT_L);
}
/* スクロールバー消す */
.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;
}
@media (hover: hover){
	.formReset button:hover,
	.formReset input[type="button"]:hover,
	.formReset input[type="submit"]:hover,
	.formReset input[type="image"]:hover,
  .formReset input[type="checkbox"]: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;
}
@media screen and (min-width: 768px){
	/* html{
		scroll-padding-top: 80px;
	} */
	body{
		font-size: 15px;
		line-height: 1.85;
		-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--m,
	.g-inner--s,
	.g-inner--ss{
		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{
		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: 15px;
		line-height: 1.73;
	}
	.g-inner,
	.g-inner--sp,
	.g-inner--l,
	.g-inner--m,
	.g-inner--s,
	.g-inner--ss{
		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;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
/* g-registerGuidance */
.g-registerGuidanceContaniner{
	background-color: var(--TXT_BGCOLOR_BROWN_1);
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
}
.g-registerGuidance,
.g-registerGuidance a{
	text-align: center;
	color: var(--TXT_COLOR_WHITE);
	font-size: var(--FZ_14);
	letter-spacing: 0.05em;
}
@media screen and (min-width: 768px){
	.g-registerGuidanceContaniner{
		padding: 5px 0 6px;
		position: sticky;
	}
}
@media screen and (max-width: 767px){
	.g-registerGuidanceContaniner{
		padding: 5px 0 6px;
		position: fixed;
	}
	body{
		margin-top: 30px;
	}
	body:not(:has(.g-registerGuidanceContaniner)){
		margin-top: 0;
	}
}
/* g-sns */
.g-sns{
	display: flex;
}
.g-sns li a{
	display: block;
	aspect-ratio: 1/1;
	background: no-repeat center center / 100%;
}
@media screen and (min-width: 768px){
	.g-sns li{
		width: 32px;
	}
}
@media screen and (max-width: 767px){
	.g-sns li{
		width: 50px;
	}
}
/* headerarea */
@media screen and (max-width: 767px){
	/* #headerarea{
		position: fixed;
		top: 30px;
		width: 100%;
		background-color: #fff;
		z-index: -1;
	} */
}
.hd-container{
	align-items: center;
}
.hd-userContainer{
	margin-left: auto;
	margin-right: 10px;
}
.hd-user__item{
	display: block;
	aspect-ratio: 35/26;
	background: no-repeat center center / 90%;
	position: relative;
}
.hd-user__item::after{
	display: block;
	content: attr(data-text);
	white-space: nowrap;
	font-size: var(--FZ_10_CONST);
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	letter-spacing: 0.03em;
	text-align: center;
	line-height: 1.3;
	padding-top: 4px;
}
.hd-user__item[href="/p/login"]::after{
	content: "会員登録\Aログイン";
	white-space: wrap;
	width: 53px;
}
@media screen and (min-width: 1001px){
	.hd-container{
		position: relative;
		padding: 50px 0 63px;
	}
	.hd-logo{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px){
	.hd-container{
		padding: 30px 0 45px;
	}
	.hd-sns{
		display: none;
	}
}
@media screen and (min-width: 768px){
	.hd-sns{
		gap: 8px;
	}
	.hd-logo{
		width: clamp( 200px, 28vw, 368px);
	}
	.hd-user{
		gap: var(--GAP_30_CONST);
		padding-bottom: 17px;
	}
	.hd-user > li{
		width: 35px;
		position: relative;
	}
	.hd-user__cart{
		position: relative;
	}
	.hd-user__cart__childContainer{
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		transition: .3s;
		padding-top: 16px;
		position: absolute;
		top: calc(100% - -6px);
		left: 50%;
		transform: translateX(-50%);
	}
	.hd-user__cart:hover .hd-user__cart__childContainer{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.hd-user__cart__child{
		width: 126px;
		background-color: var(--WHITE);
		border: 1px solid var(--BROWN01);
		border-radius: 13px;
		padding: 10px;
	}
	.hd-user__cart__child__type{
		display: grid;
		gap: 5px;
	}
	.hd-user__cart__child__type li a{
		display: flex;
		align-items: center;
		font-size: 12px;
		letter-spacing: 1px;
		gap: 3px;
	}
	.hd-user__cart__child__type li a span{
		position: static;
		width: 15px;
		font-size: 8px;
	}
	.hd-user__cart > a > .fs-client-cart-count{
		top: -8px;
		right: -8px;
	}
	.hd-user__searchForm{
		width: 300px;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 120%;
		z-index: 2;
		display: none;
	}
	.hd-user__searchForm.is-active{
		display: block;
	}
	.hd-user__searchForm input[type="text"]{
		width: 100%;
		border: 1px solid var(--BDCOLOR_BROWN_1);
		background-color: var(--WHITE);
		border-radius: 70px;
		padding: 12px 50px 12px 20px;
	}
	.hd-user__searchForm button{
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translateY(-50%);
		aspect-ratio: 1/1;
		background: url(../images/common/icon_search.svg) no-repeat center center / 100%;
		width: 25px;
	}
}
@media screen and (max-width: 767px){
	.hd-container{
		padding: 21px 0 15px;
	}
	.hd-logo{
		width: 215px;
	}
	.hd-user{
		gap: 29px;
		padding-bottom: 17px;
	}
	.hd-userContainer{
		margin-top: -9px;
	}
	.hd-user > li{
		width: 25px;
	}
	.hd-user__item{
  	aspect-ratio: 25/19;
  	background: no-repeat center bottom / 100%;
  }
	.hd-user__item::after{
		font-size: 8px;
	}
	.hd-user__item{
		width:33px;
		height:33px;
	}
	.allitem .hd-user__item{
	}
}
/* g-nav */
@media (hover: hover) {
  .g-nav > li[ontouchstart=""]:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .g-navContainer {
    position: relative;
  }
  .g-nav {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--GAP_35);
    padding-bottom: 0px;
  }
  .g-nav__item {
    font-size: var(--FZ_14);
    height: 100%;
    display: block;
    padding-bottom: 10px;
  }
  .g-nav__home{
	  font-size: var(--FZ_14);
    height: 100%;
    display: block;
    padding-bottom: 10px;
  }
  .g-nav__dropdownContainer {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: 0.3s;
    position: absolute;
    top: calc(100% - 0px);
    left: 0;
    width: 100%;
    box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.1);
  }
  .g-nav__dropdownContainer.show {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    z-index: 99;
    background: rgb(248 244 234 / 0.95);
  }
  .g-nav__dropdown {
    padding: 50px 0 100px;
  }
  .g-nav__dropdownItems--products {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px 20px;
  }
  .g-nav__dropdownItems--products .g-nav__dropdownItem {
    background-color: var(--WHITE);
    position: relative;
  }
  .g-nav__dropdownItems--products .g-nav__dropdownItem::before {
    content: "";
    position: absolute;
    width: 8px;
    aspect-ratio: 1;
    top: 50%;
    right: 17px;
    transform: translateY(-50%) rotate(-45deg);
    border-right: 2px solid var(--BDCOLOR_BROWN_1);
    border-bottom: 2px solid var(--BDCOLOR_BROWN_1);
  }
  .g-nav__dropdownItems--products .g-nav__dropdownItem a {
    display: flex;
    align-items: center;
  }
  .g-nav__dropdownItems--products .g-nav__dropdownItemImg {
    flex: 0 0 calc(100 / 386 * 100%);
    aspect-ratio: 100 / 180;
  }
  .g-nav__dropdownItems--products .g-nav__dropdownItemImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .g-nav__dropdownItems--products .g-nav__dropdownItemContent {
    padding-inline: 14px;
    flex-grow: 1;
    position: relative;
  }
  .g-nav__dropdownItems--products .g-nav__dropdownItemLead {
    max-width: 230px;
    background-color: var(--BEIGE01);
    font-size: var(--FZ_15);
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 3px;
    min-height: 60px;
    display: grid;
    align-items: center;
  }
  .g-nav__dropdownItems--products .g-nav__dropdownItemTxt {
    margin-top: 10px;
    font-size: var(--FZ_14);
    letter-spacing: 0.05em;
    line-height: var(--LINE_HEIGHT_S);
  }
  .g-nav__dropdownItems--products .g-nav__dropdownItemTtl {
    margin-top: 5px;
    font-size: var(--FZ_18);
    font-weight: var(--FF_W_B);
  }
  .g-nav__dropdownItems--products
    .g-nav__dropdownItem
    .g-nav__dropdownItemContent::before {
    content: "";
    position: absolute;
    right: 25px;
    bottom: 0;
    width: calc(73 / 286 * 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    display: none;
    z-index: 1;
  }
  .g-nav__dropdownItems--products
    .g-nav__dropdownItem:nth-of-type(5)
    .g-nav__dropdownItemContent::before {
    background-image: url(../images/common/nav/deco01.jpg);
    display: block;
  }
  .g-nav__dropdownItems--products
    .g-nav__dropdownItem:nth-of-type(6)
    .g-nav__dropdownItemContent::before {
    background-image: url(../images/common/nav/deco02.jpg);
    display: block;
  }
  .g-nav__links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    width: fit-content;
    margin-inline: auto;
  }
  .g-nav__link {
    font-size: 16px;
  }
  .g-nav__images {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 25px;
  }
  .g-nav__image img {
    aspect-ratio: 580 / 312;
    width: 100%;
    object-fit: cover;
  }
  .g-nav__image figcaption {
    margin-top: 5px;
    font-size: var(--FZ_16);
    letter-spacing: 0.05em;
  }
  .g-nav__btns {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
  }
  .g-nav__btn a {
    display: block;
    text-align: center;
    font-size: 16px;
    background-color: var(--WHITE);
    padding-block: 28px;
  }
  .g-nav__btns + .g-btn {
    margin-top: 50px;
  }
  .g-nav__units {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 40px 10px;
  }
  .g-nav__dropdown.navwd900{
	  max-width:900px;
  }
  .g-nav__unit a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .g-nav__unitImg {
    width: calc(140 / 270 * 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
  }
  .g-nav__unitImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .g-nav__unitTxt {
    margin-top: 10px;
    font-size: var(--FZ_16);
    letter-spacing: 0.05em;
  }
  .g-nav__banner {
    margin: 60px auto 0;
    max-width: 800px;
  }
  .g-nav__banner figcaption {
    margin-top: 10px;
    font-size: var(--FZ_16);
    letter-spacing: 0.05em;
  }
  .g-nav__banner {
  }
  .g-nav__dropdownItems--products .g-nav__dropdownItem {
  }
  .g-nav > li .g-nav__item{
    position: relative;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s;
  }
  .g-nav > li a:hover,.g-nav > li .g-nav__item:hover{
  	opacity:0.7;
  }
  .g-nav > li .g-nav__item::after{
  	content: "";
  	position: absolute;
  	top: 34px;
  	right: 0;
  	bottom: 0;
  	left: 0%;
  	width: 0;
  	height: 1px;
  	background-color: var(--TXT_COLOR_BASE);
  	transition: .3s;
  }
  .g-nav > li .g-nav__item:hover::after {
  	width: 0%;
  	left:0;
  }
  .g-nav > li.active .g-nav__item::after {
    width: 100%;
    left: 0;
    height: 2px;
  }
  .g-nav__dropdownContainer .close-btn {
    position: absolute;
    top: 35px;
    right: 7%;
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--BDCOLOR_BROWN_1);
    border-radius: 50%;
    font-size: 24px;
    line-height: 37px;
    text-align: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width:768px) and (max-width:850px) {
	.g-nav{
		gap:15px;
		}
	.g-nav__item{
		font-size:12px;
	}
}

/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
/* ft-guide */
.ft-guide__heading--hasIcon{
	background: no-repeat bottom center;
}
.ft-guide__body{
	display: grid;
	gap: var(--GAP_20);
	margin-bottom: var(--GAP_20);
}
.ft-guide__ttl--postage,
.ft-guide__txt--postage{
	text-align: center;
}
.ft-guide__ttl{
	font-weight: var(--FF_W_B);
	margin-bottom: 2px;
}
.ft-guide__ttl--postage,
.ft-guide__ttl--return{
}
.ft-guide__txt{
	line-height: var(--LINE_HEIGHT_M);
}
.ft-guide__txt+img{
	margin-top: 5px;
}
.ft-guide__detailLink a{
	text-decoration: underline;
	letter-spacing: 0.2em;
}
.ft-guide__note{
	font-weight: var(--FF_W_R);
	font-size: var(--FZ_12);
}
.ft-guide__note::before{
	content: "※";
}
@media screen and (min-width: 1201px){
	.ft-guide__heading{
		font-size: var(--FZ_20);
	}
	.ft-guide__ttl--postage,
	.ft-guide__ttl--return{
		font-size: var(--FZ_18);
	}
	.ft-guide > li{
		padding: 0 var(--GAP_30);
	}
}
@media screen and (min-width: 768px) and (max-width: 1200px){
	.ft-guide__heading{
		font-size: var(--FZ_16);
	}
	.ft-guide > li{
		padding: 0 var(--GAP_20);
	}
}
@media screen and (min-width: 768px){
	.ft-guide{
		display: grid;
		grid-template-columns: repeat(4,1fr);
		row-gap: var(--GENERALSEC);
	}
	.ft-guide > li:not(:last-child){
		border-right: 1px solid var(--BDCOLOR_BROWN_2);
		display: flex;
		flex-direction: column;
	}
	.ft-guide > li:last-child{
		border-left: 1px solid var(--BDCOLOR_BROWN_2);
	}
	.ft-guide > li:nth-of-type(4){
		border-right: none;
	}
	.ft-guide > li:last-child{
		grid-column: 1 / 5;
	}
	.ft-guide__heading{
		margin-bottom: var(--MG_20);
	}
	.ft-guide__heading--hasIcon{
		text-align: center;
		padding-bottom: 90px;
		background-size: 80px;
	}
	.ft-guide__body{
		font-size: var(--FZ_14);
	}
	.ft-guide > li:not(:last-child) .ft-guide__detailLink{
		flex: 1;
		text-align: center;
		display: flex;
		align-items: flex-end;
		justify-content: center;
	}
	.ft-guide__detailLink a{
		font-size: var(--FZ_14);
	}
}
@media screen and (max-width: 767px){
	.ft-guideSection{
		padding-bottom: 0;
	}
	.ft-guide{
    --SLICK_GAP: var(--GAP_10);
  }
	.ft-guide .slick-list{
    padding: 0 15% 0 calc((100% - var(--INNER_WIDTH)) / 2);
  }
	.ft-guide .slick-slide{
    margin: 0 var(--SLICK_GAP);
  }
	.ft-guide .slick-slide > div > li{
		min-height: 448px;
		background-color: var(--WHITE);
		padding: 30px;
		display: flex !important;
		flex-direction: column;
	}
	.ft-guide [class*="g-slickArrow--"]{
		top: 45%;
	}
	.ft-guide__heading{
		text-align: center;
		font-size: var(--FZ_18_CONST);
		margin-bottom: var(--MG_20);
	}
	.ft-guide__heading--hasIcon{
		padding-bottom: 70px;
		background-size: 60px;
	}
	.ft-guide__ttl{
		margin-bottom: 5px;
	}
	.ft-guide__txt{
		font-weight: var(--FF_W_R);
		font-size: var(--FZ_12_CONST);
	}
	.ft-guide__txt+img{
		width: 90%;
		margin-top: 5px;
	}
	.ft-guide__detailLink{
		flex: 1;
		text-align: center;
		display: flex;
		align-items: flex-end;
		justify-content: center;
	}
	.ft-guide__note{
		line-height: var(--LINE_HEIGHT_M);
	}
}

/* ページトップ */
.ft-fixedBtn{
	display: grid;
	position: fixed;
	z-index: 99;
	border-radius: 50%;
}
.ft-fixedBtn li a{
	display: block;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: url(../images/common/ft-fixedBtn.svg) no-repeat center center / 100%;
	position: relative;
}
.ft-fixedBtn .fs-client-cart-count{
	top: 0;
}
@media screen and (min-width: 768px){
	.ft-fixedBtn{
		width: 60px;
		bottom: 20px;
		right: 3%;
		gap: var(--GAP_10);
	}
	.ft-fixedBtn .fs-client-cart-count{
		right: 0;
	}
}
@media screen and (max-width: 767px){
	.ft-fixedBtn{
		width: 50px;
		bottom: 80px;
		right: -5px;
		gap: var(--GAP_10);
	}
	.ft-fixedBtn .fs-client-cart-count{
		left: 0;
	}
}

/* --------------------footerarea-------------------- */
/* ft-spMenu */
@media screen and (max-width: 767px) {
  :root {
    --SP_MENU_HEIGHT: 70px;
  }
  .ft-spMenuContainer {
    position: fixed;
    width: 100%;
    background-color: #fff;
    bottom: 0;
    left: 0;
    z-index: 999;
		/* padding-bottom: env(safe-area-inset-bottom); */
  }
  .footunderborder{
	  z-index:9999;
	  position: relative;
	  border-bottom: 8px solid var(--TXT_BGCOLOR_BROWN_1);
  }
  .ft-spMenu {
    display: flex;
  }
  .ft-spMenu li {
    flex: 1;
  }
  .ft-spMenu li:not(:last-child) {
    border-right: 1px solid var(--WHITE);
  }
  .ft-spMenu li:nth-of-type(2),
  .ft-spMenu li:nth-of-type(3) {
    border-right: none;
  }
  .ft-spMenu__item {
    background: no-repeat center 12px / 32px;
    display: block;
    height: var(--SP_MENU_HEIGHT);
    position: relative;
  }
	.ft-spMenu__item--search{
		background-image: url(../images/common/sp/icon_search.svg);
	}
	.ft-spMenu__item--search.is-active{
		background-image: url(../images/common/sp/icon_close.svg);
	}
  .ft-spMenu__item.ft-spMenu__item--beginner{
	  background: no-repeat center 0px / 32px;
	 }
  .beginer .ft-spMenu__item{
	  background: no-repeat top -1px center / 36px;
  }
  .ft-spMenu__item::after {
    content: attr(data-text);
    color: var(--TXT_BGCOLOR_BROWN_1);
    font-weight: var(--FF_W_B);
    position: absolute;
    font-size: 11px;
    display: block;
    width: 100%;
    text-align: center;
    bottom: 10px;
    letter-spacing:0;
  }
	.ft-spMenu__item--search.is-active.ft-spMenu__item::after{
		content: "閉じる";
	}
  .ft-spMenu__item.ft-spMenu__item--beginner::after {
    bottom: 6px;
  }
  .ft-spMenu__item--beginner {
    z-index: 2;
    background-position: top 0px center;
  }
  li.ft-spMenu__center {
    width: 27%;
    flex: none;
  }
  .ft-spMenu__item--beginner::after {
    white-space: pre;
    content: "初めての\Aオイルケア";
    line-height: 1.2;
  }
  .ft-spMenu li:has(.ft-spMenu__item--beginner) {
    position: relative;
  }
  .ft-spMenu li:has(.ft-spMenu__item--beginner)::before {
    content: "";
    display: inline-block;
    background: var(--BEIGE01);
    border-radius: 50%;
    width: 90px;
    aspect-ratio: 1/1;
    z-index: -1;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .ft-spMenu__item .fs-client-cart-count {
    background-color: #d5c54f;
    color: #fff;
    top: 5px;
    left: 55%;
  }
}
/* ft-spSearchBox */
@media screen and (max-width: 767px) {
  .ft-spSearchBox {
    position: fixed;
    width: 100%;
    top: 100%;
    left: 0;
    transition: 0.3s;
    z-index: 989;
  }
  .ft-spSearchBox.is-active {
    display: block;
    top: 0;
  }
  .ft-spSearchBox__contents {
    padding: 30px 20px 100px 20px;
    height: calc(100vh - var(--SP_MENU_HEIGHT));
    overflow-y: scroll;
    background: var(--WHITE);
  }
.ft-spSearchBox__block{
	padding-bottom: 40px;
}
  .ft-spSearchBox__txt {
    font-weight: var(--FF_W_B);
    margin-bottom: 7px;
  }
  .ft-spSearchBox__form {
    display: flex;
    gap: 5px;
  }
  .ft-spSearchBox__form input {
    flex-grow: 1;
    border-radius: 2px;
    border: 1px solid var(--BDCOLOR_BROWN_1);
    font-size: 16px;
    letter-spacing: 0.05em;
    padding: 10px 15px;
  }
  .ft-spSearchBox__form input::placeholder {
    color: var(--GRAY02);
  }
  .ft-spSearchBox__btn {
    flex: 0 0 56px;
    border-radius: 2px;
    border: none;
    background-color: var(--BROWN01);
    display: grid;
    place-items: center;
  }
  .ft-spSearchBox__btn img {
    max-width: 19px;
  }

  .ft-spSearchBox__group {
    margin-top: 14px;
    border-radius: 10px;
    background-color: var(--BEIGE01);
    padding: 15px;
  }
  .ft-spSearchBox__groupTxt {
    font-weight: var(--FF_W_B);
  }
  .ft-spSearchBox__groupItems {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1em;
  }
  .ft-spSearchBox__groupItem {
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .ft-spSearchBox__block {
    margin-top: 30px;
  }

  .ft-spSearchBox .g-btnContainer a {
		height: 100%;
		display: grid;
		place-items: center;
	}
  .ft-spSearchBox__items {
    margin-top: 30px;
  }
  .ft-spSearchBox__item {
    border-bottom: 1px dashed var(--GRAY02);
  }
/*
  .ft-spSearchBox__item:first-of-type {
    border-top: 1px dotted var(--BDCOLOR_BROWN_1);
  }
*/
  .ft-spSearchBox__item > p,
  .ft-spSearchBox__item > a {
    display: block;
    padding: 18px 9px;
    font-weight: var(--FF_W_B);
    position: relative;
  }
  .ft-spSearchBox__item > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%) rotate(-45deg);
    width: 8px;
    aspect-ratio: 1;
    border-right: 2px solid var(--BDCOLOR_BROWN_1);
    border-bottom: 2px solid var(--BDCOLOR_BROWN_1);
  }
  .ft-spSearchBox__item > p::after {
    content: none;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background-color: var(--BDCOLOR_BROWN_1);
  }
  .ft-spSearchBox__subItem {
    border-top: 1px dashed var(--GRAY02);
  }
  .ft-spSearchBox__subItem a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px;
  }
  .ft-spSearchBox__itemImg {
    /* flex: 0 0 calc(38 / 335 * 100%); */
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
		width: 22%;
  }
  .ft-spSearchBox__itemImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ft-spSearchBox__itemTxt {
    flex-grow: 1;
    font-size: 14px;
  }
  .ft-spSearchBox__ {
  }
}
/* ft-logo */
@media screen and (min-width: 768px) {
	#footerarea{
		padding-top: 80px;
	}
  .ft-logo {
    width: 510px;
    margin: 0 auto var(--MG_30);
  }
  #footerarea .g-heading__ja {
    font-size: 23px;
    letter-spacing: 0.3em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .ft-logo {
    width: 78%;
    max-width:350px;
    margin: 0 auto 15px;
  }
  #footerarea .g-heading__ja {
    font-size: 18px;
    letter-spacing: 0.3em;
    font-weight: 400;
  }
}
/* ft-certification */
.ft-certification {
  justify-content: center;
}
.ft-certification li {
  text-align: center;
}
.ft-certification__foot {
  font-weight: var(--FF_W_R);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .ft-certification {
    gap: var(--GAP_65);
    margin: var(--GAP_60) 0;
  }
  .ft-certification li {
    max-width: 110px;
  }
  .ft-certification li h3 {
    font-size: var(--FZ_12);
  }
  .ft-certification__foot {
    font-size: var(--FZ_14);
  }
}
@media screen and (max-width: 767px) {
  .ft-certification {
    gap: var(--GAP_10);
    margin: var(--MG_20) auto;
  }
  .ft-certification li h3 {
    font-size: 9px;
    white-space: nowrap;
  }
  .ft-certification__foot {
    font-size: var(--FZ_13);
  }
}
/* ft-link */
.ft-link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .ft-linkContainer {
    border: 1px solid var(--TXT_COLOR_BASE);
    border-left: none;
    border-right: none;
    margin: 30px auto 70px;
    padding: 40px 0;
  }
  .ft-link li:not(:last-child) {
    position: relative;
    padding-right: var(--GAP_15);
    margin-right: var(--GAP_15);
  }
  .ft-link li:not(:last-child)::after {
    content: "";
    display: inline-block;
    background: var(--TXT_COLOR_BASE);
    width: 1px;
    height: 15px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .ft-link li a {
    font-size: var(--FZ_14);
  }
}
@media screen and (max-width: 767px) {
  .ft-linkContainer {
    margin: 37px auto;
  }
  .ft-link {
    max-width: 200px;
    margin: 0 auto;
    row-gap: var(--GAP_10);
    flex-direction: column;
    align-items: center;
  }
  .ft-link li:last-child {
    padding-right: 0;
    margin-right: 0;
  }
  .ft-link li:last-child::after {
    content: none;
  }
  .ft-link li a {
    font-size: 14px;
  }
  ul.lawmenu{
	  display: flex;
	  font-size: var(--FZ_12_CONST);
	  gap:10px;
	  justify-content: center;
	  margin-top: 20px;
	  
  }
  ul.lawmenu li:first-child{
	  border-right: 1px solid var(--TXT_COLOR_BASE);
	  padding-right: 10px;
  }
}
/* ft-btm */
.ft-copyright {
  font-weight: var(--FF_W_R);
}
@media screen and (min-width: 768px) {
  .ft-btm {
    grid-template-columns: 1fr auto;
    padding-bottom: 20px;
  }
  .ft-sns__list {
    gap: var(--GAP_10);
  }
}
@media screen and (max-width: 767px) {
  .ft-btm {
    gap: var(--GAP_80);
  }
  .ft-sns__heading {
    font-weight: var(--FF_W_B);
    text-align: center;
    margin-bottom: var(--MG_20);
  }
  .ft-sns__list {
    justify-content: center;
    gap: var(--GAP_10_CONST);
  }
  .ft-copyright {
    font-size: var(--FZ_12);
    text-align: center;
    letter-spacing: 0.05em;
    padding-bottom: 100px;
  }
}
/* ■■■■■■■■■■■■■■■■■■■■■■side■■■■■■■■■■■■■■■■■■■■■■ */


/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -----------------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: 600;
	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(--TXT_COLOR_BASE);
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
}
.popup-overlay button.closePopup::before{
	font-family: 'Font Awesome 5 Pro';
	font-weight: var(--FF_WEIGHT_BASE);
	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: 900px;
	}
	.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;
	}
}
/* -----------------フューチャー調整CSS----------------- */
/* 内部の色設定 */
:root{
	--WISH_COLOR: #d42929;
	--FS_BTN_COLOR_1: var(--TXT_BGCOLOR_BROWN_1);
	--FS_BTN_COLOR_2: #7a7a7a;
	--REVIEW_COLOR: #fda603;
}
/* 内部幅設定 */
#wrapper{
	margin-left: auto;
	margin-right: auto;
	width: var(--INNER_WIDTH);
	max-width: var(--PC_MAX_WIDTH);
	margin-bottom: var(--GENERALSEC);
}
#mainarea{
	flex: 1;
}
#sidearea{
	background-color: #f2f2f2;
}
@media screen and (min-width: 1100px){
  #sidearea{
    width: 240px;
    margin-right: 50px;
  }
}
@media screen and (min-width: 951px) and (max-width: 1100px){
  #sidearea{
    width: 200px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 950px){
  #sidearea{
    display: none;
  }
}
@media screen and (min-width: 768px){
	#wrapper > .flex{
		align-items: flex-start;
	}
}
/* カートカウント */
.fs-client-cart-count,
.fs-client-subscriptionCart-count{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	aspect-ratio: 1/1;
	width: 20px;
	font-size: 11px;
	background-color: var(--ORANGE01);
	color: var(--WHITE);
	border-radius: 50%;
	position: absolute;
}
/* 商品マークリセット */
.fs-c-productMarks{
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	--BDRS: 70px;
}
.fs-c-productMark{
	gap: 5px 10px;
}
.fs-c-productMark__mark{
	width: fit-content;
}
.fs-c-productMark li,
.fs-c-productMark span,
.fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
	
}
.fs-c-productMark .fs-c-productMark__item{
	margin: 0;
	font-size: 10px;
	border: 1px solid var(--BDCOLOR_BROWN_1);
	padding: 3px 7px 2px;
	border-radius:3px;
}
.fs-c-productMark__mark {
    margin-right: 0;
    padding: 0;
}
.fs-c-productMark__mark,
.fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
	display: inline-block;
	line-height: 1;
}
.fs-c-productMark img{
	width: auto;
	height: 20px;
}
@media screen and (min-width: 768px){
	.fs-c-productMark li,
	.fs-c-productMark span,
	.fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
		font-size: 12px;
	}
	.fs-c-productMark__mark,
	.fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
	}
}
@media screen and (max-width: 767px){
	.fs-c-productMark li,
	.fs-c-productMark span,
	.fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
	}
	.fs-c-productMark__mark,
	.fs-c-productMarks > .fs-c-mark .fs-c-mark__label{
	}
	.fs-c-productMark .fs-c-productMark__item{
		font-size:11px;
		letter-spacing:0.5px;
		padding:1px 4px 5px;
		line-height: 1;
	}
}
.fs-c-productMarks > .fs-c-mark{
	line-height: 1;
}
/* 1回のみ・定期 */
.fs-c-productMarks > .fs-c-mark--normalAndSubscription .fs-c-mark__label{
	background-color: var(--WHITE);
	color: var(--TXT_COLOR_BASE);
	border-color: var(--TXT_COLOR_BASE);
	border-radius: var(--BDRS);
}
/* 定期販売 */
.fs-c-productMarks > .fs-c-mark--subscription .fs-c-mark__label{
	background-color: var(--WHITE);
	color: var(--TXT_COLOR_BASE);
	border-color: var(--TXT_COLOR_BASE);
	border-radius: var(--BDRS);
}
/* 初回特別価格あり */
.fs-c-productMarks > .fs-c-mark--firstTimeSpecialPrice .fs-c-mark__label{
	background-color: var(--WHITE);
	color: var(--TXT_COLOR_BASE);
	border-color: var(--TXT_COLOR_BASE);
	border-radius: var(--BDRS);
}
/* パンくずリセット  */
.fs-c-breadcrumb__list {
  padding: 0;
  max-width: var(--PC_MAX_WIDTH);
  margin-left: auto;
  margin-right: auto;
  /* border-top: 1px solid var(--GRAY01); */
  border-bottom: 1px solid var(--GRAY01);
}
.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: "";
  margin-inline: 10px;
  display: inline-block;
  width: 4px;
  height: 7px;
  background-image: url(../images/common/breadcrumb-deco.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.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;
    font-size: 14px;
    letter-spacing: .05em;
  }
  .fs-c-breadcrumb__list {
    padding: 20px 0;
  }
  .fs-c-breadcrumb__listItem.home{
	  width:15px;
  }
  .fs-c-breadcrumb__list li.fs-c-breadcrumb__listItem:first-child{
	  vertical-align: top;
	  padding-top: 5px;
  }
  .fs-c-breadcrumb__list li.fs-c-breadcrumb__listItem:first-child img{
	  width:15px;
  }
  .fs-c-breadcrumb__listItem.home img{
	  display: block;
  }
}
@media screen and (max-width: 1250px) {
  .fs-c-breadcrumb__list{
	  padding:20px;
  }
}
@media screen and (max-width: 767px) {
  .fs-c-breadcrumb {
    font-size: 11px;
    overflow: hidden;
    position: relative;
  }
  .fs-c-breadcrumb__list {
    padding: 10px 0 10px 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-breadcrumb__listItem.home{
	  width:12px;
  }
   .fs-c-breadcrumb__list li.fs-c-breadcrumb__listItem:first-child{
	  vertical-align: top;
	  padding-top: 3px;
  }
  .fs-c-breadcrumb__list li.fs-c-breadcrumb__listItem:first-child img{
	  width:12px;
  }
  .fs-c-breadcrumb__listItem.home img{
	  display: block;
  }
}
/* レビュー */
.fs-c-rating__value{
	color: var(--REVIEW_COLOR);
}
.fs-c-reviewStars::before{
	color: var(--REVIEW_COLOR);
}
/* ページャー */
.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;
	}
}
/* -------------------aiレコメンドリセット------------------- */
.fs-p-heading--lv2,
.fr3-item .fr3-item__rankContainer{
	display: none;
}
.fr3-productListStatic{
	padding: 0 !important;
}
.fr3-item__productName{
	flex-direction: column;
	font-size: 15px !important;
	line-height: var(--LINE_HEIGHT_S);
}
.fr3-item__productName span{
	display: block;
	padding-bottom: 3px;
}
.fr3-item__productPrice__price{
	font-size:17px !important;
}
.fr3-item__productPrice__addon{
	font-size:11px !important;
}
.fr3-item__productPrice__currencyMark{
	padding-right: 3px;
}
@media (hover: hover){
	.fr3-item a:hover{
		color: var(--TXT_COLOR_BASE);
	}
}
@media screen and (min-width: 1101px){
	.fr3-productListStatic.fr3-productListStatic__responsive_1{
		grid-template-columns: repeat(5,1fr);
	}
}
@media screen and (min-width: 768px) and (max-width: 1100px){
	.fr3-productListStatic.fr3-productListStatic__responsive_1{
		grid-template-columns: repeat(4,1fr);
	}
	.flywheel-recommend__frame[data-frame-id="history"] .fr3-item:nth-of-type(n+5){
		display: none;
	}
}
@media screen and (min-width: 768px){
	.fr3-productListStatic.fr3-productListStatic__responsive_1{
		gap: var(--GAP_20);
	}
	[data-frame-id="history"] .fr3-item:nth-of-type(6n){
		display: none;
	}
	.fr3-item__link{
		gap: 13px;
	}
}
@media screen and (max-width: 767px){
	.fr3-item__productName{
		font-size:14px !important;
	}
	.fr3-item__productPrice__price{
	font-size:15px !important;
}
	.fr3-productListStatic.fr3-productListStatic__responsive_1{
		gap: var(--GAP_30_CONST) var(--GAP_15_CONST);
	}
}

/* 人気ランキング */
.flywheel-recommend__frame[data-frame-id="ranking"] .slick-list{
	overflow-x: clip;
	overflow-y: visible;
}
.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-productListStatic{
	counter-reset: original-counter;
}
.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item::before{
	content: ''counter(original-counter);
	counter-increment: original-counter;
	color: var(--TXT_COLOR_WHITE);
	font-family: var(--FF_NUM);
	position: absolute;
	z-index: 3;
}
.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item::after{
	aspect-ratio: 1/1;
	position: absolute;
	z-index: 2;
}
@media screen and (min-width: 768px){
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-productListStatic{
		display: block;
	}
	.t-rankingSection{
		--SLICK_GAP: var(--GAP_10);
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .slick-slide {
		position: relative;
		margin: 0 var(--SLICK_GAP);
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item::before{
		font-size: var(--FZ_20);
		top: -18.5px;
		left: 18px;
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .slick-slide:nth-of-type(1) .fr3-item::after,
	.flywheel-recommend__frame[data-frame-id="ranking"] .slick-slide:nth-of-type(2) .fr3-item::after,
	.flywheel-recommend__frame[data-frame-id="ranking"] .slick-slide:nth-of-type(3) .fr3-item::after{
		content: "";
		display: inline-block;
		mask: url(../images/common/ranking_crown.svg) no-repeat center center / 100%;
		-webkit-mask: url(../images/common/ranking_crown.svg) no-repeat center center / 100%;
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .slick-slide:nth-of-type(1) .fr3-item::after{
		background-color: var(--RANKING_1ST);
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .slick-slide:nth-of-type(2) .fr3-item::after{
		background-color: var(--RANKING_2ND);
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .slick-slide:nth-of-type(3) .fr3-item::after{
		background-color: var(--RANKING_3RD);
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .slick-slide:nth-of-type(n+4) .fr3-item::after{
		content: "";
		display: inline-block;
		background: var(--TXT_BGCOLOR_BROWN_1);
		border-radius: 50%;
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .slick-slide:nth-of-type(1) .fr3-item::after,
	.flywheel-recommend__frame[data-frame-id="ranking"] .slick-slide:nth-of-type(2) .fr3-item::after,
	.flywheel-recommend__frame[data-frame-id="ranking"] .slick-slide:nth-of-type(3) .fr3-item::after{
		width: 37px;
		top: -24px;
		left: 5px;
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .slick-slide:nth-of-type(n+4) .fr3-item::after{
		width: 26px;
		top: -14px;
		left: 11px;
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] [class*="g-slickArrow--"]{
		top: 30%;
	}
}
@media screen and (max-width: 767px){
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item{
		position: relative;
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item::before{
		font-size: var(--FZ_20);
		top: -12px;
		left: 19px;
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item:nth-of-type(1)::after,
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item:nth-of-type(2)::after,
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item:nth-of-type(3)::after{
		content: "";
		display: inline-block;
		mask: url(../images/common/ranking_crown.svg) no-repeat center center / 100%;
		-webkit-mask: url(../images/common/ranking_crown.svg) no-repeat center center / 100%;
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item:nth-of-type(1)::after{
		background-color: var(--RANKING_1ST);
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item:nth-of-type(2)::after{
		background-color: var(--RANKING_2ND);
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item:nth-of-type(3)::after{
		background-color: var(--RANKING_3RD);
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item:nth-of-type(n+4)::after{
		content: "";
		display: inline-block;
		background: var(--TXT_BGCOLOR_BROWN_1);
		border-radius: 50%;
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item:nth-of-type(1)::after,
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item:nth-of-type(2)::after,
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item:nth-of-type(3)::after{
		width: 32px;
		top: -21px;
		left: 7px;
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item:nth-of-type(n+4)::after{
		width: 26px;
		top: -12px;
		left: 11px;
	}
	.flywheel-recommend__frame[data-frame-id="history"] .fr3-item:nth-of-type(n+5),
	.flywheel-recommend__frame[data-frame-id="ranking"] .fr3-item:nth-of-type(n+5){
		display: none;
	}
	.flywheel-recommend__frame[data-frame-id="ranking"] [class*="g-slickArrow--"]{
		top: 30%;
	}
}
/* -------------------g-slickArrow---------------------- */
[class*="g-slickArrow--"]{
	width: var(--SLICK_ARROW_SIZE);
	background: url(../images/common/slider-part.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: 1301px){
	.g-hasSlickArrow{
		--SLICK_ARROW_TO_BODY: calc(0px - var(--SLICK_ARROW_SIZE) + var(--SLICK_GAP) - 5px);
	}
}
@media screen and (min-width: 768px) and (max-width: 1300px){
	.g-hasSlickArrow{
		--SLICK_ARROW_TO_BODY: calc(0px - 15px);
	}
}
@media screen and (min-width: 768px){
	.g-hasSlickArrow{
		--SLICK_ARROW_SIZE: clamp( 20px, 3vw, 40px);
	}
}
@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 button{
	font-size: 0;
	width: 50px;
	height: 20px;
	position: relative;
}
.g-slickDots button::before{
	content: "";
	display: inline-block;
	background: var(--GRAY02);
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.g-slickDots .slick-active button::before{
	background: var(--BROWN01);
}
/* -------------------g-heading-------------------- */
.g-heading > span{
	display: block;
}
.g-heading--center > span{
	text-align: center;
}
.g-heading__ja{
	font-weight: var(--FF_W_B);
}
.g-heading__en{
	font-family: var(--FF_EN);
}
@media screen and (min-width: 768px){
  .g-headingContainer{
		margin-bottom: var(--GAP_40);
	}
	.g-heading__ja{
		font-size: var(--FZ_30);
		letter-spacing: 0.2em;
	}
	.g-heading__en{
		font-size: var(--FZ_16);
	}
}
@media screen and (max-width: 767px){
	.g-headingContainer{
		margin-bottom: var(--GAP_50);
	}
	.g-heading__ja{
		font-size: var(--FZ_25);
	}
	.g-heading__en{
		font-size: var(--FZ_14);
		margin-top: 3px;
	}
}
/* -------------------g-btn-------------------- */
.g-btnContainer{
	display: grid;
}
.g-btnContainer--horizontal{
	display: flex;
	justify-content: center;
}
.g-btn{
	width: 100%;
}
.g-btn a{
	display: block;
	text-align: center;
	border: 1px solid var(--BDCOLOR_BROWN_1);
	position: relative;
}
.g-btn--white a{
	background-color: var(--WHITE);
}
.g-btn--brown a{
	background-color: var(--TXT_BGCOLOR_BROWN_1);
	color: var(--WHITE);
}
.g-btn--pink a {
  background-color: var(--PINK);
  border-color: var(--PINK);
  color: var(--WHITE);
}
.g-btn--yellow a {
  background-color: var(--YELLOW);
  border-color: var(--YELLOW);
  color: var(--WHITE);
}
.g-btn--center{
	margin-left: auto;
	margin-right: auto;
}
.g-btn--link a{
	position: relative;
}
.g-btn--link a::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 100;
	content: '\f105';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
@media (hover: hover){
	.g-btn a:hover{
		opacity: 1;
	}
	.g-btn--white a:hover{
		color: var(--WHITE);
		background-color: var(--BDCOLOR_BROWN_1);
	}
	.g-btn--brown a:hover{
		color: var(--TXT_BGCOLOR_BROWN_1);
		background-color: var(--WHITE);
	}
	.g-btn--pink a:hover,
  .g-btn--yellow a:hover {
    opacity: .7;
  }
}
@media screen and (min-width: 768px){
	.g-btnContainer{
		margin-top: 30px;
	}
	.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{
		max-width: 300px;
	}
	.g-btn--fitContent{
		width: fit-content;
		max-width: unset;
	}
	.g-btn a{
		font-size: var(--FZ_18);
		padding: 10px 0;
	}
	.g-btn--fitContent a{
		padding-left: 10px;
		padding-right: 10px;
	}
	.g-btn--link a::after{
		right: 10px;
		padding-top: 3px;
	}
}
@media screen and (max-width: 767px){
	.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--horizontalPc{
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
	.g-btn{
		max-width: 300px;
	}
	.g-btn--fitContent{
		width: fit-content;
		max-width: unset;
	}
	.g-btn a{
		
		padding: 10px 0;
	}
	.g-btn--fitContent a{
		padding-left: 10px;
		padding-right: 10px;
	}
	.g-btn--link a::after{
		right: 5px;
	}
}
/* ------------------g-txt------------------ */

.g-txt__2colum,.g-txt__2columGift{
	display: flex;
}
.g-txt p,.g-txt__2colum p,.g-txt__list p,.g-txt__2columGift p,.g-txt ul{
	margin-bottom: 1em;
}
.g-txt__2colum img {
	border: 1px solid var(--TXT_COLOR_BASE);
}
.g-txt mark{
	background: linear-gradient(transparent 70%, #fff799 30%);
}
.g-txt__list > li{
	position: relative;
}
.g-txt__list > li::before{
	content: '';
	display: inline-block;
	background: var(--TXT_COLOR_BASE);
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.g-txt__note,.g-txt__note li{
	position: relative;
}
.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;
}
.g-txt__img{
	text-align: center;
}
.g-txtGiftcard {
	margin-top: 30px;
}
.g-txtGiftcard p{
	margin-top: 20px;
}
@media screen and (min-width: 768px){
	.g-txt *,.g-txt__2colum *,.g-txt__2columGift *{
		font-size: var(--FZ_16);
	}
	.g-txt__note{
		font-size: var(--FZ_14);
	}
	.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: 15px;
	}
	.g-txt__list > li::before{
		width: 4px;
		top: 16px;
	}
	.g-txt__note li{
		font-size: var(--FZ_14_CONST);
		padding-left: 15px;
	}
	.g-txt__2colum{
		gap: 40px;
	}
	.g-txt__2columGift{
		gap: 50px;
		margin-top: 30px;
	}
	.g-txt,.g-txt__2colum,.g-txt__2columGift{
		padding: 0 20px;
	}
	.g-txt__2colum img{
		width:26%;
	}
  .g-txt__2colum > div{
	  flex:1;
  }
}
@media screen and (max-width: 767px){
	.g-txt *,.g-txt__2colum *,.g-txt__2columGift *{
	}
	.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: 3px;
		top: 14px;
	}
	.g-txt__note li{
		font-size: var(--FZ_12_CONST);
		padding-left: 15px;
	}
	.g-txt__2colum,.g-txt__2columGift{
	  flex-direction: column;
  }
}
/* ------------------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);
	}
}
/* -------------------bgcolor-------------------- */
[class*="bgcolor--"]{
	overflow-x: clip;
}
.bgcolor--beige{
	background-color: var(--BGCOLOR_BEIGE_1);
}
@media screen and (min-width: 768px){
	.bgcolor--beigePc{
		background-color: var(--BGCOLOR_BEIGE_1);
	}
}
@media screen and (max-width: 767px){
	.bgcolor--beigeSp{
		background-color: var(--BGCOLOR_BEIGE_1);
	}
}
/* -------------------よくある質問-------------------- */
.g-faqContents{
	display: grid;
}
.g-faqColumn__heading{
}
.g-faq dd:not(:last-child){
	border-bottom: 1px solid var(--GRAY01);
}
.g-faq dt,
.g-faq dd{
	position: relative;
	background-color: var(--WHITE);
}
.g-faq dt{
	font-weight: var(--FF_W_M);
}
@media screen and (min-width: 768px){
	.g-faqContents{
		gap: var(--GAP_50);
		margin-bottom: 70px;
	}
	.g-faqColumn__heading{
		font-size: var(--FZ_20);
		margin-bottom: var(--MG_15);
	}
	.g-faq dd:not(:last-child){
		margin-bottom: 30px;
	}
	.g-faq dt{
		font-size: var(--FZ_16);
		padding: 15px 60px 15px 25px;
	}
	.g-faq dd{
		padding: 5px 60px 15px 25px;
	}
}
@media screen and (max-width: 767px){
	.g-faqContents{
		gap: var(--GAP_30_CONST);
	}
	.g-faqColumn__heading{
		font-size: var(--FZ_17_CONST);
		margin-bottom: var(--MG_5);
	}
	.g-faq dd:not(:last-child){
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.g-faq dt{
		padding: 18px 30px 18px 20px;
	}
	.g-faq dd{
		padding: 5px 30px 10px 20px;
	}
	.g-faq dd::before{
    left: 6px;
    top: -2px;
	}
	.g-faq dd .g-txt{
		line-height: 1.7;
	}
}
/* アコーディオン プラスマイナス */
.g-faq--acc dt{
	position: relative;
}
.g-faq--acc dt span{
	display: inline-block;
	position: relative;
	aspect-ratio: 1/1;
	position: absolute;
}
.g-faq--acc dt span::before,
.g-faq--acc dt span::after{
	content: "";
	display: inline-block;
	background: var(--TXT_COLOR_BASE);
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.g-faq--acc dt span::after{
	transition: .3s;
	transform: translate(-50%, -50%) rotate(90deg);
}
.g-faq--acc dt.active span::after{
	transform: translate(-50%, -50%) rotate(180deg);
}
.g-faq--acc dd{
	display: none;
}
@media (hover: hover){
	.g-faq--acc dt:hover{
		cursor: pointer;
	}
}
@media screen and (min-width: 768px){
	.g-faq--acc dt:not(:first-child){
		margin-top: 20px;
	}
	.g-faq--acc dt span{
		width: 15px;
		right: 20px;
		top: 20px;
	}
}
@media screen and (max-width: 767px){
	.g-faq dt{
		padding-right: 30px;
	}
	.g-faq--acc dt:not(:first-child){
		margin-top: 10px;
	}
	.g-faq--acc dt span{
		width: 10px;
		right: 13px;
		top: 24px;
	}
}
/* ナンバーリング */
.g-faq--numbering{
	counter-reset: original-counter;
}
.g-faq--numbering dt{
	counter-increment: original-counter;
	display: flex;
	align-items: flex-start;
}
.g-faq--numbering dt::before{
	display: inline-block;
	content: 'Q'counter(original-counter)'.';
	line-height: 1.4;
}
@media screen and (min-width: 768px){
	.g-faq--numbering dt{
		gap: var(--GAP_10);
	}
	.g-faq--numbering dt::before{
		font-size: var(--FZ_18);
	}
}
@media screen and (max-width: 767px){
	.g-faq--numbering dt{
		gap: var(--GAP_10);
	}
	.g-faq--numbering dt::before{
		font-size: var(--FZ_18);
	}
}
/* g-faq--bgcolorBeige */
.g-faq--bgcolorBeige dt,
.g-faq--bgcolorBeige dd{
	background-color: var(--BGCOLOR_BEIGE_1);
}

/* -------------------g-product-------------------- */
.g-product li a{
	height: 100%;
	display: grid;
	grid-template-columns: clamp( 87px, 9vw, 100px) 1fr;
	gap: var(--GAP_15);
	background-color: var(--WHITE);
}
.g-product__body{
	position: relative;
}
.g-product__body::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
	content: '\f105';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.g-product__body > *{
	height: 50%;
}
.g-product__summaryContainer{
	display: flex;
	align-items: flex-end;
}
.g-product__summary{
	height: 100%;
	width: 100%;
	background-color: var(--TXT_BGCOLOR_BROWN_2);
	display: flex;
	align-items: center;
	border-radius: 3px;
}
.g-product__heading,
.g-product__heading__name{
	line-height: var(--LINE_HEIGHT_S);
}
.g-product__heading__copy{
	display:block;
}
.g-product__heading--hasPhoto{
	position: relative;
}
.g-product__heading__photo{
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}
.g-product__heading__photo img{
	border-radius: 50%;
}
.g-product__heading__name{
	display: block;
	font-weight: var(--FF_W_B);
}
@media screen and (max-width: 1270px){
	.g-product{
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (min-width: 768px){
  .g-product{
		grid-template-columns: repeat(auto-fit, minmax(306px, 1fr));
		gap: var(--GAP_20) var(--GAP_20);
		margin-top: var(--GAP_40);
	}
	.g-product li{
		border: 1px solid var(--BDCOLOR_BROWN_1);
	}
	.g-product__body{
		padding-right: 40px;
	}
	.g-product__body::after{
		right: 12px;
		font-size: 25px;
	}
	.g-product__summary{
		max-height: clamp( 50px, 5.5vw, 60px);
		font-size: var(--FZ_14);
		padding:6px 5px 6px 12px;
	}
	.g-product__heading{
		height: fit-content;
		margin-top: var(--MG_10);
	}
	.g-product__heading--hasPhoto{
		padding-right: 80px;
	}
	.g-product__heading__copy{
		font-size: var(--FZ_14);
	}
	.g-product__heading__name{
		font-size: var(--FZ_16);
	}
	.g-product__heading__photo{
		width: 73px;
	}
}
@media screen and (max-width: 767px){
  .g-product {
    gap: var(--GAP_10);
    margin-top: var(--MG_30);
  }
  .g-product li a{
	  padding-bottom: 10px;
  }
  .g-product li a {
    border-bottom:1px dashed var(--GRAY02)
  }
	.g-product__body{
		padding-right: 35px;
	}
	.g-product__body::after{
		right: 10px;
		font-size: 15px;
	}
	.g-product__summary{
		max-height: 53px;
		font-size: var(--FZ_15);
		padding: 6px 8px;
	}
	.g-product__heading{
		height: fit-content;
		margin-top: var(--MG_5);
	}
	.g-product__heading--hasPhoto{
		padding-right: 60px;
	}
	.g-product__heading__copy{
		font-size: var(--FZ_14);
	}
	.g-product__heading__name{
		font-size: var(--FZ_16);
	}
	.g-product__heading__photo{
		width: 53px;
	}
}
/* @media screen and (min-width:768px) and (max-width:1272px) {
	.g-product.grid li:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: left;
    width:49%;
  }
} */
/* -------------------g-ttl---------------------- */
/* g-ttl--label */
.g-ttl--label{
  color: var(--TXT_COLOR_WHITE);
  background-color: var(--TXT_BGCOLOR_BROWN_1);
  width: fit-content;
  white-space: nowrap;
  text-align: center;
  font-weight: var(--FF_W_B);
}
@media screen and (min-width: 768px){
	.g-ttl--label{
		border-radius: 7px;
	}
}
@media screen and (max-width: 767px){
	.g-ttl--label{
		border-radius: 5px;
	}
}
/* g-ttl--bdbDash */
.g-ttl--bdbDash{
  position: relative;
}
.g-ttl--bdbDash::after{
  content: "";
	background-image: linear-gradient(to right, transparent, transparent var(--PRIDE_TTL_BD_SIZE_2), var(--BDCOLOR_BROWN_1) var(--PRIDE_TTL_BD_SIZE_2), var(--BDCOLOR_BROWN_1) var(--PRIDE_TTL_BD_SIZE_1));
	background-size: var(--PRIDE_TTL_BD_SIZE_1) var(--PRIDE_TTL_BD_HEIGHT);
	background-repeat: repeat-x;
	width: 100%;
	height: var(--PRIDE_TTL_BD_HEIGHT);
	position: absolute;
	left: 0;
	bottom: 0;
}
@media screen and (min-width: 768px){
	.g-ttl--bdbDash{
    --PRIDE_TTL_BD_SIZE_1: 8px;
    --PRIDE_TTL_BD_SIZE_2: 3px;
    --PRIDE_TTL_BD_HEIGHT: 2px;
  }
}
@media screen and (max-width: 767px){
	.g-ttl--bdbDash{
    padding-bottom: 5px;
    letter-spacing: 0.2em;
    font-size: var(--FZ_18);
    --PRIDE_TTL_BD_SIZE_1: 6px;
    --PRIDE_TTL_BD_SIZE_2: 2px;
    --PRIDE_TTL_BD_HEIGHT: 2px;
  }
}
/* g-ttl--ruledLine */
.g-ttl--ruledLine{
	width: fit-content;
	border: 1px solid var(--TXT_COLOR_BASE);
	border-left: none;
	border-right: none;
}
@media screen and (min-width: 768px){
	.g-ttl--ruledLine{
		font-size: var(--FZ_25);
		margin: 0 auto var(--GAP_30);
		padding: 5px 20px;
	}
}
@media screen and (max-width: 767px){
	.g-ttl--ruledLine{
		font-size: var(--FZ_22);
		margin: 0 auto var(--GAP_30);
		padding: 5px 10px;
	}
}
/* -------------------g-lead-------------------- */
.g-lead{
	text-align: center;
	font-size: var(--FZ_20);
}
/* -------------------g-pride-------------------- */
/* g-pride */
.g-pride__ttl{
  width: fit-content;
  margin: 0 auto;
  position: relative;
  padding-left: 3px;
}
.g-pride__list{
	margin-left: auto;
	margin-right: auto;
}
.g-pride__list li{
  position: relative;
}
.g-pride__list__explain img{
  border-radius: 50%;
  box-shadow: var(--COMMON_BXSD_BTM);
}
.g-pride__list__heading{
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
@media screen and (min-width: 951px){
  .g-pride__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--GAP_75);
		max-width: var(--PC_MAX_WIDTH_S);
  }
}
@media screen and (min-width: 768px) and (max-width: 950px){
	.g-pride__list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
		max-width: 600px;
  }
  .g-pride__list li{
    width: 45%;
  }
  .g-pride__list li:nth-of-type(3){
    margin-left: auto;
  }
  .g-pride__list li:first-child{
    margin: 0 10% 10% 10%;
  }
}
@media screen and (min-width: 768px){
  .g-pride__list{
    margin: 70px auto 0;
  }
  .g-pride{
    margin-top: var(--MG_20);
  }
  .g-pride__ttl{
    letter-spacing: 0.2em;
    font-size: var(--FZ_25);
    padding-bottom: 8px;
  }
  .g-pride__list__heading{
    font-size: var(--FZ_18);
    padding: 7px 15px;
  }
}
@media screen and (max-width: 767px){
  .g-pride__ttl{
    padding-bottom: 5px;
    letter-spacing: 0.2em;
    font-size: 18px;
  }
  .g-pride__list{
		display: grid;
		max-width: 275px;
		margin: 0 auto;
    margin-top: 45px;
		gap: 47px;
  }
  .g-pride__list__heading{
    font-size: 17px;
		font-weight: var(--FF_W_B);
		padding: 8px 15px;
  }
}
/* -------------------g-info-------------------- */
.g-info__list{
	grid-template-columns: repeat(3,1fr);
}
.g-info__list li{
	--BORDER_WIDTH: 1px;
	position: relative;
}
.g-info__list li:not(:last-child)::after{
	content: "";
	display: inline-block;
	background: url(../images/common/border-repeat-y.svg) repeat-y top center / 100%;
	width: var(--BORDER_WIDTH);
	height: 100%;
	position: absolute;
	right: calc(0px - (var(--BORDER_WIDTH) / 2));
	top: 0;
}
.g-info__list__ttlContainer{
	background: no-repeat top center;
	text-align: center;
	display: flex;
	align-items: flex-end;
}
.g-info__list__ttl{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	font-weight: var(--FF_W_B);
	border-bottom: 1px solid var(--TXT_COLOR_BASE);
}
.g-info__list__ttl > *{
	line-height: 1;
}
.g-info__list__explain strong{
	color: var(--TXT_COLOR_ORANGE_1);
}
.g-registration__alert {
  margin-top: 10px;
  font-size: var(--FZ_11);
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px){
	.g-info__list{
		display: grid;
		margin-top: var(--GAP_50);
	}
	.g-info__list__ttlContainer{
		background-size: 110px;
		height: 142px;
	}
	.g-info__list__ttl{
		width: fit-content;
		margin: 0 auto;
		padding-bottom: 8px;
	}
	.g-info__list__ttl__num{
		font-size: var(--FZ_43);
		letter-spacing:0.04em;
	}
	.g-info__list__ttl__ja{
		font-size: var(--FZ_35);
	}
	.g-info__list__ttl__addon{
		font-size: var(--FZ_25);
	}
	.g-info__list__explain{
		text-align: center;
		font-size: var(--FZ_20);
		margin-top: var(--MG_10);
	}
	.g-registration__alert {
    margin-top: 8px;
    font-size: var(--FZ_14);
  }
}
@media screen and (max-width: 767px){
	.g-info__list{
		display: flex;
		margin-top: var(--MG_30);
	}
	.g-info__list li{
		flex: 1;
		--LIST_GAP: 11px;
	}
	.g-info__list li:not(:last-child){
		padding-right: var(--LIST_GAP);
		margin-right: var(--LIST_GAP);
	}
	.g-info__list__ttlContainer{
		background-size: 70px;
		height: 99px;
	}
	.g-info__list__ttl{
		width: 100%;
		text-align: center;
		font-size: var(--FZ_30);
		padding-bottom: 10px;
	}
	.g-info__list__ttl__num{
		font-size: var(--FZ_35);
	}
	.g-info__list__ttl__ja{
		font-size: var(--FZ_22);
	}
	.g-info__list__ttl__addon{
		font-size: var(--FZ_20);
	}
	.g-info__list__explain{
		font-size: var(--FZ_14);
		margin-top: var(--MG_10);
		text-align: center;
	}
}
/* -------------------g-lineConnect-------------------- */
@media screen and (min-width: 768px){
	.g-lineConnect img{
		border-radius: 20px;
	}
}
@media screen and (max-width: 767px){
	.g-lineConnect img{
		border-radius: 20px;
	}
}
/* ------------------- -------------------- */
.g-reviewSection .fs-c-reviewList__item {
  display: grid !important;
	border-top: none !important;
	grid-template-columns: unset !important;
	grid-template-rows: unset !important;
}
.g-reviewSection .fs-c-reviewList__item__product {
  order: 4;
  display: grid;
  position: relative;
}
.g-reviewSection .fs-c-reviewList__item__product::before {
  --DOTSIZE: 3px;
  content: "";
  background-color: transparent;
  background-image: radial-gradient(var(--GRAY03) 30%, transparent 30%);
  background-size: var(--DOTSIZE) var(--DOTSIZE);
  background-repeat: repeat-x;
  width: 100%;
  height: var(--DOTSIZE);
  position: absolute;
  top: 0;
  left: 0;
}
.g-reviewSection .fs-c-reviewProduct__image {
  order: 2;
}
.g-reviewSection .fs-c-reviewProduct__image a img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.g-reviewSection .fs-c-productName__name {
  line-height: var(--LINE_HEIGHT_S);
}
.g-reviewSection .fs-c-reviewProduct__info {
  order: 1;
}
.g-reviewSection .fs-c-reviewList__item__info {
  display: contents;
}
.g-reviewSection .fs-c-reviewRating {
  order: 1;
	height: 30px;
	margin: 0 0 10px!important;
}
.g-reviewSection .fs-c-reviewInfo__reviewer {
  order: 3;
  display: flex;
  align-items: center;
}
.g-reviewSection .fs-c-reviewInfo__date {
  display: none;
}
.g-reviewSection .fs-c-reviewList__item__body {
  order: 2;
  line-height: var(--LINE_HEIGHT_M);
	grid-row: unset !important;
	grid-column: unset !important;
	border: none !important;
	padding: 0 !important;
}
.g-reviewSection .fs-c-reviewList__item__product .fs-c-reviewProduct__image{
	width: auto !important;
}
@media screen and (min-width: 768px) {
  .g-review .slick-list {
    overflow-x: clip;
    overflow-y: visible;
  }
  .g-reviewSection {
    --SLICK_GAP: var(--GAP_10);
  }
  .g-reviewSection .fs-c-reviewList .slick-slide {
    margin: 0 var(--SLICK_GAP);
  }
  .g-reviewSection .fs-c-reviewList [class*="g-slickArrow--"] {
    top: 40%;
  }
  .g-reviewSection .fs-c-reviewList__item {
    background-color: var(--WHITE);
    padding: var(--GAP_40) var(--GAP_30);
    box-shadow: 4px 5px 15px -8px #777777;
  }
  .g-reviewSection .fs-c-reviewList__item__product {
    grid-template-columns: 1fr 96px;
    gap: var(--GAP_20);
    padding-top: 30px;
    margin-top: 20px;
  }
  .g-reviewSection .fs-c-productName__name {
    font-size: var(--FZ_14);
  }
  .g-reviewSection .fs-c-reviewList__item__body {
    margin: -20px 0 20px !important;
  }
  .g-reviewSection .fs-c-reviewInfo__reviewer {
    font-size: var(--FZ_14);
    gap: var(--GAP_10);
  }
}
@media screen and (max-width: 767px) {
	.g-reviewSection .fs-c-reviewList__item__info .fs-c-reviewStars{
		justify-content: flex-start;
	}
	.g-reviewSection .fs-c-reviewStars::before{
		font-size: 20px;
	}
	.g-reviewSection.g-hasSlickArrow{
		overflow: visible;
	}
  .g-review {
    background-color: var(--WHITE);
    padding: 0 20px 30px 20px;
    box-shadow: var(--COMMON_BXSD_BTM);
  }
  .g-reviewSection .fs-c-reviewList__item {
    padding-top: 30px;
  }
	.g-reviewSection .fs-c-reviewList__item:nth-of-type(n+3){
		display: none !important;
	}
  .g-reviewSection .fs-c-reviewList__item:not(:last-child) {
    padding-bottom: 35px;
    border-bottom: 1px solid var(--TXT_COLOR_BASE);
  }
  .g-reviewSection .fs-c-reviewList__item__product {
    grid-template-columns: 1fr 70px;
    gap: var(--GAP_20);
    padding-top: 20px;
    margin-top: 15px;
  }
  .g-reviewSection .fs-c-productName__name {
    font-size: var(--FZ_14);
  }
  .g-reviewSection .fs-c-reviewList__item__body {
    margin: -10px 0 10px !important;
  }
  .g-reviewSection .fs-c-reviewInfo__reviewer {
    font-size: var(--FZ_14);
    gap: var(--GAP_10);
  }
	.g-reviewSection .fs-c-reviewList__item__product .fs-c-reviewProduct__info{
		text-align: left;
	}
	.g-reviewSection .fs-c-reviewList li{
		margin-bottom: 0;
	}
}
/* -------------------g-topics-------------------- */
.g-topics__primary li img{
	border:1px solid var(--BDCOLOR_BROWN_2);
}
.g-topics__secondary li img{
	border:1px solid var(--BDCOLOR_BROWN_2);
}
@media screen and (min-width: 768px){
  .g-topics{
    gap: var(--GAP_40);
  }
  .g-topics__primary{
    grid-template-columns: repeat(2, 1fr);
    gap: var(--GAP_40) var(--GAP_20);
  }
  .g-topics__primary h3{
    margin-top: var(--MG_5);
    font-size: var(--FZ_18);
  }
  .g-topics__secondary{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--GAP_40) var(--GAP_20);
  }
}
@media screen and (max-width: 767px){
  .g-topics{
    gap: var(--GAP_20_CONST);
  }
  .g-topics__primary{
    gap: var(--GAP_20_CONST);
  }
  .g-topics__primary h3{
    font-weight: var(--FF_W_L);
    margin-top: var(--MG_10);
    font-size: var(--FZ_12_CONST);
  }
  .g-topics__secondary .slick-list{
    padding: 0 30% 0 calc((100% - var(--INNER_WIDTH)) / 2);
  }
  .g-topics__secondary .slick-slide{
    margin-right: var(--GAP_20);
  }
}




/* -------------------g-column-------------------- */
.g-column a{
  display: block;
  background-color: var(--WHITE);
}
.g-column__thumb img{
  aspect-ratio: 3/2;
  object-fit: cover;
}
.g-column__ttl span{
	display: block;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}
@media screen and (min-width: 768px){
  .g-column{
    --SLICK_GAP: var(--GAP_10);
  }
  .g-column .slick-slide{
    margin: 0 var(--SLICK_GAP);
  }
  .g-column [class*="g-slickArrow--"]{
		top: 40%;
	}
  .g-column__ttl{
    padding: 15px;
  }
}
@media screen and (max-width: 767px){
  .g-column .slick-list{
    padding: 0 30% 0 calc((100% - var(--INNER_WIDTH)) / 2);
  }
  .g-column .slick-slide{
    margin-right: var(--MG_10);
  }
  .g-column [class*="g-slickArrow--"]{
		top: 40%;
	}
  .g-column__ttl{
    font-size: var(--FZ_15);
    padding: 15px;
  }
}
/* -------------------t-mediaWithNews-------------------- */
.t-media li h3 a img{
  aspect-ratio: 60/83;
  object-fit: cover
}
.t-news > li{
  position: relative;
}
.t-news > li:not(:last-child)::after{
  --DOTSIZE: 3px;
  content: "";
  background-color: transparent;
  background-image:
  radial-gradient(var(--GRAY03) 30%, transparent 30%);
  background-size: var(--DOTSIZE) var(--DOTSIZE);
  background-repeat: repeat-x;
  width: 100%;
  height: var(--DOTSIZE);
  position: absolute;
  bottom: 0;
  left: 0;
}
.t-news__ttl,
.t-news__excerpt{
  font-weight: var(--FF_W_M);
}
.t-news__link{
  text-align: right;
}
.t-news__link a{
  text-decoration: underline;
}
@media screen and (min-width: 768px){
  .t-mediaWithNews{
    display: flex;
    gap: var(--GAP_40);
  }
  .t-mediaWithNews > section{
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .t-mediaWithNews__box{
    flex: 1;
    background-color: var(--WHITE);
    padding: var(--GAP_50) var(--GAP_40);
  }
  .t-media{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: var(--GAP_20);
    margin-bottom: var(--GAP_40);
    margin-top: 40px;
  }
  .t-news{
    height: 100%;
    font-size: var(--FZ_16);
  }
  .t-news > li{
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .t-news > li:not(:last-child){
    padding-bottom: var(--GAP_30);
    margin-bottom: var(--GAP_20);
  }
  .t-news__link a{
    font-size: var(--FZ_14_CONST);
  }
	.t-news__excerpt{
		font-size: var(--FZ_14_CONST);
		line-height: 1.5;
	}
}
@media screen and (max-width: 767px){
  .t-mediaWithNews{
    display: grid;
    gap: var(--GENERALSEC);
  }
  .t-media{
    margin-bottom: var(--MG_30);
  }
  .t-media .slick-list{
    padding: 0 10% 0 calc((100% - var(--INNER_WIDTH)) / 2);
  }
  .t-media .slick-slide{
    margin-right: var(--MG_10);
  }
  .t-media [class*="g-slickArrow--"]{
		top: 40%;
	}
  .t-news{
    background-color: var(--WHITE);
  }
  .t-news > li{
    padding: var(--GAP_20_CONST);
  }
  .t-news__cat{
    font-weight: var(--FF_W_R);
  }
  .t-news__link{
    margin-top: var(--GAP_10);
  }
  .t-news__link a{
    font-size: var(--FZ_12_CONST);
  }
	.t-news__excerpt{
		font-size: var(--FZ_12_CONST);
		line-height: 1.5;
	}
}




/* 調整 */
.p-max .p-recommend__heading{
	letter-spacing:0.2em;
}
@media screen and (max-width: 767px){
	.s-infoWrap+.ft-guideSection{
		background-color: unset;
	}
	.s-infoWrap+.ft-guideSection .ft-guide .slick-slide > div > li{
		border: 1px solid var(--BDCOLOR_BROWN_1);
	}
	.ft-guideSection {
		padding-bottom: 30px;
	}
}
.g-marker_yellow{
	background: linear-gradient(transparent 70%, #f6e3bc 30%);
}
a:hover{
	color: inherit;
}

.s-guideOrder{
	position: relative;
	margin-bottom: 70px;
}
.s-guideOrder:after{
	content:"";
	width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 23px solid var(--TXT_BGCOLOR_BROWN_1);
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: auto;
}
.s-guideOrder:last-child{
	margin-bottom: 0;
}
.s-guideOrder:last-child::after{
	content:none;
}
.g-guideColumn__about .g-giftBanner__img{
	max-width:400px;
	margin-top: 30px;
}
.g-txt__2colum > div.g-messagecararea__contents{
	width	:60%;
	flex:unset;
}
.g-messagecararea__img img{
	width: 100%;
}
.g-messagecararea{
	margin:40px 0;
}
.g-messagecararea__img p{
	margin-bottom: 0;
}
.g-txtGiftcard img{
	width: 100%;
}
.g-txtGiftcard p{
	font-size:15px;
}
.s-guideContainer a{
	text-decoration: underline;
}

table.pointabout {
    width: 100%;
    border-collapse:collapse;
    border-spacing:0;
    empty-cells:show;
}
.pointabout th {
	font-weight:normal;
    text-align: left;
    padding:10px 0 10px;
    width:178px;
}
.pointabout td {
    padding:10px 0px 10px 15px;
}
@media screen and (max-width:767px) {
.s-guideOrder:after{
	bottom:-38px;
}
.s-guideCredit{
	max-width: 250px;
	justify-content: center;
	margin-left:auto !important;
	margin-right: auto !important;
}
.s-guidePaymentLogo--AmazonPay,
.s-guidePaymentLogo--rakutenPay,
.s-guidePaymentLogo--PayPay,
.s-guidePaymentLogo--Paidy{
	margin-left:auto !important;
	margin-right: auto !important;
}
.creditchange .s-guideOrder.g-txt__2colum-02{
	margin-bottom: 55px;
}
.creditchange .s-guideOrder.g-txt__2colum-02:last-child{
	margin-bottom: 0px;
}
.pointabout th {
	display: block;
	padding:10px 0 0;
	font-weight: 500;
	font-size:1.1em;
}
.pointabout td{
	display: block;
	padding:3px 0 3px;
}
.g-messagecararea__img p{
	text-align: center;
}
.g-txt__2colum > div.g-messagecararea__contents{
	width: 100%;
}
.g-messagecararea{
	margin: 20px 0;
}
.g-txt__note li{
	font-size: 13px;
}
.g-txtGiftcard{
	margin-top: 0;
}
.g-txt__2colum .g-txtGiftcard img{
	width: 100%;
}
#guide01,#guide02,#guide03,#guide04,#guide05,#guide06,#guide07{
	padding-top:70px;
	margin-top: -70px;
}
#stage{
	padding-top:130px;
	margin-top: -70px;
}
}


.cart-form-note{
	text-align: center;
	margin-bottom: 15px;
}
.cart-form-note::before {
	content: "*";
	font-size: 1.6em;
	text-indent: 0;
	top: 10px;
	position: relative;
}

#fs_Register .fs-c-heading.fs-c-heading--page{
	margin-bottom: 0px;
}

@media screen and (min-width: 768px){
	.guide-noteimg{
		width: 26%;
	}
	.guide-noteimg img{
		width: 100%;
	}
}

.fs-c-modal__inner{
	padding: 20px;
}
.fs-c-linkServicesList .fs-c-linkService--amazon{
margin-bottom: 20px;
}
.fs-c-linkService--amazon .fs-c-linkService__service,
.fs-c-linkService--line .fs-c-linkService__service{
	font-weight: bold;
	font-size: 18px;
}
.fs-c-linkService--line .fs-c-buttonContainer .fs-c-button--linkService--line.fs-c-button--secondary{
	display: block;
	width: 50%;
	max-width: 160px;
	margin: 0 auto;
}
@media screen and (max-width: 767px){
	.fs-c-linkService--line .fs-c-buttonContainer .fs-c-button--linkService--line.fs-c-button--secondary{
		width: 45%;
	}
}
@media screen and (max-width: 767px){
	html{
		scroll-padding-top: 80px;
	}
	#fs_ReviewsByProduct .fs-c-heading.fs-c-heading--page{
		padding-bottom: 10px;
	}
}

@media screen and (max-width: 767px){
	#fs_LinkRegisterConfirm #mainarea{
		width: 90%;
		margin: 0 auto;
	}
	#fs_LinkRegisterConfirm #fs_form .fs-c-buttonContainer--pair .fs-c-button--primary{
	width: 100%;
	}
	#fs_LinkRegisterConfirm .fs-c-agreementConfirmation{
		text-align: center;
	}
	#fs_LinkRegisterConfirm .fs-c-checkbox__label{
		justify-content: center;
	}
	#fs_LinkRegisterConfirm .fs-c-additionalCheckField .fs-c-checkbox{
		justify-content: center;
	}
	#fs_LinkRegisterConfirm .fs-c-inputField__field{
		text-align: center;
	}
}

/* カテゴリの閲覧履歴4カラム */
@media screen and (min-width: 768px){
	.cate-history .fr3-productListStatic.fr3-productListStatic__responsive_1{
		grid-template-columns: repeat(4, 1fr);
	}
}
@media screen and (max-width: 767px){
	.cate-history .fr3-productListStatic.fr3-productListStatic__responsive_1{
		grid-template-columns: repeat(2, 1fr);
	}
	.cate-history .fr3-productListStatic.fr3-productListStatic__responsive_1 article:nth-child(n+5){
		display: none;
	}
}

.fs-c-reviewStars::after{
padding-left: 10px;
}
/* .fs-c-reviewStars[data-ratingCount="1.0"]::after {
  content: "1.0";
}
.fs-c-reviewStars[data-ratingCount="2.0"]::after {
  content: "2.0";
}
.fs-c-reviewStars[data-ratingCount="3.0"]::after {
  content: "3.0";
}
.fs-c-reviewStars[data-ratingCount="4.0"]::after {
  content: "4.0";
}
.fs-c-reviewStars[data-ratingCount="5.0"]::after {
  content: "5.0";
} */
.fs-c-reviewStars{
	justify-content: flex-start;
	align-items: center;
}
.fs-c-reviewer__name__reviewNumber{
	display: none;
}

/* レビュー固定表示 */
.c-reviewList--col{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}

@media screen and (max-width: 767px){
	.c-reviewList--col{
		grid-template-columns: repeat(1,1fr);
	}
	.g-reviewSection:has(.c-reviewList--col) .g-headingContainer{
		margin-bottom: 0;
	}
}