@charset "utf-8";
/* imgリセット */
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
}
/* セクション間隔*/
.g-mgt{
	margin-top: var(--sec-spc);
}
.g-mgb{
	margin-bottom: var(--sec-spc);
}
.g-pd{
	padding-block: var(--sec-spc);
}
.g-pdt{
	padding-top: var(--sec-spc);
}
.g-pdb{
	padding-bottom: var(--sec-spc);
}
.g-mgt--half{
	margin-top: var(--sec-spc-half);
}
.g-mgb--half{
	margin-bottom: var(--sec-spc-half);
}
.g-pd--half{
	padding-block: var(--sec-spc-half);
}
.g-pdt--half{
	padding-top: var(--sec-spc-half);
}
.g-pdb--half{
	padding-bottom: var(--sec-spc-half);
}
/* グリッド */
.grid {
	display: grid;
	grid-template-columns: repeat(var(--grid-cols, 1), minmax(var(--grid-min-size, 0), 1fr));
	gap: var(--grid-gap, 0);
}
@media screen and (min-width: 768px){
	.grid{
		--grid-cols: var(--grid-cols-pc, 1);
		--grid-gap: var(--grid-gap-pc, 0);
	}
}
@media screen and (max-width: 767px){
	.grid{
		--grid-cols: var(--grid-cols-sp, 1);
		--grid-gap: var(--grid-gap-sp, 0);
	}
}
/* 共通 */
@media screen and (min-width: 768px){
	.sp{
		display: none !important;
	}
}
@media screen and (max-width: 767px){
	.pc{
		display: none !important;
	}
}
/* インナー */
.g-inner,
.g-inner--l,
.g-inner--m,
.g-inner--s,
.g-inner--ss{
	width: var(--inner-w);
	margin-inline: auto;
}
@media screen and (min-width: 768px){
	.g-inner--pc{
		width: var(--inner-w);
		margin-inline: auto;
	}
	.g-inner,
	.g-inner--m,
	.g-inner--pc{
		max-width: var(--pc-maw-md);
	}
	.g-inner--l{
		max-width: var(--pc-maw-lg);
	}
	.g-inner--s{
		max-width: var(--pc-maw-sm);
	}
	.g-inner--ss{
		max-width: var(--pc-maw-ss);
	}
	.g-inner--pcHasSlickGap{
		--inner-adjust: calc(var(--slick-gap) * 2);
		width: calc(var(--inner-w) + var(--inner-adjust));
		max-width: calc(var(--pc-maw-sm) + var(--inner-adjust));
		margin-inline: auto;
	}
	.g-pd--halfPcOnly{
		padding-block: var(--sec-spc-half);
	}
}
@media screen and (max-width: 767px){
	.g-inner--sp{
		width: var(--inner-w);
		margin-inline: auto;
	}
	.g-pd--halfPcOnly{
		padding-block: var(--sec-spc);
	}
}
.formReset :where(
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"],
	input[type="text"],
	input[type="image"],
	select
){
	background-color: unset;
	color: var(--txt-c-base);
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
}
.formReset :where(
	input[type="text"],
	input[type="text"]::placeholder
){
	font-family: var(--ff-base);
}
.formReset :where(input[type="text"]){
	color: var(--txt-c-base);
}
.formReset :where(input[type="text"]::placeholder){
	color: var(--txt-c-addon);
}
@media (hover: hover){
	.formReset :where(
		button:hover,
		input[type="button"]:hover,
		input[type="submit"]:hover,
		input[type="reset"]:hover,
		input[type="image"]:hover,
		select:hover
	){
		cursor: pointer;
		background: unset;
	}
}
@media screen and (max-width: 767px){
	.formReset input[type="text"],
	.formReset input[type="text"]::placeholder{
		font-size: 16px;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
#headerarea{
	position: relative;
	z-index: 999;
}
.hd-scorll{
	position: relative;
}
.hd-announce li{
	background-color: var(--c-white);
	text-align: center;
	padding-block: 5px;
}
.hd-announce li,
.hd-announce li a{
	font-size: 12px;
}
.hd-announce li{
	color: #990000;
}
.hd-announce li a{
	color: var(--theme-c-sub);
}
#footerarea .hd-announce *{
	color: var(--txt-c-base);
}
.g-nav__item:link{
	color: var(--c-white);
}
@media (hover: hover){
	.hd-guide__showroom a:hover{
		opacity: 1;
		color: var(--txt-c-base);
	}
	.hd-guide__showroom a:visited:hover{
		color: var(--txt-c-base);
	}
	.hd-guide__showroom a::after{
		transition: .3s;
	}
	.hd-guide__showroom a:hover::after{
		background-color: var(--c-white);
	}
	.g-nav__item{
		position: relative;
	}
	.g-nav__item:hover{
		cursor: pointer;
		opacity: 1;
		color: var(--c-white);
	}
	.g-nav__item::after{
		content: "";
		display: inline-block;
		background-color: var(--c-white);
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: -3px;
		left: 0;
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .3s;
  }
	.g-nav__item:hover::after{
		transform: scaleX(1);
		transform-origin: left;
	}
	.is-active .g-nav__item::after{
		transform: scaleX(1);
		transform-origin: left;
	}
}
@media screen and (min-width: 1101px){
	.g-nav__list{
		gap: var(--spc-40);
	}
	.g-nav__item span{
		font-size: var(--fz-14);
	}
	.g-nav__item span[lang="en"]{
		font-size: var(--fz-22);
	}
}
@media screen and (min-width: 768px) and (max-width: 1100px){
	.g-nav__list{
		gap: var(--spc-20);
	}
	.g-nav__item span{
		font-size: var(--fz-12);
	}
	.g-nav__item span[lang="en"]{
		font-size: var(--fz-18);
	}
}
@media screen and (min-width: 768px){
	:root{
		--header-height: clamp( 100px, 11vw, 125px);
	}
	.hd-container{
		display: grid;
		grid-template-columns: clamp( 110px, 12vw, 150px) 1fr;
		gap: var(--spc-20);
		align-items: stretch;
		position: relative;
		height: var(--header-height);
	}
	.hd-logo{
		display: flex;
		align-items: center;
	}
	.hd-body{
		display: flex;
		justify-content: flex-end;
		align-items: flex-end;
		gap: var(--spc-40);
		padding-bottom: var(--spc-20);
	}
	.g-nav{
		width: fit-content;
	}
	.g-nav__list{
		display: flex;
	}
	.g-nav__item{
		display: block;
		color: var(--c-white);
	}
	.g-nav__item:visited{
		color: var(--c-white);
	}
	.g-nav__item span{
		display: block;
	}
	.g-nav__item span[lang="en"]{
		font-family: var(--ff-en);
		line-height: 1;
	}
	.hd-guide{
		position: absolute;
		top: 0;
		right: 0;
		display: flex;
		gap: var(--spc-30);
	}
	.hd-guide__menu{
		width: fit-content;
		display: flex;
	}
	.hd-guide__menu li:first-child{
		padding-right: var(--spc-20);
		margin-right: var(--spc-20);
		position: relative;
	}
	.hd-guide__menu li:first-child::after{
		content: "";
		display: inline-block;
		background-color: var(--c-white);
		width: 1px;
		height: 30px;
		position: absolute;
		top: 0;
		right: 0;
	}
	.hd-guide__menu li a{
		color: var(--c-white);
		font-size: var(--fz-12);
		display: block;
		padding-top: 10px;
	}
	.hd-guide__menu li a:visited{
		color: var(--c-white);
	}
	.hd-guide__showroom{
		width: clamp( 140px, 15vw, 170px);
	}
	.hd-guide__showroom a{
		display: block;
		color: var(--c-white);
		position: relative;
		font-size: var(--fz-13);
		z-index: 0;
		text-align: center;
		padding-block: 8px;
	}
	.hd-guide__showroom a:visited{
		color: var(--c-white);
	}
	.hd-guide__showroom a::after{
		content: "";
		display: inline-block;
		background-color: var(--theme-c-sub);
		border-radius: 0 0 10px 10px;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
}
@media screen and (min-width: 901px){
	body.scroll .g-nav__item span{
		font-size: var(--fz-11);
	}
	body.scroll .g-nav__item span[lang="en"]{
		font-size: var(--fz-18);
	}
}
@media screen and (min-width: 768px) and (max-width: 900px){
	body.scroll .g-nav__item span{
		font-size: 9px;
	}
	body.scroll .g-nav__item span[lang="en"]{
		font-size: 15px;
	}
	body.scroll .hd-guide__showroom{
		display: none;
	}
}
@media screen and (min-width: 768px){
	/* スクロール中 */
	body.scroll{
		padding-top: var(--header-height);
	}
	body.scroll .hd-scorll{
		display: block;
		background-color: var(--c-black);
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		height: unset;
		opacity: 0;
		animation: var(--anime-fade-in);
		z-index: 999;
	}
	body.scroll.returnTop .hd-scorll{
		opacity: 1;
		animation: var(--anime-fade-out);
	}
	body.scroll .hd-container{
		grid-template-columns: clamp( 60px, 8vw, 115px) 1fr;
		height: unset;
		padding-block: var(--spc-15);
	}
	body.scroll .hd-body{
		padding-bottom: 0;
		gap: var(--spc-20);
		align-items: center;
	}
	body.scroll .hd-guide__menu{
		display: none;
	}
	body.scroll .hd-guide{
		position: static;
		top: unset;
		left: unset;
		width: fit-content;
	}
	body.scroll .hd-guide__showroom{
		width: clamp( 90px, 11vw, 130px);
	}
	body.scroll .hd-guide__showroom a{
		font-size: var(--fz-12);
		padding-block: 3px;
	}
	body.scroll .hd-guide__showroom a::after{
		border-radius: 4px;
	}
	body.scroll .hd-guide__showroom a:hover::after{
		height: 100%;
	}
	body.scroll .g-userMenu{
		gap: var(--spc-10)
	}
}
@media screen and (max-width: 767px){
	.hd-container{
		padding-block: 10px;
	}
	.hd-logo{
		width: 72px;
		margin-inline: auto;
	}
	.hd-guide{
		display: none;
	}
	.g-nav{
		position: fixed;
		width: 100%;
		left: 0;
		z-index: 1200;
		background: var(--c-black);
		border-top: 3px solid var(--theme-c-sub);
		bottom: var(--g-userMenu-height);
	}
	.g-nav__list{
		display: grid;
		grid-template-columns: repeat(4,1fr);
	}
	.g-nav__list li{
		position: relative;
	}
	.g-nav__list li:not(:last-child)::after{
		content: "";
		display: inline-block;
		background-color: var(--bd-c-gray);
		width: 1px;
		height: 36px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
	}
	.g-nav__item{
		display: block;
		text-align: center;
		line-height: 1.3;
		padding-block: 10px;
	}
	.g-nav__item span{
		font-size: 13px;
		letter-spacing: 0.05em;
		color: var(--c-white);
	}
	.g-nav__item span[lang="en"]{
		display: none;
	}
}
/* hd-dropdown */
@media screen and (min-width: 768px){
	.hd-dropdown{
		color: var(--c-white);
		background-color: var(--c-black-op90);
		width: 100%;
		position: absolute;
		top: 100%;
		left: 0;
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		transition: .3s;
	}
	.hd-dropdown a{
		color: var(--c-white);
	}
	.hd-dropdown a:visited{
		color: var(--c-white);
	}
	.hd-dropdown.is-show{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 1;
	}
	.hd-dropdown__box{
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		gap: var(--spc-30) var(--spc-40);
		padding-block: var(--spc-25);
		max-height: calc(95vh - var(--header-height));
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.hd-dropdown__box::-webkit-scrollbar{
		display: none;
	}
	.hd-dropdown__categoryName{
		font-size: var(--fz-18);
		margin-bottom: var(--spc-30);
		font-weight: 500;
	}
	.hd-dropdown__nav--main{
		width: fit-content;
	}
	.hd-dropdown__nav--sub{
		flex: 1;
		display: grid;
		grid-template-columns: repeat(3,1fr);
		align-items: flex-start;
		column-gap: var(--spc-20);
	}
	.hd-dropdown__nav--guide{
		display: flex;
		flex-direction: column;
	}
	.hd-dropdown__upperBox{
		grid-column: span 3;
		border-bottom: 1px solid var(--c-white);
		display: flex;
		align-items: flex-start;
		height: 45px;
		margin-bottom: var(--spc-25);
	}
	.hd-dropdown__close{
		position: relative;
		transform: translateY(-5px);
		color: var(--c-white);
		font-size: var(--fz-16);
		border-bottom: 1px solid var(--c-white);
		padding-left: var(--spc-20);
		letter-spacing: 0.1em;
		margin-left: auto;
	}
	.hd-dropdown__close::before{
		content: "";
		display: inline-block;
		--this-mask: var(--data-icon-user-close) no-repeat center center / 130%;
		mask: var(--this-mask);
		-webkit-mask: var(--this-mask);
		background-color: var(--c-white);
		aspect-ratio: 1/1;
		width: var(--spc-15);
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.hd-dropdown__link{
		width: 100%;
		max-width: 180px;
	}
	.hd-dropdown__link a:visited{
		color: var(--txt-c-base);
	}
	.hd-dropdown__upperBox .hd-dropdown__link{
		max-width: unset;
		width: fit-content;
	}
	.hd-dropdown__link a{
		display: block;
		background-color: var(--c-white);
		border-radius: 15px;
		color: var(--txt-c-base);
		font-size: var(--fz-12);
		position: relative;
		padding: 3px 20px 3px 10px;
		letter-spacing: 0.05em;
	}
	.hd-dropdown__link a::after{
		content: "";
    --this-mask: var(--data-icon-btn-arrow) no-repeat center center / 100%;
    mask: var(--this-mask);
    -webkit-mask: var(--this-mask);
    aspect-ratio: 86 / 150;
		background-color: var(--txt-c-base);
    position: absolute;
		width: 4px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 8px;
	}
	.hd-dropdown__menu--lv1{
		display: grid;
		gap: var(--spc-10);
	}
	.hd-dropdown__menu--lv1 > li > a{
		font-size: var(--fz-14);
	}
	.hd-dropdown__menu--lv1 a[style*="--this-icon"]{
		display: grid;
		grid-template-columns: 24px 1fr;
		align-items: center;
		gap: var(--spc-10);
	}
	.hd-dropdown__menu--lv1 a[style*="--this-icon"]::before{
    content: "";
    display: inline-block;
    background: var(--c-white) var(--this-icon) no-repeat center center / 80%;
    border-radius: 50%;
    aspect-ratio: 1;
	}
	.hd-dropdown__menu--lv1 li a+.hd-dropdown__link{
		margin-top: var(--spc-10);
	}
	.hd-dropdown__link+.hd-dropdown__menu--lv2{
		margin-top: var(--spc-10);
	}
	.hd-dropdown__menu--lv2{
		display: grid;
		gap: 2px;
	}
	.hd-dropdown__menu--lv2 li a{
		font-size: var(--fz-13);
		display: flex;
		align-items: center;
		gap: 3px;
	}
	.hd-dropdown__menu--lv2 li a::before{
		display: inline-block;
		content: "-";
	}
	.hd-dropdown__menu--lv1 li a+.hd-dropdown__menu--lv2{
		margin-top: var(--spc-10);
	}
	.hd-dropdown__QRcode{
		width: 77px;
		margin: 30px 0 0 auto;
		flex: 1;
		display: flex;
		align-items: flex-end;
	}
}
/* g-guideLink */
.g-guideLinks{
	display: grid;
}
a.g-guideLink{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 5px;
	background-color: var(--this-bgcolor,var(--c-gray-200));
	color: var(--this-color,var(--txt-c-base));
}
a.g-guideLink:visited{
	color: var(--this-color,var(--txt-c-base)) !important;
}
a.g-guideLink[style*="--this-icon"]::before{
	content: "";
	display: inline-block;
	--this-mask: var(--this-icon) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--this-color,var(--txt-c-base));
	aspect-ratio: 1/1;
	width: 23px;
}
a.g-guideLink span{
	font-size: 14px;
	font-weight: 500;
}
a.g-guideLink span[lang="en"]{
	letter-spacing: 0;
	line-height: 1.2;
	font-size: var(--fz-14);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
}
a.g-guideLink span[lang="en"]::before{
	content: "";
	display: inline-block;
	--this-mask: var(--data-icon-global) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--txt-c-base);
	aspect-ratio: 1/1;
	width: 16px;
}
.g-guideLinkLabel{
	display: block;
	font-size: 12px;
	text-align: center;
	letter-spacing: 0.05em;
	margin-top: 3px;
}
@media screen and (min-width: 768px){
	.g-guideLinks{
		width: 100%;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: var(--spc-40);
	}
	a.g-guideLink{
		height: 50px;
	}
}
@media screen and (max-width: 767px){
	.g-guideLinks{
		width: 250px;
		gap: 20px;
		margin-inline: auto;
	}
	a.g-guideLink{
		height: 50px;
	}
	a.g-guideLink br{
		display: none;
	}
}
/* .g-userMenuContainer */
.g-userMenu{
	display: flex;
	height: 100%;
}
.g-userMenu li{
	position: relative;
}
.g-userMenu li > span{
	height: 100%;
}
.g-userMenu__item{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	gap: 3px;
}
.g-userMenu__item::before{
	content: '';
	--this-mask: var(--this-icon) no-repeat center center / var(--this-size,100%);
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	aspect-ratio: 172/150;
	display: block;
}
.g-userMenu__item.active::before{
	--this-mask: var(--this-icon-active);
}
.g-userMenu__item::after{
	display: block;
	text-align: center;
	content: attr(aria-label);
	font-size: 10px;
	letter-spacing: 0.05em;
}
.g-userMenu__item.hamburger--search.active::after{
	content: '閉じる';
}
.g-userMenu__item.active::after{
	content: var(--this-label-active);
}
@media screen and (min-width: 1101px){
	.g-userMenu{
		gap: var(--spc-20);
	}
	.g-userMenu__item::before{
		width: 25px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1100px){
	.g-userMenu{
		gap: var(--spc-10);
	}
	.g-userMenu__item::before{
		width: 20px;
	}
}
@media screen and (min-width: 768px){
	.g-userMenuContainer{
		width: fit-content;
	}
	.g-userMenu__item::before{
		background-color: var(--c-white);
	}
	.g-userMenu__item::after{
		white-space: nowrap;
		color: var(--c-white);
		font-size: var(--fz-10);
	}
	.g-userMenu__item .fs-client-cart-count{
		top: -5px;
		right: -5px;
	}
	.g-userMenu li:has(a[style="--this-icon: var(--data-icon-user-login);"]){
		width: clamp( 30px, 3.5vw, 38px);
	}
}
@media screen and (max-width: 767px){
	:root{
		--g-userMenu-height: 65px;
	}
	.g-userMenuContainer{
		position: fixed;
		width: 100%;
		background-color: var(--bg-c-gray);
		bottom: 0;
		left: 0;
		height: var(--g-userMenu-height);
		z-index: 1200;
	}
	.g-userMenu li{
		flex: 1;
	}
	.g-userMenu li::after{
		content: "";
		display: inline-block;
		background: var(--bd-c-gray);
		width: 1px;
		height: calc(100% - 20px);
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.g-userMenu__item::before{
		background-color: var(--txt-c-base);
		width: 20px;
	}
	.g-userMenu__item .fs-client-cart-count{
		top: 10%;
		left: 55%;
	}
}

@media screen and (max-width: 767px){
	/* ハンバーガー */
	.fat-nav{
		top: 0;
		left: 0;
		z-index: 1100;
		position: fixed;
		display: none;
		width: 100%;
		height: 100%;
		background: #fff;
		transform: scale(1);
		transition-property: transform;
		transition-duration: 0.4s;
		overflow-y: auto;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
	}
	.fat-nav.active {
		transform: scale(1);
	}
	.fat-nav__wrapper {
		margin:0 auto;
		height: 100%;
		box-sizing: border-box;
	}
	.fn-box{
		padding-bottom: 130px;
	}
	.fn-nav{
		display: grid;
		gap: 30px;
		padding-block: 30px;
	}
	.fn-nav__btn+.fn-nav__btn{
		margin-top: 10px;
	}
	.fn-nav__btn a{
		display: flex;
		align-items: center;
		background-color: var(--c-gray-200);
		height: 50px;
		border-radius: 25px;
		padding-inline: 20px;
		gap: 5px;
		font-size: 14px;
		position: relative;
	}
	.fn-nav__btn a::before{
		content: "";
		display: inline-block;
		background: var(--c-white) var(--this-icon) no-repeat center center / 80%;
		border-radius: 50%;
		width: 33px;
		aspect-ratio: 1/1;
	}
	.fn-nav__btn a::after{
		content: "";
		--this-mask: var(--data-icon-btn-arrow) no-repeat center center / 100%;
		mask: var(--this-mask);
		-webkit-mask: var(--this-mask);
		background-color: var(--c-white);
		aspect-ratio: 86 / 150;
		width: 7px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
	}
	.fn-nav__btn em{
		font-style: normal;
	}
	.fn-nav__link{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: 5px 30px;
		margin-top: 15px;
	}
	.fn-nav__link li a{
		font-size: 13px;
		display: block;
		position: relative;
	}
	.fn-nav__link li a::after{
		content: "";
		--this-mask: var(--data-icon-btn-arrow) no-repeat center center / 100%;
		mask: var(--this-mask);
		-webkit-mask: var(--this-mask);
		background-color: var(--txt-c-base);
		aspect-ratio: 86 / 150;
		width: 5px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
	}
	.fn-bnr{
		margin-bottom: 30px;
		gap: 10px;
	}
	.fn-bnr:not(:has(.fs-pt-column__item)){
		display: none;
	}
	.fn-bnr .fs-pt-column__item{
		padding: 0;
	}
	.fn-menu{
		margin-bottom: 50px;
	}
	.fn-menu dt{
		background-color: var(--c-black);
		color: var(--c-white);
		font-size: 14px;
		padding: 13px 40px;
	}
	.fn-menu dd{
		background-color: var(--c-gray-050);
	}
	.fn-menu__lv1 > li:not(:last-child){
		border-bottom: 1px solid var(--bd-c-gray);
	}
	.fn-menu__lv1__item{
		position: relative;
	}
	p.fn-menu__lv1__item::before,
	p.fn-menu__lv1__item::after{
		content: "";
		display: inline-block;
		background-color: var(--txt-c-base);
		width: 10px;
		height: 1px;
		position: absolute;
		top: 30px;
		right: 20px;
	}
	p.fn-menu__lv1__item::after{
		transform: rotate(90deg);
		transform-origin: center;
		transition: .3s;
	}
	p.fn-menu__lv1__item.is-open::after{
		transform: rotate(180deg);
	}
	a.fn-menu__lv1__item::after{
		content: "";
		--this-mask: var(--data-icon-btn-arrow) no-repeat center center / 100%;
		mask: var(--this-mask);
		-webkit-mask: var(--this-mask);
		background-color: var(--txt-c-base);
		aspect-ratio: 86 / 150;
		width: 5px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 25px;
	}
	.fn-menu__lv1__item span{
		display: flex;
		align-items: center;
		gap: 5px;
		font-size: 14px;
		padding: 12px 20px;
		position: relative;
	}
	.fn-menu__lv1__item[style*="--this-icon"] span::before{
		content: "";
		display: inline-block;
		background: var(--c-white) var(--this-icon) no-repeat center center / 80%;
		border-radius: 50%;
		width: 33px;
		aspect-ratio: 1/1;
	}
	.fn-menu__lv2Container{
		display: none;
	}
	.fn-menu__lv2 li{
		border-top: 1px solid var(--bd-c-gray);
	}
	.fn-menu__lv2 li a{
		display: block;
		padding: 8px 20px;
		padding-left: 30px;
		font-size: 14px;
		position: relative;
	}
	.fn-menu__lv2 li a::before{
		content: "-";
		margin-right: 5px;
	}
	.fn-menu__lv1__item[style="--this-icon: url(/asset2026/images/common/category_cuffs.svg);"]+.fn-menu__lv2Container .fn-menu__lv2 li:nth-of-type(2),
	.fn-menu__lv1__item[style="--this-icon: url(/asset2026/images/common/category_cuffs.svg);"]+.fn-menu__lv2Container .fn-menu__lv2 li:nth-of-type(3){
		display: none;
	}
}


/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
#footerarea{
	background-color: var(--c-black);
	color: var(--c-white);
	position: relative;
	z-index: 90;
}
.ft-postage{
	width: fit-content;
	border: 1px solid var(--c-white);
	font-family: var(--ff-en);
}
.ft-menu__sublist li a::before{
	content: '-';
	margin-right: 5px;
}
.ft-calendar__label{
	border-bottom: 1px solid var(--c-white);
}
.ft-calendar:not(:has(.cal_wrapper)) .ft-calendar__label{
	display: none;
}
@media (hover: hover){
	.ft-menu__list li a{
		position: relative;
	}
	.ft-menu__list li a:hover{
		opacity: 1;
	}
	.ft-menu__list li a::after{
		content: "";
		display: inline-block;
		background-color: var(--c-white);
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: -3px;
		left: 0;
		transform: scaleX(0);
		transform-origin: right;
		transition: transform .3s;
	}
	.ft-menu__list li a:hover::after{
		transform: scaleX(1);
		transform-origin: left;
	}
}
@media screen and (min-width: 768px){
	.ft-container{
		padding-top: var(--sec-spc);
	}
	.ft-calendar__label{
		font-size: var(--fz-12);
		padding-bottom: var(--spc-10);
		margin-bottom: var(--spc-20);
	}
	.ft-center{
		display: grid;
		grid-template-columns: clamp( 350px, 40vw, 435px) 1fr clamp( 90px, 12vw, 137px);
		margin-bottom: var(--spc-45);
		gap: var(--spc-55);
	}
	.ft-logo{
		display: flex;
		align-items: flex-end;
	}
	.ft-postage{
		padding: 7px 15px;
		font-size: var(--fz-16);
		margin-bottom: var(--spc-20);
	}
	.ft-hours{
		font-size: var(--fz-12);
	}
	.ft-menu{
		margin-bottom: var(--spc-65);
	}
	.ft-menu__cols{
		display: grid;
		grid-template-columns: repeat(5,1fr);
		gap: var(--spc-20);
	}
	.ft-menu__ttl{
		font-size: var(--fz-12);
		padding-bottom: var(--spc-10);
		border-bottom: 1px solid var(--bd-c-gray);
		margin-bottom: var(--spc-10);
		color: var(--c-white);
	}
	.ft-menu__list li a,
	.ft-menu__list li a span{
		font-size: var(--fz-12);
		color: var(--c-white);
	}
	.ft-menu__col:not(:last-child) .ft-menu__list li a::before{
		content: '-';
		margin-right: 5px;
	}
	.ft-menu__col:last-child .ft-menu__list{
		display: grid;
		gap: 5px;
	}
	.ft-bottom{
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		padding-bottom: 30px;
	}
	.ft-terms{
		display: flex;
	}
	.ft-terms li{
		position: relative;
	}
	.ft-terms li:not(:last-child)::after{
		content: '';
		display: inline-block;
		background-color: var(--bd-c-gray);
		width: 1px;
		height: 12px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
	}
	.ft-terms li a{
		display: block;
		font-size: 10px;
		color: var(--c-white);
	}
	.ft-terms li:not(:last-child){
		padding-right: 15px;
		margin-right: 15px;
	}
	.ft-copy{
		font-size: 10px;
	}
}
@media screen and (max-width: 767px){
	.ft-box{
		padding-block: 40px 150px;
	}
	.ft-container{
		display: grid;
	}
	.ft-menu{
		order: 3;
	}
	.ft-center{
		display: contents;
	}
	.ft-calendar__label{
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
	.ft-info{
		display: contents;
	}
	.ft-postage{
		order: 2;
		padding: 10px 15px;
		font-size: 16px;
		margin: 0 auto 20px;
	}
	#footerarea .ft-menu__list{
		width: fit-content;
		margin-inline: auto;
		display: grid;
		gap: 3px;
		margin-bottom: 35px;
	}
	.ft-menu__list li a{
		color: var(--c-white);
		font-size: 14px;
	}
	.ft-menu__list li a:visited{
		color: var(--c-white);
	}
	.ft-menu__sublist{
		display: grid;
		gap: 3px;
		margin-block: 5px;
	}
	.ft-logo{
		order: 1;
		width: 120px;
		margin: 0 auto 15px;
	}
	.ft-calendar{
		order: 4;
		width: 270px;
		margin-inline: auto;
		margin-bottom: 20px;
	}
	.ft-hours{
		order: 5;
		font-size: 11px;
		letter-spacing: 0.05em;
		width: fit-content;
		margin: 0 auto 30px;
	}
	.ft-bottom{
		order: 6;
	}
	#footerarea .ft-terms{
		display: flex;
		justify-content: center;
		margin-bottom: 30px;
	}
	.ft-terms li{
		position: relative;
	}
	#footerarea .ft-terms li:first-child{
		padding-right: 15px;
		margin-right: 15px;
	}
	.ft-terms li:first-child::after{
		content: "";
		display: inline-block;
		background-color: var(--c-white);
		width: 1px;
		height: 10px;
		position: absolute;
		top: 55%;
		transform: translateY(-50%);
		right: 0;
	}
	.ft-terms li a{
		font-size: 10px;
		display: block;
		text-align: center;
		color: var(--c-white);
	}
	.ft-copy{
		font-size: 9px;
		text-align: center;
		letter-spacing: 0.05em;
	}
}

