@charset "UTF-8";

/* =========================
	RESET
========================= */

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

html{
	font-size:62.5%;
}

body{
	color:#222;
	background:#fff;
	font-size:1.4rem;
	font-family:"Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic",Meiryo,sans-serif;
	line-height:1.7;
	-webkit-text-size-adjust:100%;
}

img{
	display:block;
	max-width:100%;
	height:auto;
}

a{
	color:inherit;
	text-decoration:none;
	transition:.2s;
}

ul,
ol{
	list-style:none;
}


/* =========================
	ROOT
========================= */

:root{
	--main:#2b1810;
	--sub:#8b6b3f;
	--gold:#c9a86a;
	--bg:#f8f5ef;
	--border:#e5ddd0;
	--text:#222;
	--text-light:#777;
}


/* =========================
	COMMON
========================= */

.th-wrap{
	min-width:1280px;
	background:#fff;
}

.th-main{
	min-height:500px;
}




/* =========================
	AGE CHECK
========================= */

.th-age{
	position:fixed;
	inset:0;
	z-index:99999;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:24px;
	background:rgba(0,0,0,.72);
	backdrop-filter:blur(6px);
	overflow:auto;
}

.th-age.is-hide{
	display:none;
}

.th-age__box{
	position:relative;
	width:100%;
	max-width:560px;
	max-height:90vh;
	padding:46px 42px;
	background:#fff;
	text-align:center;
	box-shadow:
		0 30px 80px rgba(0,0,0,.30);
	overflow:auto;
}

.th-age__box::after{
	content:"";
	position:sticky;
	left:0;
	bottom:-46px;
	display:block;
	width:100%;
	height:48px;
	margin-top:-48px;
	background:linear-gradient(
		to bottom,
		rgba(255,255,255,0),
		rgba(255,255,255,1)
	);
	pointer-events:none;
}

.th-age__box::-webkit-scrollbar{
	width:8px;
}

.th-age__box::-webkit-scrollbar-track{
	background:#f3efe8;
}

.th-age__box::-webkit-scrollbar-thumb{
	background:#b9a692;
}

.th-age__logo{
	margin-bottom:22px;
	display:flex;
	justify-content:center;
}

.th-age__logo img{
	width:210px;
	height:auto;
}

.th-age__title{
	margin-bottom:22px;
	color:var(--main);
	font-size:3rem;
	font-weight:700;
	letter-spacing:.08em;
}

.th-age__text{
	margin-bottom:22px;
	color:#555;
	font-size:1.4rem;
	line-height:1.9;
}

.th-age__question{
	margin-bottom:28px;
	color:#111;
	font-size:1.8rem;
	font-weight:700;
	line-height:1.7;
	letter-spacing:.05em;
}

.th-age__btns{
	display:flex;
	flex-direction:column;
	gap:12px;
}

.th-age__btn{
	width:100%;
	height:58px;
	border:0;
	cursor:pointer;
	font-size:1.4rem;
	font-weight:700;
	letter-spacing:.04em;
	transition:.2s;
}

.th-age__btn--yes{
	background:var(--main);
	color:#fff;
}

.th-age__btn--yes:hover{
	opacity:.88;
}

.th-age__btn--no{
	background:#f3efe8;
	color:#444;
}

.th-age__btn--no:hover{
	background:#e7dfd2;
}

/* =========================
	HEADER
========================= */

.th-header{
	width:100%;
	background:#fff;
	border-bottom:1px solid var(--border);
}

.th-header__top{
	border-bottom:1px solid var(--border);
}

.th-header__inner{
	width:1280px;
	margin:0 auto;
	padding:0 20px;
}

.th-header__top .th-header__inner{
	height:92px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:32px;
}

.th-header__left{
	display:flex;
	align-items:center;
	gap:22px;
	min-width:0;
}

.th-logo{
	flex-shrink:0;
}

.th-logo img{
	width:220px;
	height:auto;
}

.th-copy{
	color:var(--text-light);
	font-size:1.2rem;
	letter-spacing:.05em;
	white-space:nowrap;
}

.th-header__right{
	flex-shrink:0;
}

.th-topnav{
	height:92px;
	display:flex;
	align-items:center;
}

.th-topnav__item{
	position:relative;
}

.th-topnav__item + .th-topnav__item::before{
	content:"";
	position:absolute;
	left:0;
	top:34px;
	width:1px;
	height:24px;
	background:#eadfd2;
}

.th-topnav__item a{
	height:92px;
	padding:0 22px;
	display:flex;
	align-items:center;
	gap:7px;
	color:#222;
	font-size:1.2rem;
	font-weight:700;
	letter-spacing:.02em;
	white-space:nowrap;
}

