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


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

base

------------------------------------------- */
:root {
	--yellow: #ffd600;
	--prime: #88111f;
	--font-noto: 'Noto Sans JP', sans-serif;;
}
body {
	color: #000;
	font-family: "Kaisei Tokumin", serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 834px) {
	body {
		font-size: 2.8rem;
	}
}
a {
	color: #000;
}




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

hamburger

------------------------------------------- */
.gnav-sp {
	background: #5c110b;
	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;
}
/* ---- wrap ---- */
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
}
.gnav-sp .wrap > p {
	width: 28rem;
	margin-bottom: 4rem;
}
@media screen and (max-width: 834px) {
	.gnav-sp .wrap > p {
		width: 36rem;
		margin-bottom: 4rem;
	}
}
/* ---- gnav-sp-menu ---- */
.gnav-sp .wrap ul {
	width: 36rem;
}
.gnav-sp .wrap ul li {
	position: relative;
}
.gnav-sp .wrap ul li img {
	position: absolute;
	right: -3rem;
	bottom: -3rem;
	width: 10rem;
}
.gnav-sp .wrap ul li:not(:last-child) {
	margin-bottom: 1.5rem;
}
.gnav-sp .wrap ul li a {
	background: url(../img/deco-ttl-2.png) no-repeat center bottom;
	background-size: 100% auto;
	display: flex;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 1.3;
	white-space: nowrap;
	padding-bottom: 2rem;
	font-size: 2rem;
}
.gnav-sp .wrap ul li a strong {
	color: var(--yellow);
}
@media screen and (max-width: 834px) {
	.gnav-sp .wrap ul {
		width: 56rem;
	}
	.gnav-sp .wrap ul li:not(:last-child) {
		margin-bottom: 3rem;
	}
	.gnav-sp .wrap ul li a {
		padding-bottom: 4rem;
		font-size: 3.2rem;
	}
	.gnav-sp .wrap ul li a strong {
		font-size: 5.6rem;
		line-height: 0;
		margin-top: 2rem;
	}	
}
.gnav-sp .btn {
	margin-top: 6rem;
}
/* ---- toggle ---- */
.toggle-btn {
	background: transparent;
	cursor: pointer;
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 8rem;
	height: 8rem;
	transition: all .5s;
	z-index: 100000;
	display: none;
}
@media screen and (max-width: 834px) {
	.toggle-btn {
		display: block;
		width: 12rem;
		height: 12rem;
	}
}
.toggle-btn span {
	background: #fff;
	display: block;
	position: absolute;
	left: 2rem;
	width: 4rem;
	height: 0.4rem;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 2.7rem;
}
.toggle-btn span:nth-child(2) {
	top: 3.7rem;
}
.toggle-btn span:nth-child(3) {
	top: 4.7rem;
}
@media screen and (max-width: 834px) {
	.toggle-btn span {
		left: 3rem;
		width: 6rem;
		height: 0.6rem;
	}
	.toggle-btn span:nth-child(1) {
		top: 4rem;
	}
	.toggle-btn span:nth-child(2) {
		top: 5.5rem;
	}
	.toggle-btn span:nth-child(3) {
		top: 7rem;
	}
}
/* ---- open ---- */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span:nth-child(1) {
	transform: translateY(1rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	transform: translateY(-1rem) rotate(45deg);
}
@media screen and (max-width: 834px) {
	.open .toggle-btn span:nth-child(1) {
		transform: translateY(1.5rem) rotate(-45deg);
	}
	.open .toggle-btn span:nth-child(3) {
		transform: translateY(-1.5rem) rotate(45deg);
	}
}



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

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



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

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