<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS関数設定 */
:root {
	/* カラーパレット */
	--WHITE: #FFFFFF;
	--BLACK: #000000;

	--GRAY01: #F0F0F0;
	--GRAY02: #D1D1D1;
	--GRAY03: #A7A7A7;
	--GRAY04: #707070;


	--BLACK: #000000;
	--BLACK_OP20: rgba(0, 0, 0, 0.2);
	--BLACK_OP50: rgba(0, 0, 0, 0.5);
	--BLACK_OP70: rgba(0, 0, 0, 0.7);

	--RED01: #B10000;

	--YELLOW01: #EBFF00;
	--YELLOW02:#fffb00;
	--YELLOW03: #d5e700;

	/* テキストベースカラー */
	--TXT_COLOR: var(--BLACK);

	/* テキストベースカラー */
	--TXT_COLOR: var(--BLACK);

	/* ランキングカラー */
	--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 #b5b5b5;

	/* ベースフォント */
	--FF_BASE: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	/* 英数字フォント */
	--FF_EN: "Oswald", sans-serif;
	--FF_NUM: var(--FF_BASE);
	/* 明朝フォント */
	--FF_SERIF: "Noto Serif JP", serif;

	/* アニメーション */
	--ANIME_FADEIN: fadeIn .1s ease-in-out 0s forwards;
	--ANIME_FADEOUT: fadeOut .1s 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_28: clamp(22px, 2.5vw, 28px);
	--FZ_35: clamp(25px, 3vw, 35px);
	--FZ_50: clamp(30px, 4vw, 50px);
	--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;

	/* ブロック間 */
	--GAP_10: clamp( 5px, 1.1vw, 10px);
	--GAP_15: clamp( 10px, 1.2vw, 15px);
	--GAP_20: clamp( 15px, 1.7vw, 20px);
	--GAP_30: clamp( 20px, 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_70: clamp( 50px, 5.5vw, 70px);
	--GAP_5_CONST: 5px;
	--GAP_10_CONST: 10px;
	--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_SSS: 1000px;
	--PC_MAX_WIDTH_SS: 1200px;
	--PC_MAX_WIDTH_S: 1400px;
	--PC_MAX_WIDTH_M: 1600px;
	--PC_MAX_WIDTH_L: 1840px;

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

@media screen and (min-width: 768px){
	:root{
		--INNER_WIDTH: 95%;
		--GENERALSEC: clamp(70px, 8vw, 100px);
	}
}
@media screen and (max-width: 767px){
	:root{
	--INNER_WIDTH: 92%;
	--GENERALSEC: 40px;
	}
}
/* フェードインアニメーション */
@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: normal;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: 400;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.1em;
	width:100%;
	color: var(--TXT_COLOR);
	position:relative;
	z-index: 0;
	overflow-x: hidden;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--TXT_COLOR);
}
a img,a{
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all  0.1s;
}
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);
	-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);
}
time{
	font-family: var(--FF_NUM);
}
/* フォントCSS */
.mincho{
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
.soure_sans{
	font-family: 'Source Sans 3', 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-pgt{
	padding-top: var(--GENERALSEC);
}
.g-pgb{
	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-pgt--half{
	padding-top: var(--GENERALSEC_HALF);
}
.g-pgb--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"],
a{
  letter-spacing: 0.1em;
}
/* テキスト行間文字間 */
[class*="txt"],
[class*="excerpt"],
[class*="name"]{
  line-height: 2;
	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;
}
html.no-smooth-scroll {
	scroll-behavior: auto;
}
@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;
	}
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 30px;
	}
	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;
	}
	.inner,
	.inner--pc,
	.inner--l,
	.inner--m,
	.inner--s{
		width: var(--INNER_WIDTH);
	}
	.inner,
	.inner--pc{
		max-width: var(--PC_MAX_WIDTH_M);
	}
	.inner--l{
		max-width: var(--PC_MAX_WIDTH_L);
	}
	.inner--s{
		max-width: var(--PC_MAX_WIDTH_S);
	}
	.inner--ss{
		max-width: var(--PC_MAX_WIDTH_SS);
	}
	.sp{
		display: none !important;
	}
	.tategaki--pc{
		writing-mode: vertical-rl;
	}
	/* pc順番付与 */
	.orderPc-1st { order: 1; }
	.orderPc-2nd { order: 2; }
	.orderPc-3rd { order: 3; }
	.orderPc-4th { order: 4; }
	.orderPc-5th { order: 5; }
	.orderPc-6th { order: 6; }
	.orderPc-7th { order: 7; }
	.orderPc-8th { order: 8; }
	.orderPc-9th { order: 9; }
	.orderPc-10th { order: 10; }
}
@media screen and (max-width: 767px){
	body{
		font-size: var(--FZ_14_CONST);
		line-height: 1.6;
	}
	.inner,
	.inner--sp,
	.inner--l,
	.inner--m,
	.inner--s{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.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;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■loadingAnime■■■■■■■■■■■■■■■■■■■■■■ */
@media screen and (max-width: 767px){
	.loadingAnime{
		overflow: hidden;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 1000;
	}
	.loadingAnime::before,
	.loadingAnime::after{
		content: "";
		display: inline-block;
		background: var(--BLACK);
		width: 100%;
		height: 50%;
		position: absolute;
		left: 0;
		transition: all .1s ease-out .3s;
	}
	.loadingAnime::before{
		top: 0;
	}
	.loadingAnime::after{
		bottom: 0;
	}
	.loadingAnime.active::before{
		transform: translateY(-100%);
	}
	.loadingAnime.active::after{
		transform: translateY(100%);
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
#headerarea{
	background-color: var(--BLACK);
}
.site-container{
	position: relative;
	z-index: 1;
}
.g-user{
	display: flex;
}
.g-user li{
	flex: 1;
}
.g-user__link{
	display: block;
	background: no-repeat center center;
}
.g-user__link[href="/p/cart?type=purchase"]{
	position: relative;
}
.g-member__name{
	color: var(--WHITE);
}
.g-member__point{
	color: var(--WHITE);
	font-family: var(--FF_EN);
	width: fit-content;
	border-bottom: 1px solid var(--WHITE);
}
.g-userContainer{
	position: relative;
	transition: .2s;
}
.g-user{
	position: relative;
	z-index: 3;
}
.g-searchFormContainer{
	width: 100%;
	background-color: var(--BLACK);
	position: absolute;
	z-index: 1;
	transition: .2s;
}
.g-searchForm{
	display: flex;
	align-items: stretch;
}
.g-searchForm input[type="text"]{
	flex: 1;
	background-color: var(--WHITE);
}
.g-searchForm button{
	width: fit-content;
	color: var(--WHITE);
	border: 1px solid var(--WHITE);
}
.g-hotword li{
	flex: unset;
}
.g-hotword li a{
	color: var(--WHITE);
}
.g-hotword li a::before{
	content: "#";
}
@media (hover: hover){
	.g-user__link:hover{
		opacity: 1;
	}
	.g-user__link{
		position: relative;
	}
	.g-user__link::after{
		content: attr(data-text);
		display: block;
		white-space: nowrap;
		color: var(--WHITE);
		font-size: var(--FZ_10_CONST);
		position: absolute;
		bottom: -20px;
		left: 50%;
		transform: translateX(-50%);
		opacity: 0;
		transition: .1s;
	}
	.g-user__link:hover::after{
		opacity: 1;
	}
	.g-nav__lv-1--goTop:hover{
		background-position: right bottom 5px;
	}
}
@media screen and (min-width: 1001px){
	body{
		--PC_INNER_LEFT_SPACE: 2%;
	}
	.inner,
	.inner--pc,
	.inner--l,
	.inner--m,
	.inner--s{
		margin-left: var(--PC_INNER_LEFT_SPACE);
	}
	.site-wrap{
		--HEADER_WIDTH: clamp( 200px, 22vw, 240px);
	}
	#headerarea{
		width: var(--HEADER_WIDTH);
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99;
	}
	.site-container{
		padding-left: var(--HEADER_WIDTH);
	}
	.hd-logo{
		width: 160px;
		margin: 0 auto var(--MG_20);
	}
	.g-user{
		width: 170px;
		margin: 0 auto;
		gap: var(--GAP_15);
		position: relative;
	}
	.g-user__link{
		background-size: 50%;
		border-radius: 50%;
		border: 1px solid var(--WHITE);
		aspect-ratio: 1/1;
	}
	.g-user__link[href="/p/cart?type=purchase"] .fs-client-cart-count{
		top: -8px;
		right: -8px;
	}
	.hamburger-ps{
		display: none;
	}
	.hamburger{
		display: none !important;
	}
	.fat-nav{
		display: none;
	}
	.g-searchFormContainer{
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		padding: 13px 15px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
	.g-userContainer.is-active .g-searchFormContainer{
		left: 100%;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		width: 350px;
	}
	.g-searchForm{
		gap: var(--GAP_10);
	}
	.g-searchForm input[type="text"]{
		padding: 10px;
	}
	.g-searchForm button{
		padding: 0 10px;
	}
	.g-hotword{
		gap: var(--GAP_5_CONST);
		margin-top: var(--MG_5);
	}
	.g-hotword li{
		line-height: 1;
	}
	.g-hotword li a{
		font-size: var(--FZ_12_CONST);
	}
}
@media screen and (max-width: 1000px){
	.inner,
	.inner--pc,
	.inner--l,
	.inner--m,
	.inner--s{
		margin-left: auto;
		margin-right: auto;
	}
	#headerarea{
		padding: 10px 0;
	}
	.hd-logo{
		width: 60px;
		margin: 0 auto;
	}
	#headerarea .g-member,
	.g-nav{
		display: none;
	}
	.g-userContainer{
		width: 100%;
		z-index: 999;
		position: fixed;
		left: 0;
		bottom: 0;
	}
	.g-user{
		background-color: var(--BLACK);
		padding: 10px 0;
		overflow: hidden;
	}
	.g-user:has(.g-user__search.is-active){
		overflow: visible;
	}
	.g-user__link{
		background-size: 20px;
		background-position: top 10px center;
		position: relative;
		height: 54px;
		width: 100%;
	}
	.g-user__link::after{
		content: attr(data-text);
		display: block;
		width: 100%;
		text-align: center;
		color: var(--WHITE);
		position: absolute;
		font-size: var(--FZ_10_CONST);
		bottom: 0;
	}
	.g-user__link[href="/p/cart?type=purchase"] .fs-client-cart-count{
		top: 0;
		left: 55%;
	}
	.g-searchFormContainer{
		left: 0;
		top: 0;
		transform: translateY(0%);
		padding: 20px;
	}
	.g-userContainer.is-active .g-searchFormContainer{
		transform: translateY(-100%);
	}
	.g-searchForm{
		gap: var(--GAP_10_CONST);
	}
	.g-searchForm input[type="text"]{
		padding: 10px;
	}
	.g-searchForm button{
		padding: 0 10px;
	}
	.g-hotword{
		gap: var(--GAP_5_CONST);
		margin-top: var(--MG_10);
	}
	.g-hotword li{
		line-height: 1;
	}
	.g-hotword li a{
		font-size: var(--FZ_12_CONST);
	}
}
@media screen and (min-width: 768px){
	.g-member{
		margin-top: var(--MG_30);
	}
	.g-member__name{
		text-align: center;
		font-size: var(--FZ_14);
		padding: 0 20px;
	}
	.g-member__point{
		font-size: var(--FZ_18);
	}
	.hd-inner{
		width: 120px;
		margin-left: auto;
		margin-right: auto;
	}
	.g-nav{
		margin-top: var(--MG_30);
		padding-bottom: 30px;
		height: calc(100vh - 350px);
		overflow-y: scroll;
	}
	.g-nav__lv-1{
		display: block;
		color: var(--WHITE);
		font-family: var(--FF_EN);
		font-size: var(--FZ_20);
		line-height: 1;
	}
	a.g-nav__lv-1{
		padding-top: var(--MG_30);
	}
	a.g-nav__lv-1:visited{
		color: var(--WHITE);
	}
	.g-nav__lv-1--goTop{
		padding-right: 20px;
		background: url(../images/common/arrow_top.svg) no-repeat right bottom / 10px;
		width: fit-content;
	}
	.g-nav__lv-2{
		display: grid;
		gap: var(--GAP_10);
		margin: var(--MG_20) 0;
	}
	.g-nav__lv-2 li a{
		display: block;
		color: var(--WHITE);
		font-size: var(--FZ_14);
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
/* .ft-upr */
.ft-upr{
	border: 1px solid var(--BLACK);
	border-left: none;
	border-right: none;
}
@media screen and (min-width: 1351px){
	.ft-info{
		width: var(--INNER_WIDTH);
		margin-left: var(--PC_INNER_LEFT_SPACE);
		max-width: var(--PC_MAX_WIDTH_M);
		display: grid;
		grid-template-columns: repeat(2,1fr);
	}
	.ft-info article:first-child{
		border-right: 1px solid var(--BLACK);
		padding-right: var(--GAP_30);
	}
	.ft-info article:last-child{
		padding-left: var(--GAP_30);
	}
}
@media screen and (min-width: 1001px) and (max-width: 1350px){
	.ft-info article:first-child{
		border-bottom: 1px solid var(--BLACK);
	}
	.ft-info article{
		padding-right: var(--GAP_30);
		padding-left: var(--GAP_30);
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px){
	.ft-info{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
		max-width: var(--PC_MAX_WIDTH_M);
		display: grid;
		grid-template-columns: repeat(2,1fr);
	}
	.ft-info article:first-child{
		border-right: 1px solid var(--BLACK);
		padding-right: var(--GAP_30);
	}
	.ft-info article:last-child{
		padding-left: var(--GAP_30);
	}
}
@media screen and (min-width: 768px){
	.ft-info article{
		padding-top: var(--GENERALSEC_HALF);
		padding-bottom: var(--GENERALSEC_HALF);
	}
	.ft-info__heading.g-headingContainer{
		margin-bottom: var(--MG_20);
	}
	.ft-info__heading .g-heading__en{
		font-size: var(--FZ_60);
	}
	.ft-info__heading .g-heading--vt{
		gap: var(--GAP_20);
	}
	.ft-info__heading .g-headingArrow{
		--G_HEADING_ARROW_LINE_HEIGHT: 7px;
		bottom: 25px;
	}
	.ft-info__heading .g-headingArrow::after{
		width: 40px;
	}
	.ft-info__heading .g-headingArrow--link{
		width: 60px;
	}
	.ft-info__desc{
		font-size: var(--FZ_14);
	}
}
@media screen and (max-width: 767px){
	.ft-info article{
		padding: 30px calc((100% - var(--INNER_WIDTH)) / 2);
	}
	.ft-info article:first-child{
		border-bottom: 1px solid var(--BLACK);
	}
	.ft-info__heading .g-heading--vt .g-heading__en{
		line-height: 1;
	}
	.ft-info__desc{
		font-size: var(--FZ_12_CONST);
	}
}
/* ft-btm */
.g-sns{
	display: flex;
}
.g-sns li a{
	display: block;
	mask: no-repeat center center / 100%;
	-webkit-mask: no-repeat center center / 100%;
	aspect-ratio: 1/1;
}
.ft-sns li a{
	background-color: var(--BLACK);
}
.ft-linkContainer{
	display: grid;
}
.ft-link{
	display: flex;
	flex-wrap: wrap;
}
.ft-link li{
	position: relative;
}
.ft-link li::after{
	content: "";
	display: inline-block;
	background: var(--BLACK);
	width: 1px;
	position: absolute;
}
.ft-copy{
	font-family: var(--FF_EN);
	font-weight: 500;
	letter-spacing: 0.01em;
}
@media screen and (min-width: 1001px){
	.ft-btm{
		padding-left: var(--GAP_60);
	}
}
@media screen and (max-width: 1000px){
	#footerarea{
		padding-bottom: var(--GENERALSEC);
	}
}
@media screen and (min-width: 768px){
	.ft-btm{
		display: grid;
		grid-template-columns: clamp( 120px, 15vw, 216px) 1fr;
		align-items: center;
		padding-top: var(--GENERALSEC);
	}
	.ft-linkContainer{
		gap: var(--GAP_50);
	}
	.g-sns{
		gap: var(--GAP_20_CONST);
		justify-content: flex-end;
	}
	.g-sns li{
		width: 40px;
	}
	.ft-link{
		justify-content: flex-end;
		width: 100%;
		max-width: 470px;
		margin-left: auto;
		row-gap: var(--GAP_15);
	}
	.ft-link li{
		padding-left: 15px;
		margin-left: 15px;
	}
	.ft-link li:first-child::after,
	.ft-link li:has(a[href="/f/guide"])::after,
	.ft-link li:has(a[href="/contact/"])::after,
	.ft-link li:has(a[href="/p/about/terms"])::after{
		content: none;
	}
	.ft-link li::after{
		top: 7px;
		height: 15px;
		left: 0;
	}
	.ft-link li a{
		font-size: 14px;
	}
	.ft-copy{
		font-size: var(--FZ_60);
		text-align: right;
		margin-top: var(--MG_50);
	}
}
@media screen and (max-width: 767px){
	#footerarea{
		padding-bottom: var(--MG_80);
	}
	.ft-btm{
		margin-top: var(--MG_80);
	}
	.ft-logo{
		width: 130px;
		margin: 0 auto var(--MG_20);
	}
	.ft-linkContainer{
		gap: var(--GAP_20_CONST);
	}
	.g-sns{
		gap: var(--GAP_20_CONST);
	}
	.g-sns li{
		width: 40px;
	}
	.ft-link{
		row-gap: var(--GAP_10_CONST);
	}
	.ft-link li{
		padding-right: var(--GAP_15);
		margin-right: var(--GAP_15);
	}
	.ft-link li::after{
		top: 6px;
		height: 12px;
		right: 0;
	}
	.ft-link li a{
		font-size: var(--FZ_14);
	}
	.ft-link li:has(a[href="/p/about/terms"])::after{
		content: none;
	}
	.ft-copy{
		font-size: var(--FZ_25);
		margin-top: var(--MG_30);
	}
}


/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -----------------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: .1s 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);
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
}
.popup-overlay button.closePopup::before{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	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: var(--BLACK);
	--FS_BTN_COLOR_1: var(--BLACK);
	--FS_BTN_COLOR_2: #7a7a7a;
	--REVIEW_COLOR: var(--YELLOW03);
}
/* 内部幅設定 */
#wrapper{
	margin-left: auto;
	margin-right: auto;
	width: var(--INNER_WIDTH);
	max-width: var(--PC_MAX_WIDTH);
	margin-bottom: var(--GENERALSEC);
}
#mainarea{
	flex: 1;
	padding-top: var(--GENERALSEC_HALF);
}
#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 &gt; .flex{
		align-items: flex-start;
	}
}
/* カートカウント */
.fs-client-cart-count{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	aspect-ratio: 1/1;
	width: 20px;
	font-size: 12px;
	background-color: var(--YELLOW01);
	color: var(--TXT_COLOR);
	font-family: var(--FF_EN);
	border-radius: 50%;
	position: absolute;
}
/* 商品マークリセット */
.fs-c-productMarks{
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	--BDRS: 0px;
}
.fs-c-productMark{
	gap: 5px;
}
.fs-c-productMark__mark{
	width: fit-content;
}
.fs-c-productMark li,
.fs-c-productMark span,
.fs-c-productMarks &gt; .fs-c-mark .fs-c-mark__label{
	margin: 0;
	font-size: 11px;
  background-color: var(--YELLOW01);
  border-radius: var(--BDRS);
}
.fs-c-productMark__mark,
.fs-c-productMarks &gt; .fs-c-mark .fs-c-mark__label{
	display: inline-block;
	padding: 6px 8px 6px;
	line-height: 1;
}
.fs-c-productMark img{
	width: auto;
	height: 20px;
}
.fs-c-productMarks &gt; .fs-c-mark{
	line-height: 1;
}
/* 1回のみ・定期 */
.fs-c-mark--normalAndSubscription .fs-c-mark__label{
	background-color: var(--BROWN02);
	color: var(--WHITE);
	border-radius: var(--BDRS);
}
/* 定期販売 */
.fs-c-mark--subscription .fs-c-mark__label{
	background-color: #D21341;
	color: var(--WHITE);
	border-radius: var(--BDRS);
}
/* 初回特別価格あり */
.fs-c-mark--firstTimeSpecialPrice .fs-c-mark__label{
	background-color: #FF506F;
	color: var(--WHITE);
	border-radius: var(--BDRS);
}
/* パンくずリセット  */
.fs-c-breadcrumb__list {
  padding: 0;
	max-width: var(--PC_MAX_WIDTH);
	margin-left: auto;
	margin-right: auto;
}
.fs-c-breadcrumb__list &gt; 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: " &gt; ";
}
.fs-c-breadcrumb li,
.fs-c-breadcrumb li a {
	color: var(--TXT_COLOR);
}
.fs-c-breadcrumb li a{
	text-decoration: underline;
}
@media screen and (min-width: 768px) {
	.fs-c-breadcrumb {
		margin: 0 auto;
		font-size: 14px;
    margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px) {
	.fs-c-breadcrumb {
		margin: 0 auto;
		padding-top: var(--GENERALSEC_HALF);
		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-rating__value{
	color: var(--TXT_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;
}
#wp-pagenaviContainer &gt; span.pages{
	display: block;
	text-align: center;
	margin-top: 10px;
}
.found-postContainer,
.fs-c-listControl__status{
	font-size: 16px;
	text-align: center;
	margin-bottom: 30px;
	padding-top: 1em;
}
.fs-c-pagination &gt; *,
.wp-pagenavi &gt; *{
	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{
	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,
#wp-pagenaviContainer a.previouspostslink,
#wp-pagenaviContainer 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;
}
#wp-pagenaviContainer a.previouspostslink .navi-prev,
#wp-pagenaviContainer a.nextpostslink .navi-next{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.fs-c-pagination__item--prev::before,
.fs-c-pagination__item--next::before,
#wp-pagenaviContainer a.previouspostslink .navi-prev::before,
#wp-pagenaviContainer a.nextpostslink .navi-next::before{
	font-family: "Font Awesome 5 Pro" !important;
	font-weight: 400;
	display: inline-block;
  color: var(--BLACK);
  font-size: 16px;
  vertical-align: text-bottom;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.fs-c-pagination__item--prev::before,
#wp-pagenaviContainer a.previouspostslink .navi-prev::before{
	content: "\f104";
}
.fs-c-pagination__item--next::before,
#wp-pagenaviContainer a.nextpostslink .navi-next::before{
	content: "\f105";
}
@media screen and (min-width: 768px){
	.fs-c-pagination,
	.wp-pagenavi{
		font-size: 18px;
		gap: 10px;
	}
	#wp-pagenaviContainer {
		margin: 70px auto 0;
	}
	.fs-c-pagination &gt; *,
	.wp-pagenavi &gt; *{
		width: 45px;
	}
}
@media (hover: hover){
	.fs-c-pagination__item--next:hover{
		color: var(--WHITE);
	}
}
@media screen and (max-width: 767px){
	.fs-c-pagination,
	.wp-pagenavi{
		font-size: 16px;
		gap: 10px;
	}
	#wp-pagenaviContainer {
		margin: 40px auto 0;
	}
	.fs-c-pagination &gt; *,
	.wp-pagenavi &gt; *{
		width: 34px;
	}
}
/* aiレコメンドリセット */
.fs-p-heading--lv2,
.fr3-item__rankContainer{
	display: none;
}
.fr3-productListStatic{
	padding: 0 !important;
}
.fr3-item__productPrice__price{
	font-size: unset;
}
@media (hover: hover){
	.fr3-item a:hover{
		color: var(--TXT_COLOR);
	}
}
/* -------------------g-heading-------------------- */
.g-headingContainer{
	position: relative;
}
.g-headingContainer--white{
	color: var(--WHITE);
}
.g-heading__en{
	font-family: var(--FF_EN);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.01em;
}
.g-heading__ja{
	line-height: 1.3;
	font-weight: 700;
}
.g-headingArrow{
	position: absolute;
	right: 0;
	bottom: 0;
	overflow: hidden;
}
.g-headingArrow::before,
.g-headingArrow::after{
	content: "";
	display: inline-block;
	background: var(--BLACK);
	height: var(--G_HEADING_ARROW_LINE_HEIGHT);
	position: absolute;
}
.g-headingContainer--white .g-headingArrow::before,
.g-headingContainer--white .g-headingArrow::after{
	background: var(--WHITE);
}
.g-headingArrow::before{
	width: 100%;
	bottom: 0;
}
.g-headingArrow::after{
	transform-origin: right bottom;
	transform: rotate(45deg);
}
.g-headingArrow--scroll span{
	font-family: var(--FF_EN);
	font-weight: 500;
	position: absolute;
	left: 0;
}
@media (hover: hover){
	.g-headingArrow{
		transition: .3s;
	}
	.g-headingArrow:hover{
		cursor: pointer;
		opacity: 1;
		transform: translateX(10px);
	}
}
@media screen and (min-width: 768px){
	.g-headingContainer{
		margin-bottom: var(--MG_30);
	}
	.g-heading{
		display: flex;
	}
	.g-heading--hn{
		gap: var(--GAP_10);
		align-items: flex-end;
	}
	.g-heading--vt{
		flex-direction: column;
		gap: var(--GAP_20);
	}
	.g-heading--vt .g-heading__en{
		line-height: 0.75;
		font-size: var(--FZ_60);
	}
	.g-heading__en{
		font-size: var(--FZ_70);
	}
	.g-heading__ja{
		font-size: var(--FZ_14_CONST);
	}
	.g-headingArrow{
		--G_HEADING_ARROW_LINE_HEIGHT: 10px;
		height: 35px;
	}
	.g-headingArrow--link{
		width: 90px;
	}
	.g-headingArrow--scroll{
		padding-bottom: 5px;
		width: 250px;
	}
	.g-headingArrow::before{
		right: 12px;
	}
	.g-headingArrow::after{
		width: 50px;
		right: 3px;
		bottom: -10px;
	}
	.g-headingArrow--scroll span{
		font-size: var(--FZ_20);
		top: -7px;
	}
	
}
@media screen and (max-width: 767px){
	.g-headingContainer{
		margin-bottom: var(--MG_20);
	}
	.g-heading{
		display: grid;
		gap: var(--GAP_10_CONST);
	}
	.g-heading &gt; span{
		display: block;
	}
	.g-heading__en{
		font-size: var(--FZ_60);
	}
	.g-heading--vt .g-heading__en{
		font-size: var(--FZ_50);
	}
	.g-heading__ja{
		font-size: var(--FZ_14_CONST);
	}
	.g-headingArrow{
		width: 50px;
	}
	.g-headingArrow::before{
		right: 12px;
	}
	.g-headingArrow::after{
		width: 32px;
		right: 3px;
		bottom: -10px;
	}
	.g-headingArrow{
		--G_HEADING_ARROW_LINE_HEIGHT: 6px;
		height: 35px;
	}
	.g-headingArrow--scroll{
		width: 80px;
	}
	.g-headingArrow--scroll span{
		font-size: var(--FZ_14_CONST);
		top: 7px;
	}
}
/* -------------------AIレコメンド-------------------- */
.fr3-item__image{
	aspect-ratio: 285/356;
	object-fit: cover;
}
.fr3-item__productPrice{
	font-weight: 500;
}
[data-frame-id="rcmditem"] .fr3-productListStatic,
[data-frame-id="pickupitem"] .fr3-productListStatic{
	opacity: 0;
	transition: opacity .3s linear;
}
[data-frame-id="rcmditem"] .fr3-productListStatic.slick-initialized,
[data-frame-id="pickupitem"] .fr3-productListStatic.slick-initialized{
	opacity: 1;
}
[data-frame-id="historyitem"] .fr3-item__image{
	aspect-ratio: 1/1;
}
[data-frame-id="historyitem"] .fr3-item__productName,
[data-frame-id="historyitem"] .fr3-item__productPrice{
	display: none;
}
[data-frame-id="rcmditem"] .fr3-productListStatic,
[data-frame-id="pickupitem"] .fr3-productListStatic{
	display: block;
}
@media screen and (min-width: 768px){
	[data-frame-id="rcmditem"] .slick-slide,
  [data-frame-id="pickupitem"] .slick-slide{
		margin: 0 var(--GAP_10);
	}
  .fr3-productListStatic{
		gap: var(--GAP_50) var(--GAP_20);
	}
	.fr3-item__productName{
		font-size: var(--FZ_14_CONST);
	}
	.fr3-item__productPrice__price{
		font-size: var(--FZ_16_CONST);
	}
	.fr3-item__productPrice__addon{
		font-size: var(--FZ_14_CONST);
	}
	.historyitem-heading .g-heading__en{
		font-size: var(--FZ_60);
	}
	[data-frame-id="historyitem"] .fr3-productListStatic{
		grid-template-columns: repeat(5,1fr);
		gap: var(--GAP_15);
	}
}
@media screen and (max-width: 767px){
	[data-frame-id="rcmditem"] .slick-slide,
  [data-frame-id="pickupitem"] .slick-slide{
		margin: 0 var(--GAP_5_CONST);
	}
	[data-frame-id="rcmditem"] .slick-list,
  [data-frame-id="pickupitem"] .slick-list,
	.new-arrivals .slick-list{
		padding: 0 5% 0 10px!important;
	}
  .fr3-productListStatic{
		gap: var(--GAP_30_CONST) var(--GAP_10_CONST);
	}
	.fr3-item__productName{
		font-size: var(--FZ_12_CONST);
	}
	.fr3-item__productPrice__price{
		font-size: var(--FZ_14_CONST);
	}
	.fr3-item__productPrice__addon{
		font-size: var(--FZ_12_CONST);
	}
	[data-frame-id="historyitem"] .fr3-productListStatic{
		display: flex;
		padding-left: calc((100% - var(--INNER_WIDTH)) / 2) !important;
		padding-right: calc((100% - var(--INNER_WIDTH)) / 2) !important;
		overflow-y: scroll;
		overflow-x: auto;
		-ms-overflow-style: none;/* IE, Edge 対応 */
		scrollbar-width: none;/* Firefox 対応 */
		gap: var(--GAP_10);
	}
	[data-frame-id="historyitem"] .fr3-productListStatic::-webkit-scrollbar{/* Chrome, Safari 対応 */
		display: none;
	}
	[data-frame-id="historyitem"] .fr3-item{
		min-width: 106px;
		max-width: 106px;
	}
}
/* -------------------bgcolor---------------------- */
.bgcolor--black{
	background-color: var(--BLACK);
}
.bgcolor--gray{
	background-color: var(--GRAY01);
}
/* -------------------coordinate-------------------- */
.coordinate-link{
	text-align: center;
}
.coordinate-link a{
	color: var(--WHITE);
	font-family: var(--FF_EN);
	font-weight: 500;
}
@media screen and (min-width: 768px){
  .coordinate-link a{
		font-size: var(--FZ_20);
	}
}
@media screen and (max-width: 767px){
	.coordinate-link a{
		font-size: var(--FZ_20);
	}
}
/* -------------------g-btn-------------------- */
.g-btnContainer{
	display: grid;
}
.g-btn{
	width: 100%;
}
.g-btn a{
	display: block;
	text-align: center;
	font-weight: 700;
	border: 1px solid var(--BLACK);
	position: relative;
}
.g-btn a::before{
	content: "";
	display: inline-block;
	background: var(--BLACK);
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.g-btn--white a{
	background-color: var(--WHITE);
	border-color: var(--WHITE);
}
.g-btn--black a{
	background-color: var(--BLACK);
	color: var(--WHITE);
}
.g-btn--black a::before{
	background: var(--WHITE);
}
.g-btn--center{
	margin-left: auto;
	margin-right: auto;
}
@media (hover: hover){
	.g-btn a,
	.g-btn a::before{
		transition: .7s;
	}
	.g-btn a:hover{
		opacity: 1;
	}
	.g-btn a:hover::before{
		width: 60px;
	}
	.g-btn--white a:hover{
		color: var(--WHITE);
		background-color: var(--BLACK);
	}
	.g-btn--white a:hover::before{
		background: var(--WHITE);
	}
	.g-btn--black a:hover{
		color: var(--BLACK);
		background-color: var(--WHITE);
	}
	.g-btn--black a:hover::before{
		background: var(--BLACK);
	}
}
@media screen and (min-width: 768px){
	.g-btnContainer{
		margin-top: var(--MG_40);
	}
	.g-btnContainer--hn{
		display: flex;
		gap: var(--GAP_30);
		justify-content: center;
	}
	.g-btnContainer--hnPc{
		display: flex;
		gap: var(--GAP_30);
		justify-content: center;
	}
	.g-btnContainer--vt{
		gap: var(--GAP_30);
	}
	.g-btn{
		max-width: 300px;
	}
	.g-btn a{
		font-size: var(--FZ_14_CONST);
		padding: 10px 0;
	}
  .g-btn a::before{
		width: 30px;
	}
}
@media screen and (max-width: 767px){
	.g-btnContainer{
		margin-top: var(--MG_30);
	}
	.g-btnContainer--hn{
		gap: var(--GAP_20);
	}
	.g-btnContainer--hnPc{
		display: grid;
		gap: var(--GAP_20);
	}
	.g-btnContainer--hnPc .g-btn{
		margin: 0 auto;
	}
	.g-btnContainer--vt{
		gap: var(--GAP_20);
	}
	.g-btn{
		max-width: 250px;
	}
	.g-btn a{
		font-size: var(--FZ_14_CONST);
		padding: 10px 0;
	}
  .g-btn a::before{
		width: 20px;
	}
}
/* ------------------g-txt------------------ */
.g-txt{
	display: grid;
}
.g-txt mark{
	background-color: var(--GRAY01);
}
.g-txt__list &gt; li{
	position: relative;
}
.g-txt__list &gt; 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,.g-txt__note{
	position: relative;
	color: var(--GRAY04);
	font-size: var(--FZ_13);
	padding-left: 15px;

}
.g-txt__note li::before{
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}
.g-txt__order{
	counter-reset: original-counter;
}
.g-txt__order &gt; li::before{
	content: counter(original-counter)'.';
	counter-increment: original-counter;
}
.g-txt a{
	text-decoration: underline;
}
@media screen and (min-width: 768px){
	.g-txt *{
		font-size: var(--FZ_15);
	}
	.g-txt p:has(mark){
		line-height: 2.5;
	}
	.g-txt &gt; p:not(:first-child){
		margin-top: var(--GAP_20);
	}
	.g-txt &gt; *+.g-txt__list{
		margin-top: var(--GAP_20);
	}
	.g-txt mark{
		padding: 2px 5px 3px;
	}
	.g-txt__list &gt; li{
		padding-left: 15px;
	}
	.g-txt__list &gt; li::before{
		width: 4px;
		top: 14px;
	}
}
@media screen and (max-width: 767px){
	.g-txt *{
		font-size: var(--FZ_14);
	}
	.g-txt p:has(mark){
		line-height: 2.5;
	}
	.g-txt &gt; p:not(:first-child){
		margin-top: var(--GAP_20);
	}
	.g-txt &gt; *+.g-txt__list{
		margin-top: var(--GAP_20);
	}
	.g-txt mark{
		padding: 2px 5px 3px;
	}
	.g-txt__list &gt; li{
		padding-left: 12px;
	}
	.g-txt__list &gt; li::before{
		width: 5px;
		top: 13px;
	}
}
/* ------------------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);
	}
	.g-descWithImg--crossList li:nth-child(even){
		flex-direction: row-reverse;
	}
	.g-descWithImg li &gt; *{
		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);
	}
}
/* ------------------blog-------------------- */
.tp-blog__time{
  font-size: var(--FZ_12_CONST);
}
.tp-blog__ttl,
.tp-blog__excerpt p{
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.tp-blog__ttl{
  font-weight: 900;
  -webkit-line-clamp: 2;
}
.tp-blog__excerpt p{
  line-height: 1.7;
  -webkit-line-clamp: 3;
}
@media (hover: hover){
  .tp-blog_btnContainer .g-btn a:hover::before{
    width: 40px;
  }
}
@media screen and (min-width: 768px){
  .tp-blog{
    grid-template-columns: repeat(5,1fr);
    gap: var(--GAP_50) var(--GAP_40);
  }
	.tp-blog article .tp-blog__thumb{
		margin-bottom: var(--MG_20);
	}
	.tp-blog article .tp-blog__thumb img{
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}
  /* .tp-blog article:nth-of-type(1) .tp-blog__thumb,
  .tp-blog article:nth-of-type(2) .tp-blog__thumb{
    margin-bottom: var(--MG_20);
  }
  .tp-blog article:nth-of-type(3),
  .tp-blog article:nth-of-type(4){
    display: grid;
    grid-template-columns: 192px 1fr;
    column-gap: var(--GAP_10);
  }
  .tp-blog article:nth-of-type(3) .tp-blog__time,
  .tp-blog article:nth-of-type(3) .tp-blog__ttl,
  .tp-blog article:nth-of-type(3) .tp-blog_btnContainer,
  .tp-blog article:nth-of-type(4) .tp-blog__time,
  .tp-blog article:nth-of-type(4) .tp-blog__ttl,
  .tp-blog article:nth-of-type(4) .tp-blog_btnContainer{
    grid-column: span 2;
  }
  .tp-blog article:nth-of-type(3) .tp-blog__time,
  .tp-blog article:nth-of-type(4) .tp-blog__time{
    order: 1;
  }
  .tp-blog article:nth-of-type(3) .tp-blog__ttl,
  .tp-blog article:nth-of-type(4) .tp-blog__ttl{
    order: 2;
  }
  .tp-blog article:nth-of-type(3) .tp-blog__thumb,
  .tp-blog article:nth-of-type(4) .tp-blog__thumb{
    order: 3;
  }
  .tp-blog article:nth-of-type(3) .tp-blog__excerpt,
  .tp-blog article:nth-of-type(4) .tp-blog__excerpt{
    order: 4;
  }
  .tp-blog article:nth-of-type(3) .tp-blog_btnContainer,
  .tp-blog article:nth-of-type(4) .tp-blog_btnContainer{
    order: 5;
  } */
  .tp-blog__time{
    margin-bottom: var(--MG_10);
  }
  .tp-blog__ttl{
    font-size: var(--FZ_20);
  }
  /* .tp-blog article:nth-of-type(1) .tp-blog__ttl,
  .tp-blog article:nth-of-type(2) .tp-blog__ttl{
    margin-bottom: var(--MG_10);
  }
  .tp-blog article:nth-of-type(3) .tp-blog__ttl,
  .tp-blog article:nth-of-type(4) .tp-blog__ttl{
    margin-bottom: var(--MG_15);
  } */
  .tp-blog__excerpt{
    font-size: var(--FZ_14);
  }
  .tp-blog_btnContainer{
    margin-top: var(--MG_20);
  }
  .tp-blog_btnContainer .g-btn{
    max-width: 200px;
    margin-left: auto;
  }
  .tp-blog_btnContainer .g-btn a{
    font-size: var(--FZ_12);
  }
  .tp-blog_btnContainer .g-btn a::before{
    width: 20px;
  }
}
@media screen and (max-width: 767px){
  .tp-blog{
    gap: var(--GAP_20_CONST);
		grid-template-columns: repeat(2,1fr);
  }
	.tp-blog article .tp-blog__thumb {
		margin-bottom: var(--MG_10);
	}
	.tp-blog article .tp-blog__thumb img{
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}
  /* .tp-blog article:nth-of-type(n+4){
    display: none;
  } */
  /* .tp-blog article:nth-of-type(1) .tp-blog__thumb{
    margin-bottom: var(--MG_10);
  } */
  /* .tp-blog article:nth-of-type(2),
  .tp-blog article:nth-of-type(3){
    display: grid;
    grid-template-columns: 158px 1fr;
    column-gap: var(--GAP_10_CONST);
  } */
  /* .tp-blog article:nth-of-type(2) .tp-blog__time,
  .tp-blog article:nth-of-type(2) .tp-blog__ttl,
  .tp-blog article:nth-of-type(2) .tp-blog_btnContainer,
  .tp-blog article:nth-of-type(3) .tp-blog__time,
  .tp-blog article:nth-of-type(3) .tp-blog__ttl,
  .tp-blog article:nth-of-type(3) .tp-blog_btnContainer{
    grid-column: span 2;
  }
  .tp-blog article:nth-of-type(2) .tp-blog__time,
  .tp-blog article:nth-of-type(3) .tp-blog__time{
    order: 1;
  }
  .tp-blog article:nth-of-type(2) .tp-blog__ttl,
  .tp-blog article:nth-of-type(3) .tp-blog__ttl{
    order: 2;
  }
  .tp-blog article:nth-of-type(2) .tp-blog__thumb,
  .tp-blog article:nth-of-type(3) .tp-blog__thumb{
    order: 3;
  }
  .tp-blog article:nth-of-type(2) .tp-blog__excerpt,
  .tp-blog article:nth-of-type(3) .tp-blog__excerpt{
    order: 4;
  }
  .tp-blog article:nth-of-type(2) .tp-blog_btnContainer,
  .tp-blog article:nth-of-type(3) .tp-blog_btnContainer{
    order: 5;
  } */
  .tp-blog__time{
    margin-bottom: var(--MG_5);
  }
  .tp-blog__ttl{
    font-size: var(--FZ_20);
  }
  /* .tp-blog article:nth-of-type(1) .tp-blog__ttl,
  .tp-blog article:nth-of-type(2) .tp-blog__ttl{
    margin-bottom: var(--MG_10);
  }
  .tp-blog article:nth-of-type(3) .tp-blog__ttl,
  .tp-blog article:nth-of-type(4) .tp-blog__ttl{
    margin-bottom: var(--MG_15);
  } */
  .tp-blog__excerpt{
    font-size: var(--FZ_14);
  }
  .tp-blog_btnContainer{
    margin-top: var(--MG_10);
  }
  .tp-blog_btnContainer .g-btn{
    max-width: unset;
    text-align: center;
  }
  .tp-blog_btnContainer .g-btn a{
    display: inline-block;
    background-color: unset;
    border: unset;
    color: var(--TXT_COLOR);
    font-weight: 300;
    font-size: var(--FZ_14);
    letter-spacing: 0.2em;
    text-decoration: underline;
    padding: 0;
  }
  .tp-blog_btnContainer .g-btn a::before{
    content: none;
  }
}
/* -------------------tp-news-------------------- */
.tp-news{
  background-color: var(--BLACK);
}
.tp-news__ttl{
  color: var(--WHITE);
  font-family: var(--FF_EN);
}
.tp-news__list{
  display: grid;
  gap: var(--GAP_10);
}
.tp-news__list li{
  display: flex;
  gap: var(--GAP_15);
}
.tp-news__list time,
.tp-news__list a{
  color: var(--WHITE);
}
@media screen and (min-width: 768px){
  .tp-news{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--GAP_20);
    padding: 10px;
  }
  .tp-news__ttl{
    font-size: var(--FZ_22);
  }
  .tp-news__list time,
  .tp-news__list a{
    font-size: var(--FZ_12);
  }
}
@media screen and (max-width: 767px){
  .tp-news{
    padding: 15px 10px;
  }
  .tp-news__list li{
    justify-content: center;
  }
  .tp-news__list time,
  .tp-news__list a{
    font-size: var(--FZ_12_CONST);
  }
}
/* ------------------- -------------------- */
@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){
  
}