.th-topnav__item a:hover{
	opacity:.65;
}

.th-topnav__item i{
	width:17px;
	font-size:1.6rem;
	color:var(--main);
	text-align:center;
	line-height:1;
	flex-shrink:0;
}

.th-cart-count{
	min-width:16px;
	height:16px;
	padding:0 5px;
	border-radius:999px;
	background:var(--main);
	color:#fff;
	font-size:1rem;
	font-weight:700;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	line-height:1;
}


/* =========================
	GNAV
========================= */

.th-header__bottom{
	background:#fff;
}

.th-gnav__list{
	display:flex;
	align-items:center;
	justify-content:center;
}

.th-gnav__item a{
	height:56px;
	padding:0 45px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:1.4rem;
	font-weight:700;
	letter-spacing:.03em;
	white-space:nowrap;
}

.th-gnav__item a:hover{
	color:var(--sub);
}



/* =========================
	FOOTER
========================= */

.th-footer{
	margin-top:80px;
	border-top:1px solid var(--border);
	background:#fff;
}


/* =========================
	FOOTER MIDDLE
========================= */

.th-footer__middle{
	padding:48px 0;
}

.th-footer__middle .th-footer__inner{
	width:1280px;
	margin:0 auto;
	padding:0 20px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:40px;
}

.th-footer__logo img{
	width:240px;
	height:auto;
}

.th-footer__nav{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	gap:14px 28px;
}

.th-footer__nav a{
	color:#444;
	font-size:1.3rem;
	white-space:nowrap;
}

.th-footer__nav a:hover{
	color:var(--sub);
}


/* =========================
	FOOTER BOTTOM
========================= */

.th-footer__bottom{
	padding:20px;
	background:#111;
}

.th-footer__copyright{
	text-align:center;
	color:#fff;
	font-size:1.2rem;
	letter-spacing:.08em;
}


/* =========================
	FV
========================= */

.th-fv{
	position:relative;
	height:620px;
	overflow:hidden;
	background:#111;
}

.th-fv__bg{
	position:absolute;
	inset:0;
	z-index:0;
}

.th-fv__bg img{
	width:100%;
	height:100%;
	object-fit:cover;
	transform:scale(1.02);
}

.th-fv__overlay{
	position:absolute;
	inset:0;
	background:
		linear-gradient(
			90deg,
			rgba(0,0,0,.56) 0%,
			rgba(0,0,0,.38) 38%,
			rgba(0,0,0,.16) 72%,
			rgba(0,0,0,.08) 100%
		);
	z-index:1;
}

.th-fv__inner{
	position:relative;
	z-index:2;
	width:1280px;
	height:100%;
	margin:0 auto;
	padding:0 20px;
	display:flex;
	align-items:center;
}

.th-fv__content{
	max-width:620px;
	color:#fff;
}

.th-fv__sub{
	margin-bottom:20px;
	color:rgba(255,255,255,.92);
	font-size:1.3rem;
	font-weight:700;
	letter-spacing:.18em;
	text-shadow:
		0 2px 8px rgba(0,0,0,.45),
		0 0 14px rgba(0,0,0,.25);
}

.th-fv__title{
	margin-bottom:26px;
	font-size:5.8rem;
	font-weight:700;
	line-height:1.35;
	letter-spacing:.05em;
	text-shadow:
		0 3px 14px rgba(0,0,0,.55),
		0 0 28px rgba(0,0,0,.25);
}

.th-fv__text{
	margin-bottom:40px;
	color:rgba(255,255,255,.96);
	font-size:1.6rem;
	line-height:2;
	letter-spacing:.04em;
	text-shadow:
		0 2px 10px rgba(0,0,0,.50),
		0 0 18px rgba(0,0,0,.22);
}

.th-fv__btn{
	width:260px;
	height:60px;
	display:flex;
	align-items:center;
	justify-content:center;
	border:1px solid rgba(255,255,255,.45);
	background:rgba(255,255,255,.10);
	backdrop-filter:blur(6px);
	color:#fff;
	font-size:1.4rem;
	font-weight:700;
	letter-spacing:.08em;
	box-shadow:
		0 10px 30px rgba(0,0,0,.20);
}

.th-fv__btn:hover{
	background:#fff;
	color:#111;
}



/* =========================
	SECTION
========================= */

.th-sec{
	margin-bottom:44px;
	text-align:center;
}

