@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=Shippori+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');



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

base

------------------------------------------- */
:root {
	--prime: #dabd37;
	--font-serif: "Shippori Mincho", serif;
	--font-en: "Bodoni Moda", serif;
	--font-jost: "Jost", sans-serif;
}
body {
	background: #000;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	position: relative;
}
body::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../img/bg-1.jpg) no-repeat center / cover;
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
/* link */
a {
	color: #fff;
}



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

layout

------------------------------------------- */
/* base-width */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
}
/* page-top */
#page-top {
    position: fixed;
	bottom: 1rem;
	right: 1rem;	
	z-index: 999;	
}
#page-top a {
	background: var(--prime);
	border-radius: 50%;
	color: #000;	
	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;
}



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

style

------------------------------------------- */
/* inner */
.inner {
	border: solid 0.15rem var(--prime);
	background: linear-gradient(to right,#12100f,#252120,#12100f);
	padding: 4rem;
}
@media screen and (max-width: 768px) {
	.inner {
		padding: 2.5rem;
	}
}
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
}
.heading-1 span {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-en);
	font-size: 5.2rem;
	color: var(--prime);
}
.heading-1 span::before,
.heading-1 span::after {
	content: "";
	width: 10rem;
	height: 5rem;
}
.heading-1 span::before {
	background: url(../img/ttl-deco-1.png) no-repeat center / contain;
	margin-right: 1.5rem;
}
.heading-1 span::after {
	background: url(../img/ttl-deco-2.png) no-repeat center / contain;
	margin-left: 1.5rem;
}
.heading-1.jp span {
	font-family: var(--font-serif);
	font-weight: normal;
	color: #fff;
	font-size: 3.8rem;	
	letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
	.heading-1 span {
		font-size: 4.4rem;
	}
	.heading-1 span::before,
	.heading-1 span::after {
		width: 8rem;
		height: 4rem;
	}
	.heading-1.adjust span {
		font-size: 2.8rem;
		white-space: nowrap;
	}
	.heading-1.adjust span::before,
	.heading-1.adjust span::after {
		width: 5rem;
		height: 4rem;
	}
	.heading-1.adjust span::before {
		margin-right: 1rem;
	}
	.heading-1.adjust span::after {
		margin-left: 1rem;
	}	
	.heading-1.jp span {
		font-size: 3rem;	
	}		
}
/* more */
.more {
	background: var(--prime);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #000;
	font-size: 1.2rem;
	padding: 0.5rem 0 0.6rem 0.2rem;
	width: 17rem;
	margin: 0 auto;
}	
.more i {
	color: #e60012;
	margin-top: 0.15rem;
	margin-left: 0.3rem;
}
@media screen and (max-width: 768px) {
	.more {
		font-size: 1.4rem;
		width: 24rem;
	}	
	.more i {
		margin-top: 0.2rem;
		margin-left: 0.6rem;
		font-size: 2rem;
	}
}



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

hamburger

------------------------------------------- */
.gnav-sp {
	background: #000;
	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;
	border: solid 0.15rem var(--prime);
	width: calc(100% - 4rem);
	margin: 6rem auto 0 auto;
	padding: 4rem 0 0 0;
}
.gnav-sp-menu {
	width: calc(100% - 3rem);
}
.gnav-sp-menu li {
	width: 100%;
	border-top: solid 0.15rem var(--prime);
}
.gnav-sp-menu li a {
	font-family: var(--font-en);
	font-size: 2.2rem;
	color: var(--prime);
	text-align: center;
	padding: 1.2rem 0 1.3rem 0;
	display: block;
}
.gnav-sp-menu li span {
	display: flex;
	align-items: center;
	justify-content: center;
}
.gnav-sp-menu li span::before,
.gnav-sp-menu li span::after {
	content: "";
	width: 5rem;
	height: 4rem;
}
.gnav-sp-menu li span::before {
	margin-right: 1rem;
	background: url(../img/ttl-deco-1.png) no-repeat center / contain;
}
.gnav-sp-menu li span::after {
	margin-left: 1rem;
	background: url(../img/ttl-deco-2.png) no-repeat center / contain;
}
/* toggle */
.toggle-btn {
	background: #000;
	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

------------------------------------------- */
/* map */
.gmap iframe {
	width: 100%;
	height: 30rem;
}
/* display */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !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);
	}
}
