@charset "UTF-8";
/* LAYOUT */

/* for NARROW DISPLAY */
@media only screen and (max-width: 320px) {
}
/* for SMARTPHONE */
@media only screen and (max-width: 767px) {
}
/* for TABLET < */
@media all and (min-width: 768px) {
}
/* for PC DISPLAY < */
@media all and (min-width: 1000px) {
}


#header, #footer, #content {
	position: relative;
	margin: auto;
	}
#header { 
	z-index: 2000;
	}
#content {
	position: 0;
	}
#footer {
	z-index: 1000;
	}


/* HEADER 
============================== */
#header, 
#header a {
	color: #000;
	}
#header {
	background-color: #FFF;
	-webkit-box-shadow: 0 0.1rem 0.1rem 0 rgba(0,0,0,0.2);
	-moz-box-shadow: 0 0.1rem 0.1rem 0 rgba(0,0,0,0.2);
	box-shadow: 0 0.1rem 0.1rem 0 rgba(0,0,0,0.2);
	}
@media all and (min-width: 768px) {
}

/* z-index */
#header .site_title 	{ z-index: 100; }
#header #head_menu 		{ z-index: 200; }
#header .headmenu_btn { z-index: 300; }
@media all and (min-width: 768px) {
	#header .site_title { z-index: 300; }
	#header #head_menu 	{ z-index: auto; }
	#header .site_menu 	{ z-index: 100; }
	#header .info_menu 	{ z-index: 200; }
}

/* site_title */
#header .site_title {
	margin-top: 1.2em;
	margin-bottom: 1.2em;
	display: inline-block;
	text-decoration: none;
	}
#header .site_title ._logo {
	width: 10em;
	height: 2.7em;
	vertical-align: bottom;
	}
#header .site_title ._subtitle {
	display: block;
	margin-left: 0.5em;
	line-height: 1.5;
	}
@media all and (min-width: 768px) {
	#header {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		}
	#header .site_title {
		}
	#header .site_title ._subtitle {
		display: inline-block;
		margin-left: auto;
		font-size: 1.125em;
		}
}

/* headmenu_btn */
#header .headmenu_btn {
	display: none;
	}
@media only screen and (max-width: 767px) {
	#header .headmenu_btn, 
	#header .headmenu_btn:before, 
	#header .headmenu_btn:after {
		border-color: #ccc;
		}
	#header .headmenu_btn {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		margin: 1rem;
		padding-top: 0.5em;
		padding-bottom: 0.5em;
		width: 1em;
		height: 1em;
		border-style: solid;
		border-width: thin;
		background-color: rgba(255,255,255,0.2);
		font-size: 4.4rem;
		}

	/* open */
	#headmenu_switch + .headmenu_btn:before, 
	#headmenu_switch + .headmenu_btn:after {
		content: '';
		display: block;
		position: absolute;
		right: 0;
		left: 0;
		margin: auto;
		width: 0.6em;
		height: 0.3em;
		border-style: solid;
		-webkit-transition: height 0.2s ease 0.2s, transform 0.2s ease 0s;
		-ms-transition: height 0.2s ease 0.2s, transform 0.2s ease 0s;
		transition: height 0.2s ease 0.2s, transform 0.2s ease 0s;
		}
	#headmenu_switch + .headmenu_btn:before {
		top: 50%;
		border-width: 1px 0 2px;
		}
	#headmenu_switch + .headmenu_btn:after {
		bottom: 50%;
		border-width: 2px 0 1px;
		}

	/* close */
	#headmenu_switch:checked + .headmenu_btn {
		position: fixed;
		}
	#headmenu_switch:checked + .headmenu_btn:before, 
	#headmenu_switch:checked + .headmenu_btn:after {
		top: 0;
		bottom: 0;
		height: 0;
		-webkit-transition: height 0.2s ease 0s, transform 0.2s ease 0.2s;
		-ms-transition: height 0.2s ease 0s, transform 0.2s ease 0.2s;
		transition: height 0.2s ease 0s, transform 0.2s ease 0.2s;
		}
	#headmenu_switch:checked + .headmenu_btn:before {
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		} 
	#headmenu_switch:checked + .headmenu_btn:after {
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		}
}

