@charset "utf-8";

* {
	box-sizing: border-box;
}
html {
	font-size: 10px;
}
body {
	background-color: #ffffff;
	color: #3f4657;
	font-family: sans-serif;
	margin: 0;
}
p, a {
	font-size: 1.8rem;
	text-align: center;
	text-decoration: none;
	margin: 0;
	line-height: 2;
}
a, a:visited {
	color: #3777ff;
}
img {
	width: 100%;
}

.container {
	max-width: 1480px;
	margin: 0 auto;
	padding: 2rem 0;
}


@media screen and (max-width: 1215px) {
}


header {
	border-bottom: 1px solid #eee;
}
header .container {
	display: grid;
	align-items: center;
	grid-template-columns: 128px 1fr max-content;
	grid-template-rows: 1fr;
	grid-template-areas: "logo menu login";
	gap: 12rem;
}
header .container > div {
	display: flex;
	align-items: center;
	gap: 8rem;
}
header .container a {
	line-height: 1;
	font-weight: bold;
	font-size: 1.4rem;
	color: #3f4657;
}
#head_logo {
	grid-area: logo;
}
#main-menu {
	grid-area: menu;
}
#login-menu {
	grid-area: login;
	display: flex;
	justify-content: right;
	gap: 2rem;
}
#head_icon img {
	width: 40px;
}

.btn_1, .btn_2 {
	font-size: 1.4rem;
	font-weight: bold;
	padding: 1em;
	border-radius: 3em;
}
.btn_1 {
	color: #3777ff !important;
	border: 0.2rem solid #3777ff;
	background: #ffffff;
}

.btn_2 {
	color: #ffffff !important;
	background: #3777ff;
}
.btn_container {
	text-align: center;
	display: block;
	margin-top: 4em;
}
#footer {
	padding: 4.0rem 0;
	background-color: #f9f9f9;
	
}
#footer_logo {
	display: block;
	text-align: left;
}
#footer_logo img {
	max-width: 128px;
}
#footer_link_area {
	padding: 2.0rem 1em 8.0rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2em;
}
#footer_link_area > div {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: baseline;
	gap: 0.5em;
	flex: 1;
	min-width: 150px;
}
#footer_link_area a {
	color: #7b7c84;
	font-size: 1.4rem;
}
#footer_link_area a:hover {
	color: #3f5647;
}
#footer_link_area a,#footer_link_area p {
	text-align: left;
}
.small_text {
	font-size: 1.4rem;
}
#copyright {
	font-size: 1.2rem;
}
