@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');



/* -------------------------------------------

base

------------------------------------------- */
:root {
	--grey-1: #353535;
	--grey-2: #959595;
	--bg-green: #EDF4F2;
	--prime: #b4d7cd;
	--font-serif: 'Noto Serif JP', serif;
}
body {
	color: var(--grey-1);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.3rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
/* link */
a {
	color: var(--grey-1);
}


/* -------------------------------------------

header

------------------------------------------- */
header {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 7rem;
	position: relative;
	z-index: 99;
}
@media screen and (max-width: 768px) {
	header {
		height: auto;
	}
}
/* h1 */
header h1 {
	width: 15rem;
	line-height: 1;
	position: absolute;
	left: 0;
	top: 0;
}
@media screen and (max-width: 768px) {
	header h1 {
		width: 8rem;
	}	
}



/* -------------------------------------------

nav

------------------------------------------- */
.gnav {
	padding-right: 10rem;
}
.gnav-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4rem;
}
.gnav-menu > li {
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: 1.5rem;
	white-space: nowrap;
}
.gnav-menu > li > a {
	display: inline-block;
	position: relative;
	color: var(--grey-2);
}
.gnav-menu > li > a::after {
	content: "";
	background: var(--grey-2);
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -0.5rem;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: ease-in-out .3s;
}
.gnav-menu > li > a:hover::after {
	transform: scale(1,1);
}
.gnav-menu > li > a:hover {
	opacity: 1;  
	filter: alpha(opacity=100);  
}
footer .gnav-menu > li > a::after {
	background: #fff;
}
@media screen and (max-width: 768px) {
	.gnav-menu {
		gap: 0;
	}
	.gnav-menu > li {
		text-align: center;
		width: 50%;
	}
	.gnav-menu > li a {
		display: block;
		padding: 0.6rem 0;
	}
	footer .gnav-menu > li > a::after {
		display: none;
	}	
}
	

/* -------------------------------------------

footer

------------------------------------------- */
footer {
	padding: 4rem 0 2rem 0;
	background: #73757e;
	color: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
footer .gnav-menu a {
	color: #fff;
}
footer .wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer .logo {
	width: 7rem;
	margin: 3rem 0;
}
.sns {
	display: flex;
	gap: 2rem;
	position: absolute;
	right: 10rem;
	top: 50%;
	transform: translate(0,-50%);
}
.sns li {
	width: 2.5rem;
}
footer small {
	display: block;
	font-size: 1rem;
	text-align: center;
}
@media screen and (max-width: 768px) {
	footer {
		padding: 4rem 0 8rem 0;
	}	
	footer .logo {
		width: 10rem;
	}
	.sns {
		display: flex;
		gap: 2rem;
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		margin-bottom: 4rem;
	}
	.sns li {
		width: 4rem;
	}	
}



/* -------------------------------------------

page-ttl

------------------------------------------- */
.page-ttl {
	background: url(../img/bg-mv.jpg) no-repeat center / cover;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 18rem;	
}
/* h2 */
.page-ttl h2 {
	font-size: 3.8rem;
	font-weight: normal;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: var(--font-serif);
	letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
	.page-ttl {
		height: 22rem;
		padding-top: 3rem;
	}
}



/* -------------------------------------------

layout

------------------------------------------- */
/* base-width */
.base-width {
	padding-left: 10rem;
	padding-right: 10rem;
}
@media screen and (max-width: 768px) {
	.base-width {
		padding-left: 0;
		padding-right: 0;
	}
}
/* container */
.container {
	margin: 8rem auto 10rem auto;
	width: 88rem;
}
@media screen and (max-width: 768px) {
	.container {
		margin: 6rem 3rem 8rem 3rem;
		width: auto;
	}
}
.container .wrap {
	display: flex;
	justify-content: space-between;
}
.container .wrap.reverse {
	flex-direction: row-reverse;
}
.container .wrap > figure {
	width: 35%;
}
.container .wrap > figure img {
	aspect-ratio: 3 / 2;
	height: 100%;
	object-fit: cover;
}
.container .wrap > div {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.container .wrap,
	.container .wrap.reverse {
		flex-direction: column;
	}
	.container .wrap > figure {
		width: 100%;
		margin-bottom: 2rem;
	}
	.container .wrap > div {
		width: 100%;
	}
}
/* page-top */
#page-top {
    position: fixed;
	bottom: 1rem;
	right: 1rem;	
	z-index: 999;	
}
#page-top a {
	background: var(--prime);
	border-radius: 50%;
	color: #fff;	
	font-size: 1.2rem;
	width: 3.2rem;
	height: 3.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 6.5rem;
	}
}



