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

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

html{
	scroll-behavior:smooth;
}

body{
	font-family:'Noto Sans JP',sans-serif;
	background:#fff9f7;
	color:#4a3b3b;
	line-height:1.8;
	font-size:15px;
}

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

a{
	text-decoration:none;
	color:inherit;
}

ul{
	list-style:none;
}

.container{
	width:min(1180px,92%);
	margin:auto;
}


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

section{
	padding:100px 0;
}

.section-title{
	text-align:center;
	margin-bottom:60px;
}

.section-title span{
	display:block;
	font-size:13px;
	letter-spacing:4px;
	color:#c08497;
	margin-bottom:10px;
	font-weight:700;
}

.section-title h2{
	font-family:'Cormorant Garamond',serif;
	font-size:48px;
	font-weight:700;
	color:#3f3232;
}

.btn{
	display:inline-block;
	padding:16px 42px;
	background:#c08497;
	color:#fff;
	border-radius:999px;
	font-weight:700;
	transition:.3s;
}

.btn:hover{
	background:#a96b7e;
	transform:translateY(-2px);
}

.btn-outline{
	display:inline-block;
	padding:14px 36px;
	border:2px solid #c08497;
	color:#c08497;
	border-radius:999px;
	font-weight:700;
	transition:.3s;
}

.btn-outline:hover{
	background:#c08497;
	color:#fff;
}


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

header{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	z-index:100;
}

.header-inner{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:28px 0;
}

.logo img{
	height:55px;
}

nav ul{
	display:flex;
	gap:34px;
	align-items:center;
}

nav a{
	color:#fff;
	font-weight:500;
	transition:.3s;
}

nav a:hover{
	color:#ffdce5;
}


/*
=====================================================
HERO
=====================================================
*/

.hero{
	position:relative;
	height:100vh;
	min-height:700px;
	display:flex;
	align-items:center;
	overflow:hidden;
}

.hero-bg{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
}

.hero-overlay{
	position:absolute;
	inset:0;
	background:rgba(0,0,0,.35);
}

.hero-inner{
	position:relative;
	z-index:2;
}

.hero-content{
	max-width:560px;
	color:#fff;
}

.hero-sub{
	display:block;
	letter-spacing:5px;
	margin-bottom:18px;
	font-size:13px;
}

.hero h1{
	font-family:'Cormorant Garamond',serif;
	font-size:76px;
	line-height:1.1;
	margin-bottom:25px;
}

.hero p{
	font-size:18px;
	margin-bottom:40px;
}


/*
=====================================================
CONCEPT
=====================================================
*/

.concept-wrap{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:80px;
	align-items:center;
}

.concept-image img{
	border-radius:18px;
	box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.concept-text h3{
	font-family:'Cormorant Garamond',serif;
	font-size:44px;
	line-height:1.3;
	margin-bottom:30px;
}

.concept-text p{
	margin-bottom:22px;
	color:#666;
}


/*
=====================================================
MENU
=====================================================
*/

.menu{
	background:#fff;
}

.menu-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:30px;
}

.menu article{
	background:#fff9f7;
	border-radius:18px;
	overflow:hidden;
	box-shadow:0 8px 25px rgba(0,0,0,.06);
	text-align:center;
	transition:.3s;
}

.menu article:hover{
	transform:translateY(-8px);
}

.menu img{
	height:260px;
	width:100%;
	object-fit:cover;
}

.menu h3{
	margin:24px 0 10px;
	font-size:24px;
	font-family:'Cormorant Garamond',serif;
}

.menu p{
	padding-bottom:26px;
	color:#c08497;
	font-weight:700;
}


/*
=====================================================
STAFF
=====================================================
*/

.staff-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:30px;
}

.staff article{
	text-align:center;
}

.staff img{
	border-radius:50%;
	width:220px;
	height:220px;
	object-fit:cover;
	margin:auto;
	margin-bottom:25px;
	box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.staff h3{
	font-size:24px;
	font-family:'Cormorant Garamond',serif;
	margin-bottom:8px;
}

.staff p{
	color:#888;
}


/*
=====================================================
GALLERY
=====================================================
*/

.gallery{
	background:#fff;
}

.gallery-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:20px;
}

