@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=Noto+Sans+JP:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');



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

base

------------------------------------------- */
:root {
	--grey: #282828;
	--green: #8fbc8b;
	--orange: #de9e7c;
	--bg-grey: #ece8e8;
	--font-shippori: "Shippori Mincho", serif;
	--font-raleway: "Raleway", sans-serif;
	--font-caveat: "Caveat", cursive;
}
body {
	color: var(--grey);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
body::before {
	content: "";
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: url(../img/body-bg.jpg) no-repeat center / cover;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
/* ---- link ---- */
a {
	color: var(--grey);
}



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

style

------------------------------------------- */
/* ---- heading ---- */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	font-weight: normal;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	top: -4.5rem;
	margin-bottom: -0.5rem;
}
.heading-1::before {
	content: "";
	width: 0.1rem;
	height: 9rem;
	background: var(--grey);
	margin-bottom: 4rem;
}
.heading-1 > span {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.heading-1 .jp {
	font-family: var(--font-shippori);
	font-size: 4.6rem;
}
.heading-1 .en {
	font-family: var(--font-raleway);
	font-size: 3rem;
	color: var(--green);
	margin-top: 2rem;
	letter-spacing: 0.25em;
}
@media screen and (max-width: 600px) {
	.heading-1 .jp {
		font-size: 3.6rem;
	}
}
.heading-2 {
	display: flex;
	flex-direction: column;
	margin-bottom: 4rem;
	font-weight: normal
}
.heading-2 .en {
	font-family: var(--font-raleway);
	font-size: 3.6rem;
	letter-spacing: 0.1em;
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}
.heading-2 .en::after {
	content: "";
	width: 25rem;
	height: 0.2rem;
	background: var(--green);
}
.heading-2 .jp {
	font-family: var(--font-shippori);
	font-size: 3.8rem;
	line-height: 1.3;
}
@media screen and (max-width: 600px) {
	.heading-2 .en {
		font-size: 2.4rem;
	}
	.heading-2 .en::after {
		width: 14rem;
	}
	.heading-2 .jp {
		font-size: 3.2rem;
	}
}
.heading-3 {
	display: flex;
	align-items: center;
	font-size: 3.6rem;
	font-family: var(--font-raleway);
	font-weight: 500;
	letter-spacing: 0.2em;
	color: var(--green);
	white-space: nowrap;
}
.heading-3::before {
	content: "";
	width: 0.3rem;
	height: 20rem;
	background: var(--green);
	margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {

}



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

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;
}
/* ---- wrap ---- */
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6rem 0;

}
/* ---- gnav-sp-menu ---- */
.gnav-sp-menu li {
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
}
.gnav-sp-menu li span {
	display: block;
}
.gnav-sp-menu li a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.6rem 0;
	white-space: nowrap;
}
.gnav-sp-menu li a i {
	color: var(--orange);
	font-size: 1.2rem;
	margin-right: 1rem;
}
.gnav-sp .sns {
	display: flex;
	justify-content: center;
	margin: 3rem 0;
}
.gnav-sp .sns li {
	width: 3.5rem;
}
.gnav-sp .sns li:not(:last-child) {
	margin-right: 1.5rem;
}
.gnav-sp .sns + ul {
	display: flex;
	justify-content: center;
}
.gnav-sp .sns + ul li:not(:last-child) {
	margin-right: 1rem;
}
.gnav-sp .sns + ul a {
	font-family: var(--font-shippori);
	color: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 4.8rem;
	background: url(../img/arrow-1.png) no-repeat center right 1.5rem;
	background-size: 1.5rem;
	background-color: #fff;
	border: solid 0.12rem var(--orange);
	border-radius: 2rem 0 2rem 0;
	width: 16rem;
}	
.gnav-sp .sns + ul li:last-child a {
	background: url(../img/arrow-2.png) no-repeat center right 1.5rem;
	background-size: 1.5rem;
	background-color: var(--orange);
	color: #fff;
}
/* ---- toggle ---- */
.toggle-btn {
	background: var(--green);
	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);
}
@media screen and (max-width: 1120px) {
	#navArea {
		display: block;
	}
	.toggle-btn {
		right: calc((100% - 600px) / 2);
	}
}
@media screen and (max-width: 600px) {
	.toggle-btn {
		right: 0;
	}
}
@media screen and (min-width: 1121px) {
	#navArea {
		display: none;
	}
}



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

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