@charset "utf-8";

/* ------------------------------
    reset
------------------------------ */

html,body {
	height: 100%;
	color: #5a646e;
}
html {
	font-size: 62.5%;
	overflow-y: scroll;
}
*, *::before, *::after {
	box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family:  "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	word-wrap : break-word;
	overflow-wrap : break-word;
}
input, button, textarea  {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	resize: none;
	outline: none;
	background: none;
}
button:hover {
	cursor: pointer;
}
a {
	color: #000;
	text-decoration:none;
	transition: opacity 0.3s ease;
}
/*a:hover {
	opacity: .6;
	cursor: pointer;
}*/
img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
object {
	pointer-events: none;
	max-width: 100%;
}

/* ------------------------------
    base
------------------------------ */

body {
	min-width: 1200px;
	font-size: 1.0rem;
	text-align: left;
}
section {
	position: relative;
}
main {
	position: relative;
	display: block;
	z-index: 1;
	overflow: hidden;
}
.wrap {
	width: 880px;
	margin: 0 auto;
}
p,th,td,dt,dd,li {
	font-size: 1.6rem;
	line-height: 1.8;
}
p.txt {
	font-size: 1.6rem;
	line-height: 1.8;
}
.fade {
	transition: opacity 0.3s ease;
	transform: translateZ(0)rotate(0.0001deg);
	-webkit-backface-visibility: hidden;
	backface-visibility:hidden;
}
.fade img {
	outline: 1px solid transparent;
	transform: translateZ(0)rotate(0.0001deg);
	-webkit-backface-visibility: hidden;
	backface-visibility:hidden;
}
.fade:hover {
	opacity: .6;
	cursor: pointer;
}
.h-center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%)translateZ(0);
}
.v-center {
	position: absolute;
	top: 50%;
	transform: translateY(-50%)translateZ(0);
}
.hv-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) translateZ(0);
}
.flex {
	display: flex;
	justify-content: space-between;
}
.tal {
	text-align: left;
}
.tar {
	text-align: right;
}
.tac {
	text-align: center;
}
.left {
	float: left;
}
.right {
	float: right;
}
.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.roboto {
	font-family: 'Roboto Condensed', sans-serif;
	/*font-weight: 700;*/
	font-style: italic;
	letter-spacing: .07em;
}
.roboto_big,
.roboto_medium {
	font-family: 'Roboto Condensed', sans-serif;
	font-style: italic;
	font-size: 4.8rem;
	line-height: 1.2;
	letter-spacing: .07em;
	margin: .8em 0;
}
.roboto_medium {
	font-size: 3.3rem;
}
.box_line{
	width: 100px;
	height: 2px;
	margin: 20px auto 0;
}
.box_line span{
	display: inline-block;
	width: calc((100% - 6px ) / 4);
	height: 100%;
}
.box_line .line01{
	background-color: #008ED7;
}
.box_line .line02{
	background-color: #D2007F;
}
.box_line .line03{
	background-color: #724586;
}
.box_line .line04{
	background-color: #4A9F34;
}
.bg_gray {
	background: #eeeeec;
}
.btn{
	position: relative;
	z-index: 100;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border: 2px solid #0052A4;
	color: #fff;
	background-color: #0052A4;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn:hover,.btn:focus{
	color: #0052A4;
}
.btn::before {
	content: "";
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}
.btn:hover::before, .btn:focus::before {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.btn_arrow a{
	color: #fff;
	padding: 1.5em 0 1.5em 15px;
	font-size: 2.0rem;
	line-height: 1.2;
	text-align: left;
}
.btn_arrow a:hover{
	color: #0052A3;
	background-color: #fff;
	border: 2px solid #0052A3;
	text-decoration: none;
}
.btn_arrow a:after{
	content: "";
	display: inline-block;
	width: 30px;
	height: 10px;
	margin: -10px 0 0 20px;
	vertical-align: middle;
	transform:skewX(50deg);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.btn_arrow a:hover:after,
.btn_arrow a:focus:after{
	border-right: 1px solid #0052A3;
	border-bottom: 1px solid #0052A3;
}
.page_title {
	height: 420px;
	background-position: center top;
	background-size: cover;
	position: relative;
}
.page_title .inner {
	background: rgba(0,0,0,.2);
	width: 100%;
	height: 100%;
	margin: 0;
}
.page_title .v-center {
	width: 100%;
	padding: 0 15%;
	text-align: center;
}
.page_title h2 {
	color: #fff;
	font-size: 4.0rem;
	line-height: 1;
	font-weight: bold;
}
.page_title .roboto {
	font-size: 5.0rem;
	line-height: 1;
	font-style: italic;
	font-weight: normal;
	text-align: center;
}
.page_title .box_line,
.box_line.big {
	width: 160px;
	height: 4px;
	margin: 15px 0;
}
.page_title .box_line {
	margin: 15px auto;
}
.page_title .box_line span,
.box_line.big span {
	width: calc((100% - 15px ) / 4);
}
.page_title .small {
	color: #fff;
	font-size: 1.8rem;
	letter-spacing: .05em;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	.sp{
		display: none !important;
	}
	main{
		width: calc(100% - 216px);
		margin-left: 216px;
	}
}
@media screen and (max-width: 767px) {
	.pc{
		display: none !important;
	}
	body {
		min-width: 0;
	}
	main{
		width: 100%;
		padding-top: 50px;
	}
	.inner{
		margin: 0 4%;
	}
	.wrap {
		width: 92%;
		margin: 0 auto;
	}
	p,th,td,dt,dd,li {
		font-size: 1.3rem;
	}
	p.txt {
		font-size: 1.3rem;
	}
	a#pagetop {
		position: absolute;
		left: 0;
		top: 0;
	}

	.roboto_big,
	.roboto_medium {
		font-size: 2.4rem;
	}

	.box_line{
		width: 60px;
		margin: 10px auto 0;
	}

	.btn_arrow,
	.btn_arrow a{
		width: 65%;
		height: 12vw;
		margin: 0 auto;
	}
	.btn_arrow a{
		width: 100%;
		font-size: 1.4rem;
		padding-left: 1em;
	}
	.btn_arrow a:after{
		width: 15px;
		height: 5px;
		margin: -5px 0 0 10px;
	}

	.page_title {
		height: 50vw;
	}
	.page_title .v-center {
		padding: 0;
		text-align: center;
		width: 100%;
	}
	.page_title h2 {
		font-size: 1.8rem;
	}
	.page_title .roboto {
		font-size: 2.5rem;
		text-align: center;
	}
	.page_title .box_line,
	.box_line.big {
		width: 70px;
		height: 2px;
		margin: 10px auto;
	}
	.page_title .box_line span,
	.box_line.big span {
		width: calc((100% - 6px ) / 4);
	}
	.page_title .small {
		font-size: 1.3rem;
	}
}

/* ------------------------------
    header
------------------------------ */
#header{
	position: fixed;
	width: 216px;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	border-right: 1px solid #DEDEDC;
	z-index: 2;
}
.header_logo{
	padding: 60px 0;
	border-bottom: 1px solid #DEDEDC;
}
.header_logo h1 a{
	display: block;
	width: 172px;
	margin: auto;
}
.header_logo h1 span{
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: .07em;
	display: inline-block;
	margin-top: 15px;
	font-size: 2.0rem;
	color: #005290;
}
.header_nav {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	height: calc(100% - 190px);
	min-height: 400px;
}
.header_nav nav {
	width: 100%;
}
.nav_hd > li{
	position: relative;
	height: 48px;
	line-height: 48px;
	text-align: center;
    white-space: nowrap;
	font-size: 2.0rem;
	color: #005290;
}
.nav_hd > li a{
	display: block;
	height: 100%;
	color: #005290;
}
.nav_hd > li .parent{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.nav_hd > li .parent:before{
	content: "";
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	border-style: solid;
	border-width: 3px 0 3px 5px;
	border-color: transparent transparent transparent #005290;
}
.nav_hd > li .parent:hover:after{
	content: "";
	position: absolute;
	display: block;
	width: 7px;
	height: 100%;
	top: 0;
	right: 0;
	background-color: #005290;
}
.nav_hd > li .parent > .sub,
.sub_overlay{
	display: none;
	opacity: 0;
    transition: all 0.3s ease-in-out;
}
.nav_hd > li .parent:hover > .sub{
	display: block;
	opacity: 1;
}
.sub_overlay{
	position: fixed;
	width: 215px;
	height: 100vh;
	top: 0;
	left: 216px;
	background-color: rgba(0,0,0,0.7);
	z-index: 5;
}
.nav_hd > li .parent > .sub{
    position: absolute;
    width: 215px;
    bottom: 0;
    left: 216px;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	z-index: 10;
}
.nav_hd > li .parent > .sub li{
	height: 48px;
	line-height: 48px;
	border-top: 1px solid rgba(255,255,255,0.4);
}
.nav_hd > li .parent > .sub li a{
	position: relative;
	padding: 0 15px;
	font-size: 1.6rem;
	color: #fff;
}
.nav_hd > li .parent > .sub li a.roboto {
	font-size: 1.8rem;
}
.nav_hd > li .parent > .sub li .link_blank:after{
	content: "";
	position: absolute;
	display: block;
	width: 13px;
	height: 13px;
	top: 0;
	bottom: 0;
	right: 17px;
	margin: auto;
	background: url(/recruit/assets/img/common/ico_link.svg) 0 0 no-repeat;
}
#overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	opacity: 0;
	pointer-events: none;
}
#overlay.active {
	opacity: 1;
	pointer-events: auto;
}