/* head_menu */
#head_menu, 
#head_menu a {
	color: #FFF;
	}
#head_menu {
	display: block;
	}
#head_menu .site_menu .menu_list a {
	letter-spacing: 0.1em;
	}
@media only screen and (max-width: 767px) {
	#head_menu {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		margin: auto;
		padding-left: 0;
		padding-right: 5rem;
		background-color: rgba(0,0,0,0.8);
		text-align: left;
		overflow: hidden;
		}
	#headmenu_switch ~ #head_menu {
		max-height: 0;
		padding-top: 0;
		padding-bottom: 0;
		-webkit-transition: 0.4s all ease;
		-ms-transition: 0.4s all ease;
		transition: 0.4s all ease;
		}
	#headmenu_switch:checked ~ #head_menu {
		height: 100vh;
		max-height: 100vh;
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
		-webkit-box-shadow: 0 0.1rem 0.1rem 0 rgba(0,0,0,0.2);
		-moz-box-shadow: 0 0.1rem 0.1rem 0 rgba(0,0,0,0.2);
		box-shadow: 0 0.1rem 0.1rem 0 rgba(0,0,0,0.2);
		}

	/* menu_list */
	#head_menu .menu_list {
		display: block;
		}
	#head_menu .menu_list > li {
		border-style: solid;
		border-width: 0 0 thin;
		border-color: #FFF;
		}
	#head_menu .menu_list > li {
		margin-top: auto;
		}
	#head_menu .menu_list a {
		padding: 0.75em 0;
		color: #FFF;
		}
	#head_menu .info_menu {
		margin: 0.5em auto;
		}
	#head_menu .info_menu .menu_list > li {
		float: left;
		border: none;
		width: 49%;
		}
	#head_menu .info_menu .menu_list > li + li {
		margin-left: 2%;
		}
	#head_menu .info_menu a {
		text-align: center;
		}
}
@media all and (min-width: 768px) {
	#head_menu {
		/*position: absolute;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		margin: auto;
		height: 13rem;*/
		visibility:hidden;
		}

	.site_menu, 
	.info_menu a {
		background-color: #111986;
		}

	/* site_menu */
	.site_menu {
		position: absolute;
		bottom: 0;
		right: 0;
		left: 0;
		}
	.site_menu .menu_list {
		display: table;
		text-align: center;
		}
	.site_menu .menu_list > li {
		display: table-cell;
		vertical-align: middle;
		}
	.site_menu .menu_list > li:before, 
	.site_menu .menu_list > li:after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		width: 0;
		height: 1em;
		border-style: solid;
		border-color: #FFF;
		border-width: 0;
		}
	.site_menu .menu_list > li:before {
		left: 0;
		border-left-width: 1px;
		}
	.site_menu .menu_list > li:last-child:after {
		right: 0;
		border-right-width: 1px;
		}
	.site_menu a {
		padding: 1em 0;
		font-size: 0.8125em;
		word-break: keep-all;
		white-space: nowrap;
		}

/* info_menu */
	#header .info_menu {
		position: absolute;
		top: 1.5em;
		right: 0;
		left: 0;
		margin-top: auto;
		height: 2em;
		}
	#header .info_menu .menu_list {
		float: right;
		}
	#header .info_menu a {
		width: 12em;
		font-size: 0.75em;
		}
	.info_menu .menu_list > li {
		display: inline-block;
		text-align: center;
		}
	.info_menu a {
		padding: 0.5em 0;
		}
}
@media all and (min-width: 1000px) {
	.site_menu .menu_list {
		table-layout: fixed;
		}
}


.info_menu .mypage {
	background-color: #101885;
	color: #FFF !important;
	}
.info_menu .entry {
	background-color: #fff100;
	color: #000 !important;
	}


/* FOOTER 
============================== */
#footer, 
#footer a {
	/*color: #666;*/
	}
#footer {
	/*padding: 1.5rem 0;
	background-color: #FFF;*/
	}
@media all and (min-width: 768px) {
	#footer {
		position: absolute;
		right: 0;
		left: 0;
		}
}

/* foot_menu */

