@charset "UTF-8";
@media screen and (max-width: 768px) {
	html {
		overflow: auto;
	}

	body {
		min-width: 320px;
		overflow: hidden;
		-webkit-text-size-adjust: 100%;
	}
}
/* base
=========================================== */
@media screen and (min-width: 768px) {
	.u-view-sp {
		display: none !important;
	}

	.u-view-pc {
		display: block !important;
	}
}
@media screen and (max-width: 768px) {
	.u-view-sp {
		display: block !important;
	}

	.u-view-pc {
		display: none !important;
	}
}
@media screen and (min-width: 768px) {
	.u-media-query {
		display: none;
		font-family: "pc";
	}
}
@media screen and (max-width: 768px) {
	.u-media-query {
		display: none;
		font-family: "sp";
	}
}
/* layout
-------------------------------------- */
@media screen and (max-width: 768px) {
	.u-inner-sp {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		padding-left: 20px;
		padding-right: 20px;
	}

	img {
		height: auto;
		width: auto;
		max-width: 100%;
	}
}
/*! default
=========================================== */
@media screen and (max-width: 768px) {
	* {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	body {
		font-size: 14px;
		color: #353535;
		-webkit-font-smoothing: antialiased;
		font-weight: 300;
		letter-spacing: 0.05em;
		text-align: justify;
		text-justify: inter-ideograph;
	}

	.cmnTit01,
	.cmnTit02,
	.mvChild .tit,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-weight: 500;
	}

	#fontSize li,
	.footerBottom,
	.nav li {
		text-align: center;
	}

	.cf:after,
	.cf:before {
		display: table;
	}

	.cf:after {
		clear: both;
	}

	.cf {
		zoom: 1;
	}

	.noborder {
		border: none !important;
	}

	table td,
	table th {
		vertical-align: top;
		border-top: 1px solid #ddd;
	}

	table th {
		width: 100%;
	}

	/*! header */
	.header {
		position: relative;
		z-index: 99999;
		height: 50px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		padding: 12px;
		background: #fff;
	}
	.header .nav-btn {
		position: absolute;
		top: 10px;
		right: 10px;
		width: 30px;
		height: 30px;
		background: #005bac;
		cursor: pointer;
	}
	.header .nav-btn__line {
		position: absolute;
		left: 8px;
		width: 14px;
		height: 2px;
		content: "";
		background: #fff;
		-webkit-transition: 0.3s all ease;
		transition: 0.3s all ease;
	}
	.header .nav-btn__line:nth-child(1) {
		top: 8px;
	}
	.header .nav-btn__line:nth-child(2) {
		top: 14px;
	}
	.header .nav-btn__line:nth-child(3) {
		top: 20px;
	}
	.header .nav-btn.is-open .nav-btn__line:nth-child(1) {
		top: 14px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.header .nav-btn.is-open .nav-btn__line:nth-child(2) {
		opacity: 0;
	}
	.header .nav-btn.is-open .nav-btn__line:nth-child(3) {
		top: 14px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.header .nav-btn__chara {
		position: absolute;
		left: 0;
		bottom: 3px;
		width: 100%;
		font-size: 1rem;
		line-height: 1.2;
		text-align: center;
	}

	.headerLogo {
		width: 45%;
		max-width: 160px;
		float: left;
		-webkit-transition: opacity 0.4s;
		transition: opacity 0.4s;
	}

	.headerFont {
		float: right;
		margin-top: 9px;
	}

	#fontSize li,
	#fontSize p,
	.nav li {
		float: left;
	}

	/*! fontSize */
	#fontSize {
		color: #000;
		width: 145px;
		font-size: 12px;
	}

	#fontSize p {
		line-height: 24px;
		margin: 0 10px 0 0;
	}

	#fontSize li {
		line-height: 22px;
		width: 23px;
		cursor: pointer;
		border: 1px solid #ddd;
	}

	#fontSize .textresizer-active {
		background: #ddd;
		color: #000;
	}

	/*! nav */
	.nav {
		position: absolute;
		top: 50px;
		left: 0;
		z-index: 99999;
		width: 100%;
		height: 100vh;
		max-height: calc(100vh - 50px);
		min-width: 320px;
		padding: 30px 20px;
		background: #005bac;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		text-align: center;
		-webkit-overflow-scrolling: touch;
		-webkit-transition: 0.3s all ease;
		transition: 0.3s all ease;
		overflow: auto;
		-webkit-transform: translateX(120%);
		transform: translateX(120%);
	}
	.nav::-webkit-scrollbar {
		display: none;
	}
	.nav.is-open {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.nav ul {
		width: auto;
		height: auto;
		padding-top: 0;
	}
	.nav ul li {
		float: none;
		width: 100%;
	}
	.nav ul li a {
		position: relative;
		display: block;
		height: auto;
		padding: 17px 0;
		font-size: 13px;
		color: #fff;
		text-decoration: none;
		background: none;
		text-indent: 0;
		text-align: center;
		font-weight: bold;
		line-height: 1.5;
		border-bottom: 1px solid #3481be;
	}
	.nav ul li a:after {
		position: absolute;
		content: "";
		top: 50%;
		right: 0;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		width: 4px;
		height: 4px;
		border: 4px solid transparent;
		border-left: 4px solid #fff;
	}
	.nav .btn {
		width: 70%;
		margin: 25px auto 0;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}
	.nav .close-btn {
		width: 150px;
		height: 43px;
		margin: 25px auto 0;
		background: url("../img/common/btn_close.png") center no-repeat;
		background-size: 100%;
	}

	.nav li {
		width: 125px;
	}

	.nav li a {
		color: #fff;
		display: block;
		font-size: 15px;
		line-height: 60px;
	}

	.l-nav-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.25);
		z-index: 1000;
	}

	#contact .nav li.navCont a,
	#document .nav li.navDocm a,
	#executive .nav li.navExce a,
	#home .nav li.navHome a,
	#news .nav li.navNews a,
	#overview .nav li.navOver a,
	#prize .nav li.navPriz a,
	#recruitment .nav li.navRecr a,
	.nav li a:hover {
		background: #034e8b;
	}

	/*! mv */
	.mvIn {
		width: auto;
	}

	.mvChildIn {
		width: auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		min-height: 130px;
		margin: 0;
		padding: 0 20px;
		background: url("../img/common/bg_main01_sp.jpg") center no-repeat;
		background-size: cover;
	}

	/*! footer */

	/*! 共通レイアウト */

	/*! 共通パーツ */

	/*! .documnet */

	/*! artList */

	/*! pagination */

	/*! postPagination */
}
@media screen and (max-width: 768px) and (min-width: 414px) and (max-width: 768px) {
	.mvChildIn {
		min-height: 200px;
	}
}
@media screen and (max-width: 768px) {
	.mvChild .tit {
		font-size: 23px;
		position: static;
	}
}
@media screen and (max-width: 768px) {
	.footer {
		background: #edf5fd;
	}
}
@media screen and (max-width: 768px) {
	.footer .pagetop {
		position: fixed;
		right: 30px;
		bottom: 30px;
	}
}
@media screen and (max-width: 768px) {
	.footerIn {
		padding: 20px;
	}
}
@media screen and (max-width: 768px) {
	.footerSitemap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 0 -10px;
	}
}
@media screen and (max-width: 768px) {
	.footerSitemap li {
		float: none;
		width: calc(50% - 20px);
		margin: 0 10px;
		border-bottom: 1px solid #3481be;
	}
}
@media screen and (max-width: 768px) {
	.footerSitemap li a {
		position: relative;
		display: block;
		padding: 12px 0;
		font-weight: bold;
		color: #353535;
		font-size: 12px;
	}
	.footerSitemap li a:after {
		position: absolute;
		content: "";
		top: 50%;
		right: 0;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		width: 4px;
		height: 4px;
		border: 4px solid transparent;
		border-left: 4px solid #0161ae;
	}
}
@media screen and (max-width: 768px) {
	.footerSitemap li + li a {
		padding: 12px 0;
		border-left: 0;
	}
}
@media screen and (max-width: 768px) {
	.footerLogo {
		float: left;
		width: 60%;
		max-width: 200px;
		margin-top: 25px;
	}
}
@media screen and (max-width: 768px) {
	.footerBottom {
		background: #0161ae;
		font-size: 10px;
		color: #fff;
		line-height: 45px;
	}
}
@media screen and (max-width: 768px) {
	.mainSec {
		padding: 35px 0 50px;
	}
}
@media screen and (max-width: 768px) {
	.wrapper {
		width: auto;
		margin: 0 auto;
	}
}
@media screen and (max-width: 768px) {
	#wrapper {
		position: relative;
	}
}
@media screen and (max-width: 768px) {
	.txt {
		line-height: 1.8;
		font-size: 13px;
	}
}
@media screen and (max-width: 768px) {
	.c-table01 table, .c-table01 thead, .c-table01 tbody, .c-table01 tr, .c-table01 th, .c-table01 td {
		display: block;
	}
	.c-table01 tr + tr {
		border-top: 0;
	}
	.c-table01 table th {
		width: 100%;
		padding: 15px 0;
		border-right: 0;
		border-bottom: 1px solid #ddd;
	}
	.c-table01 table td {
		width: 100%;
		border-top: 0;
	}
}
@media screen and (max-width: 768px) {
	.cmnTit01 {
		font-size: 18px;
		border-left: 5px solid #0161ae;
		padding-left: 10px;
		line-height: 1.4;
	}
}
@media screen and (max-width: 768px) {
	.cmnTit02 {
		font-size: 115%;
		background: #8b949b;
		color: #fff;
		padding: 12px 20px;
		position: relative;
		line-height: 1.5;
	}
}
@media screen and (max-width: 768px) {
	.cmnTit02:before {
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 12px 12px 0 0;
		border-color: #758088 transparent transparent;
	}
}
@media screen and (max-width: 768px) {
	.documentArea .document,
	.documentArea .document a {
		position: relative;
		z-index: 1;
	}
}
@media screen and (max-width: 768px) {
	.cmnBox01 {
		border: 4px solid #d7d8db;
		padding: 15px 10px;
		background: url("../img/common/bg_pt01.png") center center;
		background-size: cover;
	}
}
@media screen and (max-width: 768px) {
	.documentArea .document + .document {
		margin-top: 13px;
	}
}
@media screen and (max-width: 768px) {
	.documentArea .document-pdf a:after {
		background: url("../img/recruitment/ico_pdf01.png") no-repeat;
	}
}
@media screen and (max-width: 768px) {
	.documentArea .document-doc a:after {
		background: url("../img/recruitment/ico_doc01.png") no-repeat;
	}
}
@media screen and (max-width: 768px) {
	.documentArea .document a {
		display: inline-block;
		border: 1px solid #d7d8db;
		-webkit-box-shadow: 0 2px 0 0 rgba(4, 0, 0, 0.05);
		box-shadow: 0 2px 0 0 rgba(4, 0, 0, 0.05);
		font-size: 93%;
		line-height: 1.85;
		padding: 11px 40px 11px 20px;
	}
}
@media screen and (max-width: 768px) {
	.documentArea .document a:after {
		position: absolute;
		z-index: 0;
		top: 10px;
		right: 9px;
		width: 20px;
		height: 26px;
	}
}
@media screen and (max-width: 768px) {
	.artList {
		font-size: 93%;
	}
}
@media screen and (max-width: 768px) {
	.artList li {
		display: table;
		width: 100%;
		border-bottom: 1px solid #ddd;
	}
}
@media screen and (max-width: 768px) {
	.artList li + li {
		border-top: 0;
	}
}
@media screen and (max-width: 768px) {
	.artList .time,
	.artList .tit {
		display: block;
		vertical-align: middle;
	}
}
@media screen and (max-width: 768px) {
	.artList .time {
		width: 128px;
		padding: 10px 0 0 2px;
	}
}
@media screen and (max-width: 768px) {
	.artList .tit {
		line-height: 1.7;
	}
}
@media screen and (max-width: 768px) {
	.artList .tit a {
		display: block;
		padding: 11px 0 12px;
	}
}
@media screen and (max-width: 768px) {
	.pagination {
		display: -ms-flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
		letter-spacing: -0.5em;
	}
}
@media screen and (max-width: 768px) {
	.pagination li,
	.postPagination li {
		-webkit-box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.05);
		box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.05);
		border: 1px solid #efefef;
		font-weight: 700;
		overflow: hidden;
		letter-spacing: 0;
	}
}
@media screen and (max-width: 768px) {
	.paginationWrapper {
		padding: 15px 0;
	}
}
@media screen and (max-width: 768px) and (min-width: 769px) {
	.paginationWrapper {
		padding: 30px 0 40px;
	}
}
@media screen and (max-width: 768px) {
	.pagination li {
		background: #efefef;
		display: inline-block;
		height: 30px;
		line-height: 30px;
		min-width: 30px;
		margin: 0 5px;
		font-size: 11px;
	}
}
@media screen and (max-width: 768px) {
	.pagination a {
		color: #4a5054;
		-webkit-transition: opacity 0.4s;
		transition: opacity 0.4s;
	}
}
@media screen and (max-width: 768px) {
	.pagination .current span,
	.pagination a {
		display: block;
		min-width: 28px;
		height: 28px;
		padding: 0 2px;
		line-height: 28px;
		overflow: hidden;
	}
}
@media screen and (max-width: 768px) {
	.pagination .current span {
		color: #fff;
		background: #0463af;
	}
}
@media screen and (max-width: 768px) {
	.pagination .next,
	.pagination .prev {
		width: 70px;
		position: relative;
		padding: 0 10px 0 0;
	}
}
@media screen and (max-width: 768px) {
	.pagination .next:after,
	.pagination .prev:after {
		position: absolute;
		top: 11px;
		right: 12px;
		display: inline-block;
		width: 4px;
		height: 7px;
		background: url("../img/news/ico_arrow01.png") no-repeat;
	}
}
@media screen and (max-width: 768px) {
	.pagination .prev {
		padding: 0 0 0 10px;
	}
}
@media screen and (max-width: 768px) {
	.pagination .prev:after {
		-webkit-transform: rotateY(145deg);
		transform: rotateY(145deg);
		right: auto;
		left: 12px;
	}
}
@media screen and (max-width: 768px) {
	.postPagination {
		position: relative;
		overflow: hidden;
		text-align: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media screen and (max-width: 768px) {
	.postPagination li {
		background: #efefef;
		display: inline-block;
		height: 30px;
		line-height: 30px;
		min-width: 30px;
	}
}
@media screen and (max-width: 768px) {
	.postPagination a {
		color: #4a5054;
		font-size: 13px;
		line-height: 28px;
		display: block;
	}
}
@media screen and (max-width: 768px) {
	.postPagination .prev {
		float: none;
		margin: 0 10px 0 0;
	}
}
@media screen and (max-width: 768px) {
	.postPagination .next {
		float: none;
		margin: 0 0 0 10px;
	}
}
@media screen and (max-width: 768px) {
	.postPagination .back a {
		color: #fff;
	}
}
@media screen and (max-width: 768px) {
	.postPagination .back {
		display: block;
		position: static;
		background: #0463af;
		width: 110px;
		margin-left: 0;
	}
}
@media screen and (max-width: 768px) {
	.postPagination .next,
	.postPagination .prev {
		width: 90px;
		position: relative;
		padding: 0 10px 0 0;
	}
}
@media screen and (max-width: 768px) {
	.postPagination .next:after,
	.postPagination .prev:after {
		content: "";
		position: absolute;
		top: 11px;
		right: 12px;
		display: inline-block;
		width: 4px;
		height: 7px;
		background: url("../img/news/ico_arrow01.png") no-repeat;
	}
}
@media screen and (max-width: 768px) {
	.postPagination .prev {
		padding: 0 0 0 10px;
	}
}
@media screen and (max-width: 768px) {
	.postPagination .prev:after {
		-webkit-transform: rotateY(145deg);
		transform: rotateY(145deg);
		right: auto;
		left: 12px;
	}
}
