@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Kosugi+Maru|M+PLUS+Rounded+1c&display=swap');
/*================================
ヘッダー上部
================================*/
.header_wrap{ overflow: hidden;}
.header_wrap h1 {
  font-size: 12px;
	font-weight: normal;
  color: #4E7294;
  width: 100%;
  display: block;
}
@media (min-width: 768px){
	header{
		width: 100%;
		min-width: 980px;
	}
	.header_wrap{
		position: relative;
		width: 1140px;
		height: 85px;
		margin: 0 auto;
		padding: 0 10px;
	}
	.header_wrap h1 { margin-top: 5px;}
	.logobox .logo{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	.logobox .logo .logoimg{
		width: 180px;
		height: auto;
	}
	.top_navi_sp{ display: none !important;}
	.top_navi_pc{
		position: absolute;
		top: 5px;
		right: 0;
		width: 545px;
		height: 33px;
	}
	.top_navi_pc ul{
		display: flex;
		justify-content: flex-end;
		list-style: none;
	}
	.top_navi_pc ul li{
		margin-right: 3px;
	}
	.top_navi_pc ul li:last-child{
		margin-right: 0;
	}
	.top_navi_pc ul li a{
		color: #202038;
		text-decoration: none;
		padding: 5px 10px;
		font-weight: bold;
		display: block;
	}
	.top_navi_pc ul li a:hover{
		color: #fff;
		background-color: #202038;
	}
	.hd_contact{
		position: absolute;
		top: 50px;
		right: 10px;
	}
	.hd_contact > span{
		padding: 3px 15px;
		border-radius: 20px;
		border: #202038 1px solid;
	}
	.hd_contact .tel_num{ margin-left: 10px;}
	.hd_contact .btn_mail{ display: none;}
	.hd_contact .fa-phone-alt{
		color: #202038;
	}
}
@media (max-width: 767px){
	#hd_fixed{
		position: fixed;
		top: 0;
		left: 0;
    width: 100%;
		height: 72px;
    z-index: 100;
	}
	.header_wrap{
		border-top: #202038 4px solid;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 99;
    background-color: #fff;
		height: 100%;
	}
	.header_wrap h1{ padding: 5px;}
	.logobox{
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		padding-left: 5px;
		padding-right: 58px;
	}
	.logobox .logo .logoimg{
		width: 100px;
		height: auto;
	}
	.top_navi_pc ul li:not(.btn_mail){ display: none;}
	#request_fixed{
		position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
		transform: translateY(100%);
		transition: .3s;
		background-color: rgba(59, 120, 158, .9);
	}
	#request_fixed:hover{ background-color: rgba(59, 120, 158, 1);}
	#request_fixed.active { transform: translateY(0);}
	#request_fixed ul{
		list-style: none;
		padding: 0;
		padding: 0;
	}
	#request_fixed ul li.btn_mail a{
		color: #fff;
		padding: 10px;
		display: block;
		text-decoration: none;
		text-align: center;
	}
	#request_fixed ul li.btn_mail a .icon_mail{ position: relative;}
	#request_fixed ul li.btn_mail a .icon_mail{
		background-image: url("../image/icon_mail.png");
		background-size: contain;
		background-size: 25px 17px;
		background-repeat: no-repeat;
		background-position: left center;
		padding-left: 35px;
	}
	.top_navi_sp{
		padding-bottom: 150px !important;
		background-color: #fff;
	}
	.top_navi_sp ul.sub-menu li:first-child{ border: none !important;}
	.top_navi_sp ul.sub-menu li{
		width: 50% !important;
		float: left;
	}
	.top_navi_sp ul.sub-menu li a{
		text-align: center;
		color: #fff;
		background-color: #202038 !important;
	}
	.hd_contact{ display: flex;}
	.hd_contact .btn-tel{
		width: 28px;
		height: 28px;
		display: block;
	}
	.hd_contact .tel_icon{
		color: #202038;
		border-radius: 50%;
		border: #202038 2px solid;
		width: 24px;
		height: 24px;
		line-height: 25px;
		text-align: center;
		display: block;
	}
	.hd_contact .tel_icon:hover{ color: #202038;}
	.hd_contact .tel_num{ display: none;}
	.hd_contact .btn_mail{
		color: #fff;
		background-color: #202038;
		text-decoration: none;
		padding: 6px 5px;
		border-radius: 2px;
		font-size: 10px;
		margin-left: 5px;
	}
}