@media screen and (max-width: 767px) {
	#header{
		width: 100%;
		height: 50px;
		border-right: none;
		z-index: 400;
	}
	.header_logo{
		display: flex;
		align-items: center;
		width: 100%;
		height: 50px;
		padding: 0 4%;
		border-bottom: none;
	}
	.header_logo h1 img{
		width: 87px;
	}
	.header_logo h1 span{
		margin: 0 0 0 3.6%;
		font-size: 1.25rem;
	}
	.btn_menu{
		position: relative;
		display: block;
		width: 17px;
		height: 12px;
		margin-left: auto;
	}
	.btn_menu span{
		position: absolute;
		display: block;
		width: 100%;
		height: 2px;
		background-color: #005290;
	}
	.btn_menu span:nth-child(1){
		top: 0;
    	-webkit-animation: menu-ber01 .50s forwards;
    	animation: menu-ber01 .50s forwards;
	}
	.btn_menu span:nth-child(2){
		top: 5px;
    	transition: all .25s .25s;
    	opacity: 1;
	}
	.btn_menu span:nth-child(3){
		bottom: 0;
    	-webkit-animation: menu-ber02 .50s forwards;
    	animation: menu-ber02 .50s forwards;
	}
	.btn_menu.active span:nth-child(1){
		-webkit-animation: active-menu-ber01 .50s forwards;
	    animation: active-menu-ber01 .50s forwards;
	}
	.btn_menu.active span:nth-child(2){
	    opacity: 0;
	}
	.btn_menu.active span:nth-child(3){
	    -webkit-animation: active-menu-ber03 .50s forwards;
	    animation: active-menu-ber03 .50s forwards;
	}
	@-webkit-keyframes menu-ber01 {
	  0% {
	    -webkit-transform: translateY(5px) rotate(45deg);
	  }
	  50% {
	    -webkit-transform: translateY(5px) rotate(0);
	  }
	  100% {
	    -webkit-transform: translateY(0) rotate(0);
	  }
	}
	@keyframes menu-ber01 {
	  0% {
	    transform: translateY(5px) rotate(45deg);
	  }
	  50% {
	    transform: translateY(5px) rotate(0);
	  }
	  100% {
	    transform: translateY(0) rotate(0);
	  }
	}
	@-webkit-keyframes menu-ber02 {
	  0% {
	    -webkit-transform: translateY(-5px) rotate(-45deg);
	  }
	  50% {
	    -webkit-transform: translateY(-5px) rotate(0);
	  }
	  100% {
	    -webkit-transform: translateY(0) rotate(0);
	  }
	}
	@keyframes menu-ber02 {
	  0% {
	    transform: translateY(-5px) rotate(-45deg);
	  }
	  50% {
	    transform: translateY(-5px) rotate(0);
	  }
	  100% {
	    transform: translateY(0) rotate(0);
	  }
	}
	@-webkit-keyframes active-menu-ber01 {
	  0% {
	    -webkit-transform: translateY(0) rotate(0);
	  }
	  50% {
	    -webkit-transform: translateY(5px) rotate(0);
	  }
	  100% {
	    -webkit-transform: translateY(5px) rotate(45deg);
	  }
	}
	@keyframes active-menu-ber01 {
	  0% {
	    transform: translateY(0) rotate(0);
	  }
	  50% {
	    transform: translateY(5px) rotate(0);
	  }
	  100% {
	    transform: translateY(5px) rotate(45deg);
	  }
	}
	@-webkit-keyframes active-menu-ber03 {
	  0% {
	    -webkit-transform: translateY(0) rotate(0);
	  }
	  50% {
	    -webkit-transform: translateY(-5px) rotate(0);
	  }
	  100% {
	    -webkit-transform: translateY(-5px) rotate(-45deg);
	  }
	}
	@keyframes active-menu-ber03 {
	  0% {
	    transform: translateY(0) rotate(0);
	  }
	  50% {
	    transform: translateY(-5px) rotate(0);
	  }
	  100% {
	    transform: translateY(-5px) rotate(-45deg);
	  }
	}
	body.fixed{
		position: fixed;
		width: 100%;
		top: 0;
	}
	.header_nav{
		position: fixed;
		width: 47%;
		height: calc(100% - 49px);
		right: 0;
		background-color: rgba(0,0,0,0.7);
		-webkit-overflow-scrolling: touch;
		z-index: 400;
		transition: transform 0.4s;
		transform: translateX(100%);
		/*opacity: 0;*/
		padding: 15% 0 0;
		pointer-events: none;
	}
	.header_nav.active{
		transform: translateX(0);
		/*opacity: 1;*/
		pointer-events: auto;
	}
	.nav_hd > li{
		height: auto;
		margin-bottom: 13.3%;
		padding: 0 8% 0 16.5%;
		line-height: 22px;
		text-align: left;
		font-size: 1.45rem;
		color: #fff;
	}
	.nav_hd > li a{
		color: #fff;
	}
	.nav_hd > li .parent > span{
		display: block;
		width: 100%;
	}
	.nav_hd > li .parent:before{
		width: 5px;
		height: 5px;
		top: 5px;
		bottom: auto;
		right: 0;
		border: none;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		transform: rotate(45deg);
	}
	.nav_hd > li .parent.active:before{
		top: 10px;
		transform: rotate(-135deg);
	}
	.nav_hd > li .parent:hover:after,
	.nav_hd > li .parent:hover > .sub{
		display: none;
	}
	.nav_hd > li .parent > .sub{
		position: static;
		width: auto;
    	margin-bottom: -10%;
    	padding: 5% 5% 0;
		border: none;
		opacity: 1;
	}
	.nav_hd > li .parent > .sub li{
		height: 25px;
		line-height: 25px;
		border: none;
	}
	.nav_hd > li .parent > .sub li a{
		padding: 0;
		font-size: 1.1rem;
	}
	.nav_hd > li .parent > .sub li a.roboto{
		font-size: 1.2rem;
	}
	.nav_hd > li .parent > .sub li .link_blank:after{
		width: 7px;
		height: 7px;
		right: 0;
	}
}