/* 仮公開 */
#footerarea{
	margin-top: var(--GENERALSEC);
}
.allBrand__link{
	display: none;
}
.fn-column+.g-btnContainer{
	display: flex !important;
	justify-content: center;
}



/* 20240821追記 */
.fn-category .box-inner-content li a{
	color: #fff;
}
.box-inner-content{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.box-inner-content li a{
	display: block;
	padding: 5px 0;
}

/* 20240911 新着商品手動 */
.top-productList {
	overflow-x: scroll;
	overflow-y: hidden;
  -ms-overflow-style: none;  /* Internet Explorer/Edge */
  scrollbar-width: none;  /* Firefox */
}

/* スクロールバーを非表示にする */
.container::-webkit-scrollbar {
  display: none;  /* Chrome, Safari, Opera */
}
.top-productList .fs-c-productList__list{
	width: fit-content;
	display: flex;
}
.top-productList .fs-c-productListItem {
	width: 60vw;
	max-width: 280px;
}
@media screen and (max-width: 767px){
	.top-productList .fs-c-productListItem {
    width: 40vw;
    max-width: 280px;
	}
	.top-productList .fs-c-productList__list{
		margin: 0px 0 10px;
		gap:10px;
	}
}

/* 2024 0913 追記 */
@media screen and (max-width: 767px){
	.classic-about-us .g-txt * {
		font-size: 13px;
	}
	.classic-brand .g-txt * {
		font-size: 14px;
	}
}

.lineContact-btn{
	background-color: var(--BLACK);
	border: 1px solid #fff;
	position: fixed;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	z-index: 10;
}
.FixBtn img {
	margin: 0 auto;
}
.FixBtn span{
	color: #fff;
	width: 100%;
	display: block;
	font-size: 12px;
	text-align: center;
	font-weight: bold;
}
/* ライン追従ボタン */
@media screen and (min-width: 768px){
	.lineContact-btn{
		bottom: 30px;
		right: 30px;
		width: 120px;
		height: 120px;
		border-radius: 50%;
	}
	.FixBtn img {
		width: 40%;
	}
	.lineContact-btn:hover{
		opacity: .8;
	}
	.FixBtn span{
		font-size: 12px;
	}
}
@media screen and (max-width: 767px){
	.lineContact-btn{
		bottom: 9%;
    left: 50%;
		transform: translateX(-50%);
		gap: 3px;
		width: 60%;
		margin: 0 auto;
		border-radius: 25px;
	}
	.lineContact-btn a{
		display: flex;
		align-items: center;
		padding: 5px 0;
		}
	.FixBtn img {
		width: 40px;
	}
	.FixBtn span{
		font-size: 15px;
		line-height: 1.2;
	}
}
@media screen and (max-width: 375px){
	.lineContact-btn{
		bottom: 12%;
	}
}

@media screen and (min-width: 768px){
	.new-arrivals .slick-slide {
		margin: 0 var(--GAP_10);
}
}
@media screen and (max-width: 767px){
	.new-arrivals .slick-slide {
		margin: 0 var(--GAP_5_CONST);
}
}

.sale-floatbnr{
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-40%);
	z-index: 4;
	transition: all .6s;
	width: 32%;
	max-width: 500px;
}
.sale-floatbnr a:hover{
	opacity: 1;
}
button.hide {
	width: 50px;
	aspect-ratio: 1 / 1;
	background: url(/asset2024/images/common/button-hide.svg) no-repeat center center / 40px;
	position: absolute;
	z-index: 2;
	top: -18px;
	right: -20px;
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
}

