@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 {
	--base-grey: #3C3C3C;
	--bg-grey: #404040;
	--bg-beige: #F8F9F4;
	--prime: #FF6400;
	--font-en: "Montserrat", sans-serif;
}
body {
	color: var(--base-color);
	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(--base-color);
}



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

sns

------------------------------------------- */
.sns {
	display: flex;
}
.sns li {
	width: 3.2rem;
}
.sns li:not(:last-child) {
	margin-right: 1.3rem;
}



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

footer

------------------------------------------- */
footer {
	background: var(--bg-grey);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
}
footer a {
	color: #fff;
}
footer .wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4rem 0;
}
footer .logo {
	width: 16rem;
}
footer nav {
	margin: 2.5rem 0;
}
footer nav ul {
	display: flex;
	font-family: var(--font-en);
	font-weight: 500;
}
footer nav ul li:not(:last-child) {
	margin-right: 3rem;
}
@media screen and (max-width: 768px) {
	footer nav ul {
		flex-wrap: wrap;
	}
	footer nav ul li:not(:last-child) {
		margin-right: 0;
	}
	footer nav ul li {
		width: 50%;
		text-align: center;
		padding: 0.5rem 0;
	}	
}
footer small {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 5.6rem;
	font-size: 1rem;
	font-weight: 500;
	font-family: var(--font-en);
	text-align: center;
	border-top: solid 0.1rem rgba(255,255,255,0.3);
	width: 85%;
	color: #B4B4B4;
}



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

page-ttl

------------------------------------------- */
.page-ttl {
	background: url(../img/mv-bg.jpg) no-repeat center / cover;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 22rem;
	padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
	.page-ttl {
		height: 24rem;
	}
}
.page-ttl .heading-1 {
	margin-bottom: 0;
}
.page-ttl .sns {
	position: absolute;
	right: 3rem;
	top: 4rem
}
@media screen and (max-width: 768px) {
	.page-ttl .sns {
		position: absolute;
		right: 1rem;
		top: 1rem
	}
}



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

layout

------------------------------------------- */
/* papdding */
.base-padding {
	padding-top: 8rem;
	padding-bottom: 8rem;
	padding-left: 10rem;
	padding-right: 10rem;
}
@media screen and (max-width: 768px) {
	.base-padding {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}
/* container */
.container {
	margin: 8rem auto;
	width: 88rem;
}
@media screen and (max-width: 768px) {
	.container {
		margin: 6rem 3rem 8rem 3rem;
		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: #fff;	
	font-size: 1.1rem;
	width: 3.2rem;
	height: 3.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-top: 0.2rem;
}
#page-top i {
	width: 0.6rem;
	height: 0.6rem;
	border-top: solid 0.2rem #fff;
	border-right: solid 0.2rem #fff;
	transform: rotate(-45deg);
	display: block;
}
@media screen and (max-width: 768px) {

}



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

style

------------------------------------------- */
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;
}
.heading-1 .en {
	font-family: var(--font-en);
	font-size: 3.8rem;
	display: flex;
	flex-direction: column;
}
.heading-1 .en::after {
	content: "";
	width: 2.5rem;
	height: 0.35rem;
	background: var(--prime);
	margin: 0.5rem 0 1.5rem 0;
}
.heading-1 .jp {
	font-weight: normal;
	font-size: 1.2rem;
}
.heading-1.center {
	align-items: center;
}
.heading-1.center .en {
	align-items: center;
}
@media screen and (max-width: 768px) {

}
/* more */
.more {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	width: 19rem;
	height: 5rem;
	background: url(../img/arrow-wh.png) no-repeat center right 1.8rem;
	background-size: auto 0.5rem;
	background-color: var(--prime);
	border: solid 0.25rem var(--prime);
	border-radius: 10rem;
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 500;
}
.more.center {
	margin: 0 auto;
}	
.more.jp {
	font-family: 'Noto Sans JP', sans-serif;
}
.more:hover {
	opacity: 1;
	background: url(../img/arrow-orn.png) no-repeat center right 1.5rem;
	background-size: auto 0.5rem;
	background-color: #fff;	
	color: var(--prime);
}
@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;
}
.gnav-sp nav {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}
.gnav-sp-menu {
	width: 48rem;
}
.gnav-sp-menu li:not(:last-child) {
	border-bottom: solid 0.12rem #DCDCDC;
}
.gnav-sp-menu li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2.5rem 5rem 2.6rem 2.5rem;
	white-space: nowrap;
	background: url(../img/arrow-orn.png) no-repeat center right 2rem;
	background-size: auto 0.5rem;
}
.gnav-sp-menu .en {
	font-family: var(--font-en);
	font-size: 1.8rem;
	font-weight: bold;
}
.gnav-sp-menu .jp {
	font-weight: normal;
	font-size: 1.1rem;
}
.gnav-sp-menu li a:hover {
	background: url(../img/arrow-wh.png) no-repeat center right 2rem;
	background-size: auto 0.5rem;	
	background-color: var(--prime);
	color: #fff;
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.gnav-sp-menu {
		width: 36rem;
	}
	.gnav-sp-menu li a {
		padding: 2.5rem 6rem 2.6rem 2.5rem;
		background-size: auto 0.8rem;
	}
	.gnav-sp-menu .jp {
		font-size: 1.2rem;
	}
	.gnav-sp-menu li a:hover {
		background-size: auto 0.8rem;	
	}
}
/* toggle */
.toggle-btn {
	background: #1E1E1E;
	cursor: pointer;
	display: block;
	position: fixed;
	top: 3rem;
	left: 3rem;
	width: 6.8rem;
	height: 6rem;
	transition: all .5s;
	z-index: 100000;
	border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
	.toggle-btn {
		top: 1rem;
		left: 1rem;
	}
}
.toggle-btn span {
	background: var(--prime);
	display: block;
	position: absolute;
	left: 1.65rem;
	width: 3.5rem;
	height: 0.2rem;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 2.2rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.9rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.6rem;
}
/* ---- open ---- */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span:nth-child(1) {
	transform: translateY(0.7rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	transform: translateY(-0.7rem) rotate(45deg);
}



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

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