/* ------------------------------
    footer
------------------------------ */
#footer{
	position: relative;
}
.pagetop{
	position: absolute;
	width: 100%;
	height: 60px;
	bottom: 250px;
	pointer-events: none;
	z-index: 10;
}
.pagetop a{
	position: absolute;
	width: 60px;
	height: 60px;
	top: 0;
	right: 50px;
	pointer-events: auto;
}
#footer .inner{
	border-top: 1px solid #DEDEDC;
	padding: 60px 0 50px;
}
#footer a:hover{
	text-decoration: underline;
}

#footer .sec_btn{
	padding: 65px 0 60px;
}
#footer .sec_btn .list_btn{
	width: 720px;
	margin: auto;
}
#footer .sec_btn .list_btn li,
#footer .sec_btn .list_btn a{
	display: block;
	width: 340px;
	height: 90px;
}
#footer .sec_btn .list_btn a{
	padding-left: 15px;
	line-height: 90px;
	font-size: 2.0rem;
}
#footer .sec_btn .list_btn a:hover{
	color: #0052A3;
	background-color: #fff;
	border: 2px solid #0052A3;
	text-decoration: none;
}
#footer .sec_btn .list_btn a:after{
	content: "";
	display: inline-block;
	width: 30px;
	height: 10px;
	margin: -10px 0 0 20px;
	vertical-align: middle;
	transform:skewX(50deg);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