a[href^="tel:"] { cursor: default;}
@media(min-width: 768px){
  a[href^="tel:"]{ pointer-events: none;}
}

/*================================
ナビゲーション
================================*/
#h_nav{
	width: 100%;
	overflow: hidden;
}
.ace-responsive-menu a{ color: #333;}

@media (min-width: 768px){
	#h_nav{
		background-color: #202038;
		height: 70px;
	}
	.nav_w{
		width: 1140px;
		margin: 0 auto;
		display: block;
	}
	.ace-responsive-menu{
		list-style: none;
		margin: 0;
		padding: 0;
		display: table;
		table-layout: fixed;
		width: 100%;
		height: 70px !important;
	}
	.ace-responsive-menu > li{
		display: table-cell;
		box-sizing: border-box;
	}
	.ace-responsive-menu > li.menu-active:hover > a::after{
		content: '';
		display: inline-block;
		position: absolute;
		bottom: 0;
		left: -2px;
		right: -2px;
		border-bottom: #255B9B 3px solid;
		width: 146px;
		z-index: 100;
	}
	.ace-responsive-menu > li > a {
		padding: 12px 0;
		text-align: center;
		font-weight: bold;
		font-size: 16px;
	}
	.ace-responsive-menu > li > a > span{
		font-weight: normal;
	}
	/*.ls .goth,span.ls{
		letter-spacing: -0.1em!important;
		font-size: 15px!important;
		font-weight: 700!important;
	}
	.goth{
		font-family: 'GENJ', sans-serif;
		font-weight: 700!important;
		font-size: 15px!important;
	}*/
	
		/*丸ゴシックここから(ファイル先頭にフォント読み込み)*/
	/*@font-face {
		font-family: 'GENJ';
		font-style: normal;
		font-weight: 900;
		src: url('../fonts/GenJyuuGothicX-Heavy.woff') format('woff');
	}
	@font-face {
		font-family: 'GENJ';
		font-style: normal;
		font-weight: 700;
		src: url('../fonts/GenJyuuGothicX-Bold.woff') format('woff'),
			url('../fonts/GenJyuuGothicX-Bold.eot') format('eot');
	}*/

	.ace-responsive-menu > li > a {
		background-color: #202038;
		color: #fff;
	}
	.ace-responsive-menu > li > a:hover  {
		background-color: #f2f2f2;
		color: #202038 !important;
	}
	.ace-responsive-menu > li.menu-active a{
		background-color: #f2f2f2;
		color: #202038 !important;
	}
	.ace-responsive-menu > li > ul.sub-menu{
		box-shadow: 0 8px 8px -3px rgba(0,0,0,0.2);
		margin: 0 !important;
	}
	.ace-responsive-menu > li > ul.sub-menu li > a { background: #fff;}
	.ace-responsive-menu > li > ul.sub-menu li > a:hover { background: #e4eaf4;}
	.ace-responsive-menu li a{ text-align:center;}
	.ace-responsive-menu li a:hover{ color: #3563a5;}
	.ace-responsive-menu li a span{
		display: block;
		font-size: 16px;
		font-weight: bold;
	}
	.ace-responsive-menu li a span.entxt{
		font-size: 12px;
		font-weight: normal;
	}
	.menu-toggle{display: none !important;}
	.close-menu{
		display: none !important;
		width: 0 !important;
	}
}
@media (max-width: 767px){
	#h_nav{
		position: relative;
		top: 27px;
	}
	.menu-toggle #menu-btn{
		background-color: #202038;
		border: none;
		border-radius: 2px;
		margin-right: 5px;
		padding: 5px;
		width: 45px;
		height: 40px;
		position: relative;
		z-index: 100;
	}
	.menu-toggle .icon-bar{
		position: absolute;
		left: 5px;
		width: 35px;
		height: 2px;
		margin: 0;
		background-color: #fff !important;
	}
	.menu-toggle .icon-bar:nth-of-type(1){ top: 6px;}
	.menu-toggle .icon-bar:nth-of-type(2){ top: 12px;}
	.menu-toggle .icon-bar:nth-of-type(3){ top: 18px;}
	.nav_fixed .menu-toggle .icon-bar:nth-of-type(1){ transform: translateY(6px) rotate(-20deg);}
	.nav_fixed .menu-toggle .icon-bar:nth-of-type(2){ opacity: 0;}
	.nav_fixed .menu-toggle .icon-bar:nth-of-type(3){ transform: translateY(-6px) rotate(20deg);}

	.menu-toggle .icon-menu{
		color: #fff;
		font-size: 10px;
		position: absolute;
		bottom: 5px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
	}
	.menu-toggle{
		position: relative;
		background-color: transparent;
	}
	.menu-toggle i{
		position: absolute;
		top: 0;
		right: 60px;
		padding: 10px;
		color: #3563a5;
		font-size: 30px;
	}
	.ace-responsive-menu{
		margin-top: 5px;
		height: 100vh;
		overflow-x: hidden;
    overflow-y: scroll;
		/*IE(Internet Explorer)・Microsoft Edgeへの対応*/
		-ms-overflow-style: none;
		/*Firefoxへの対応*/
		scrollbar-width: none;
	}
	 /*Google Chrome、Safariへの対応*/
	.ace-responsive-menu::-webkit-scrollbar{ display: none;}
	
	.ace-responsive-menu li a span.entxt{ display: none;}
	.ace-responsive-menu li a:hover{ background-color: #255B9B;}
	.ace-responsive-menu > li:first-child{ border-top: #e1e1e1 1px solid;}
	.ace-responsive-menu > li{
		border-top: #e1e1e1 1px solid;
		border-bottom: none;
	}
	.ace-responsive-menu > li > a{
		color: #202038;
		font-weight: bold;
		padding: 10px;
	}
	.ace-responsive-menu li ul.sub-menu{
		display: block !important;
		margin-top: 0;
		background-color: #f2f2f2;
	}
	.ace-responsive-menu li ul.sub-menu >  li:first-child{ border-top: #e1e1e1 1px solid;}
	.ace-responsive-menu li ul.sub-menu > li{ border-bottom: #e1e1e1 1px solid;}
	.ace-responsive-menu li ul.sub-menu li a{ padding: 10px;}
	.ace-responsive-menu li > a{ background-color: #fff;}
	.ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu > li{ border: none;}
	.ace-responsive-menu li > ul.sub-menu > li ul.sub-menu li > a{
		background-color: #e4eaf4;
		padding: 10px;
	}

}


/*================================
フッター
================================*/
.footer_wrap{
	width: 100%;
	margin-top: 40px;
	padding-top: 20px;
	padding-bottom: 10px;
  background-color: #202038;
}
.footer_wrap footer{
  width: 100%;
  margin: 0 auto;
	text-align: center;
}
.footer_wrap footer ul li {
	list-style: none;
	padding: 0 10px;
}
.footer_wrap footer a{
	color: #fff;
	font-size: 12px;
	text-decoration: none;
}
.ftlink{ margin-bottom: 5px;}
.ftlink a {
  font-weight: bold;
	padding-top: 5px;
	width: 100%;
	font-size: 12px;
}
.ftcopy{ color: #fff;}
@media (min-width: 768px){
	.footer_wrap footer{ width: 940px;}
	.footer_wrap footer ul{
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
	}
	.footer_wrap footer ul li a:hover{ text-decoration: underline;}
	.ftcopy{ font-size: 13px;}
}
@media (max-width: 767px){
	.footer_wrap{ padding-bottom: 40px;}
	.footer_wrap footer ul{
		margin-bottom: 10px;
	}
	.ftlink{ font-size: 11px;}
	.ftcopy{ font-size: 10px;}
}

/*pagetop
==========================*/
#page_top{
	position: fixed;
  right: 15px;
	z-index: 100;
	background-color: rgba(0, 0, 0, .8);
  display: block;
  width: 50px;
  height: 50px;
	border-radius: 50%;
	font-size: 14px;
	text-align: center;
	color: #fff;
  text-decoration: none;
}
#page_top span{
	position: relative;
	display: block;
	padding-top: 22px;
}
#page_top span::after{
	content: '';
  display: inline-block;
	position: absolute;
	top: 12px;
	left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	border-top: solid 1px #fff;
  border-left: solid 1px #fff;
}
#page_top:hover{ background-color: #000;}