@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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



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

base

------------------------------------------- */
:root {
	--pink: #f1a189;
	--prime: #1A1A1A;
	--font-Montserrat: "Montserrat", sans-serif;
}
body {
	background: linear-gradient(to right, #FDF0EA, #FFF0DE);
	color: var(--prime);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	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(--prime);
}



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

header

------------------------------------------- */
header {
	position: absolute;
	z-index: 10;
}
@media screen and (max-width: 768px) {

}
/* ---- h1 ---- */
header h1 {
	width: 10rem;
	line-height: 1;
	background: #fff;
}
@media screen and (max-width: 768px) {
	header h1 {
		width: 6rem;
	}	
}



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

nav

------------------------------------------- */
.gnav-menu {
	display: flex;
	align-items: center;
}
.gnav-menu > li {
	font-weight: bold;
	white-space: nowrap;
}
.gnav-menu > li:not(:last-child) {
	margin-right: 3rem;
}
/* ---- hover ---- */
.gnav-menu > li > a {
	display: inline-block;
	position: relative;
}
.gnav-menu > li > a::after {
	content: "";
	background: #000;
	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

------------------------------------------- */
footer {
	padding: 6rem 0 2rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
}
@media screen and (max-width: 768px) {
	footer {
		padding: 6rem 0 8rem 0;
	}
}
/* ---- wrap ---- */
footer .wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/* ---- logo --- */
footer .logo {
	width: 14rem;
	margin: 3rem 0 4rem 0;
}
@media screen and (max-width: 768px) {
	footer .logo {
		width: 16rem;
	}
}
/* ---- nav ---- */
footer nav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-family: var(--font-Montserrat);
}
footer nav ul li:not(:last-child) {
	margin-right: 4rem;
}
@media screen and (max-width: 768px) {
	footer nav ul li {
		text-align: center;
		width: 50%;
	}
	footer nav ul li a {
		display: block;
		padding: 1rem 0;
	}
	footer nav ul li:not(:last-child) {
		margin-right: 0;
	}
}
/* ---- small ---- */
footer small {
	display: block;
	font-size: 1rem;
	text-align: center;
}



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

page-ttl

------------------------------------------- */
.page-ttl {
	background: url(../img/top-kv-bg-2.jpg) no-repeat center / cover;
	position: relative;
}
.page-ttl::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(to right, #FDF0EA, #FFF0DE);
	opacity: 0.3;
}
.page-ttl > div {
	background: rgba(0,0,0,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 22rem;
}
@media screen and (max-width: 768px) {
	.page-ttl > div {
		height: 20rem;
	}
}
/* ---- h2 ---- */
.page-ttl h2 {
	color:#fff;
	font-size: 4rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	font-family: var(--font-Montserrat);
}



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

layout

------------------------------------------- */
/* ---- base-width ---- */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
}
/* ---- 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 > div {
	width: 62%;
}
@media screen and (max-width: 768px) {
	.container .wrap {
		display: block;
	}
	.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.6rem;
	width: 3.6rem;
	height: 3.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 14rem;
	}
}



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

style

------------------------------------------- */
/* ---- heading ---- */
.heading-1,
.heading-2 {
	line-height: 1;
	font-family: var(--font-Montserrat);
	font-weight: 500;
	white-space: nowrap;
}
.heading-1 {
	font-size: 4rem;
}
.heading-2 {
	font-size: 7rem;
	letter-spacing: .05em;
}
@media screen and (max-width: 768px) {
	.heading-2 {
		font-size: 5.2rem;
	}
}
.heading-3 {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 4rem;
	font-size: 2.6rem;
	font-weight: 500;
}
.heading-3::first-letter {
	color: var(--pink);
}
.heading-3 img {
	width: 4rem;
	margin-right: 1.5rem;
}
.heading-3::after {
	content: "";
	width: 3rem;
	height: 0.3rem;
	background: var(--pink);
	margin-top: 1.5rem;
}
/* ---- more ---- */
.more {
	color: #fff;
	display: flex;
	align-items: center;
	line-height: 1;
	padding: 1.5rem 0 1.65rem 3rem;
	width: 22rem;
	background: var(--prime);
	font-family: var(--font-Montserrat);
	font-weight: 500;
	border-radius: 0.4rem;
	position: relative;
}	
.more::before {
	content: "";
	width: 6rem;
	height: 0.1rem;
	background: #fff;
	position: absolute;
	right: 0;
	top: 50%
}
@media screen and (max-width: 768px) {

}
/* ---- ttl ---- */
.ttl {
	border-bottom: solid 1px rgba(0,0,0,0.15);
	font-size: 2.1rem;
	margin-bottom: 3rem;
	padding: 1rem 0 1.2rem 0;
	position: relative;
	font-weight: 500;
}
.ttl:after {
	content: "";
	background: var(--pink);
	display: block;
	height: 3px;
	bottom: -3px;
	position: absolute;
	width: 25%;
	z-index: 10;
}
@media screen and (max-width: 768px) {
	.ttl:after {
		width: 40%;
	}	
}
/* ---- detail ---- */
dl.detail {
	display: flex;
	flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}
}
dl.detail dt {
	padding: 1.5rem;
	width: 25%;
	white-space: nowrap;
	font-weight: 500;
}
@media screen and (max-width: 768px) {
	dl.detail dt {
		display: flex;
		align-items: center;
		padding: 1.5rem 1.5rem 0.3rem 1.5rem;
		width: 100%;
	}
	dl.detail dt::before {
		content: "◆";
		color: #C39684;
		font-size: 1.2rem;
		margin-right: 0.5rem;
	}	
}
dl.detail dd {
	padding: 1.5rem;
	width: 75%;
}
@media screen and (max-width: 768px) {
	dl.detail dd {
		padding: 0 1.5rem 1.5rem 1.5rem;
		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: 0.12rem solid #C39684;
}
@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;
	right: 0;
	bottom: 0;
	width: 30%;
	opacity: 0;
	overflow-x: hidden;
	overflow-y: auto;
	transition: all .5s;
	z-index: -1;
	-webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 768px) {
	.gnav-sp {
		width: 100%;
	}
}
/* ---- wrap ---- */
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
/* ---- gnav-sp-menu ---- */
.gnav-sp-menu li {
	font-size: 2rem;
	font-weight: 500;
	font-family: var(--font-Montserrat);
	text-align: center;
}
.gnav-sp-menu li span {
	display: block;
}
.gnav-sp-menu li a {
	display: block;
	padding: 1.2rem 0;
	white-space: nowrap;
}
/* ---- toggle ---- */
.toggle-btn {
	background: var(--prime);
	cursor: pointer;
	display: block;
	position: fixed;
	top: 2rem;
	right: 2rem;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	z-index: 100000;
	border-radius: 50%;
}
@media screen and (max-width: 768px) {
	.toggle-btn {
		top: 1rem;
		right: 1rem;
	}
}
.toggle-btn span {
	background: #fff;
	display: block;
	position: absolute;
	left: 1.8rem;
	width: 2.4rem;
	height: 0.2rem;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 2.1rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.9rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.7rem;
}
/* ---- 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;
	}
}
/* ---- prepare ---- */
.prepare {
    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.15s !important; }