/* ================================================================
   カレンダーコンテナ
   .calendar 内の .cal_wrapper を横並びに
   ================================================================ */
.calendar{
	display: grid;
}
@media screen and (min-width: 768px){
	.calendar{
		grid-template-columns: repeat(2,1fr);
		gap: var(--spc-30);
	}
}
@media screen and (max-width: 767px){
	.calendar{
		gap: 20px;
	}
}

/* ================================================================
   月タイトル（例: 2026年2月）
   ================================================================ */
.cal_title {
  font-size: 12px;
	margin-bottom: 12px;
}

/* ================================================================
   カレンダーテーブル本体
   ================================================================ */
.cal_main {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* ----- 曜日ヘッダー ----- */
.cal_main thead th {
  font-size: 10px;
	font-weight: 400;
}

/* ----- 日付セル ----- */
.cal_main tbody td {
  text-align: center;
  padding: 4px 0;
	font-size: 10px;
}

.cal_main tbody td span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
	height: 20px;
  border-radius: 50%;
}

/* ================================================================
   曜日・日付別スタイル
   ================================================================ */

/* 日曜 / 祝日 → 暗い赤丸 */
.cal_main tbody td.Sun span,
.cal_main tbody td.holiyday span {
  background: #8E2626;
}

/* 土曜 */
.cal_main tbody td.Sat span {
  background: #1565a2;
}