.gallery-grid img{
	width:100%;
	height:280px;
	object-fit:cover;
	border-radius:15px;
	transition:.4s;
}

.gallery-grid img:hover{
	transform:scale(1.05);
}

```css
/*
=====================================================
FOOTER
=====================================================
*/

footer{
	background:#3f3232;
	color:#fff;
	padding:80px 0 35px;
}

.footer-logo{
	text-align:center;
	margin-bottom:35px;
}

.footer-logo img{
	height:70px;
	width:auto;
	margin:0 auto;
}

.footer-nav{
	margin-bottom:35px;
}

.footer-nav ul{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap:wrap;
	gap:30px;
	list-style:none;
}

.footer-nav a{
	color:#fff;
	font-size:15px;
	font-weight:500;
	letter-spacing:.05em;
	transition:.3s;
}

.footer-nav a:hover{
	color:#f3c8d5;
}

.footer-sns{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:18px;
	margin-bottom:35px;
}

.footer-sns a{
	display:flex;
	align-items:center;
	justify-content:center;
	width:48px;
	height:48px;
	border:1px solid rgba(255,255,255,.3);
	border-radius:50%;
	color:#fff;
	font-size:20px;
	transition:.3s;
}

.footer-sns a:hover{
	background:#c08497;
	border-color:#c08497;
	transform:translateY(-3px);
}

footer span{
	display:block;
	text-align:center;
	max-width:700px;
	margin:0 auto 25px;
	color:#ddd;
	line-height:1.9;
	font-size:15px;
}

.copyright{
	text-align:center;
	font-size:13px;
	color:#999;
	letter-spacing:.08em;
}

/*
=====================================================
RESPONSIVE
=====================================================
*/

@media(max-width:768px){

	footer{
		padding:60px 0 30px;
	}

	.footer-logo img{
		height:58px;
	}

	.footer-nav ul{
		flex-direction:column;
		gap:18px;
	}

	.footer-nav a{
		font-size:14px;
	}

	.footer-sns{
		gap:14px;
	}

	.footer-sns a{
		width:44px;
		height:44px;
		font-size:18px;
	}

	footer span{
		font-size:14px;
		padding:0 10px;
	}

}
```
/*
=====================================================
ACCESS
=====================================================
*/

.access{
	padding:100px 0;
	background:#fff9f7;
}

.access-wrap{
	display:grid;
	grid-template-columns:1.1fr 1fr;
	gap:70px;
	align-items:center;
}

.access-image img{
	width:100%;
	border-radius:18px;
	display:block;
	box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.access-info h3{
	font-family:'Cormorant Garamond',serif;
	font-size:42px;
	font-weight:700;
	color:#3f3232;
	margin-bottom:35px;
}

.access-info dl{
	display:grid;
	grid-template-columns:120px 1fr;
	row-gap:18px;
	column-gap:25px;
	margin-bottom:40px;
}

.access-info dt{
	font-weight:700;
	color:#c08497;
	padding-bottom:12px;
	border-bottom:1px solid #ead7dd;
}

.access-info dd{
	color:#555;
	padding-bottom:12px;
	border-bottom:1px solid #ead7dd;
}

.access-info .btn-outline{
	margin-top:10px;
}


/*
=====================================================
RESPONSIVE
=====================================================
*/

@media (max-width:768px){

	.access{
		padding:70px 0;
	}

	.access-wrap{
		grid-template-columns:1fr;
		gap:40px;
	}

	.access-info h3{
		font-size:34px;
		text-align:center;
	}

	.access-info dl{
		grid-template-columns:1fr;
		row-gap:10px;
	}

	.access-info dt{
		padding-bottom:6px;
		border:none;
	}

	.access-info dd{
		margin-bottom:12px;
		padding-bottom:14px;
		border-bottom:1px solid #eee;
	}

	.access-info .btn-outline{
		display:block;
		text-align:center;
	}

}

/*
=====================================================
RESERVE
=====================================================
*/

.reserve{
	padding:120px 0;
	background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
			   url("../images/hero.jpg") center center / cover no-repeat;
}

.reserve-box{
	max-width:760px;
	margin:0 auto;
	padding:70px 50px;
	background:rgba(255,255,255,.95);
	border-radius:20px;
	text-align:center;
	box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.reserve-box span{
	display:block;
	font-size:13px;
	font-weight:700;
	letter-spacing:4px;
	color:#c08497;
	margin-bottom:15px;
}

.reserve-box h2{
	font-family:'Cormorant Garamond',serif;
	font-size:48px;
	font-weight:700;
	color:#3f3232;
	margin-bottom:20px;
}

.reserve-box p{
	max-width:520px;
	margin:0 auto 40px;
	line-height:1.9;
	color:#666;
}

.reserve-buttons{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:20px;
	flex-wrap:wrap;
}

.reserve-buttons a{
	min-width:220px;
}

.tel-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	padding:16px 35px;
	background:#3f3232;
	color:#fff;
	border-radius:999px;
	font-weight:700;
	transition:.3s;
}

.tel-btn:hover{
	background:#2b2323;
	transform:translateY(-3px);
}

.reserve .btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
}