#footer .sec_btn .list_btn a:hover:after,
#footer .sec_btn .list_btn a:focus:after{
	border-right: 1px solid #0052A3;
	border-bottom: 1px solid #0052A3;
}

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

	#footer .sec_btn{
		padding: 7% 0;
	}
	#footer .sec_btn .list_btn{
		width: 100%;
		display: block;
	}
	#footer .sec_btn .list_btn li + li {
		margin-top: 3%;
	}
	#footer .sec_btn .list_btn li,
	#footer .sec_btn .list_btn a{
		width: 65%;
		height: 12vw;
		margin: 0 auto;
	}
	#footer .sec_btn .list_btn a{
		width: 100%;
		font-size: 1.4rem;
		line-height: 12vw;
		padding-left: 1em;
	}
	#footer .sec_btn .list_btn a:after{
		width: 15px;
		height: 5px;
		margin: -5px 0 0 10px;
	}
}

.nav_ft01 li{
	display: inline-block;
}
.nav_ft01 li a{
	font-size: 1.8rem;
}
.nav_ft01 li:before{
	content: "\00ff5c";
}
.nav_ft01 li:first-child:before{
	display: none;
}
.box_ft{
	justify-content: center;
	align-items: center;
	text-align: left;
}

.box_ft div + div{
	margin-left: 1em;
	padding-left:1em;
	border-left:1px solid #fff;
}


