@charset "utf-8";

/*============================================================

custom_header

==============================================================*/
#custom_header {
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
.custom_header_inner {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	justify-content:space-between;
	-webkit-align-items:center;
	align-items:center;
}
.custom_header_navi {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	justify-content:space-between;
	-webkit-align-items:center;
	align-items:center;
}
.custom_header_pc_gnav {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-align-items:center;
	align-items:center;
	margin: 0;
}
.custom_header_pc_gnav li {
	margin-right: 2rem;
}
.custom_header_pc_gnav a {
	text-decoration: none;
	outline: none;
	font-size: 16px;
}
.custom_header_pc_gnav a:link,
.custom_header_pc_gnav a:visited {
	color: #222222;
}
.custom_header_pc_gnav a:hover {
	color: #EE7700;
}
.nav-unshown {
	display: none;
}
#nav-open {
	display: block;
	width: 90px;
	height: 90px;
	background: #EE7700;
	cursor: pointer;
	position: relative;
	z-index: 101;
	transition:  background 0.5s;
}
#nav-open:hover {
	background: #F49F4A;
}
#nav-input:checked ~#nav-open {
	background: #fff;
}
#nav-open span {
	display: block;
	width: 26px;
	height: 0.9px;
	background: #fff;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	transition: 0.5s;
}
#nav-open .bar1 {
	top: 35px;
}
#nav-open .bar2 {
	top: 44px;
}
#nav-open .bar3 {
	top: 52px;
}
#nav-input:checked ~ #nav-open span {
	background: #004EA1;
}
#nav-input:checked ~ #nav-open .bar1 {
	transform: rotateZ(-135deg);
	top: 44px;
}
#nav-input:checked ~ #nav-open .bar2 {
	opacity: 0;
}
#nav-input:checked ~ #nav-open .bar3 {
	transform: rotateZ(135deg);
	top: 44px;
}
.custom_header_bar_gnav_wrap {
	position: fixed;
	top: 0;
	right: 0;
	width: 90%;
	max-width: 560px;
	height: 100vh;
	background: #004EA1;
	z-index: 50;
	padding: 90px 0 60px 0;
	transform: translateX(105%);
	transform-origin: top right;
	transition: 0.5s;
}
#nav-input:checked ~ .custom_header_bar_gnav_wrap {
	transform: translateX(0);
}
.custom_header_bar_scroll {
	width: 80%;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
  scrollbar-width: none;
	margin: 0 auto;
}
.custom_header_bar_scroll::-webkit-scrollbar {
	display: none;
}
.custom_header_bar_gnav {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	justify-content:space-between;
}
.custom_header_bar_gnav li {
	width: 48%;
	border-bottom: 1px solid #fff;
}
.custom_header_bar_gnav a {
	display: block;
	text-align: left;
	padding: 15px 0;
	text-decoration: none;
	font-size: 16px;
	position: relative;
	color: #fff;
}
.custom_header_bar_gnav a:after {
	display: block;
	content: '';
	width: 12px;
	height: 100%;
	background: url("../img/bar_nav_ic.png") center no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	right: 0;
}
.custom_header_bar_tel_wrap {
	margin-top: 30px;
}
.custom_header_bar_tel_inner {
	text-align: center;
	color: #fff;
	position: relative;
	padding: 0 20px;
}
.custom_header_bar_tel_inner:after,
.custom_header_bar_tel_inner:before {
	display: block;
	content: '';
	width: 10px;
	height: 100%;
	position: absolute;
	top: 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.custom_header_bar_tel_inner:before {
	left: 0;
	border-left: 1px solid #fff;
}
.custom_header_bar_tel_inner:after {
	right: 0;
	border-right: 1px solid #fff;
}
.custom_header_bar_tel_inner .catch {
	line-height: 1.4;
	font-weight: bold;
}
.custom_header_bar_tel_inner .catch br {
	display: none;
}
.custom_header_bar_tel_inner .num {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	-webkit-justify-content:center;
	justify-content:center;
}
.custom_header_bar_tel_inner .num a {
	font-size: 48px;
	color: #F38200;
	line-height: 1;
	font-weight: bolder;
	cursor: default;
	outline: none;
}
.custom_header_bar_tel_inner .num:before {
	display: block;
	content: '';
	width: 40px;
	height: 40px;
	background: url("../img/bar_tel_ic.png") center;
	background-size: contain;
	margin-right: 5px;
}
.custom_header_bar_tel_inner .caption {
	font-size: 14px;
}

#nav-close {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 10;
	background: rgba(0,0,0,0.7);
}
#nav-input:checked ~ #nav-close {
	display: block;
}

@media screen and (max-width:1180px){
	.custom_header_logo img {
		height: 70px;
		width: auto;
	}
	#nav-open {
		width: 70px;
		height: 70px;
	}
	#nav-open .bar1 {
		top: 26px;
	}
	#nav-open .bar2 {
		top: 34px;
	}
	#nav-open .bar3 {
		top: 42px;
	}
	#nav-input:checked ~ #nav-open .bar1,
	#nav-input:checked ~ #nav-open .bar3 {
		top: 34px;
	}
	.custom_header_bar_gnav_wrap {
		padding: 70px 0;
	}
	.custom_header_pc_gnav li {
		margin-right: 1.5rem;
	}
	.custom_header_pc_gnav a {
		font-size: 14px;
	}
}
@media screen and (max-width:960px){
	.custom_header_pc_gnav {
		display: none;
	}
}

@media screen and (max-width:700px){
	.custom_header_bar_gnav {
		display: block;
	}
	.custom_header_bar_gnav li {
		width: 100%;
	}
	
}
@media screen and (max-width:640px){
	
	.custom_header_bar_tel_inner .catch {
		font-size: 14px;
	}
	.custom_header_bar_tel_inner .num a {
		font-size: 38px;
	}
	.custom_header_bar_tel_inner .num:before {
		width: 30px;
		height: 30px;
	}
	.custom_header_bar_tel_inner .caption {
		font-size: 12px;
	}
	.custom_header_bar_gnav a {
		font-size: 14px;
	}
}
@media screen and (max-width:499px){
	.custom_header_bar_tel_inner .catch br {
		display: block;
	}
	.custom_header_bar_tel_inner .num a {
		font-size: 30px;
	}
	.custom_header_bar_tel_inner .num:before {
		width: 25px;
		height: 25px;
	}
}

@media screen and (max-width:400px){
	.custom_header_bar_tel_inner .num a {
		font-size: 27px;
	}
	.custom_header_bar_tel_inner .num:before {
		width: 22px;
		height: 22px;
	}
}

@media screen and (max-width:320px){
	.custom_header_logo img {
		height: 60px;
		width: auto;
	}
	#nav-open {
		width: 60px;
		height: 60px;
	}
	#nav-open .bar1 {
		top: 22px;
	}
	#nav-open .bar2 {
		top: 30px;
	}
	#nav-open .bar3 {
		top: 38px;
	}
	#nav-input:checked ~ #nav-open .bar1,
	#nav-input:checked ~ #nav-open .bar3 {
		top: 30px;
	}
	.custom_header_bar_gnav_wrap {
		width: 100%;
		padding: 60px 0;
	}
}