/*
=====================================================
RESPONSIVE
=====================================================
*/

@media (max-width:768px){

	.reserve{
		padding:80px 0;
	}

	.reserve-box{
		padding:45px 25px;
		border-radius:16px;
	}

	.reserve-box h2{
		font-size:36px;
	}

	.reserve-buttons{
		flex-direction:column;
		gap:15px;
	}

	.reserve-buttons a{
		width:100%;
	}

}

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

footer{
	padding:80px 0 35px;
	background:#3f3232;
	color:#fff;
}

.footer-logo{
	text-align:center;
	margin-bottom:35px;
}

.footer-logo img{
	height:70px;
	width:auto;
	margin:0 auto;
}

.footer-nav{
	margin-bottom:35px;
}

.footer-nav ul{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap:wrap;
	gap:30px;
	list-style:none;
}

.footer-nav a{
	color:#fff;
	font-size:15px;
	font-weight:500;
	letter-spacing:.05em;
	transition:.3s;
}

.footer-nav a:hover{
	color:#f3c8d5;
}

.footer-sns{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:18px;
	margin-bottom:35px;
}

.footer-sns a{
	display:flex;
	align-items:center;
	justify-content:center;
	width:48px;
	height:48px;
	border:1px solid rgba(255,255,255,.3);
	border-radius:50%;
	color:#fff;
	font-size:20px;
	transition:.3s;
}

.footer-sns a:hover{
	background:#c08497;
	border-color:#c08497;
	transform:translateY(-3px);
}

footer span{
	display:block;
	max-width:700px;
	margin:0 auto 25px;
	text-align:center;
	line-height:1.9;
	font-size:15px;
	color:#ddd;
}

.copyright{
	text-align:center;
	font-size:13px;
	color:#999;
	letter-spacing:.08em;
}


/*
=====================================================
RESPONSIVE
=====================================================
*/

@media (max-width:768px){

	footer{
		padding:60px 0 30px;
	}

	.footer-logo img{
		height:56px;
	}

	.footer-nav ul{
		flex-direction:column;
		gap:18px;
	}

	.footer-nav a{
		font-size:14px;
	}

	.footer-sns{
		gap:14px;
		margin-bottom:30px;
	}

	.footer-sns a{
		width:44px;
		height:44px;
		font-size:18px;
	}

	footer span{
		font-size:14px;
		padding:0 15px;
		line-height:1.8;
	}

}

/*
=====================================================
PAGE TOP
=====================================================
*/
.pagetop{
	position:fixed;
	right:25px;
	bottom:25px;

	opacity:0;
	visibility:hidden;

	transition:.3s;
}

.pagetop.show{
	opacity:1;
	visibility:visible;
}
.pagetop{
	position:fixed;
	right:25px;
	bottom:25px;
	width:56px;
	height:56px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#c08497;
	color:#fff;
	border-radius:50%;
	font-size:18px;
	box-shadow:0 10px 25px rgba(0,0,0,.15);
	transition:.3s;
	z-index:999;
}

.pagetop:hover{
	background:#a96b7e;
	color:#fff;
	transform:translateY(-5px);
	box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.pagetop i{
	line-height:1;
}

@media(max-width:768px){

	.pagetop{
		width:48px;
		height:48px;
		right:18px;
		bottom:18px;
		font-size:16px;
	}

}