@media screen and (max-width: 767px){
	.sale-floatbnr{
		bottom: 16%;
		transform: translateX(-50%);
		width: 80%;
	}
	button.hide {
		background: url(/asset2024/images/common/button-hide.svg) no-repeat center center / 25px;
	}
}
@media screen and (max-width: 375px){
	.sale-floatbnr{
		bottom: 20%;
	}
}

/* TOP新着商品吐き出しグリッド表示 */
.newItem-sec .new-arrivals .fs-c-productList__list{
	display: grid;
	grid-template-columns: repeat(4,1fr);
}
.newItem-sec .new-arrivals .fs-c-productList__list article:nth-child(n+17){
	display: none;
}
@media screen and (max-width: 767px){
	.new-arrivals{
		width: 90%;
		margin: 0 auto;
	}
	.newItem-sec .new-arrivals .fs-c-productList__list{
		grid-template-columns: repeat(2,1fr);
	}
	.newItem-sec .new-arrivals .fs-c-productList__list article:nth-child(n+17){
		display: none;
	}
}
/* TOP永遠の定番 */
.classic-selection .fs-c-productList__list{
  grid-template-columns: unset;
}
.classic-selection .slick-slide{
  margin-inline: var(--GAP_10);
}
.classic-selection .fs-c-productImage__image{
  border: unset;
}
.classic-selection .productRating{
  display: none;
}
.classic-selection h2.fs-c-productListItem__productName{
  padding-right: 0;
}
.classic-selection .fs-c-button--particular.fs-c-button--addToWishList--icon::before{
  display: none;
}
.classic-selection .fs-c-productName__name{
  font-weight: 400;
}
.classic-selection .fs-c-productListItem__prices.fs-c-productPrices{
  align-items: flex-start;
}
.classic-selection .fs-c-price__value,
.classic-selection .fs-c-price__currencyMark{
  font-weight: 500;
}
@media screen and (max-width: 767px){
  .classic-selection .slick-list{
    padding: 0 5% 0 10px !important;
  }
  .classic-selection .productdetailcontents{
    padding-right: 0;
  }
  .classic-selection .fs-c-price__value,
  .classic-selection .fs-c-price__currencyMark{
    font-size: 12px;
  }
  .classic-selection .fs-c-productPrice__addon__label{
    font-size: 10px;
  }
}</pre></body></html>