/* 毎月特定日（openingsale など） */
.cal_main tbody td.openingsale span {
  color: #f0c040;
}

/* 今日 */
.cal_main tbody td span.Today {
  outline: 1px solid #fff;
  outline-offset: 1px;
}

/* 空白マス */
.cal_main tbody td:empty {
  pointer-events: none;
}

/* クリック可能セル内の <a> タグリセット */
.cal_main tbody td a {
  display: inline-flex;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.cal_main tbody td a span {
  transition: opacity 0.15s;
}
.cal_main tbody td a:hover span {
  opacity: 0.75;
}



/* ページトップ */
.pagetop{
	position: fixed;
	z-index: 99;
}
.pagetop::before{
	content: "";
	display: inline-block;
	background-color: var(--c-white);
	aspect-ratio: 1;
	width: 75%;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.pagetop a{
	display: block;
	aspect-ratio: 1/1;
	border-radius: 50%;
	--this-mask: var(--data-icon-page-top) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--theme-c-sub);
	position: relative;
	z-index: 2;
}
@media screen and (min-width: 768px){
	.pagetop{
		width: 50px;
		bottom: 20px;
		right: 3%;
	}
}
@media screen and (max-width: 767px){
	.pagetop{
		width: 35px;
		bottom: 143px;
		right: 10px;
	}
}

/* ft-fixedBnr */
.ft-fixedBnr{
  position: fixed;
  z-index: 1000;
	transition: .3s;
	right: 0;
}
.ft-fixedBnr.is-hide{
	transition: .3s;
}
.ft-fixedBnr__close{
  position: absolute;
  aspect-ratio: 1/1;
	object-fit: cover;
  background-color: var(--txt-c-base);
  border-radius: 50%;
  z-index: 2;
	transition: .3s;
}
.is-hide .ft-fixedBnr__close{
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
}
.ft-fixedBnr__close::before{
  content: "";
  display: inline-block;
  --this-mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuNiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDkuMDMgQnVpbGQgNTQ5ODYpICAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSLjg6zjgqTjg6Tjg7xfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IgoJIHk9IjBweCIgdmlld0JveD0iMCAwIDMwMCAzMDAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwMCAzMDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojODk2QjU4O30KPC9zdHlsZT4KPGcgaWQ9IuOCsOODq+ODvOODl180MzQ5MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTgzOS42ODkgNzE1LjIzOCkgcm90YXRlKC00NSkiPgoJCgkJPHJlY3QgeD0iMTA5MS45OTEiIHk9IjE1MC4xMjQiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDIuNTM1MTU5ZS0wNiAtMi41MzUxNTllLTA2IC0xIDIxOTguOTgxIDYwMC4yNDUxKSIgY2xhc3M9InN0MCIgd2lkdGg9IjE0Ljk5OSIgaGVpZ2h0PSIzMDAiLz4KCQoJCTxyZWN0IHg9Ijk0OS40NzYiIHk9IjI5Mi42MiIgdHJhbnNmb3JtPSJtYXRyaXgoLTEgMi41MzUxNTllLTA2IC0yLjUzNTE1OWUtMDYgLTEgMjE5OC45NTE5IDYwMC4yMzY2KSIgY2xhc3M9InN0MCIgd2lkdGg9IjMwMCIgaGVpZ2h0PSIxNC45OTkiLz4KPC9nPgo8L3N2Zz4K) no-repeat center center / 100%;
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  background-color: var(--c-white);
  aspect-ratio: 1/1;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ft-fixedBnr__open{
  position: absolute;
  height: 100%;
  width: var(--this-closed-size);
  top: 0;
  left: 0;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: .3s;
	writing-mode: vertical-rl;
	text-orientation: upright;
	text-align: center;
	font-size: 12px;
}
.is-hide .ft-fixedBnr__open{
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
	z-index: 2;
}
.ft-fixedBnr--chat .ft-fixedBnr__open{
	color: var(--c-white);
}
@media (hover: hover){
	.ft-fixedBnr:not(.is-hide):hover{
		right: 0px;
	}
  .ft-fixedBnr__close:hover,
	.ft-fixedBnr__open:hover{
    cursor: pointer;
  }
	.ft-fixedBnr__link:hover,
	.ft-fixedBnr__link:hover img{
		opacity: 1 !important;
		cursor: pointer;
	}
}
@media screen and (min-width: 768px){
	.ft-fixedBnr {
		width: 110px;
		--this-closed-size: 22px;
		--this-top-postion: 50%;
	}
	.ft-fixedBnr.is-hide{
		right: -82px;
	}
	.ft-fixedBnr__close{
		top: -2px;
		left: -2px;
		width: 18px;
	}
	.ft-fixedBnr{
		top: var(--this-top-postion);
		right: -7px;
	}
	.ft-fixedBnr--chat{
		top: calc(var(--this-top-postion) + 150px);
	}
	.ft-fixedBnr__open{
		padding-left: 7px;
	}
}
@media screen and (max-width: 767px){
	.ft-fixedBnr {
		width: 100px;
		--this-closed-size: 26px;
		--this-top-postion: 35%;
	}
	.ft-fixedBnr.is-hide{
		right: -80px;
	}
	.ft-fixedBnr__close{
		top: -2px;
		left: -2px;
		width: 18px;
	}
	.ft-fixedBnr{
		top: var(--this-top-postion);
	}
	.ft-fixedBnr--chat{
		top: calc(var(--this-top-postion) + 140px);
	}
	.ft-fixedBnr__open{
		padding-right: 3px;
	}
}
/* -----------------タブ切り替え共通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;
	}
}
/* -------------------bgcolor-------------------- */
.bgcolor--black{
	background-color: var(--c-black);
}
.bgcolor--gray{
	background-color: var(--bg-c-gray);
}
.bgcolor--white{
	background-color: var(--c-white);
}
.bgcolor--beige{
	background-color: var(--bg-c-beige);
}


/* ----------------g-about__list---------------- */
.g-about__list{
	--grid-cols-pc: 3;
	--grid-gap-pc: var(--spc-20);
	--grid-gap-sp: var(--spc-20)
}
.g-about__list h3{
	text-align: center;
}
@media screen and (min-width: 768px){
	.g-about__list img{
		aspect-ratio: 1/1;
		object-fit: cover;
	}
	.g-about__list h3{
		font-size: var(--fz-14);
		margin-top: 10px;
	}
}
@media screen and (max-width: 767px){
	.g-about__list{
		max-width: 272px;
		margin-inline: auto;
	}
	.g-about__list img{
		aspect-ratio: 272/120;
		object-fit: cover;
	}
	.g-about__list h3{
		font-size: 13px;
		margin-top: 5px;
	}
}
/* g-sns */
.g-sns li a{
	display: block;
	content: "";
	display: inline-block;
	--this-mask: var(--this-icon) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--c-gray-400);
	aspect-ratio: 1;
	width: 100%;
}
@media (hover: hover){
	.g-sns li a:hover{
		opacity: 1;
		background-color: var(--c-black);
	}
}
@media screen and (min-width: 768px){
	.g-sns{
		display: flex;
		gap: var(--spc-20);
		justify-content: center;
		margin-top: var(--spc-90);
	}
	.g-sns li{
		width: 50px;
	}
}
@media screen and (max-width: 767px){
	.g-sns{
		display: grid;
		grid-template-columns: repeat(3,65px);
		justify-content: center;
		gap: 25px;
		margin-top: 50px;
	}
}