.th-sec__sub{
	margin-bottom:12px;
	color:var(--sub);
	font-size:1.2rem;
	font-weight:700;
	letter-spacing:.22em;
}

.th-sec__title{
	font-size:3.4rem;
	font-weight:700;
	letter-spacing:.08em;
	color:var(--main);
}


/* =========================
	CATEGORY
========================= */

.th-category{
	margin:0;
	background:#fff;
	border-bottom:1px solid var(--border);
}

.th-category__inner{
	width:1280px;
	margin:0 auto;
	padding:0 20px;
}

.th-category__list{
	display:grid;
	grid-template-columns:repeat(6,1fr);
	border-top:1px solid var(--border);
	border-left:1px solid var(--border);
}

.th-category__item{
	height:170px;
	padding:20px 10px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	background:#fff;
	border-right:1px solid var(--border);
	text-align:center;
	transition:.25s;
}

.th-category__item:hover{
	background:#faf7f2;
}

.th-category__icon{
	margin-bottom:18px;
}

.th-category__icon img{
	width:74px;
	height:74px;
	object-fit:contain;
	opacity:.92;
}

.th-category__name{
	margin-bottom:7px;
	color:var(--main);
	font-size:1.7rem;
	font-weight:700;
	letter-spacing:.04em;
	line-height:1.4;
}

.th-category__en{
	color:#9d8c78;
	font-size:1rem;
	font-weight:700;
	letter-spacing:.16em;
	line-height:1.4;
}



/* =========================
	TOP 2COL
========================= */

.th-top2col{
	padding:70px 0 80px;
	background:#fff;
}

.th-top2col__inner{
	width:1280px;
	margin:0 auto;
	padding:0 20px;
	display:grid;
	grid-template-columns:minmax(0,1fr) 300px;
	gap:48px;
	align-items:start;
}

.th-top2col__right{
	border-left:1px solid var(--border);
	padding-left:40px;
}

.th-sec--left{
	text-align:left;
	margin-bottom:36px;
}



/* =========================
	TOP ACTION
========================= */

.th-topaction{
	display:flex;
	flex-direction:column;
	gap:12px;
	margin-bottom:34px;
}

.th-topaction__btn{
	height:58px;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	border:1px solid var(--border);
	background:#fff;
	color:var(--main);
	font-size:1.4rem;
	font-weight:700;
}

.th-topaction__btn:hover{
	background:#faf7f2;
}

.th-topaction__btn i{
	font-size:1.6rem;
}

.th-topaction__btn .th-cart-count{
	margin-left:4px;
}


/* =========================
	TOP INFO
========================= */

.th-topinfo{
	border-left:0;
	padding-left:0;
}

.th-topinfo__item{
	display:flex;
	align-items:flex-start;
	gap:18px;
	padding:0 0 26px;
	margin-bottom:26px;
	border-bottom:1px solid #f0ebe3;
}

.th-topinfo__item:last-child{
	margin-bottom:0;
	padding-bottom:0;
	border-bottom:0;
}

.th-topinfo__icon{
	width:68px;
	height:68px;
	border:1px solid #d8ccbc;
	border-radius:999px;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-shrink:0;
	color:var(--main);
	font-size:2rem;
	font-weight:700;
	background:#fff;
}

.th-topinfo__icon i{
	font-size:2rem;
}

.th-topinfo__body{
	padding-top:4px;
}

.th-topinfo__title{
	margin-bottom:8px;
	color:var(--main);
	font-size:1.6rem;
	font-weight:700;
	line-height:1.5;
}

.th-topinfo__text{
	color:#777;
	font-size:1.3rem;
	line-height:1.9;
}



/* =========================
	PRODUCT
========================= */

.th-product{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:22px;
}

.th-product__item{
	display:block;
	background:#fff;
	border:1px solid #eee5d9;
	overflow:hidden;
	transition:.25s;
}

.th-product__item:hover{
	transform:translateY(-4px);
	box-shadow:
		0 18px 40px rgba(0,0,0,.08);
}

.th-product__img{
	background:#f7f3ec;
	overflow:hidden;
}

.th-product__img img{
	width:100%;
	height:240px;
	object-fit:cover;
	transition:transform .5s;
}

.th-product__item:hover .th-product__img img{
	transform:scale(1.04);
}

.th-product__name{
	padding:18px 16px 10px;
	color:var(--main);
	font-size:1.4rem;
	font-weight:700;
	line-height:1.6;
}

.th-product__price{
	padding:0 16px 16px;
	color:#111;
	font-size:1.8rem;
	font-weight:700;
	line-height:1;
}

