@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:opsz,wght@17..18,400..700&family=LINE+Seed+JP:wght@100;400;700;800&family=Roboto:wght@100..900&display=swap');




:root{
	--white: hsla(40, 22%, 92%, 1);
	--purewhite: hsla(0, 0%, 100%, 1);

	--black_base: 222, 22%;
	--black: hsla(var(--black_base), 8%, 1);
	--deepgray: hsla(var(--black_base), 12%, 1);
	--gray: hsla(var(--black_base), 16%, 1);
	--lightgray: hsla(var(--black_base), 20%, 1);
	--thingray: hsla(var(--black_base), 40%, 1);

	--accent: hsla(60, 88%, 52%, 1);

	--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: 'LINE Seed JP', sans-serif;
	color: var(--white);
	font-weight: 400;
	/* 100, 400, 700, 800 */
	font-style: normal;
	line-height: 2;
	background-color: var(--black);
}
.gs{
	font-family: 'Google Sans', 'LINE Seed JP', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	/* 400, 500, 600, 700 */
	font-style: normal;
	font-variation-settings: 'GRAD' 0;
}
.roboto{
	font-family: 'Roboto', 'LINE Seed JP', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	/* 100, 200, 300, 400, 500, 600, 700, 800, 900 */
	font-style: normal;
	font-variation-settings: 'wdth' 100;
}
.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;
}
.vertical{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.text_ellipsis{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 1;
}
.text_ellipsis3{
	-webkit-line-clamp: 3;
}
.pr{
	position: relative;
}
.ofh{
	overflow: hidden;
}
.ofya{
	overflow-y: auto;
}
.ofxa{
	overflow-x: auto;
}
.vh{
	visibility: hidden;
}
.mbme{
	mix-blend-mode: exclusion;
}
.inner{
	width: var(--inner);
	margin: 0 auto;
}
.sp{
	display: none;
}
@media screen and (max-width: 768px){
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
}




section.preparation{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
section.preparation h1{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 636px;
	height: calc(636px * (144/636));
}
section.preparation h1 a,
section.preparation h1 a svg{
	display: block;
	width: 100%;
	height: 100%;
}
section.preparation h1 a svg path,
section.preparation h1 a svg polygon{
	fill: var(--white);
}
@media screen and (max-width: 768px){
	section.preparation h1{
		width: 82.81vw;
		height: calc(82.81vw * (144/636));
	}
}