.delay-3 { animation-delay: 0.2s !important; }
.delay-4 { animation-delay: 0.25s !important; }
.delay-5 { animation-delay: 0.3s !important; }




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

gallery

------------------------------------------- */
.gallery-list {
	display: flex;
	flex-wrap: wrap;
}	
.gallery-list li {
	width: 17rem;
	margin-right: calc(3rem / 4);
}
.gallery-list li:nth-child(5n) {
	margin-right: 0;
}
.gallery-list li:nth-child(n + 6) {
	margin-top: calc(3rem / 4);
}
.gallery-list img {	
	height: 17rem;
	object-fit: cover;	
}
@media screen and (max-width: 768px) {
	.gallery-list li {
		width: 24%;
		margin-right: calc(4% / 3);
	}
	.gallery-list li:nth-child(5n) {
		margin-right: auto;
	}
	.gallery-list li:nth-child(4n) {
		margin-right: 0;
	}
	.gallery-list li:nth-child(n + 6) {
		margin-top: auto;
	}
	.gallery-list li:nth-child(n + 5) {
		margin-top: calc(4% / 3);
	}
	.gallery-list img {	
		height: 15rem;
		object-fit: cover;	
	}
}
@media screen and (max-width: 430px) {
	.gallery-list img {	
		height: 11rem;
	}
}
@media screen and (max-width: 414px) {
	.gallery-list img {	
		height: 8rem;
	}
}








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

fixed

------------------------------------------- */
.fixed {
	position: fixed;
	right: 1rem;
	bottom: 5rem;
	z-index: 999;
	width: 11rem;
	height: 11rem;
}
.fixed a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 11rem;
	height: 11rem;
	border-radius: 50%;
	color: #fff;
	background: var(--prime);
}
.fixed a img {
	width: 3.2rem;
	margin-bottom: 0.2rem;
}
.fixed a > span {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
}
.fixed .en {
	font-family: var(--font-Montserrat);
	font-size: 1.1rem;
	margin-top: 0.6rem;
}
@media screen and (max-width: 768px) {
	.fixed {
		right: 0;
		bottom: 0;
		width: 100%;
		height: 6rem;
        border-top: solid 1px #fff;
	}
	.fixed a {
		flex-direction: row;
		width: 100%;
		height: 6rem;
		border-radius: 0;
	}
	.fixed a img {
		width: 3.2rem;
		margin-bottom: 0;
		margin-right: 1rem;
	}
	.fixed a > span {
		font-size: 1.7rem;
		font-weight: 500;
	}
	.fixed .en {
		font-size: 1.2rem;
	}
}



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

fixed

------------------------------------------- */
.fixed2 {
	position: fixed;
	right: 1rem;
	bottom: 18rem;
	z-index: 999;
	width: 11rem;
	height: 11rem;
}
.fixed2 a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 11rem;
	height: 11rem;
	border-radius: 50%;
	color: #fff;
	background: var(--prime);
}
.fixed2 a img {
	width: 3.2rem;
	margin-bottom: 0.2rem;
}
.fixed2 a > span {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
}
.fixed2 .en {
	font-family: var(--font-Montserrat);
	font-size: 1.1rem;
	margin-top: 0.6rem;
}
@media screen and (max-width: 768px) {
	.fixed2 {
		right: 0;
		bottom: 6rem;
		width: 100%;
		height: 6rem;
	}
	.fixed2 a {
		flex-direction: row;
		width: 100%;
		height: 6rem;
		border-radius: 0;
	}
	.fixed2 a img {
		width: 3.2rem;
		margin-bottom: 0;
		margin-right: 1rem;
	}
	.fixed2 a > span {
		font-size: 1.7rem;
		font-weight: 500;
	}
	.fixed2 .en {
		font-size: 1.2rem;
	}
}

.tempo{
    text-align: center;
    margin:0.2rem 0;
}

@media screen and (max-width: 768px) {
	.tempo{
    margin:0 2rem;
}
}