/* -------------------------------------------

style

------------------------------------------- */
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	font-size: 4.6rem;
	font-family: var(--font-serif);
	font-weight: 400;
	letter-spacing: 0.2em;
	background: url(../img/bg-ttl.png) no-repeat center;
	background-size: auto 100%;
	text-align: center;
	padding: 0.8rem 0 1.8rem 0;
}
@media screen and (max-width: 768px) {

}
/* more */
.more {
	background-color:#fff;
	color: var(--grey-2);
	display: flex;
	align-items: center;
	line-height: 1;
	width: 17rem;
	height: 4.2rem;
	padding-bottom: 0.15rem;
	margin: 0 auto;
	border: solid 0.12rem var(--grey-2);
	border-radius: 10rem;
	padding-left: 3rem;
	position: relative;
	letter-spacing: 0.2em;
}	
.more::before {
	content: "";
	width: 5rem;
	height: 3rem;
	background: url(../img/arrow.png) no-repeat center / contain;
	position: absolute;
	right: -2rem;
	top: calc(50% - 1.5rem);
	transition: all .3s;
}
.more:hover::before {
	right: -2.5rem;
}
.more:hover {
	opacity: 1;
	background: var(--grey-2);
	color: #fff;
}
@media screen and (max-width: 768px) {

}
/* ttl */
.ttl {
	border-bottom: solid 1px rgba(0,0,0,0.35);
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
	font-family: var(--font-serif);
	font-weight: 500;
}
.ttl:after {
	content: "";
	background: var(--prime);
	display: block;
	height: 4px;
	bottom: -5px;
	position: absolute;
	width: 30%;
	z-index: 10;
}
@media screen and (max-width: 768px) {
	.ttl:after {
		width: 40%;
	}	
}
/* detail */
dl.detail {
	display: flex;
	flex-wrap: wrap;
}
dl.detail dt {
	padding: 1.5rem 0;
	width: 25%;
	white-space: nowrap;
	font-weight: 500;
}
dl.detail dd {
	padding: 1.5rem 0;
	width: 75%;
}
@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}	
	dl.detail dt {
		display: flex;
		align-items: center;
		padding: 1.5rem 0 0.3rem 0;
		width: 100%;
	}
	dl.detail dt::before {
		content: "◆";
		color: var(--prime);
		font-size: 1.2rem;
		margin-right: 0.5rem;
	}	
	dl.detail dd {
		padding: 0 0 1.5rem 0;
		width: 100%;
	}	
}
dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
	border-bottom: none;
}
dl.bk dt,
dl.bk dd {
	border-bottom: 1px solid rgba(0,0,0,0.3);
}
dl.wh dt,
dl.wh dd {
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
@media screen and (max-width: 768px) {
	dl.bk dt {
		border-bottom: none;
	}
	dl.wh dt {
		border-bottom: none;
	}
}



/* -------------------------------------------

hamburger

------------------------------------------- */
.gnav-sp {
	background: #fff;
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	opacity: 0;
	overflow-x: hidden;
	overflow-y: auto;
	transition: all .5s;
	z-index: -1;
	-webkit-overflow-scrolling: touch;
}
.gnav-sp nav {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.gnav-sp-menu li {
	font-size: 1.8rem;
	font-weight: 500;
	font-family: var(--font-serif);
	text-align: center;
	letter-spacing: 0.1em;
}
.gnav-sp-menu li span {
	display: block;
}
.gnav-sp-menu li a {
	display: block;
	padding: 1rem 0;
	white-space: nowrap;
	color: var(--grey-2);
}
/* toggle */
.toggle-btn {
	background: var(--grey-1);
	cursor: pointer;
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	z-index: 100000;
}
.toggle-btn span {
	background: #fff;
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}
/* open */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span:nth-child(1) {
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	transform: translateY(-0.8rem) rotate(45deg);
}



/* -------------------------------------------

class

------------------------------------------- */
/* txt-vertical */
.txt-vertical {
	writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	.txt-vertical.not {
		writing-mode: horizontal-tb;
		white-space: normal;
	}
}
/* list */
ul.list-group li {
	margin-left: 2rem;
	list-style: disc;
}
ul.list-group li:not(:last-child) {
	margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
	ul.list-group li:not(:last-child) {
		margin-bottom: 1rem;
	}
}
/* preapre */
.prepare {
	color: var(--prime);
    font-size: 2rem;
	font-weight: bold;
	text-align: center;
    padding: 8rem 0;
}
/* map */
.gmap iframe {
	width: 100%;
	height: 36rem;
}
.gmap.grey iframe {
	filter: grayscale(100%);
}
/* display */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}
/* margin */
.mb-10 { margin-bottom: 1rem !important; }
.mb-15 { margin-bottom: 1.5rem !important; }
.mb-20 { margin-bottom: 2.0rem !important; }
.mb-25 { margin-bottom: 2.5rem !important; }
.mb-30 { margin-bottom: 3.0rem !important; }
.mb-35 { margin-bottom: 3.5rem !important; }
.mb-40 { margin-bottom: 4.0rem !important; }
.mb-45 { margin-bottom: 4.5rem !important; }
.mb-50 { margin-bottom: 5.0rem !important; }
.mb-55 { margin-bottom: 5.5rem !important; }
.mb-60 { margin-bottom: 6.0rem !important; }
.mb-65 { margin-bottom: 6.5rem !important; }
.mb-70 { margin-bottom: 7.0rem !important; }
.mb-75 { margin-bottom: 7.5rem !important; }
.mb-80 { margin-bottom: 8.0rem !important; }
.mb-85 { margin-bottom: 8.5rem !important; }
.mb-90 { margin-bottom: 9.0rem !important; }
.mb-95 { margin-bottom: 9.5rem !important; }
.mb-100	{ margin-bottom: 10.0rem !important; }



/* -------------------------------------------

fade

------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(2rem);
}
.fade.is-animation {
    animation: fade 0.5s ease;
    animation-fill-mode: both;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }



/* -------------------------------------------

gallery

------------------------------------------- */
.gallery-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}	
.gallery-list li {
	width: calc((100% - 4rem) / 5);
}
.gallery-list img {	
	aspect-ratio: 1/1;
	height: 100%;
	object-fit: cover;	
}
@media screen and (max-width: 768px) {
	.gallery-list li {
		width: calc((100% - 3rem) / 4);
	}
}



