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



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

base

------------------------------------------- */
:root {
	--color: ;
	--color: ;
	--color: ;
	--prime: #000;
	--grd: linear-gradient(to right, #c98c00, #fad900, #8c4c00, #c98c00);
	--font: ;
}
body {
	color: #000;
	font-family: 'Noto Serif JP', 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/body-bg.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;
	}
}
a {
	color: #000;
}



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

style

------------------------------------------- */
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 3rem;
	display: flex;
	justify-content: center;
	font-size: 2.2rem;
}
.heading-1.gold span {
	background: linear-gradient(to right, #c98c00, #fad900, #8c4c00, #c98c00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
	.heading-1 {
		font-size: 2.8rem;
	}
}



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

hamburger

------------------------------------------- */
.gnav-sp {
	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::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../img/body-bg.jpg) no-repeat center / cover;
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;	
}
/* wrap */
.gnav-sp .wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.gnav-sp-menu li {
	font-size: 1.5rem;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.gnav-sp-menu li {
		font-size: 1.7rem;
	}
}
.gnav-sp-menu li span {
	display: block;
}
.gnav-sp-menu li a {
	display: flex;
	align-items: center;
	padding: 1rem 0;
	white-space: nowrap;
}
.gnav-sp-menu li a::before {
	content: "";
	width: 1.8rem;
	height: 1.8rem;
	margin-right: 0.5rem;
}
.gnav-sp-menu li:nth-child(1) a::before {
	background: url(../img/gnav-atten-1.png) no-repeat center / contain;
}
.gnav-sp-menu li:nth-child(2) a::before {
	background: url(../img/gnav-atten-2.png) no-repeat center / contain;
}
.gnav-sp-menu li:nth-child(3) a::before {
	background: url(../img/gnav-atten-3.png) no-repeat center / contain;
}
.gnav-sp-menu li:nth-child(4) a::before {
	background: url(../img/gnav-atten-4.png) no-repeat center / contain;
}
.gnav-sp-menu li:nth-child(5) a::before {
	background: url(../img/gnav-atten-5.png) no-repeat center / contain;
}
.gnav-sp-menu li:nth-child(6) a::before {
	background: url(../img/gnav-atten-6.png) no-repeat center / contain;
}
.gnav-sp-menu li:nth-child(7) a::before {
	background: url(../img/gnav-atten-7.png) no-repeat center / contain;
}
.gnav-sp-menu li:nth-child(8) a::before {
	background: url(../img/gnav-atten-8.png) no-repeat center / contain;
}
/* toggle */
.toggle-btn {
	background: transparent;
	cursor: pointer;
	display: block;
	position: absolute;
	top: 0;
	right: calc((100% - 37.6rem) / 2);
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	z-index: 100000;
}
@media screen and (max-width: 768px) {
	.toggle-btn {
		top: 0;
		right: 0;
		position: fixed;
		background: #000;
	}
}
.toggle-btn span {
	background: #fff;
	display: block;
	position: absolute;
	left: 1.6rem;
	width: 2.8rem;
	height: 0.3rem;
	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 .toggle-btn span {
	background: #000;
}
@media screen and (max-width: 768px) {
	.open .toggle-btn span {
		background: #fff;
	}
}
/* 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);
}



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

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);
	}
}