.th-product__price span{
	margin-left:4px;
	font-size:1rem;
	font-weight:400;
	color:#777;
}

.th-product__cart{
	height:50px;
	display:flex;
	align-items:center;
	justify-content:center;
	border-top:1px solid #eee5d9;
	background:#faf7f2;
	color:var(--main);
	font-size:1.2rem;
	font-weight:700;
	letter-spacing:.04em;
}

.th-product__item:hover .th-product__cart{
	background:var(--main);
	color:#fff;
}


/* =========================
	PAGE FV
========================= */

.th-pagefv{
	position:relative;
	padding:48px 0 52px;
	background:
		linear-gradient(
			180deg,
			#1b120d 0%,
			#2b1810 48%,
			#120c09 100%
		);
	border-bottom:1px solid #3d2b22;
	overflow:hidden;
}

.th-pagefv__inner{
	width:1280px;
	margin:0 auto;
	padding:0 20px;
	text-align:center;
}

.th-pagefv__title{
	margin-bottom:10px;
	color:#fff;
	font-size:3.8rem;
	font-weight:700;
	letter-spacing:.08em;
	line-height:1.35;
	text-shadow:0 3px 14px rgba(0,0,0,.45);
}

.th-pagefv__sub{
	color:#c9a86a;
	font-size:1.1rem;
	font-weight:700;
	letter-spacing:.24em;
}



/* =========================
	BREADCRUMB
========================= */

.th-breadcrumb{
	border-bottom:1px solid var(--border);
	background:#fff;
}

.th-breadcrumb__inner{
	width:1280px;
	margin:0 auto;
	padding:14px 20px;
	display:flex;
	align-items:center;
	gap:10px;
	color:#777;
	font-size:1.2rem;
}

.th-breadcrumb a{
	color:var(--main);
}


/* =========================
	PRODUCT LIST
========================= */

.th-plist{
	padding:60px 0 90px;
	background:#fff;
}

.th-plist__inner{
	width:1280px;
	margin:0 auto;
	padding:0 20px;
	display:grid;
	grid-template-columns:260px minmax(0,1fr);
	gap:48px;
	align-items:start;
}

.th-side{
	border:1px solid var(--border);
	background:#fff;
}

.th-side__title{
	padding:18px 20px;
	background:var(--main);
	color:#fff;
	font-size:1.3rem;
	font-weight:700;
	letter-spacing:.14em;
}

.th-side__nav li{
	border-bottom:1px solid var(--border);
}

.th-side__nav li:last-child{
	border-bottom:0;
}

.th-side__nav a{
	display:block;
	padding:15px 18px;
	color:#333;
	font-size:1.3rem;
}

.th-side__nav a:hover{
	background:#faf7f2;
	color:var(--main);
}

.th-plisthead{
	margin-bottom:28px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:24px;
}

.th-plisthead__count{
	color:var(--main);
	font-size:1.5rem;
	font-weight:700;
}

.th-plisthead__sort{
	display:flex;
	align-items:center;
	gap:10px;
}

.th-plisthead__sort select{
	height:42px;
	padding:0 36px 0 14px;
	border:1px solid var(--border);
	background:#fff;
	color:#333;
	font-size:1.3rem;
}

.th-pager{
	margin-top:48px;
}


/* =========================
	GUIDE
========================= */

.th-guide{
	padding:70px 0 90px;
	background:#fff;
}

.th-guide__inner{
	width:980px;
	margin:0 auto;
	padding:0 20px;
}

.th-guideblock{
	padding:42px 0;
	border-bottom:1px solid var(--border);
}

.th-guideblock:first-child{
	padding-top:0;
}

.th-guideblock__title{
	margin-bottom:24px;
	padding-left:18px;
	border-left:4px solid var(--main);
	color:var(--main);
	font-size:2.4rem;
	font-weight:700;
	letter-spacing:.05em;
}

.th-guideblock__body{
	color:#444;
	font-size:1.5rem;
	line-height:2.1;
}

.th-guideblock__body p{
	margin-bottom:16px;
	padding-left:3em;
}

.th-guide__note{
	color:#c00;
	font-weight:700;
}

.th-guideflow{
	width:520px;
	max-width:100%;
	margin:30px auto 0;
}

.th-guideflow__item{
	display:flex;
	align-items:flex-start;
	gap:14px;
	padding:16px 18px;
	border:2px solid var(--main);
	background:#fff;
}

.th-guideflow__no{
	width:30px;
	height:30px;
	border-radius:999px;
	background:var(--main);
	color:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-shrink:0;
	font-size:1.5rem;
	font-weight:700;
}