/* -------------------------------------------

fixed

------------------------------------------- */
.fixed-btn {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	z-index: 999;
	width: 5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	z-index: 9999;
}
.fixed-btn a {
	border-radius: 1rem 0 0 1rem;
	color: #fff;
	display: flex;
	align-items: center;
	width: 5rem;
}
.fixed-btn a i {
	font-size: 1.2rem;
}
.fixed-btn .reserve,
.fixed-btn .line {
	font-size: 1.5rem;
}
.fixed-btn .reserve a {
	background: #73757e;
	text-orientation: upright;	
	padding: 1.5rem 0;
}
.fixed-btn .reserve a img {
	width: 2.8rem;
}
.fixed-btn .reserve a span {
	margin: 1rem 0;
}
.fixed-btn .line a {
	background: #06c755;
	padding: 0.5rem 0 2rem 0;
}
.fixed-btn .line a span {
	margin: 0.5rem 0 1rem 0;
}
.fixed-btn .line a img {
	width: 4rem;
}
.fixed-btn .tel a {
	background: #969696;
	padding: 1.5rem 0;
}
.fixed-btn .tel a img {
	width: 2.6rem;
	margin-bottom: 0.6rem;
}
.fixed-btn .tel a > span {
	display: flex;
	flex-direction: column;
	line-height: 1;
	letter-spacing: 0.1em;
}
.fixed-btn .tel a > span i {
	font-size: 1rem;
	margin-left: 0.2rem;
}
.fixed-btn .tel a > span span {
	font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
	.fixed-btn {
		position: fixed;
		top: auto;
		bottom: 0;
		right: 0;
		transform: none;
		width: 100%;
		flex-direction: row;
		gap: 0;
	}
	.fixed-btn li {
		width: calc(100% / 3);
	}
	.fixed-btn a {
		border-radius: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 5.5rem;
		line-height: 1.2;
	}
	.fixed-btn a i {
		font-size: 1rem;
		margin-left: 1rem;
	}
	.fixed-btn .reserve,
	.fixed-btn .line {
		font-size: 1.3rem;
	}
	.fixed-btn .reserve a {
		padding: 0;
	}
	.fixed-btn .reserve a span {
		margin: 0;
	}
	.fixed-btn .reserve a img {
		width: 2rem;
		margin-right: 0.6rem;
	}	
	.fixed-btn .line a {
		padding: 0;
	}
	.fixed-btn .line a span {
		margin: 0;
	}
	.fixed-btn .line a img {
		width: 3rem;
		margin-right: 0.4rem;
	}	
	.fixed-btn .tel a {
		padding: 0;
		text-decoration: none !important;
	}
	.fixed-btn .tel a img {
		width: 2.6rem;
		margin-bottom: 0.6rem;
	}
	.fixed-btn .tel a > span {
		display: flex;
		flex-direction: column;
		line-height: 1;
		letter-spacing: 0;
	}
	.fixed-btn .tel a > span i {
		font-size: 1rem;
		margin-left: 0;
		margin-bottom: 0.3rem;
	}
	.fixed-btn .tel a > span span {
		font-size: 1.5rem;
	}
}