#footer .foot_menu {
	color: #666;
	margin: 1.5rem auto;
	font-size: 0.8125em;
	}
#footer .foot_menu .menu_list {
	}
#footer .foot_menu .menu_list > li {
	margin-top: 1em;
	}
#footer .foot_menu .menu_list a {
	color: #666;
	padding-left: 1em;
	text-indent: -1em;
	}
#footer .foot_menu .menu_list a:before {
	content: '';
	display: inline-block;
	margin-right: 0.7em;
	border-style: solid;
	border-width: 0.4em 0 0.4em 0.5em;
	border-color: transparent transparent transparent #666;
	}
#footer .foot_menu .menu_list > li a.career,
#footer .foot_menu .menu_list > li a.disability,
#footer .foot_menu .menu_list > li a.newgraduate{
	background:#111986;
	padding:0.75em 3em;
	color:#fff;
	text-indent:0;
	}
#footer .foot_menu .menu_list > li a.career:before,
#footer .foot_menu .menu_list > li a.disability:before,
#footer .foot_menu .menu_list > li a.newgraduate:before{
	border:none;
	margin:0;
	}
	
	
	
@media all and (max-width: 767px) {
	#footer .foot_menu .menu_title {
		display: inline-block;
		}
	#footer .foot_menu .menu_list {
		margin-bottom: 0.5rem;
		margin-left: 1em;
		}
}


/* copyright */
/*.copyright {
	margin-top: 3rem;
	font-size: 0.75em;
	text-align: center;
	border-top:1px solid #ccc;
	padding:1.5rem 0 0 0;
	position:relative;
	}
.copyright .foot_logo ._logo {
	margin: 1em 0;
	width: 12.8rem;
	height: 2.56rem;
	}
.copyright .foot_logo ._logo02{
	margin: 1em 0;
	width:107px;
	height:68px;
	vertical-align:top;
	}
	
.copyright ul.fgnavi{
	left:0;
	top:1rem;
	list-style:none;
	margin:0 0 2rem;
	}
.copyright ul.fgnavi > li{
	display:inline;
	}
.copyright ul.fgnavi > li:after{
	content:"|";
	display:inline-block;
	margin:0 0.5em;
	}
.copyright ul.fgnavi > li:last-child:after{
	display:none;
	}*/
	

	
@media all and (min-width: 768px) {
	/*.copyright {
		text-align: right;
		}
	.copyright ul.fgnavi{
	position:absolute;
	}*/
}




/* CONTENT
==============================*/
#content {
	width: auto;
	}
#content .content_main {
	margin: auto auto 3rem;
	}
@media all and (min-width: 768px) {
	#content {
		padding-top: 8rem;
		padding-bottom: 5rem;
		}
	#content .content_main {
		margin-top: 3rem;
		}
}




/* sns_area */
#content .sns_area {
	clear: both;
	margin: 3rem auto;
	}

/* bnr_area */
#content .bnr_area {
	clear: both;
	}


/* pagetop_btn */
#footer .pagetop_btn {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 6rem;
	height: 3rem;
	background-color: transparent;
	border-radius: 0 0 0.5rem 0.5rem;
	color: #101885;
	font-size: 1.2rem;
	z-index: 2200;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	}
#footer .pagetop_btn:before, 
#footer .pagetop_btn:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	margin: 0.5rem auto auto;
	width: 2em;
	height: 2px;
	background-color: #101885;
	}
#footer .pagetop_btn:before {
	right: 50%;
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: rotate(-40deg);
	-ms-transform: rotate(-40deg);
	transform: rotate(-40deg);
	} 
#footer .pagetop_btn:after {
	left: 50%;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	transform: rotate(40deg);
	}
#footer .foot_menu .menu_list > li {
	display: inline-block;
	}
#footer .foot_menu .menu_list > li + li {
	margin-left: 1em;
	}
@media all and (min-width: 768px) {
}


/* PAGETOP
============================== */
#pagetop {
	position: fixed;
	bottom: -3em;
	right: 5%;
	opacity: 0;
	border-radius: 0.5rem 0.5rem 0 0;
	background-color: rgba(255,255,255,0.5);
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	z-index: 1999;
	}