/* ------------------tab-wrap--category------------------- */
body:not(:has(.g-about)) .g-category{
	position: relative;
	padding-top: var(--sec-spc);
}
body:not(:has(.g-about)) .g-category::before{
	content: "";
	display: inline-block;
	background-color: var(--bd-c-gray);
	height: 1px;
	max-width: var(--pc-maw-md);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.tab-wrap--category .tab-nav{
	justify-content: center;
}
.tab-wrap--category .tab-btn{
	flex: unset;
	color: var(--c-gray-250);
	font-family: var(--ff-en);
	position: relative;
	transition: .3s;
}
.tab-wrap--category .tab-btn::after{
	content: "";
	display: inline-block;
	background-color: var(--txt-c-base);
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: -3px;
	left: 0;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .3s;
}
.tab-wrap--category .tab-btn.show{
	color: var(--txt-c-base);
}
.tab-wrap--category .tab-btn.show::after{
	transform: scaleX(1);
	transform-origin: left;
}
.g-category__list{
	--grid-cols-pc: 4;
	--grid-gap-pc: var(--spc-20);
	--grid-cols-sp: 2;
	--grid-gap-sp: 15px 0px;
}
.g-category__list li a{
	display: grid;
	grid-template-columns: clamp( 40px, 5vw, 60px) 1fr;
	gap: 10px;
	align-items: center;
	font-size: var(--fz-14);
}
.g-category__list li a::before{
	content: "";
	display: inline-block;
	background: var(--c-white) var(--this-icon) no-repeat center center / 80%;
	border-radius: 50%;
	aspect-ratio: 1;
}
@media (hover: hover){
	.tab-wrap--category .tab-btn:hover::after{
		transform: scaleX(1);
		transform-origin: left;
		background-color: var(--c-gray-250);
	}
	.g-category__list li a:hover{
		opacity: 1;
	}
	.g-category__list li a::before{
		transition: .3s;
	}
	.g-category__list li a:hover::before{
		background-size: 100%;
	}
}
@media screen and (min-width: 768px){
	.tab-wrap--category .tab-nav{
		gap: var(--spc-40);
		margin-bottom: var(--spc-65);
	}
	.tab-wrap--category .tab-btn{
		font-size: var(--fz-25);
		line-height: 1.3;
	}
	body:not(:has(.g-about)) .g-category::before{
		width: var(--inner-w);
	}
}
@media screen and (max-width: 767px){
	#footerarea .tab-wrap--category .tab-nav{
		gap: 30px;
		margin-bottom: 40px;
	}
	#footerarea .tab-wrap--category .tab-btn{
		font-size: 25px;
	}
}


/* 要素非表示 */
.ast-scroll-top{
	display: none;
}
#fix-5sec-icon-v2.fix-5sec-icon{
	display: none !important;
}
#ast-scroll-top{
	display: none !important;
}
	.hDidLA{
		display: none !important;
	}
@media screen and (max-width: 767px){

}