@charset "UTF-8";
/* CSS Document */

/*
=========================================
Global Variables
=========================================
*/
:root{
	/* Typography */
	--font-base: clamp(1.1rem, 0.5vw + 1rem, 1.2rem);
	--font-heading: clamp(1.6rem, 1.8vw + 1rem, 2.3rem);
	--font-nav: clamp(1.3rem, 1vw + 0.6rem, 1.5rem);
	--font-lower-base: clamp(1.4rem, 1rem + 0.5vw, 1.7rem);
	
	/* Layout*/
	--content-width: 104rem;
	--content-padding: 2rem;
	
	/*Colors*/
	--color-bg: #deede8;
	--color-accent: #962341;
	--color-size: #464646;
	--color-drawer-bg: #fafaf0;
	--color-drawer-hover: #cdd2c8;
	
	--color-about-heading: #3a4e75;
	--color-about-effect: #ff5a64;
}

/*
=========================================
base layout
=========================================
*/
html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body{
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
  	font-size: var(--font-base);
	color: #333;
	line-height: 1.6;
	letter-spacing: 0.06em;
	-webkit-text-size-adjust: 100%;
	 -moz-text-size-adjust: 100%;
		  text-size-adjust: 100%;
	overflow-wrap: break-word;
	word-break: break-word;
	font-feature-settings: "pnum";
	min-height: 100dvh;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

main{
	padding-top: 12.47rem;
}

img{
	border: 0;
	width: 100%;
	height: auto;
}

ul, ol{
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}
a,a:hover,a:visited{
    color: inherit;
}

h2{
	font-family: avenir-lt-pro, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: var(--font-heading);
	text-transform: uppercase;
}
section{
	position: relative;
	padding-top: 3.0rem;
	padding-bottom: 5.0rem;
}

/*
=========================================
Utility Classes
=========================================
*/
.wrapper{
	overflow-x: hidden;
}
.container{
	max-width: var(--content-width);
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--content-padding);
}

.uppercase{
	text-transform: uppercase;
}
.section-heading{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2.6rem;
}
.section-heading a{
	text-decoration: underline;
	text-underline-offset: 0.3em;
}
.section-heading a:hover{
	text-decoration: none;
}
.pc-none{
	display: none;
}
@media (max-width: 767px){
	.pc-none{
		display: block;
	}
}
.sp-none{
	display: block;
}
@media (max-width: 767px){
	.sp-none{
		display: none;
	}
}
.center{
	text-align: center;
}
.txt-justify{
	text-align: justify;
}


/*fonts*/
.font-avenir{
	font-family: avenir-lt-pro, sans-serif;
	font-weight: 500;
	font-style: normal;
}
.font-ryo-gothic{
	font-family: "ryo-gothic-plusn", sans-serif;
	font-weight: 500;
	font-style: normal;
}




/*
=========================================
header
=========================================
*/
.header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #fff;
	z-index: 10;
	transition: transform 0.7s ease;/*header隠さない場合は削除*/
	will-change: transform;/*header隠さない場合は削除*/
}
header.header-hidden{
	transform: translateY(-100%);/*header隠さない場合は削除*/
}
.header__info{
	background-color: var(--color-bg);
	text-align: center;
	padding: 1rem;
	font-weight: 600;
	letter-spacing: 0.1em;
}
@media (max-width: 767px){
	.header__info{
		line-height: 1.3;
	}
}

.header__info a:hover{
	border-bottom: 1px solid #333;
}

