@charset "utf-8";
/**
/* CSS RESET START
----------------------------------------------- */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;vertical-align: baseline;box-sizing: border-box;-webkit-box-sizing: border-box;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
input, textarea{margin: 0;padding: 0;outline: none;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;width:100%;}
caption, th{text-align: left;}
img {vertical-align: middle;max-width:100%;height: auto;}
.clearfix {min-height: 1px;}
.clearfix:after {content: "."; display: block;clear: both;height: 0;visibility: hidden;}
.both{clear:both;}
/**
/* CSS START
----------------------------------------------- */
html,body {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	color: #1C1C1C;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
	margin: 0;
	padding: 0;
}
@media only screen and (max-width: 767px) {
	html,body {
		font-size: 4.2vw;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	html,body {
		font-size: 14px;
	}
}
*:focus {
	outline: none!important;
}
#Wrapper{
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
}
*, *:before, *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
a{
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	color: #09253C;
}
.pc_br,
.pc_img,
.pc{
	display: none;
}
.sp_br,
.sp_img,
.sp{
	display: block;
}
@media only screen and (min-width: 768px){
	.sp_br,
	.sp_img,
	.sp{
		display: none;
	}
	.pc_img{
		display: inline-block;
	}
	.pc_br,
	.pc{
		display: block;
	}
}
/**
/* flex CSS
----------------------------------------------- */
.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex_row{
	webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex_between{
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.flex_column{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
		flex-direction: column;
}
.flex_center{
	-webkit-justify-content: center;
	justify-content: center;
}
.flex_end{
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.flex_wrap{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
.items_start{
	align-items: flex-start;
}
.items_center{
	align-items: center;
}
.items_end{
	align-items: flex-end;
}
dl.dl_table{
	width: 100%;
	display: table;
}
dl.dl_table dt,
dl.dl_table dd{
	display: table-cell;
}
/**
/* ヘッダー CSS
----------------------------------------------- */
.global-header{
	position: fixed;
	background: #FFFFFF;
	width: 100%;
	top: 0;
	z-index: 9999;
	padding: 1.25rem 1.5rem;
}
.global-header .global-nav{
	display: flex;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.global-header .header_logo{
	line-height: 0;
}
.global-header .header_logo a{
	display: block;
}
.global-header .header_logo img{
	max-width: 15.125rem;
}
.global-nav .header-nav{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.global-nav .header-recruit{
	margin-left: 0.5rem;
}
.global-nav .header-recruit li a{
	display: block;
	background: #FFFFFF;
	border: 1px solid #0058CE;
	color: #0158CF;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.42;
	padding: 0.5rem 2rem;
	border-radius: 1.25rem;
}
.global-nav .header-recruit li a:hover{
	opacity: 0.8;
}
.global-nav .header-contact{
	margin-left: 1.5rem;
}
.global-nav .header-contact li{
	width: 14rem;
}
.global-nav .header-contact li a{
	position: relative;
	display: block;
	background: #0059D1;
	background: linear-gradient(235deg,rgba(0, 89, 209, 1) 0%, rgba(0, 45, 105, 1) 100%);
	color: #FFFFFF;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	padding: 1rem;
}
.global-nav .header-contact li a:hover{
	background: #002D69;
	background: linear-gradient(235deg,rgba(0, 45, 105, 1) 0%, rgba(0, 45, 105, 1) 100%);
}
@media only screen and (max-width: 1300px) {
	.global-header{
		padding: 1.25rem 1rem;
	}
	.global-header .header_logo img{
		max-width: 13.125rem;
	}
	.global-nav .header-recruit li a{
		padding: 0.5rem 1.5rem;
	}
	.global-nav .header-contact{
		margin-left: 1.25rem;
	}
	.global-nav .header-contact li{
		width: 12rem;
	}
}
@media only screen and (max-width: 1200px) {
	.global-header{
		padding: 1.25rem 0.625rem;
	}
	.global-header .header_logo img{
		max-width: 12rem;
	}
	.global-nav .header-recruit li a{
		font-size: 0.875rem;
		padding: 0.5rem 1.25rem;
	}
	.global-nav .header-contact{
		margin-left: 0.625rem;
	}
	.global-nav .header-contact li{
		width: 10rem;
	}
	.global-nav .header-contact li a{
		font-size: 0.9375rem;
		padding: 0.75rem;
	}
}
@media only screen and (max-width: 1024px) {
	.global-nav .header-recruit,
	.global-nav .header-contact{
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.global-header{
		padding: 0.75rem 0.875rem;
	}
	.global-header .header_logo img{
		max-width: 14.75rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.global-header{
		padding: 1.25rem 1.5rem;
	}
	.global-header .header_logo img{
		max-width: 15.125rem;
	}
}
/**
/* ヘッダーナビ CSS
----------------------------------------------- */
.global-nav .drawer-hamburger{
	display: none;
}
.drawer--right .global-nav .drawer-nav{
	position: relative;
	display: flex;
	right: auto;
	overflow: visible;
	width: auto;
	height: auto;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	background-color: transparent;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.global-nav .drawer-nav .drawer-menu li{
	display: inline-block;
}
.global-nav .drawer-nav .drawer-menu li:not(:nth-child(5)){
	border-right: 1px solid #D9D9D9;
}
.global-nav .drawer-nav .drawer-menu li.sp{
	display: none;
}
.global-nav .drawer-nav .drawer-menu li a{
	display: block;
	color: #1C1C1C;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	padding: 0 1.5rem;
}
.global-nav .drawer-nav .drawer-menu li a:hover{
	color: #0158CF;
}
.global-nav .drawer-contact{
	display: none;
}
@media only screen and (max-width: 1300px) {
	.global-nav .drawer-nav .drawer-menu li a{
		padding: 0 1.25rem;
	}
}
@media only screen and (max-width: 1200px) {
	.global-nav .drawer-nav .drawer-menu li a{
		font-size: 0.875rem;
		padding: 0 1rem;
	}
}
@media only screen and (max-width: 1024px) {
	.global-nav .drawer-hamburger{
		display: block;
		width: 2.5rem;
		top: 0;
		z-index: 99999;
		padding: 2rem 1.5rem 2.209rem 1.5rem;
	}
	.drawer--right.drawer-open .global-nav .drawer-hamburger{
		right: 0;
	}
	.global-nav .drawer-hamburger-icon{
		margin-top: 0.75rem;
	}
	.global-nav .drawer-hamburger-icon,
	.global-nav .drawer-hamburger-icon::after,
	.global-nav .drawer-hamburger-icon::before{
		background: #081F3B;
		height: 2px;
	}
	.drawer-open .global-nav .drawer-hamburger-icon::after,
	.drawer-open .global-nav .drawer-hamburger-icon::before{
		background: #081F3B;
	}
	.global-nav .drawer-hamburger-icon::after{
		top: 0.625rem;
	}
	.global-nav .drawer-hamburger-icon::before{
		top: -0.625rem;
	}
	.drawer--right .global-nav .drawer-nav{
		position: fixed;
		display: block;
		background: #1E5C9B;
		width: 90%;
		max-width: 46.5rem;
		height: 100%;
		right: -100%;
		top: 5.125rem;
		left: auto;
		z-index: 9999;
	}
	.drawer--right .global-nav .drawer-nav{
		overflow: auto;
	}
	.global-nav .drawer-nav ul.drawer-menu li,
	.global-nav .drawer-nav ul.drawer-menu li.sp{
		display: block;
	}
	.global-nav .drawer-nav ul.drawer-menu li a{
		position: relative;
		display: block;
		color: #ffffff;
		font-size: 1.25rem;
		line-height: 1.45;
		text-align: left;
		border-bottom: 1px solid #73A4C9;
		padding: 1.25rem 1.875rem;
	}
	.global-nav .drawer-nav .drawer-menu li a:hover{
		color: #ffffff;
	}
	.global-nav .drawer-contact{
		display: block;
		text-align: center;
		margin-top: 2.75rem;
	}
	.global-nav .drawer-contact li{
		display: inline-block;
		width: 85%;
		max-width: 20.875rem;
	}
	.global-nav .drawer-contact li + li{
		margin-left: 1rem;
	}
	.global-nav .drawer-contact li a{
		position: relative;
		display: block;
		font-size: 1.125rem;
		font-weight: 500;
		line-height: 3.75rem;
		text-align: center;
		border-radius: 3.25rem;
		border: 1px solid #FFFFFF;
	}
	.global-nav .drawer-contact li a::after{
		content: "";
		position: absolute;
		width: 1.75rem;
		height: 1.75rem;
		right: 1rem;
		top: 50%;
		transform: translateY(-50%);
	}
	.global-nav .drawer-contact li.tel a{
		color: #FFFFFF;
	}
	.global-nav .drawer-contact li.tel a::after{
		background: url(../img/icon/arrow_w2.svg) no-repeat center;
		background-size: contain;
	}
	.global-nav .drawer-contact li.contact a{
		background: #FFFFFF;
		color: #2E5DC4;
	}
	.global-nav .drawer-contact li.contact a::after{
		background: url(../img/icon/arrow_b2.svg) no-repeat center;
		background-size: contain;
	}
}
@media only screen and (max-width: 767px) {
	.global-nav .drawer-hamburger{
		width: 2rem;
		padding: 1.375rem 1rem 1.75rem 1rem;
	}
	.drawer--right .global-header .drawer-nav{
		top: 4rem;
	}
	.global-nav .drawer-nav ul.drawer-menu li a{
		font-size: 1.0625rem;
		padding: 1.25rem 1.5rem;
	}
	.global-nav .drawer-contact{
		display: block;
		text-align: center;
		margin-top: 2.5rem;
	}
	.global-nav .drawer-contact li{
		max-width: 17.875rem;
	}
	.global-nav .drawer-contact li + li{
		margin-left: 0;
		margin-top: 1rem;
	}
	.global-nav .drawer-contact li a{
		font-size: 0.9375rem;
		line-height: 3.5rem;
	}
	.global-nav .drawer-contact li a::after{
		right: 0.875rem;
	}
}
/**
/* Common CSS
----------------------------------------------- */
.inner-wrap{
	position: relative;
	width: 94%;
	max-width: 1200px;
	margin: 0 auto;
}
.recruit-wrap .inner-wrap{
	max-width: 1160px;
}
.inner{
	position: relative;
	width: 90%;
	max-width: 1080px;
	margin: 0 auto;
}
section{
	position: relative;
}
.center{
	text-align: center;
}
iframe{
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.inner-wrap,
	.inner,
	.recruit-wrap .inner-wrap{
		width: calc(100% - 2.5rem);
	}
}
/**
/* Btn CSS
----------------------------------------------- */
.block_btn li{
	display: inline-block;
	width: 100%;
	max-width: 20rem;
}
.block_btn li .btn{
	position: relative;
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	border-radius: 4rem;
	padding: 1rem 1.5rem;
}
.block_btn li .btn::after{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.25rem;
	height: 2.25rem;
	right: 0.875rem;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
.block_btn li .white{
	background: #FFFFFF;
	border: 1px solid #FFFFFF;
	color: #1C1C1C;
}
.block_btn li .white::after{
	background: url(../img/icon/arrow_b2.svg) center center no-repeat;
	background-size: contain;
}
.block_btn li .white:hover{
	background: transparent;
	color: #FFFFFF;
}
.block_btn li .white:hover::after{
	background: url(../img/icon/arrow_w2.svg) center center no-repeat;
	background-size: contain;
}
.block_btn li .blue{
	background: #0059D1;
	background: linear-gradient(235deg,rgba(0, 89, 209, 1) 0%, rgba(0, 45, 105, 1) 100%);
	border: 1px solid #0059D1;
	color: #FFFFFF;
}
.block_btn li .blue::after{
	background: url(../img/icon/arrow_w2.svg) center center no-repeat;
	background-size: contain;
}
.block_btn li .blue:hover{
	background: #FFFFFF;
	color: #0059D1;
}
.block_btn li .blue:hover::after{
	background: url(../img/icon/arrow_b2.svg) center center no-repeat;
	background-size: contain;
}
.block_btn li .orange{
	background: #F8A200;
	background: linear-gradient(234deg,rgba(248, 162, 0, 1) 0%, rgba(235, 72, 0, 1) 100%);
	border: 1px solid #F8A200;
	color: #FFFFFF;
}
.block_btn li .orange::after{
	background: url(../img/icon/arrow_w_o.svg) center center no-repeat;
	background-size: contain;
}
.block_btn li .orange:hover{
	background: #FFFFFF;
	color: #EE5C00;
}
.block_btn li .orange:hover::after{
	background: url(../img/icon/arrow_o.svg) center center no-repeat;
	background-size: contain;
}
@media only screen and (max-width: 767px) {
	.block_btn li{
		max-width: 17.5rem;
	}
	.block_btn li .btn{
		font-size: 0.9375rem;
		padding: 0.875rem;
	}
	.block_btn li .btn::after{
		width: 1.8125rem;
		height: 1.8125rem;
		right: 1rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.block_btn li .btn{
		font-size: 1rem;
		padding: 1rem;
	}
	.block_btn li .btn::after{
		width: 2rem;
		height: 2rem;
		right: 0.625rem;
	}
}
/**
/* パンくず CSS
----------------------------------------------- */
.breadcrumbs{
	padding: 1rem 0;
}
.breadcrumbs span{
	display: inline-block;
	color: rgba(28, 28, 28, 0.5);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.35;
}
.breadcrumbs a span{
	color: #1C1C1C;
}
.breadcrumbs .separator{
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 0.21875rem solid transparent;
	border-bottom: 0.21875rem solid transparent;
	border-left: 0.4375rem solid #1e5c9b;
	border-right: 0;
	margin: 0 0.9375rem;
	vertical-align: middle;
}
.breadcrumbs span br{
	display: none;
}
@media only screen and (max-width: 767px) {
	.breadcrumbs{
		padding: 0.625rem 0;
	}
	.breadcrumbs span{
		font-size: 0.75rem;
	}
	.breadcrumbs .separator{
		border-top: 0.1875rem solid transparent;
		border-bottom: 0.1875rem solid transparent;
		border-left: 0.375rem solid #1e5c9b;
		margin: 0 0.75rem;
	}
}
/**
/* ページネーション CSS
----------------------------------------------- */
.wp-pagenavi {
	text-align: center;
	margin-top: 5.5rem;
}
.wp-pagenavi span,
.wp-pagenavi a {
	display: inline-block;
	text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span{
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	color: #F17300;
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 2.5rem;
	text-align: center;
	border: 1px solid #F17300!important;
	border-radius: 100%;
	padding: 0!important;
	margin: 0 0.25rem!important;
}
.wp-pagenavi .current,
.wp-pagenavi a.page:hover{
	background: #F17300;
	color: #FFFFFF;
	font-weight: 600!important;
	opacity: 1
}
.wp-pagenavi span.extend{
	border: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	background: #F17300;
	color: #FFFFFF;
	border: none!important;
	width: 1.5rem;
	height: 1.5rem;
	line-height: 1.35rem;
}
.wp-pagenavi .previouspostslink i,
.wp-pagenavi .nextpostslink i{
	font-size: 0.625rem;
}
.wp-pagenavi .previouspostslink{
	margin: 0 1rem 0 0!important;
}
.wp-pagenavi .nextpostslink{
	margin: 0 0 0 1rem!important;
}
@media only screen and (max-width: 767px) {
	.wp-pagenavi {
		margin-top: 3.5rem;
	}
	.wp-pagenavi a,
	.wp-pagenavi span{
		width: 2rem;
		height: 2rem;
		font-size: 1rem;
		line-height: 2rem;
		margin: 0 0.125rem!important;
	}
	.wp-pagenavi .previouspostslink{
		margin: 0 0.5rem 0 0!important;
	}
	.wp-pagenavi .nextpostslink{
		margin: 0 0 0 0.5rem!important;
	}
}
/**
/* フッター CSS
----------------------------------------------- */
footer{
	margin-top: auto;
}
footer .footer-wrap{
	background: #171B1F;
	color: #ffffff;
	padding: 5rem 0;
}
footer .footer-wrap .inner-wrap{
	max-width: 1440px;
}
footer .footer-logo{
	line-height: 0;
	margin-bottom: 1.5rem;
}
footer .footer-logo a{
	display: block;
}
footer .footer-logo img{
	max-width: 15rem;
}
footer .footer-wrap .address,
footer .footer-wrap .tel{
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.28;
}
footer .footer-nav{
	width: 65%;
	max-width: 43.75rem;
	column-gap: 2.5rem;
}
footer .footer-nav .footer-nav-items .ttl{
	font-family: "Cal Sans", sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.3;
	border-bottom: 1px solid #24292F;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
footer .footer-nav .footer-nav-items{
	width: calc(25% - 1.875rem);
}
footer .footer-nav ul li + li{
	margin-top: 1rem;
}
.footer-wrap .footer-nav ul li a{
	display: block;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.35;
}
footer .footer-nav li a:hover{
	opacity: .8;
}
footer .footer-bottom{
	background: #24292E;
	padding: 1rem 0;
}
footer .copy{
	color: #484C52;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.45;
	text-align: center;
}
.footer-bar{
	display: none;
}
@media only screen and (max-width: 1200px) {
	footer .footer-logo{
		margin-bottom: 1.25rem;
	}
	footer .footer-wrap .address,
	footer .footer-wrap .tel{
		font-size: 0.8125rem;
	}
	footer .footer-nav{
		column-gap: 1rem;
	}
	footer .footer-nav .footer-nav-items{
		width: calc(25% - 0.75rem);
	}
	.footer-wrap .footer-nav ul li a{
		font-size: 0.875rem;
	}
}
@media only screen and (max-width: 767px) {
	footer .footer-wrap{
		padding: 2.75rem 0;
	}
	footer .footer-l{
		width: 100%;
	}
	footer .footer-logo{
		text-align: center;
		margin-bottom: 4.5rem;
	}
	footer .footer-logo img{
		max-width: 7.5rem;
	}
	footer .footer-wrap .address,
	footer .footer-wrap .tel{
		font-size: 0.875rem;
	}
	footer .footer-nav{
		width: 100%;
		max-width: 100%;
		column-gap: 1.25rem;
		row-gap: 2.75rem;
	}
	footer .footer-nav .footer-nav-items .ttl{
		font-size: 1.25rem;
		padding-bottom: 1rem;
		margin-bottom: 1.25rem;
	}
	footer .footer-nav .footer-nav-items{
		width: calc(50% - 0.625rem);
	}
	footer .footer-nav ul li + li{
		margin-top: 1.25rem;
	}
	.footer-wrap .footer-nav ul li a{
		font-size: 0.9375rem;
	}
	footer .footer-bottom{
		padding: 0.9375rem 0 4.5rem 0;
	}
	footer .copy{
		font-size: 0.6875rem;
	}
	.footer-bar{
		position: fixed;
		display: block;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 99999;
	}
	.footer-bar li a{
		display: block;
		background: #0059D1;
		background: linear-gradient(235deg,rgba(0, 89, 209, 1) 0%, rgba(0, 45, 105, 1) 100%);
		color: #FFFFFF;
		font-size: 1.0625rem;
		font-weight: 500;
		line-height: 1.35;
		text-align: center;
		padding: 1.25rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	footer .footer-wrap{
		padding: 3.5rem 0;
	}
}
