@charset "UTF-8";





:root{
	--black_base: 0, 0%;
	--main_base: 216, 64%;
	--accent_base: 60, 96%;

	--white: hsla(0, 0%, 100%, 1);

	--black: hsla(var(--black_base), 10%, 1);
	--gray: hsla(var(--black_base), 50%, 1);
	--lightgray: hsla(var(--black_base), 70%, 1);
	--thingray: hsla(var(--black_base), 85%, 1);

	--main: hsla(var(--main_base), 50%, 1);
	--littlemain: hsla(var(--main_base), 80%, 1);
	--lightmain: hsla(var(--main_base), 96%, 1);
	--thinmain: hsla(var(--main_base), 98%, 1);

	--accent: hsla(var(--accent_base), 50%, 1);

	--rem: 16px;
	--inner: 1280px;
}
@media screen and (max-width: 1423px){
	:root{
		--inner: 90vw;
	}
}
@media screen and (max-width: 768px){
	:root{
		--rem: 4.1vw;
	}
}





/**
 * 共通
 */
html{
	font-size: var(--rem);
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body{
	margin: 0;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-style: normal;
	color: var(--black);
	font-weight: 400;
	/* 300, 400, 500, 700, 900 */
	line-height: 2;
	background-color: var(--white);
}
.poppins{
	font-family: 'Poppins', 'Zen Maru Gothic', sans-serif;
	font-weight: 400;
	/* 100, 200, 300, 400, 500, 600, 700, 800, 900 */
	font-style: normal;
}
.nonei{
	display: none!important;
}
.flex{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.fwn{
	flex-wrap: nowrap;
}
.jcsb{
	justify-content: space-between;
}
.jcc{
	justify-content: center;
}
.jce{
	justify-content: end;
}
.aifs{
	align-items: flex-start;
}
.aife{
	align-items: flex-end;
}
.ais{
	align-items: stretch;
}
.center{
	text-align: center;
}
.right{
	text-align: right;
}
.peni{
	pointer-events: none!important;
}
.text_ellipsis{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 1;
}
.pr{
	position: relative;
}
.ofya{
	overflow-y: auto;
}
.ofxa{
	overflow-x: auto;
}
.vh{
	visibility: hidden;
}
.inner{
	width: var(--inner);
	margin: 0 auto;
}
.sp{
	display: none;
}
@media screen and (max-width: 768px){
	.sp{
		display: block;
	}
}





section.preparation{
	padding: calc((100vh - ((32px * 2) + 20px + (16px * 2 * 3) + 40px + (360px * (128/480)))) / 2) 0;
	background-color: rgba(244, 165, 122, 0.2);
}
section.preparation h1{
	margin-bottom: 20px;
}
section.preparation h1 span,
section.preparation .message p span{
	display: block;
	color: var(--black);
}
section.preparation h1 span{
	font-size: 32px;
	letter-spacing: 0.2em;
	font-weight: 400;
}
section.preparation .message p span{
	font-size: 16px;
	letter-spacing: 0.12em;
	font-weight: 500;
}
section.preparation .logo{
	margin-top: 40px;
}
section.preparation .logo img{
	display: block;
	width: 360px;
	height: calc(360px * (128/480));
}

@media screen and (max-width: 768px){
	section.preparation{
		padding: calc((100vh - ((8.21vw * 2) + 5.13vw + (4.1vw * 2 * 4) + 10.26vw + (46.15vw * (128/480)))) / 2) 0;
	}
	section.preparation h1{
		margin-bottom: 5.13vw;
	}
	section.preparation h1 span{
		font-size: 8.21vw;
	}
	section.preparation .message p span{
		font-size: 4.1vw;
	}
	section.preparation .logo{
		margin-top: 10.26vw;
	}
	section.preparation .logo img{
		width: 46.15vw;
		height: calc(46.15vw * (128/480));
	}
}