@charset "utf-8";
/* リセット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%;}
li>ul, li>ol, blockquote>ul, blockquote>ol,ul{margin:0;padding:0}
button{padding:0;}
ul li ,ol li{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight: normal;font-size: 100%;margin: 0;}
p{margin: 0;}
a:focus, *:focus{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{ 
  display:block;
}
body{
	font-family: 'Noto Sans JP',"游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 400;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.06em;
	width:100%;
	color: var(--BLACK);
	position:relative;
	z-index: 0;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--BLACK);
}
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;
}
/* CSS関数設定 */
:root{
  --WHITE: #fff;
	--BLACK: #333;
	--GRAY01: #aaa;
	--GRAY02: #ccc;
	--GRAY03: #f2f2f2;
	--GRAY04: #eee;
	--GRAY05: #c9c9c9;
	--GRAY06: #707070;
	--GRAY07: #CCCCCC;
	--GRAY08: #333;
	--BLUE01: #00275E;
	--BLUE02: rgba(0, 39, 94, 0.07);
	--RED01: #B0272D;
}
/* フォントCSS */
.shippori{
	font-family: 'Shippori Mincho', serif;
}
/* imgリセット */
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
}
/* インナー設定 */
.inner,
.pc-inner,
.sp-inner{
	margin-left: auto;
	margin-right: auto;
}
/* セクション間隔*/
.generalmg{
	margin-bottom: var(--GENERALSEC);
}
.generalpd{
	padding: var(--GENERALSEC) 0;
}
/* グリッド、フレックス */
.grid{
	display: grid;
}
.flex{
	display: flex;
}
.fxw{
	display: flex;
	flex-wrap: wrap;
}
.jcsb{
	display: flex;
	justify-content: space-between;
}
/* スライダー読み込みまで非表示 */
.slide{
	opacity: 0;
	transition: opacity .3s linear;
}
.slide.slick-initialized{
	opacity: 1;
}
/* 縦書き */
.tategaki{
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-o-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
#wrapper > main,
.flex > main{
	flex: 1;
}
@media screen and (min-width: 1101px){
	.inner,
	.pc-inner{
		width: var(--INNER_WIDTH);
	}
}
@media screen and (max-width: 1100px){
	.inner,
	.pc-inner{
		width: 100%;
	}
}
@media screen and (min-width: 768px) and (max-width: 950px){
	#sidearea{
		display: none;
	}
}
@media screen and (min-width: 951px){
	.hamburger,
	.fat-nav{
		display: none !important;
	}

}
@media screen and (min-width: 768px){
	body{
		font-size: 15px;
		line-height: 1.7;
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	:root{
		--GENERALSEC: 70px;
		--INNER_WIDTH: 85%;
		--SIDE_WIDTH: clamp( 230px, 23vw, 260px);
		--SIDE_RIGHT: clamp( 40px, 4vw, 70px);
		--WRAPPER_WIDTH: 90%;
		--WRAPPER_MAX_WIDTH: 1280px; /* 1530px */
	}
	a:hover{
		opacity: 0.7;
		text-decoration: none;
	}
	a:hover img{
		opacity:0.75 !important;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	.sp{
		display: none !important;
	}
	#wrapper{
		width: var(--WRAPPER_WIDTH);
		max-width: var(--WRAPPER_MAX_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.inner,
	.pc-inner{
		margin-left: auto;
		margin-right: auto;
	}
	#sidearea{
		width: var(--SIDE_WIDTH);
		margin-right: var(--SIDE_RIGHT);
	}
	.pc-tategaki{
		writing-mode: vertical-rl;
	}
}
@media screen and (max-width: 767px){
	body{
		font-size: 14px;
		line-height: 1.6;
	}
	:root{
		--GENERALSEC: 30px;
		--INNER_WIDTH: 92%;
	}
	#wrapper > .flex,
	#wrapper > .fs-c-breadcrumb,
	#wrapper > .fs-c-breadcrumb-area > .fs-c-breadcrumb{
    width: var(--INNER_WIDTH);
    margin-left: auto;
    margin-right: auto;
  }
	.pc{
		display: none !important;
	}
	.inner,
	.sp-inner{
		width: var(--INNER_WIDTH);
	}
	.sp-y-scroll{
		overflow-y: scroll;
		overflow-x: auto;
	}
	.sp-x-scroll{
		overflow-x: scroll;
		overflow-y: auto;
		padding-left: calc((100% - var(--INNER_WIDTH)) / 2);
		padding-right: calc((100% - var(--INNER_WIDTH)) / 2);
	}
	.sp-y-scroll.noscrollbar,
	.sp-x-scroll.noscrollbar{
		-ms-overflow-style: none;/* IE, Edge 対応 */
		scrollbar-width: none;/* Firefox 対応 */
	}
	.sp-y-scroll.noscrollbar::-webkit-scrollbar,
	.sp-x-scroll.noscrollbar::-webkit-scrollbar{/* Chrome, Safari 対応 */
		display: none;
	}
	.sp-pc-tategaki{
		writing-mode: vertical-rl;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
header{
	width: 100%;
	background-color: var(--WHITE);
	position: sticky;
	top: 0;
	left: 0;
	z-index: 99;
}
.h-inner{
	margin: 0 auto;
	display: flex;
	align-items: center;
}
.h-search-form{
	position: relative;
}
.h-search-form input[type="text"],
.h-search-form button {
	-webkit-appearance: none;
	border: none;
	border-radius: 0;
}
.h-search-form input[type="text"]{
	display: block;
	border-radius: 70px;
	border: 1px solid var(--GRAY01);
	color: var(--BLACK);
	background: #fff;
}
.h-search-form button{
	aspect-ratio: 1 / 1;
	background: url(../images/common/search.png) no-repeat center center / 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0 !important;
}
.h-icon{
	display: flex;
}
.h-icon li a,
.h-icon li p{
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center center;
}
.h-icon li.mypage a{
	background-image: url(../images/common/mypage.png);
}
.h-icon li.cart a{
	background-image: url(../images/common/cart.png);
	position: relative;
}
.count{
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	width: 20px;
	background-color: var(--BLACK);
	color: var(--WHITE);
	border-radius: 50%;
	font-size: 10px;
	position: absolute;
}
@media screen and (min-width: 951px){
	.h-inner{
		padding: 20px 0;
	}
	.h-icon{
		gap: 20px;
	}
	.h-icon li a,
	.h-icon li p{
		background-position: left center;
		padding-left: 28px;
	}
	.h-icon li.mypage .login a::after{
		content: 'ログイン / 会員登録';
	}
	.h-icon li.mypage .logout a::after{
		content: 'マイページ';
	}
	.h-icon li.cart  a::after{
		content: 'カート';
	}
	.h-icon li.cart a .count{
		top: -10px;
		left: 14px;
	}
}
@media screen and (min-width: 768px) and (max-width: 950px){
	.h-inner{
		padding: 10px 0 10px 70px;
	}
	.h-icon{
		gap: 10px;
	}
	.h-icon li a,
	.h-icon li p{
		width: 40px;
		aspect-ratio: 1 / 1;
		background-position: center center;
	}
	.h-icon li.cart a .count{
		top: -3px;
		right: -5px;
	}
}
@media screen and (min-width: 768px){
	.h-inner{
		width: 95%;
		max-width: 1360px; /* 1600px */
	}
	.h-logo{
		width: 142px;
	}
	.h-search-area{
		margin: 0 30px 0 auto;
	}
	.h-search-form input[type="text"]{
		width: clamp( 200px, 26vw, 280px);
		padding: 10px 40px 10px 20px;
	}
	.h-search-form button{
		width: 13px;
		right: 15px;
	}
	.h-icon li a{
		background-size: 22px;
	}
	.h-icon li a::after{
		font-size: 14px;
	}
}
@media screen and (max-width: 767px){
	header{
		padding: 10px 0;
	}
	.h-inner{
		padding-left: 35px;
	}
	.h-logo{
		width: 81px;
		margin-left: 10px;
	}
	.h-search-area{
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		transition: .2s;
		width: 100vw;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		background-color: var(--GRAY06);
		padding: 10px 0;
	}
	header.active .h-search-area{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.h-search-form input[type="text"]{
		width: 100%;
		font-size: 16px;
		padding: 10px 40px 10px 20px;
	}
	.h-search-form button{
		width: 15px;
		right: 15px;
	}
	.h-icon{
		display: grid;
		gap: 10px;
		grid-template-columns: repeat(3, 1fr);
		margin-left: auto;
	}
	.h-icon li{
		width: 23px;
		aspect-ratio: 1 / 1;
	}
	.h-icon li a,
	.h-icon li p{
		width: 100%;
		height: 100%;
		background-size: 100%;
	}
	.h-icon li .search-trigger{
		background-image: url(../images/common/search.png);
	}
	header.active .h-icon li .search-trigger{
		background-image: url(../images/common/close.png);
		background-size: 15px;
	}
	.count{
		position: absolute;
		top: -10px;
		right: -8px;
	}
}

/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
.f-bottom-area{
	background-color: var(--GRAY04);
}
.sns-link{
	display: flex;
	justify-content: center;
}
.sns-link i{
	color: var(--GRAY06);
}
.f-link li a{
	color: var(--GRAY08);
}
.f-copy{
	color: var(--GRAY06);
}
.f-link li:not(:last-child)::after{
	content: '/';
}
.f-guide{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px;
}
.f-guide li a{
	font-size: 12px;
	display: block;
	border-bottom: 1px solid var(--GRAY02);
	padding: 10px 0;
}
.f-guide-area{
	font-weight: 400;
}
@media screen and (min-width: 951px){
	body:has(#sidearea) .f-guide-area{
		padding-left: calc(var(--SIDE_WIDTH) + var(--SIDE_RIGHT));
	}
}
@media screen and (min-width: 768px){
	footer{
		padding-top: var(--GENERALSEC);
	}
	.f-guide-area{
		width: var(--WRAPPER_WIDTH);
		max-width: var(--WRAPPER_MAX_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.f-guide-pc{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		column-gap: 40px;
		row-gap: 50px;
		font-size: 13px;
		line-height: 2;
		padding-bottom: var(--GENERALSEC);
		border-bottom: 1px solid var(--GRAY07);
	}
	.f-guide-pc a{
		text-decoration: underline;
	}
	.f-guide-ttl{
		font-size: 18px;
		border-bottom: 1px solid var(--GRAY07);
		padding-bottom: 3px;
		margin-bottom: 5px;
	}
	.f-guide-pc > li .f-guide-ttl:nth-of-type(n+2){
		margin-top: 20px;
	}
	.f-postage li{
		position: relative;
		padding-left: 10px;
	}
	.f-postage li::before{
		content: '・';
		position: absolute;
		top: 0;
		left: 0;
	}
	.f-wrapping{
		gap: 10px;
		margin-top: 10px;
	}
	.f-wrapping li{
		flex: 1;
		font-size: 10px;
	}
	.f-wrapping img{
		width: 70%;
		margin: 0 auto;
	}
	.f-wrapping span{
		display: block;
		text-align: center;
	}
	.f-credit{
		grid-template-columns: repeat(5, 1fr);
		align-items: center;
		gap: 5px;
		margin-top: 10px;
	}
	.f-guide-link{
		margin-top: 10px;
	}
	.f-contact-link{
		display: grid;
		gap: 5px;
	}
	.f-hours-area{
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 14px;
	}
	.f-hours-left{
		width: fit-content;
		padding-right: 30px;
		border-right: 1px solid var(--GRAY07);
		margin-right: 30px;
	}
	.f-hours-txt{
		flex: 1;
		max-width: 355px;
	}
	.f-hour-ttl{
		font-size: 20px;
		margin-bottom: 10px;
	}
	.f-hours-desc{
		display: grid;
		gap: 5px;
	}
	.f-inner{
		width: 90%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	.f-logo-area{
		width: fit-content;
	}
	.f-logo{
		width: 160px;
		margin-bottom: 30px;
	}
	.sns-link{
		gap: 20px;
	}
	.sns-link i{
		font-size: 30px;
	}
	.f-link{
		margin-bottom: 10px;
	}
	.f-link li:not(:last-child)::after{
		font-size: 10px;
		margin: 5px 0;
	}
	.f-link li a{
		font-size: 12px;
	}
	.f-copy{
		font-size: 12px;
		text-align: right;
	}
}

@media screen and (max-width: 767px){
	footer .f-guide-ttl{
		color: var(--WHITE);
		background-color: var(--BLACK);
		font-size: 14px;
		padding: 10px;
		margin-bottom: 10px;
	}
	.f-hours-area{
		display: grid;
	}
	.f-hours-left{
		display: contents;
	}
	.f-hour-ttl{
		order: 1;
		font-size: 17px;
	}
	.f-hours-txt{
		order: 2;
		font-size: 12px;
		margin: 10px 0 20px;
	}
	.f-hours-desc{
		order: 3;
		background-color: var(--BLUE02);
		padding: 20px;
		line-height: 2;
		font-size: 13px;
		margin-bottom: 20px;
	}
	.f-logo-area{
		width: 107px;
		margin: 0 auto 35px;
	}
	.sns-link{
		gap: 20px;
		margin-top: 30px;
	}
	.sns-link i{
		font-size: 30px;
	}
	.f-link{
		justify-content: center;
		margin-bottom: 20px;
	}
	.f-link li a{
		font-size: 11px;
	}
	.f-link li:not(:last-child)::after{
		font-size: 10px;
		margin: 0 3px;
	}
	.f-copy{
		font-size: 10px;
		text-align: center;
	}
}





/* ■■■■■■■■■■■■■■■■■■■■■■side■■■■■■■■■■■■■■■■■■■■■■ */
.side-cat,
.side-cat ul{
	margin-left: 0;
}
.side-cat li > p{
	position: relative;
	margin-bottom: 0 !important;
}
.side-cat li > p::before,
.side-cat li > p::after{
	content: '';
	display: block;
	width: 8px;
	height: 1px;
	background: var(--BLACK);
	position: absolute;
}
.side-cat li > p::after{
	transform: translateY(-50%) rotate(90deg);
	transition: 0.5s;
}
.side-cat li > p.active::after {
	transform: rotate( 180deg);
	transition: 0.5s;
}
.side-cat li a{
	display: block;
	position: relative;
}
.side-cat li a::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	content: '\f105';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (min-width: 768px){
	.side-cat > li{
		margin-bottom: 20px;
	}
	.side-cat > li:nth-of-type(n+2):has(ul) ul,
	.side-cat > li > ul li:has(ul) ul{
		display: none;
	}
	.side-cat > li > ul > li > ul{
		background-color: var(--GRAY03);
	}
	.side-cat li p,
	.side-cat li a{
		padding: 13px 10px !important;
		font-size: 15px;
	}
	.side-cat > li > ul > li{
		border-bottom: 1px solid var(--GRAY02);
	}
	.side-cat > li > p{
		font-weight: 700;
		padding: 13px 0 4px;
		border-bottom: 2px solid var(--BLACK);
	}
	.side-cat > li:nth-of-type(7) > p::before{
		transform: translateY(-50%) rotate(180deg);
	}
	.side-cat > li:nth-of-type(7) > p::after{
		transform: translateY(-50%) rotate(360deg) !important;
	}
	.side-cat > li:nth-of-type(7) > p.active::after {
		transform: rotate( 270deg) !important;
	}
	.side-cat li p:hover{
		cursor: pointer;
	}
	.side-cat li > p::before,
	.side-cat li > p::after{
    right: 10px;
    top: 26px;
	}
	.side-cat li > p::after{
		top: 26.5px;
	}
	.side-cat li > p.active::after {
		top: 26px;
	}
	.side-cat li a::after{
		right: 10px;
		font-size: 12px;
	}
	.side-cat li a:hover{
		background-color: var(--BLACK);
    color: var(--WHITE);
		opacity: 1;
	}
	.side-cat li a:hover::after{
		color: var(--WHITE);
	}
	.side-cat .hide{
		display: none;
	}
	/* サイドバナー */
	.side-bnr{
		display: grid;
		gap: 15px;
		margin-top: 40px;
	}
}
@media screen and (max-width: 767px){
	.side-cat > li ul{
		display: none;
		background-color: var(--GRAY03);
	}
	.side-cat > li:nth-of-type(1) > ul{
		display: block;
	}
	.side-cat > li > ul > li > ul{
		background-color: var(--WHITE);
	}
	.side-cat > li{
		border-bottom: 1px solid var(--GRAY02);
	}
	.side-cat li p,
	.side-cat li a{
		padding: 13px 0px;
		font-size: 16px;
		width: var(--INNER_WIDTH);
    margin: 0 auto;
	}
	.side-cat li > p::before,
	.side-cat li > p::after{
		right: 0;
    top: 26px;
	}
	.side-cat li > p::after{
		top: 26.5px;
	}
	.side-cat li > p.active::after {
		top: 26px;
	}
	.side-cat > li:nth-of-type(7) > p::before{
		transform: translateY(-50%) rotate(180deg);
	}
	.side-cat > li:nth-of-type(7) > p::after{
		transform: translateY(-50%) rotate(360deg) !important;
	}
	.side-cat > li:nth-of-type(7) > p.active::after {
		transform: rotate( 270deg) !important;
	}
	.side-cat li a::after{
		right: 0;
		font-size: 12px;
	}
}






.aside-ttl{
	background-color: var(--BLACK);
	color: var(--WHITE);
}
.fs-pt-menu__heading.has-child{
	display: block;
}
.fs-pt-menu__heading a{
	display: block;
}
.fs-pt-menu__heading.has-child a{
	display: block;
	pointer-events: none;
}
.fs-pt-menu__item span{
	position: relative;
}
.fs-pt-menu__item span.has-child::before,
.fs-pt-menu__item span.has-child::after{
	content: '';
	display: block;
	width: 8px;
	height: 1px;
	background: var(--BLACK);
	position: absolute;
}
.fs-pt-menu__item span.has-child::after{
	transform: translateY(-50%) rotate(90deg);
	transition: 0.5s;
}
.fs-pt-menu__item span.has-child.active::after {
	transform: rotate( 180deg);
	transition: 0.5s;
}
.fs-pt-menu__item span:not(.has-child)::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	content: '\f105';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
@media screen and (min-width: 768px){
	.aside-ttl{
		font-size: 14px;
		padding: 10px 15px;
		margin-bottom: 20px;
	}
	.fs-pt-menu__item--lv1{
		margin-bottom: 20px;
	}
	.fs-pt-menu__heading--lv1 > a{
		font-weight: 700;
		border-bottom: 2px solid var(--BLACK);
	}
	.fs-pt-menu--lv2{
		display: block;
	}
	.fs-pt-menu--lv3,
	.fs-pt-menu--lv4{
		display: none;
	}
	.fs-pt-menu__link--lv1{
		pointer-events: none;
	}
	.fs-pt-menu__heading.has-child{
		cursor: pointer;
	}
	.fs-pt-menu__item a{
		padding: 13px 0;
	}
	.fs-pt-menu__heading--lv1 > a{
		padding: 13px 0 4px;
	} 
	.fs-pt-menu__item--lv2{
		border-bottom: 1px solid var(--GRAY02);
	}
	.fs-pt-menu__item span.has-child::before,
	.fs-pt-menu__item span.has-child::after{
		right: 10px;
		top: 26px;
	}
	.fs-pt-menu__item span.has-child::after{
		top: 26.5px;
	}
	.fs-pt-menu__item span.has-child.active::after {
		top: 26px;
	}
	.fs-pt-menu__heading--lv1.has-child::before{
		transform: translateY(-50%) rotate(180deg);
	}
	.fs-pt-menu__heading--lv1.has-child::after{
		transform: translateY(-50%) rotate(360deg) !important;
	}
	.fs-pt-menu__heading--lv1.has-child.active::after {
		transform: rotate( 270deg) !important;
	}

	.fs-pt-menu__item span:not(.has-child)::after{
		right: 10px;
		font-size: 12px;
	}
	.fs-pt-menu__item--lv2 a{
		padding-left: 10px;
		padding-right: 10px;
		font-size: 14px;
	}
	.fs-pt-menu__item--lv2 a:hover{
		opacity: 1;
		background-color: var(--BLACK);
		color: var(--WHITE);
	}
	.fs-pt-menu__item span:not(.has-child):hover::after{
		color: var(--WHITE);
	}
	.fs-pt-menu--lv3{
		background-color: var(--GRAY03);
	}
	.fs-pt-menu--lv4{
		background-color: var(--WHITE);
	}
	.side-btn{
		width: 188px;
		margin: 40px auto 0;
	}
	.side-btn a{
		display: block;
		padding: 10px 0;
		text-align: center;
		font-size: 14px;
		color: var(--WHITE);
		background-color: var(--BLUE01);
		border: 1px solid var(--BLUE01);
		border-radius: 3px;
	}
	.side-btn a:hover{
		color: var(--BLUE01);
		background-color: var(--WHITE);
		opacity: 1;
	}
}
@media screen and (max-width: 767px){
	.aside-ttl{
		text-align: center;
		padding: 3px 0;
	}
	.fs-pt-menu__item--lv1 ul{
		display: none;
	}
	.fs-pt-menu__item a{
		padding: 13px 0;
	}
	.fs-pt-menu__heading--lv1 > a{
		padding: 13px 0 4px;
	}
	.fs-pt-menu__item--lv1{
		border-bottom: 1px solid var(--GRAY02);
	}
	.fs-pt-menu__item span.has-child::before,
	.fs-pt-menu__item span.has-child::after{
		right: calc((100% - var(--INNER_WIDTH)) / 2);
		top: 26px;
	}
	.fs-pt-menu__item span.has-child::after{
		top: 26.5px;
	}
	.fs-pt-menu__item span.has-child.active::after {
		top: 26px;
	}
	.fs-pt-menu__item span:not(.has-child)::after{
		right: calc((100% - var(--INNER_WIDTH)) / 2);
		font-size: 12px;
	}
	.fs-pt-menu__item a{
		width: var(--INNER_WIDTH);
		margin: 0 auto;
		font-size: 14px;
	}
	.fs-pt-menu__item--lv2 a{
		font-size: 13px;
	}
	.fs-pt-menu__item--lv2 a:hover{
		opacity: 1;
		background-color: var(--BLACK);
		color: var(--WHITE);
	}
	.fs-pt-menu__item span:not(.has-child):hover::after{
		color: var(--WHITE);
	}
	.fs-pt-menu--lv2{
		background-color: var(--GRAY03);
	}
	.fs-pt-menu--lv3{
		background-color: var(--WHITE);
	}
	.fs-pt-menu--lv4{
		background-color: var(--BLUE02);
	}
}




/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
@media screen and (min-width: 768px){
	.topPage{
		--FOUR_COLUMN_GAP: clamp( 20px, 2vw, 40px);
	}
}
@media screen and (max-width: 767px){
	.topPage{
		--TWO_COLUMN_GAP: 20px;
	}
}
/* ----------------セクションタイトル------------------ */
.sec-ttl{
	text-align: center;
}
@media screen and (min-width: 768px){
	.sec-ttl{
		font-size: 30px;
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 767px){
	.sec-ttl{
		font-size: 20px;
		margin-bottom: 20px;
	}	
	.topPage .sec-ttl{
		font-size:23px;
		}
}
/* ----------------ボタン------------------ */
.more-btn{
	margin: 0 auto;
}
.more-btn a{
	font-weight: 400;
	display: block;
	padding: 10px 0;
	border: 1px solid var(--BLACK);  
	color: var(--BLACK);
	text-align: center;
	position: relative;
}
@media screen and (min-width: 768px){
	.more-btn{
		width: 320px;
		margin: 60px auto 0;
	}
	.more-btn a{
		border: 1px solid var(--BLACK);  
	}
	.more-btn a:hover {
		color: #fff;
		opacity: 1;
	}
	.more-btn a::before {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
		content: '';
		background: var(--BLACK);
		transform-origin: left top;
		transform: scale(0, 1);
		transition: transform .5s;
	}
	.more-btn a:hover::before {
		transform-origin: left top;
		transform: scale(1, 1);
	}
}
@media screen and (max-width: 767px){
	.more-btn{
		width: 188px;
		margin: 30px auto 0;
	}
	.more-btn a{
		border: 1px solid var(--GRAY01);
		border-radius: 3px;
		background-color: var(--WHITE);
	}
}
/* -----------------タブ切り替えの共通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;
	}
}
/* ----------------特集------------------ */
.article-excerpt{
	font-weight: 400;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
@media screen and (min-width: 1101px){
	.ori > article:nth-child(1) {
		grid-column: 1 / 5;
	}
	.ori > article:nth-child(2) {
		grid-column: 5 / 9;
	}
	.ori > article:nth-child(3) {
		grid-column: 9 / 13;
	}
	.ori > article:nth-child(4) {
		grid-column: 1 / 4;
	}
	.ori > article:nth-child(5) {
		grid-column: 4 / 7;
	}
	.ori > article:nth-child(6) {
		grid-column: 7 / 10;
	}
	.ori > article:nth-child(7) {
		grid-column: 10 / 13;
	}
}
@media screen and (min-width: 951px) and (max-width: 1100px){
	.ori > article:nth-child(1) {
		grid-column: 1 / 7;
	}
	.ori > article:nth-child(2) {
		grid-column: 7 / 13;
	}
	.ori > article:nth-child(3) {
		grid-column: 1 / 5;
	}
	.ori > article:nth-child(4) {
		grid-column: 5 / 9;
	}
	.ori > article:nth-child(5) {
		grid-column: 9 / 13;
	}
	.ori > article:nth-child(n+6){
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 950px){
	.ori > article:nth-child(1) {
		grid-column: 1 / 5;
	}
	.ori > article:nth-child(2) {
		grid-column: 5 / 9;
	}
	.ori > article:nth-child(3) {
		grid-column: 9 / 13;
	}
	.ori > article:nth-child(4) {
		grid-column: 1 / 4;
	}
	.ori > article:nth-child(5) {
		grid-column: 4 / 7;
	}
	.ori > article:nth-child(6) {
		grid-column: 7 / 10;
	}
	.ori > article:nth-child(7) {
		grid-column: 10 / 13;
	}
}
@media screen and (min-width: 768px){
	.ori {
		grid-template-columns: repeat(12, 1fr);
		column-gap: var(--FOUR_COLUMN_GAP);
		row-gap: 40px;
	}
	.article-ttl{
		font-size: 20px;
		margin: 10px 0 12px;
	}
}
@media screen and (max-width: 767px){
	.ori{
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.ori > article:nth-child(1),
	.ori > article:nth-child(2),
	.ori > article:nth-child(3){
		grid-column: 1 / 3;
	}
		.ori > article:nth-child(1) .article-ttl,
	.ori > article:nth-child(2) .article-ttl,
	.ori > article:nth-child(3) .article-ttl{
		font-size: 20px;
	}
	.article-ttl{
		font-size: 17px;
		margin: 8px 0 10px;
		color: #090909;
	}
	.article-excerpt{
		font-size:12px;
	}
}
/* --------------------トップ新着、再入荷レコメンド------------------- */
.product-sec .tab-nav{
  justify-content: center;
}
.product-sec .tab-btn{
  flex: unset;
}
.product-sec .tab-btn:not(.show) .sec-ttl{
  margin-bottom: 0;
  color: var(--GRAY01);
  border-bottom: 2px solid var(--GRAY01);
}
.product-sec .tab-btn.show .sec-ttl{
  border-bottom: 2px solid var(--BLACK);
}
.product-price{
	font-weight: 700;
	text-align: right;
}
.product-price::after{
	content: '円（税込）';
	margin-right:5px;
	font-size: 0.8em;
}
@media screen and (min-width: 768px){
	.product .slick-slide{
    margin-right: 10px;
  }
  .product .slick-list{
    padding: 0 40px 0 0!important;
  }
  .product-sec .tab-btn{
    width: 200px;
  }
  .top-slide-arrow{
    position: absolute;
    top: 30%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    width: 26px;
    aspect-ratio: 1/1;
    z-index: 2;
    cursor: pointer;
  }
  .top-slide-arrow.prev{
    background: url(../images/common/prev-arrow.svg);
    left: 0;
  }
  .top-slide-arrow.next{
    background: url(../images/common/next-arrow.svg);
    right: 0;
  }
	.product-name{
		font-size: 15px;
	}
}
@media screen and (max-width: 767px){
	.product-sec .tab-btn{
    width: 120px;
  }
  .product{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: var(--TWO_COLUMN_GAP);
	}
	.product article:nth-of-type(n+5){
		display: none;
	}
	.product .product-name{
		margin:6px 0 3px;
	}
}
/* ----------------作家------------------ */
.four.grid .thumb-hvr{
	aspect-ratio: 1/1;
}
.four.grid .thumb-hvr img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (min-width: 1101px){
	.four.grid{
		grid-template-columns: repeat(4, 1fr);
	}
}
@media screen and (min-width: 951px) and (max-width: 1100px){
	.four.grid{
		grid-template-columns: repeat(3, 1fr);
	}
	.saka article:nth-of-type(n+4),
	.sanc article:nth-of-type(n+4){
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 950px){
	.four.grid{
		grid-template-columns: repeat(4, 1fr);
	}
}
@media screen and (min-width: 768px){
	.four.grid{
		gap: var(--FOUR_COLUMN_GAP);
	}
	.saka.square{
		margin-bottom: 50px;
	}
	.two.grid{
		grid-template-columns: repeat(2, 1fr);
		gap: var(--FOUR_COLUMN_GAP);
	}
}
@media screen and (max-width: 767px){
	.saka-sec{
		background-color: var(--GRAY04);
	}
	.four.grid{
		grid-template-columns: repeat(2, 1fr);
	}
	.two.grid,
	.four.grid{
		gap: var(--TWO_COLUMN_GAP);
	}
	.saka.square{
		margin-bottom: 40px;
	}
}
/* ---------------人気シリーズ------------------- */
@media screen and (max-width: 767px){
	.series-sec{
		background-color: var(--GRAY04);
	}
}
/* ----------------ランキング------------------ */
.ranking{
  counter-reset: original-counter;
}
.ranking article{
	position: relative;
}
.ranking article::before{
	content: counter(original-counter);
	counter-increment: original-counter;
	position: absolute;
	border-radius: 50%;
	aspect-ratio: 1/1;
	background-color: var(--BLUE01);
	color: var(--WHITE);
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}
.ranking img{
	border-radius: 50%;
	overflow: hidden;
}
@media screen and (min-width: 1101px){
	.ranking{
		grid-template-columns: repeat(5, 1fr);
	}
}
@media screen and (min-width: 951px) and (max-width: 1100px){
	.ranking{
		grid-template-columns: repeat(4, 1fr);
	}
	.ranking article:nth-of-type(n+5){
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 950px){
	.ranking{
		grid-template-columns: repeat(5, 1fr);
	}
}
@media screen and (min-width: 768px){
	.ranking{
		display: grid;
		gap: 20px;
	}
	.ranking img{
		margin-bottom: 10px;
	}
	.ranking article::before{
		width: 40px;
		font-size: 18px;
	}
}
@media screen and (max-width: 767px){
	.ranking{
		white-space: nowrap;
		padding-bottom: 30px;
	}
	.ranking article{
		display: inline-block;
		min-width: 120px;
		max-width: 120px;
		vertical-align: top;
	}
	.ranking article:not(:last-child){
		margin-right: 10px;
	}
	.ranking img{
		margin-bottom: 10px;
	}
	.ranking article::before{
		width: 30px;
		font-size: 12px;
	}
	.ranking h3{
		white-space: break-spaces;
	}
}
/* ---------------読み物------------------- */
.read .thumb-hvr{
	aspect-ratio: 1/1;
}
.read .thumb-hvr img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* ----------------お知らせ------------------ */
.news li time{
	color: var(--GRAY01);
}
@media screen and (min-width: 768px){
	.news li{
		display: flex;
		width: 100%;
		gap: 20px;
	}
	.news li time,
	.news li h3{
		border-bottom: 1px dotted var(--GRAY06);
		padding: 30px 10px;
	}
	.news li:first-child time,
	.news li:first-child h3{
		padding-top: 0;
	}
	.news li time{
		width: 170px;
	}
	.news li h3{
		flex: 1;
	}
}
@media screen and (max-width: 767px){
	.news li{
		padding: 20px 0;
		border-bottom: 1px dotted var(--GRAY06);
	}
	.news li:first-child{
		padding-top: 0;
	}
	.news li time{
		font-size: 11px;
		display: block;
		margin-bottom: 5px;
	}
}

/* -----------------画像ホバーアニメ----------------- */
@media screen and (min-width: 768px){
	.thumb-hvr{
		overflow: hidden;
	}
	.thumb-hvr img{
		transition: .5s;
	}
	article:has(.thumb-hvr):hover img{
		transform: scale(1.1,1.1);
		opacity: 1 !important;
	}
	.thumb-hvr a:hover{
		opacity: 1;
	}
}
/* -----------------フューチャー商品マーク----------------- */
/* 商品詳細 */
.product-mark-area{
	--MARK_FONT_SIZE: 12px;
	gap: var(--MARK_GAP);
}
li.tachiki-ori-trigger,
li.tachiki-select-trigger{
	display: inline-block;
	margin-right: 30px;
	line-height: 1;
}
.fs-c-productMark{
	gap: 5px;
	row-gap: 10px;
}
.fs-c-productMark__mark{
	width: fit-content;
}
.fs-c-productMark li,
.fs-c-productMark span{
	margin: 0;
	display: inline-block;
	line-height: 1;
}
.fs-c-productMark__mark,
li.tachiki-ori-trigger,
li.tachiki-select-trigger{
	font-size: var(--MARK_FONT_SIZE);
	border-radius: 70px;
	padding: 7px 15px;
}
.fs-c-productMark__mark{
	border: none;
}
li.tachiki-ori-trigger,
li.tachiki-select-trigger{
	color: var(--WHITE);
	border: 1px solid var(--BLACK);
	background-color: var(--BLACK);
	position: relative;
}
li.tachiki-ori-trigger::after,
li.tachiki-select-trigger::after{
	content: '?';
	font-family: 'Shippori Mincho', serif;
	background-color: var(--GRAY01);
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	width: 24px;
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	letter-spacing: -1px;
}
.fs-c-productMark img{
	width: auto;
	height: 20px;
}
.fs-c-productMark__mark--2{
	color: #404040;
	background: #ececec;
	letter-spacing: 0;
}
@media screen and (min-width: 768px){
	.product-mark-area{
		margin: 30px 0;
	}
	.fs-c-productMark__mark,
	li.tachiki-ori-trigger,
	li.tachiki-select-trigger{
		padding: 7px 10px;
		font-size:	10px;
	}

}
@media screen and (max-width: 767px){
	.product-mark-area{
		margin: 30px 0;
	}
	.fs-c-productMark__mark,
	li.tachiki-ori-trigger,
	li.tachiki-select-trigger{
    padding: 6px 10px 6px;
    font-size: 10px;
	}
	.fs-c-productMark li, .fs-c-productMark span{
		line-height: 1.2;
	}
	.fs-c-productMark__mark, li.tachiki-ori-trigger,
	.fs-c-productMark__mark, li.tachiki-select-trigger{
		border-radius: 10px;
	}
}

/* 商品グループ */
@media screen and (min-width: 768px){
	.fs-c-productList__list__item .fs-c-productMark__mark{
		font-size: 11px;
		padding: 5px 12px;
	}
}
@media screen and (max-width: 767px){
	.fs-c-productList__list__item .fs-c-productMark__mark{
		font-size: 10px;
		padding: 5px 8px;
	}
}

/* たち吉オリジナルポップアップ */
li.tachiki-ori-trigger{
  margin-right: 31px !important;
}
.tachiki-ori-popup{
  width: fit-content;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: -200;
  transition: .2s;
	display: none;
}
.tachiki-ori-contents{
  background-color: var(--WHITE);
  height: fit-content;
  position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
}
body.ori-popup header{
  z-index: 1;
}
body::before{
	background: rgba(233, 233, 233, 0.6);
	content: '';
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -200;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s;
}
body.ori-popup::before {
	visibility: visible;
  opacity: 1;
  z-index: 992;
	transition: all 0.7s;
}
.ori-popup-close{
  width: fit-content;
  font-weight: bold;
}
.ori-popup-close.top{
  margin-left: auto;
}
.ori-popup-close.bottom{
 margin: 0 auto;
}
@media screen and (min-width: 768px){
  .tachiki-ori-contents{
    width: 700px;
    padding: 20px 30px;
    max-height: 90vh;
  }
	li.tachiki-ori-trigger{
		transition: .5s;
	}
	li.tachiki-ori-trigger:hover{
		cursor: pointer;
		opacity: 0.7;
	}
  .ori-popup-close{
    cursor: pointer;
  }
  .ori-popup-close.top{
    font-size: 30px;
  }
}
@media screen and (max-width: 767px){
  .tachiki-ori-popup{
    width: 95%;
  }
  .tachiki-ori-contents{
    width: 100%;
    max-width: 375px;
    padding: 15px 20px;
    max-height: 80vh;
  }
  .ori-popup-close.top{
    font-size: 25px; 
  }
}
/* 一覧 */
.fs-c-productList__list-thumb-area{
	position: relative;
}
p.tachiki-ori-trigger{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	border: 1px solid var(--WHITE);
	border-radius: 50%;
	background-color: var(--BLACK);
	color: var(--WHITE);
	aspect-ratio: 1 / 1;
	font-family: 'Shippori Mincho', serif;
	position: absolute;
	z-index: 2;
	bottom: 5px;
	right: 5px;
	width: 57px;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: -2px;
}
p.tachiki-ori-trigger::after{
	content: "";
	display: inline-block;
	border: 0.5px solid var(--WHITE);
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 49px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
p.tachiki-ori-trigger span{
	display: block;
	text-align: center;
	font-size: 10px;
}
@media screen and (min-width: 768px){
	p.tachiki-ori-trigger{
		transition: .5s;
	}
	p.tachiki-ori-trigger:hover{
		cursor: pointer;
		opacity: 0.7;
	}
}


/* たち吉セレクトポップアップ */
li.tachiki-select-trigger{
  margin-right: 31px !important;
}
.tachiki-select-popup{
  width: fit-content;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: -200;
  transition: .2s;
	display: none;
}
.tachiki-select-contents{
  background-color: var(--WHITE);
  height: fit-content;
  position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
}
body.select-popup header{
  z-index: 1;
}
body::before{
	background: rgba(233, 233, 233, 0.6);
	content: '';
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -200;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s;
}
body.select-popup::before {
	visibility: visible;
  opacity: 1;
  z-index: 992;
	transition: all 0.7s;
}
.select-popup-close{
  width: fit-content;
  font-weight: bold;
}
.select-popup-close.top{
  margin-left: auto;
}
.select-popup-close.bottom{
 margin: 0 auto;
}
@media screen and (min-width: 768px){
  .tachiki-select-contents{
    width: 700px;
    padding: 20px 30px;
    max-height: 90vh;
  }
	li.tachiki-select-trigger{
		transition: .5s;
	}
	li.tachiki-select-trigger:hover{
		cursor: pointer;
		opacity: 0.7;
	}
  .select-popup-close{
    cursor: pointer;
  }
  .select-popup-close.top{
    font-size: 30px;
  }
}
@media screen and (max-width: 767px){
  .tachiki-select-popup{
    width: 95%;
  }
  .tachiki-select-contents{
    width: 100%;
    max-width: 375px;
    padding: 15px 20px;
    max-height: 80vh;
  }
  .select-popup-close.top{
    font-size: 25px; 
  }
}
/* 一覧 */
.fs-c-productList__list-thumb-area{
	position: relative;
}
p.tachiki-select-trigger{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	border: 1px solid var(--WHITE);
	border-radius: 50%;
	background-color: var(--BLACK);
	color: var(--WHITE);
	aspect-ratio: 1 / 1;
	font-family: 'Shippselect Mincho', serif;
	position: absolute;
	z-index: 2;
	bottom: 5px;
	right: 5px;
	width: 57px;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: -2px;
}
p.tachiki-select-trigger::after{
	content: "";
	display: inline-block;
	border: 0.5px solid var(--WHITE);
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 49px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
p.tachiki-select-trigger span{
	display: block;
	text-align: center;
	font-size: 10px;
}
@media screen and (min-width: 768px){
	p.tachiki-select-trigger{
		transition: .5s;
	}
	p.tachiki-select-trigger:hover{
		cursor: pointer;
		opacity: 0.7;
	}
}
/* --------------------SPトップ、商品共通アイテム一覧------------------- */
@media screen and (max-width: 767px){
  .item-choose{
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }
  .item-choose li a{
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: top 10px center;
    font-size: 11px;
    text-align: center;
    display: block;
    padding-top: 60px;
  }
  .item-choose li .plate{
    background-image: url(../images/top/item-plate.svg);
  }
  .item-choose li .bowl{
    background-image: url(../images/top/item-bowl.svg);
  }
  .item-choose li .rice-bowl{
    background-image: url(../images/top/item-rice_bowl.svg);
  }
  .item-choose li .soup-bowl{
    background-image: url(../images/top/item-soup_bowl.svg);
  }
  .item-choose li .tea-set{
    background-image: url(../images/top/item-tea_set.svg);
  }
  .item-choose li .cup{
    background-image: url(../images/top/item-cup.svg);
  }
  .item-choose li .saka-cup{
    background-image: url(../images/top/item-sake_cup.svg);
  }
    .item-choose li .chopstick{
    background-image: url(../images/top/item-chopstick.svg);
  }
  .item-choose li .pot{
    background-image: url(../images/top/item-pot.svg);
  }
}
/* ----------------- フューチャーパンくず-----------------  */
.fs-c-breadcrumb__list {
  padding: 8px 0;
	position: relative;
}
.fs-c-breadcrumb__list::before,
.fs-c-breadcrumb__list::after {
	content: "";
	display: block;
	position: absolute;
	background-color: var(--GRAY02);
	width: calc(99vw - 1px);
	height: 1px;
	left: 50%;
	transform: translateX(-50%);
}
.fs-c-breadcrumb__list::before{
	top: 0;
}
.fs-c-breadcrumb__list::after{
	bottom: 0;
}
.fs-c-breadcrumb__list > li {
  box-sizing: border-box;
}
.fs-c-breadcrumb__listItem {
  display: inline-block;
  word-break: break-all;
}
.fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem::before {
  content: " > ";
}
.fs-c-breadcrumb li a {
	text-decoration: underline;
}
.fs-c-breadcrumb li,
.fs-c-breadcrumb li a {
	color: var(--BLACK);
}
@media screen and (min-width: 768px) {
	.fs-c-breadcrumb {
		margin: 0 0 70px;
		font-size: 11px;
	}
}

@media screen and (max-width: 767px) {
	.fs-c-breadcrumb {
		margin-bottom: 20px;
		font-size: 11px;
	}
	.fs_RegisterVerification #mainarea{
		margin-bottom: 60px;
	}
}

.product-review-link-get,
.product-review{

}







/* たち吉オリジナルクリック一旦無効化 */
.tachiki-ori-trigger{
	pointer-events: none !important;
}
.tachiki-ori-trigger::after{
	content: '' !important;
	width: 0 !important;
}
li.tachiki-ori-trigger{
	margin-right: 0 !important;
}


/* 追加css */
.foot-payment{
	margin-top: 20px;
}
.foot-payment img{
	width: 130px;
}

/* たちきセレクトタグ */
.tachiki-select-tag{
	background-color: #e19427;
	color: #fff;
}

/* 商品一覧　予約商品文言非表示 */



.fs-c-productListItem__preorderMessage {
	display:none;
}

.fs-c-mark--preorder {
	display:none;
}