.header__inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2.0rem;
	max-width: var(--content-width);
	margin: auto;
}
.header__logo{
	max-width: clamp(12.0rem, 30vw, 22.0rem);
	width: 100%;
	height: auto;
}
.header__toggle{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 4.0rem;
	height: 2.0rem;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 20;
	transition: transform 0.3s ease;
}
.header__toggle .bar{
	display: block;
	width: 100%;
	height: 2px;
	transform: scaleY(0.5);
	background-color: #333;
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__toggle.active .bar:nth-child(1){
	transform: translateY(9.0px) rotate(45deg) scaleY(0.5);
}
.header__toggle.active .bar:nth-child(2){
	opacity: 0;
}
.header__toggle.active .bar:nth-child(3){
	transform: translateY(-9.0px) rotate(-45deg) scaleY(0.5);
}


.header__nav{
	position: fixed;
	right: -100%;
	width: 40%;
	height: 100vh;
	max-height: 100dvh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: right 0.3s ease;
	z-index: 15;
}
@media (max-width: 767px){
	.header__nav{
		width: 100%;
	}
}
.header__nav.active{
	right: 0;
}

.header__nav ul{
	margin-inline: auto;
}
.header__nav-list{
	display: flex;
	flex-direction: column;
	gap: 2.0rem;
	text-transform: uppercase;
	font-size: var(--font-nav);
	padding: 3.6rem 4.8rem 2.4rem;
	background-color: var(--color-drawer-bg);
}
@media (max-width: 767px){
	.header__nav-list{
		padding: 2.4rem 4.8rem 2.0rem;
	}
}
.header__nav-list li{
	padding-bottom: 1.2rem;
	border-bottom: 1px solid var(--color-drawer-hover);
}
.header__nav-list li:nth-child(n+4){
	font-size: 1.3rem;
	font-family: avenir-lt-pro, sans-serif;
	font-weight: 500;
	font-style: normal;
}
.header__nav-list a:hover{
	text-decoration: underline;
	text-underline-offset: 0.3em;
}
.header__nav-icon{
	display: flex;
	column-gap: 1.0rem;
	background-color: var(--color-drawer-hover);
	padding: 2.4rem 4.8rem;
}
@media (max-width: 767px){
	.header__nav-icon{
		padding: 2.0rem 4.8rem;
	}
}
.header__nav-icon a:hover{
	opacity: 0.5;
	transition: .3s;
}
.header__nav-icon img{
	width: 50%;
	height: auto;
}


.header__overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.4);
	display: none;
	z-index: 14;
}
.header__overlay.active{
	display: block;
}

/*
=========================================
ORDER
=========================================
*/
.order.section--lower::before{
	content: "";
	position:absolute;
	top: 0;
	left: 50%;
	width: 100vw;
	height: 2px;
	transform: translateX(-50%) scaleY(0.5);
	background-color: #4b4b4b;
	pointer-events: none;
}
.order h2,.order h3{
	margin-bottom: 2.6rem;
}

.order h3{
	font-family: avenir-lt-pro, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: var(--font-heading);
	text-transform: uppercase;
}
.order span{
	margin-left: 4.0rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: var(--font-base);
	vertical-align: middle;
}
.order__lead{
	font-weight: 600;
	margin-bottom: 2.7rem;
}
.order__tel{
	display: flex;
	align-items: center;
	gap: 2.0rem;
	margin-bottom: 3.0rem;
}
@media (max-width: 767px){
	.order__tel{
		gap: 1.0rem;
	}
}
.order__tel img{
	max-width: 4.4rem;
	height: auto;
}
.order__tel a{
	font-family: "Lato", sans-serif;
	font-weight: 900;
	font-size: 5.0rem;
	line-height: 1;
}
@media (max-width: 767px){
	.order__tel a{
		font-size: clamp(3.2rem, 5vw, 5rem);
	}
}
.order__tel a:hover{
	opacity: 0.6;
	transition: .3s;
}
.order__time,.order__caution{
	font-weight: 600;
	margin-bottom: 2.0rem;
}
.order__notes{
	text-align: justify;
}
.order__notes:first-of-type{
	margin-bottom: 3.2rem;
}
/*
=========================================
footer
=========================================
*/
.footer{
	background-color: var(--color-bg);
	padding-top: 2.8rem;
	padding-bottom: 12rem;
	text-align: center;
}
.footer__list{
	display: flex;
	justify-content: center;
	gap: 6rem;
}
.footer__list a:hover{
	text-decoration: underline;
	text-underline-offset: 0.3em;
}
@media (max-width: 767px){
	.footer__list{
		flex-direction: column;
		gap: 1rem;
	}
}
.footer__logo{
	max-width: clamp(14.0rem, 30vw, 23.0rem);
	height: auto;
	margin-inline: auto;
	margin-top: 3.0rem;
	margin-bottom: 1.5rem;;
}

/*
=========================================
Lower page layout
=========================================
*/
section.shop-list,section.magazine.section--lower,section.news.section--lower{
	padding-top: 0;
}

.page-heading{
	position: relative;
	display: flex;
	align-items: center;
	padding: 3.121rem 0;
	margin-bottom: 3.5rem;
}
.page-heading::before{
	content: "";
	position:absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	background-color: var(--color-bg);
	z-index: -1;
}
.page-heading h2.ja-heading{
	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(2.4rem, 1.6rem + 1.5vw, 3.6rem);
	font-weight: 500;
}
.page-heading h2.en-heading{
	font-family: "abril-titling-condensed", serif;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(3.2rem, 1.6rem + 2vw, 4.5rem);
	text-transform: capitalize;
}

.page-in-preparation{
	font-size: var(--font-lower-base);
}