:root {
	--main-color-green: #0D7040;
	--main-color-gradatio: linear-gradient(253.67deg, #FFEE55 -60.14%, #0D7040 107.14%);
	--main-color-yellow: #FFEE55;
	--main-color-black: #333333;
}

.grecaptcha-badge { visibility: hidden; }

/** LINE Seed JP Font */
@font-face {
	font-family: 'LineSeedJP';
	src: url('../fonts/LINESeedJP/LINESeedJP_OTF_Eb.woff');
	font-weight: 900;
}
@font-face {
	font-family: 'LineSeedJP';
	src: url('../fonts/LINESeedJP/LINESeedJP_OTF_Bd.woff');
	font-weight: 700;
}
@font-face {
	font-family: 'LineSeedJP';
	src: url('../fonts/LINESeedJP/LINESeedJP_OTF_Rg.woff');
	font-weight: 400;
}
@font-face {
	font-family: 'LineSeedJP';
	src: url('../fonts/LINESeedJP/LINESeedJP_OTF_Th.woff');
	font-weight: 100;
}


* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
ul { list-style: none; }
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding-top: 90px;
	position: relative;
}
main {
	flex: 1;
}
.container {
	width: 100%;
	max-width: 1240px;
	margin-inline: auto;
	padding-inline: 20px;
}

.title {
	width: 100%;
	height: 42rem;
	display: inline-grid;
	align-content: center;
	justify-content: center;
	background: #FFFFFF;
	box-shadow: 0px 4px 36px rgba(0, 0, 0, 0.25);
	border-radius: 0px 0px 0px 122px;
}
.title span {
	font-family: 'LINE Seed JP';
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	letter-spacing: 1px;
	color: var(--main-color-green);
}
.page-text {
	width: 100%;
	max-width: 1000px;
	margin-inline: auto;
	padding: 100px 40px;
	display: inline-block;
	text-align: center;
}
.page-text span {
	font-family: 'LINE Seed JP';
	font-weight: 700;
	font-size: 36px;
	text-align: center;
	letter-spacing: 1px;
	color: var(--main-color-green);
}

.preparation {
	padding-block: 100px;
	text-align: center;
	font-size: 24px;
}

@media screen and (max-width: 820px) {
	.title {
		height: 160px;
		border-radius: 0;
	}
	.title span { font-size: 24px; }
	.page-text { padding: 40px;}
	.page-text span { font-size: 24px; }
}