.th-guideflow__head{
	margin-bottom:4px;
	color:var(--main);
	font-size:1.8rem;
	font-weight:700;
}

.th-guideflow__text{
	color:#555;
	font-size:1.3rem;
	line-height:1.6;
}

.th-guideflow__arrow{
	width:520px;
	max-width:100%;
	padding:8px 0;
	color:var(--main);
	text-align:center;
	font-size:1.8rem;
}



/* =========================
   FAQ
========================= */

.th-faq{
	padding:70px 20px 100px;
}

.th-faq__inner{
	max-width:1100px;
	margin:0 auto;
}

.th-faq__lead{
	background:#fff;
	border:1px solid #e5ddd1;
	padding:24px 28px;
	margin-bottom:40px;
	font-size:15px;
	line-height:2;
	color:#444;
	border-radius:8px;
}

.th-faqblock{
	margin-bottom:44px;
}

.th-faqblock__title{
	position:relative;
	margin:0 0 22px;
	padding:0 0 14px 18px;
	font-size:28px;
	font-weight:700;
	letter-spacing:.08em;
	color:#111;
	border-bottom:1px solid #d8cdbd;
}

.th-faqblock__title::before{
	content:'';
	position:absolute;
	left:0;
	top:4px;
	width:4px;
	height:32px;
	background:#9f7b4f;
	border-radius:10px;
}

.th-faqitem{
	background:#fff;
	border:1px solid #e5ddd1;
	border-radius:8px;
	margin-bottom:16px;
	overflow:hidden;
}

.th-faqitem__q{
	position:relative;
	margin:0;
	padding:22px 70px 22px 72px;
	font-size:17px;
	font-weight:700;
	line-height:1.8;
	cursor:pointer;
	color:#111;
	transition:.25s;
}

.th-faqitem__q::before{
	content:'Q';
	position:absolute;
	left:24px;
	top:20px;
	width:34px;
	height:34px;
	border-radius:50%;
	background:#111;
	color:#fff;
	font-size:15px;
	font-weight:700;
	display:flex;
	align-items:center;
	justify-content:center;
}

.th-faqitem__q::after{
	content:'+';
	position:absolute;
	right:24px;
	top:50%;
	transform:translateY(-50%);
	font-size:26px;
	font-weight:300;
	color:#9f7b4f;
	transition:.25s;
}

.th-faqitem.is-open .th-faqitem__q::after{
	transform:translateY(-50%) rotate(45deg);
}

.th-faqitem__a{
	display:none;
	position:relative;
	margin:0;
	padding:0 28px 28px 72px;
	font-size:15px;
	line-height:2;
	color:#444;
}

.th-faqitem__a::before{
	content:'A';
	position:absolute;
	left:24px;
	top:2px;
	width:34px;
	height:34px;
	border-radius:50%;
	background:#9f7b4f;
	color:#fff;
	font-size:15px;
	font-weight:700;
	display:flex;
	align-items:center;
	justify-content:center;
}

.th-faqitem__a p{
	margin:0 0 14px;
}

.th-faqitem__a table{
	width:100%;
	border-collapse:collapse;
	margin-top:14px;
	background:#fff;
}

.th-faqitem__a table th,
.th-faqitem__a table td{
	border:1px solid #ddd3c5;
	padding:10px 12px;
	font-size:14px;
	line-height:1.6;
}

.th-faqitem__a table th{
	background:#f3ede4;
	font-weight:700;
}

.th-faqitem__a small{
	font-size:12px;
	color:#777;
}

.th-faqitem__a a{
	color:#9f7b4f;
	text-decoration:underline;
}

@media screen and (max-width:767px){

	.th-faq{
		padding:50px 16px 80px;
	}

	.th-faq__lead{
		padding:20px;
		font-size:14px;
		line-height:1.9;
	}

	.th-faqblock__title{
		font-size:22px;
		padding-left:14px;
	}

	.th-faqblock__title::before{
		height:26px;
	}

	.th-faqitem__q{
		padding:18px 54px 18px 60px;
		font-size:15px;
		line-height:1.7;
	}

	.th-faqitem__q::before{
		left:16px;
		top:16px;
		width:30px;
		height:30px;
		font-size:13px;
	}

	.th-faqitem__q::after{
		right:18px;
		font-size:22px;
	}

	.th-faqitem__a{
		padding:0 18px 22px 60px;
		font-size:14px;
		line-height:1.9;
	}

	.th-faqitem__a::before{
		left:16px;
		width:30px;
		height:30px;
		font-size:13px;
	}

}
