/* HEADER */
header .main_header {
	width: 100%;
	display: flex;
	justify-content: center;
	background: #0969f9;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 990;
}
header .main_header .logo_wrap {
	display: block;
	width: 14rem;
	padding: 1.2rem 0;
}
header .main_header .logo_wrap img {
	width: 100%;
}
header .main_header button {
	display: block;
	text-indent: -9999px;
}
header .main_header .menu {
	width: 6rem;
	height: 100%;
	background: url("../img/menu.png") no-repeat 50% 50% / 3rem;
	position: absolute;
	top: 0;
	left: 0;
}
header .main_header .prev {
	width: 6rem;
	height: 100%;
	background: url("../img/prev.png") no-repeat 50% 50% / 1rem;
	position: absolute;
	top: 0;
	right: 0;
}
header .main_header .calculator {
	width: 6rem;
	height: 100%;
	background: url("../img/calculator.png") no-repeat 50% 50% / 3.5rem;
	position: absolute;
	top: 0;
	right: 0;
	text-indent: -9999px;
}

header .sub_header {
	height: 100vh;
	width: 70%;
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 999;
	background: #fff;
	transition: all 0.5s;
}
header .sub_header .logo_wrap {
	width: 100%;
	background: #0969f9;
	padding: 1.2rem 0;
	position: relative;
}
header .sub_header .logo_wrap img {
	width: 14rem;
	margin-left: 1.5rem;
}
header .sub_header .close {
	width: 6rem;
	height: 100%;
	background: url("../img/menu_close.png") no-repeat 50% 50% / 2.5rem;
	position: absolute;
	top: 0;
	right: 0;
}
header .sub_header .list_wrap {
	display: flex;
	height: calc(100vh - 6rem);
	flex-direction: column;
	justify-content: start;
}
header .sub_header .list_wrap .item {
	margin-bottom: 2rem;
}
header .sub_header .list_wrap .item p {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: -.1rem;
	line-height: 2.2;
	color: #0969f9;
	border-bottom: 1px solid #ddd;
	padding-left: 5.5rem;
}
header .sub_header .list_wrap .item:nth-child(2) p {
	background: url("../img/menu_icon1.png") no-repeat 5% 50% / 2.5rem;
}
header .sub_header .list_wrap .item:nth-child(3) p {
	background: url("../img/menu_icon2.png") no-repeat 5% 50% / 2.5rem;
}
header .sub_header .list_wrap .item ul li a {
	display: block;
	font-size: 1.8rem;
	line-height: 2.5;
	border-bottom: 1px solid #ddd;
	font-weight: 600;
	padding-left: 3rem;
}
header .sub_header .list_wrap .item.home a {
	display: block;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2.5;
	color: #0969f9;
	background: url("../img/home1.png") no-repeat 5% 50% / 2.5rem;
	height: 100%;
	padding-left: 5.5rem;
	border-bottom: 1px solid #ccc;
}
header .background {
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	z-index: 998;
}

.main {
	margin-top: 5.7rem;
}