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


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

base

------------------------------------------- */
:root {
	--red: #ef333b;
	--yellow: #fff109;
	--blue-1: #6cc2fb;
	--blue-2: #225ca0;
	--grey: #343233;
}
body {
	color: #343233;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
a {
	color: #343233;
}



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

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(--blue-2);
	color: #fff;	
	width: 3.2rem;
	height: 3.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.8rem;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 13rem;
	}
}



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

style

------------------------------------------- */
/* ---- heading ---- */
.ttl-wrap {
	display: flex;
	justify-content: center;
}
.heading-1 {
	line-height: 1;
	margin-bottom: 3rem;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.heading-1 .fukidashi {
	display: block;
	background: var(--grey);
	color: #fff;
	font-weight: 500;
	font-size: 1.6rem;
	padding: 1rem 3rem 1.15rem 3.3rem;
	border-radius: 10rem;
	position: relative;
	margin-bottom: 1.5rem;
}
.heading-1 .fukidashi::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 0.6rem solid transparent;
	border-right: 0.6rem solid transparent;
	border-top: 1rem solid var(--grey);	
	position: absolute;
	left: calc(50% - 0.6rem);
	bottom: -0.6rem;
}

@media screen and (max-width: 768px) {

}



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

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;
	}
}
/* ---- hv-center ---- */
.hv-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	width: 100%;
	z-index: 99;
}
/* ---- list ---- */
ul.list-group li {
	margin-left: 2rem;
	list-style: disc;
}
ul.list-group li:not(:last-child) {
	margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
	ul.list-group li:not(:last-child) {
		margin-bottom: 1.2rem;
	}
}
/* ---- prepare ---- */
.prepare {
    text-align: center;
    padding: 8rem 0;
    font-size: 2rem;
	font-weight: bold;
}
/* ---- map ---- */
.gmap iframe {
	width: 100%;
	height: 36rem;
}
.gmap.grey iframe {
	filter:grayscale(100%);
}
/* ---- 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);
	}
}
.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.35s !important; }
.delay-3 { animation-delay: 0.5s !important; }
.delay-4 { animation-delay: 0.65s !important; }
.delay-5 { animation-delay: 0.8s !important; }



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

hamburger

------------------------------------------- */
.gnav-sp {
	display: block;
	position: fixed;
	top: 6rem;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
}
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.5rem 3rem 3rem 3rem;
	background: rgba(112,191,252,0.9);
}
.gnav-sp-menu {
	display: flex;
	flex-wrap: wrap;
}
.gnav-sp-menu li {
	width: 32%;
	margin-right: 2%;
}
.gnav-sp-menu li:nth-child(3n) {
	margin-right: 0;
}
.gnav-sp-menu li:nth-child(n + 4) {
	margin-top: 1rem;
}


/* ---- toggle ---- */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: #ff5e26;
}
.toggle-btn::before {
	content: "MENU";
	position: absolute;
	line-height: 1;
	left: 50%;
	bottom: 0.7rem;
	transform: translate(-50%,0);
	color: #fff;
	font-weight: bold;
	font-size: 1.2rem;
}
.toggle-btn span {
	display: block;
	position: absolute;
	left: 1.5rem;
	width: 3rem;
	height: 0.33rem;
	border-radius: 10rem;
	background-color: #fff;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.2rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.2rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.2rem;
}
/* ---- open ---- */
.open .gnav-sp {
	top: 6rem;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(1rem) rotate(-45deg);
	transform: translateY(1rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-1rem) rotate(45deg);
	transform: translateY(-1rem) rotate(45deg);
}