.box_ft p, .box_ft a{
	white-space: nowrap;
	color: #323C46;
}
.box_ft p{
	display: inline-block;
	line-height:1;
}
.box_ft .logo_ft{
	width: 220px;
	margin-right: 30px;
}
.nav_ft02 {
	display: inline-block;
	/*margin-left: -20px;*/
}
.nav_ft02 li{
	display: inline;
	font-size: 1.4rem;
	color: #5A646E;
}
.nav_ft02 li a{
	color: #5A646E;
}
.nav_ft02 li:before{
	content: "\00ff5c";
}
.nav_ft02 li:first-child:before{
	display: none;
}
.txt_copy{
	display: inline-block;
	line-height: 2;
	font-size: 1.2rem;
	margin-top: 10px;
	color: #5A646E;
}
@media screen and (max-width: 767px) {

	.pagetop{
		margin-top: 0;
		position: absolute;
		bottom: 50vw;
		right: 3%;
		margin-top: 0;
		width: 30px;
		height: 30px;
	}
	.pagetop a{
		position: relative;
		width: 100%;
		height: 100%;
		right: 0;
	}
	#footer .inner{
		padding: 5.7% 0 7.9%;
	}
	.box_ft{
		display: flex;
		flex-wrap: wrap;
	}
	.box_ft p{
		float: none;
		white-space: normal;
	}
	.box_ft > div{
		order: 2;
		margin-top: 3%;
	}
	.box_ft div + div{
		margin-left:0;
		padding-left:0;
		border-left:0;
	}
	.box_ft .logo_ft{
		width: 42%;
		margin-right: 0;
		order: 1;
	}
	.nav_ft02 {
		float: none;
		order: 2;
		width: 53%;
		margin-left: 5%;
	}
	.nav_ft02 li{
		font-size: 1.0rem;
	}
	.txt_copy{
		display: block;
		order: 3;
		margin: 1em 0 0;
		font-size: 0.85rem;
		text-align: center;
	}
	.box_ft .logo_ft + p{
		order: 4;
		margin-top: 5%;
		font-size: 0.9rem;
	}
}
@media screen and (max-width: 350px) {
	.box_ft .logo_ft + p{
		font-size: 0.8rem;
	}
}

/* ------------------------------
    clearfix
------------------------------ */

.cf {
  zoom:1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;/* 隙間対応 */
  font-size: 0.1em;/* 隙間対応 */
  line-height: 0;/* 隙間対応 */
}