#pagetop.-active {
	bottom: 0;
	opacity: 1;
	}
#pagetop a {
	display: block;
	position: relative;
	padding: 2.2em 0 0.2em;
	width: 4em;
	color: #101885;
	font-size: 0.75em;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	text-shadow: 
		1px 0 0 #fff, 
		-1px 0 0 #fff, 
		0 1px 0 #fff, 
		0 -1px 0 #fff;
	}
#pagetop a:before, 
#pagetop a:after {
	content: '';
	display: block;
	position: absolute;
	top: 0.25em;
	margin: 0.5rem auto auto;
	width: 2em;
	height: 2px;
	background-color: #101885;
	}
#pagetop a:before {
	right: 50%;
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: rotate(-40deg);
	-ms-transform: rotate(-40deg);
	transform: rotate(-40deg);
	} 
#pagetop a:after {
	left: 50%;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	transform: rotate(40deg);
	}
/*
#pagetop a:before {
	content: '';
	position: absolute;
	top: -1.5em;
	right: 0;
	left: 0;
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 1.2em;
	border-color: #101885 #101885 transparent transparent;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
*/

/* PARTS 
============================== */
.page_head {
	margin-bottom: 6rem;
	}
.page_head .page_title {
	padding: 0.75em;
	font-family: 
		"Times New Roman", 
		"ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", 
		"游明朝", "Yu Mincho", "游明朝体", "YuMincho", 
		"HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 1.5em;
	font-size: 8vw;
	line-height: 1;
	}
.page_head .page_title:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 0.3em;
	height: auto;
	background-color: #fff100;
	border-top: solid 0.3em #101885;
	}
.page_head .page_title > span[lang="en"] {
	position: absolute;
	top: 0;
	left: auto;
	display: block;
	color: #101885;
	font-weight: normal;
	font-size: 0.4em;
	}
@media all and (min-width: 768px) {
	.page_head .page_title {
		font-size: 2.5em;
		}
	.page_head .page_title > span[lang="en"] {
		font-size: 0.35em;
		}
}

/* SECTION */
.sect_block {
	position: relative;
	margin: 4.5rem auto;
	}
.sect_block .sect_title {
	margin-bottom: 1.5rem;
	color: #101885;
	font-size: 1.25em;
	}
.sect_block .block_body {
	padding: 1.5rem;
	color: #666;
	}
@media all and (min-width: 768px) {
	.sect_block .block_body {
		padding: 3rem;
		}
}


/* breadcrumb */
.breadcrumb {
	}
.breadcrumb .bc_list {
	list-style: none;
	padding: 1em 0;
	font-size: 0.75em;
	}
.breadcrumb .bc_list > li {
	display: inline-block;
	}
.breadcrumb .bc_list > li:first-child {
	font-weight: bold;
	}
.breadcrumb .bc_list > li + li:before {
	content: '›';
	display: inline-block;
	margin: auto 0.5em;
	}
.breadcrumb .bc_list a {
	color: #666;
	text-decoration: none;
	}

/* pager */
.pager {
	margin: 3rem auto;
	text-align: center;
	}
.pager, 
.pager a {
	background-color: transparent;
	color: #101885;
	}
.pager a {
	display: block;
	text-decoration: none;
	line-height: 1;
	}
.pager .pager_list {
	list-style: none;
	display: table;
	table-layout: fixed;
	width: 100%;
	}
.pager .pager_list > li {
	display: table-cell;
	border: solid thin #101885;
	}
.pager .pager_list > li:first-child {
	border-right: none;
	}
.pager .pager_list > li:last-child {
	border-left: none;
	}
.pager .pager_list > li:first-child a:before, 
.pager .pager_list > li:last-child a:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0.5em;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.4em 0.5em;
	border-color: transparent #101885;
	}
.pager .pager_list > li:first-child a {
	padding-left: 1.2em;
	text-align: left;
	border-right: none;
	}
.pager .pager_list > li:first-child a:before {
	left: 0;
	border-left: none;
	}
.pager .pager_list > li:last-child a {
	padding-right: 1.2em;
	text-align: right;
	border-left: none;
	}
.pager .pager_list > li:last-child a:before {
	right: 0;
	border-right: none;
	}


