@charset "UTF-8";
html {-webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;}
html, body, div, span, object, iframe, p, blockquote, pre, a, em, img, strong, sub, sup, tt, var, center, dl, dt, dd, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, embed, audio, video, input, text, tspan, svg, textarea {
	font-family: 'Montserrat', sans-serif;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
ul {
	padding-inline-start: 5px;
}
body {font-weight: 400; font-size: 16px; line-height: 22px; margin: 0; padding: 0; border: 0; background: none;}

a:link, a:active, a:visited {color: #FF1800; cursor: pointer;}
a:hover {color: #CC2211; cursor: pointer;}

.msg {
	font-family: 'Permanent Marker', cursive;
}
.fs_title {
	font-size: 22px;
	line-height: 26px;
	margin: 5px 0;
}
.fs_body {
	font-size: 16px;
	line-height: 18px;
}
.fs_info {
	font-size: 14px;
	line-height: 18px;
}
.regular {
	font-weight: 400;
}
.semibold {
	font-weight: 700;
}
.bold {
	font-weight: 900;
}
.uc {
	text-transform: uppercase;
}
.red {
	color: #FF1800;
}
.black {
	color: #000000;
}
.lightgray {
	color: #CCCCCC;
}
.gray {
	color: #666666;
}
.white {
	color: #FFFFFF;
}

.container {
	display: flex;
	justify-content: center;
	align-items: stretch;
	position: relative;
	width: 100vw;
	min-height: 100vh;
	overflow: scroll;
	padding: 10px;
}
.navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 10px;
	left: 10px;
	right: 10px;
	height: 60px;
	transition: top .5s ease;
	z-index: 999;
	cursor: pointer;
}
.navigation.nav_up {
	top: -100px;
}
.navigation .menu {
	display: flex;
	flex-direction: row;
}
.navigation .menu div {
	width: auto;
	height: 30px;
	padding: 5px 10px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 900;
	background: #FF1800;
	color: #FFFFFF;
	margin: 5px;
	box-shadow: 5px 10px 20px 0 rgba(224, 124, 114, .35);
	cursor: pointer;
}
.navigation .menu div:hover {
	transform: translate(0, 2px);
	background: #CC2211;
}
.navigation .menu div.selected {
	color: #FF1800;
	background: #FFFFFF;
	border: 1px solid #FF1800;
}
.navigation .menu div.selected:hover {
	color: #CC2211;
	border: 1px solid #CC2211;
}
.navigation .logo {
	width: 278px;
	padding-top: 10px;
	margin-left: -10px;
	cursor: pointer;
}
.navigation .logo > img {
	width: 100%;
}
.navigation .menu_mobile {
	display: none;
}
.navigation .nav_back {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 5px;
	width: 50px;
	height: 50px;
	background: #FFFFFF;
	border: 1px solid transparent;
	box-shadow: 5px 10px 20px 0 rgba(224, 124, 114, .35);
}
@media screen and (max-width: 768px) {
	.fs_title {
		font-size: 18px;
		line-height: 20px;
	}
	.fs_body {
		font-size: 14px;
		line-height: 18px;
	}
	.fs_info {
		font-size: 12px;
		line-height: 16px;
	}
	.navigation .logo {
		width: 220px;
	}
	.navigation .menu_mobile {
		display: block;
		position: absolute;
		right: 0;
		top: 5px;
		width: 50px;
		height: 50px;
	}
	.menu_mobile .hamburger {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		width: 50px;
		height: 50px;
		background: #FF1800;
		border: 1px solid transparent;
		box-shadow: 5px 10px 20px 0 rgba(224, 124, 114, .35);
	}
	.menu_mobile.show .hamburger {
		background: #FFFFFF;
		border: 1px solid #FF1800;
	}
	.menu_mobile .hamburger div {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 30px;
		height: 2px;
		background: #FFFFFF;
		transform: translate(-50%, -50%);
		transition: all .25s ease;
		box-shadow: 5px 10px 20px 0 rgba(224, 124, 114, .35);
	}
	.menu_mobile .hamburger div:nth-child(1) {
		transform: translate(-50%, -450%);
	}
	.menu_mobile .hamburger div:nth-child(2) {
		opacity: 1;
	}
	.menu_mobile .hamburger div:nth-child(3) {
		transform: translate(-50%, 350%);
	}
	.menu_mobile.show .hamburger div:nth-child(1) {
		background: #FF1800;
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	.menu_mobile.show .hamburger div:nth-child(2) {
		opacity: 0;
		transform: translate(-100%, -50%);
	}
	.menu_mobile.show .hamburger div:nth-child(3) {
		background: #FF1800;
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.menu_mobile.show .menu_detail {
		z-index: 9999;
		pointer-events: auto;
	}
	.menu_mobile .menu_detail {
		display: flex;
		align-items: flex-end;
		flex-direction: column;
		position: absolute;
		top: 60px;
		right: 0;
		width: 300px;
		transition: all .25s ease;
		pointer-events: none;
		z-index: 0;
	}
	.menu_mobile .menu_detail div {
		width: fit-content;
		height: 40px;
		padding: 5px 10px;
		font-size: 20px;
		line-height: 30px;
		font-weight: 900;
		background: #FF1800;
		color: #FFFFFF;
		margin: 5px 0;
		opacity: 0;
		transform: translateY(-100%);
		transition: all .5s ease;
		box-shadow: 5px 10px 20px 0 rgba(224, 124, 114, .35);
	}
	.menu_mobile .menu_detail div.selected {
		background: #CC2211;
		color: #FFDDD9;
	}
	.menu_mobile.show .menu_detail div {
		opacity: 1;
		transform: translateY(0%);
	}
	.menu_mobile .menu_detail div:nth-child(1) {
		transition-delay: 0s;
	}
	.menu_mobile .menu_detail div:nth-child(2) {
		transition-delay: .15s;
	}
	.menu_mobile .menu_detail div:nth-child(3) {
		transition-delay: .3s;
	}
	.navigation .menu {
		display: none;
	}
}


@media screen and (max-width: 414px) {
	.navigation {
		left: 5px;
		right: 5px;
	}
}