@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
	--fontBVP: 'Be Vietnam Pro', sans-serif;
	--eventimBlue: #00377b;
	--eventimYellow: #FDCC40;
	--gray01: #F8F9FA;
	--gray02: #D4D8D9;
	--gray04: #8E9497;
	--gray05: #495057;
	--seeDark: #1E1E1E;
	--seeDarkBlack: #121212;
	--seeBlack: #212429;
	--borderRadius: 8px;
	--boxShadow: 0px 1px 4px 0px rgba(73, 80, 87, 0.25);
	--seePurple: #840265;
	--seePurple03: #F3E6F0;
	--seeOrange: #F7685B;
	--bodyHeading1: 32px;
	--bodyHeading1m: 6vw;
	--bodyParagraph: 14px;
	--bodySubtitle: 16px;
	--bodySmall: 10px;
}
body {
	background: var(--gray01);
	color: var(--seeBlack);
	font-family: var(--fontBVP);
	font-size: var(--bodyParagraph);
	line-height: 1.2;
	font-weight: 400;
}
a {
	color: var(--seeBlack);
	text-decoration: none;
	transition: .5s ease all;
}
a:hover,
a:focus,
a:focus-visible {
	color: var(--eventimBlue);
	text-decoration: none;
	transition: .5s ease all;
}
h1, footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
h1 {
	font-size: var(--bodyHeading1);
	font-weight: 500;
	align-items: center;
	margin-bottom: 20px;
	transition: .5s ease all;
}
h1 img {
	height: 30px;
}
.logo {
	height: 46px;
	padding: 20px 3% 0;
	width: 94%;
	position: fixed;
	top: 0;
	z-index: 210;
}
.logo img {
	display: block;
	margin-left: 89px;
	transition: .5s ease margin;
	height: 60px;
}
main {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 90vh;
}
section {
	max-width: 800px;
	width: 100%;
	padding: 0;
	margin: 8rem auto 20px;
	background: #FFF;
	border: 0;
	border-radius: var(--borderRadius);
	transition: 1s ease max-width;
	overflow: hidden;
}
section header {
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 60px 10%;
}
section header img {
	padding: 10px;
	height: 60px;
	width: auto;
}
section h1 {
	line-height: var(--bodyLineHeight);
}
section h1 span {
	text-align: left;
	margin-right: auto;
}
section p {
	text-align: center;
}
article {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 100%;
	margin: 40px auto 0;
	padding: 
}
article img {
	display: inline;
	padding: 10px;
	height: 24px;
	width: auto;
}
article.message-footer {
	background-color: var(--eventimYellow);
	background: var(--eventimYellow);
	justify-content: center;
	align-items: center;
	padding: 40px 10%;
}
.message-footer h2 {
	font-weight: 500;
}
.warning {
	background: var(--seePurple03);
	color: var(--seePurple);
	font-size: var(--bodyParagraph);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	border-radius: var(--borderRadius);
	margin-bottom: 20px;
	padding: 10px;
	min-height: 48px;
}
.error-box {
	margin: 20px 0;
}
footer {
	max-width: calc(600px - 2rem);
	margin: 20px auto;
	align-items: center;
	transform: translateX(0%);
	transition: 1s ease max-width;
}
footer p {
	color: var(--gray04);
	text-align: center;
	margin: 0 auto;
	font-size: var(--bodySmall);
}
@media(max-width:768px) {
	.logo {
		width: 100%;
	}
	.logo img {
		margin-right: auto;
		margin-left: 1rem;
		padding: 0;
		transition: .5s ease margin;
	}
	section {
		max-width: calc(100vw - 4rem);
		transition: 1s ease max-width;
	}
	h1 {
		font-size: var(--bodyHeading1m);
		margin-bottom: 0;
		transition: .5s ease all;
	}
	.warning {
		padding: 1rem
	}
}