@charset "utf-8";

.display-sp{
	display:none !important;
}

html, body, div, span, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,abbr, address, cite, code,del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,b, i,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	vertical-align:baseline;
	background:transparent;
	list-style-type:none;
	font-size: medium;
	color:#012155;
	font-family:"Meiryo UI", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6em;
}

a {
	outline:none;
	text-decoration: none;
}

p {
	margin: 0;
	padding:0;
	border:0;
}

* {
	box-sizing:border-box;
	margin: 0;
	padding: 0;
}

img {
	vertical-align:bottom;
	width:100%;
	-webkit-backface-visibility: hidden;
}

a:hover img {
	opacity: 0.75;
}

/* -----------------------------------------------------------------------
 ヘッダー
--------------------------------------------------------------------------*/
header{
	width:100%;
	z-index:99;
	position:fixed;
	top:0;
	left:0;
	height:55px;
	transition: .5s;
	background:#fff;
}

.header-inner {
	max-width:1600px;
	margin:0 auto;
	padding:0 10px 0 25px;
	display: flex;
	justify-content: space-between;
	transition: 0.2s ease-in-out;
}

.header-logo {
	width:225px;
	padding-top:10px;
}

/* -----------------------------------------------------------------------
 　　グローバルメニュー
--------------------------------------------------------------------------*/
.global {
	position:relative;
	width:645px;
}

#toggle {
  display:none;
}

.menu-logo,
.btn-home {
	display:none;
}

.global ul {
	display:flex;
}

.global ul li.navbtn-wide {
	width:145px;
}

.global ul li {
	width:100px;
}

.global ul li a {
	display:inline-block;
	padding:0;
	width:100%;
	height:55px;
	color:#062f85;
	font-size:13px;
	font-weight:bold;
	line-height:55px;
	text-align:center;
	position: relative;
}

.global ul li a:hover {
	background:#edf4fe;
	transition: .3s all;
}

.global ul li a::after {
	background: #062f85;
	content: '';
	display: block;
	height: 2px;
	left: 7%;
	bottom: 10px;
	position: absolute;
	transition: .3s all;
	width: 0;
}

.global ul li a:hover::after {
	width: 87%;
}

.global ul li {
    position: relative;
}

@media screen and (max-width:1050px) {
	.global {
		width:585px;
	}
	.global ul li.navbtn-wide {
		width:135px;
	}
	.global ul li {
		width:90px;
	}
}

@media screen and (max-width:900px) {
	.header-inner {
		padding:0 0 0 15px;
	}
	.global {
		width:555px;
	}
	.global ul li.navbtn-wide {
		width:130px;
	}
	.global ul li {
		width:85px;
	}
	.global ul li a {
		font-size:12px;
	}
}

/* -----------------------------------------------------------------------
 　トップ　スライダー
--------------------------------------------------------------------------*/
.top-fv-wrap {
	padding:55px 0 0 4%;
	background:#062f85;
}

.main-img-wrap {
    height: 680px;
    border-bottom-left-radius: 30px;
    overflow: hidden;
    position: relative; 
}

.top-catch {
	z-index:13;
	width:440px;
	position: absolute;
    left: 2.5%;
    bottom: 35px;
    transition: 0.2s ease-in-out;
}

@media screen and (max-width:1200px) {
	.top-catch {
			width:400px;
	}
}

.top-img-layer {
	z-index:12;
	width:100%;
	height: 680px;
	position: absolute;
	background: -moz-linear-gradient(bottom left, #000, transparent); 
	background: -webkit-linear-gradient(bottom left, #000, transparent); 
	background: linear-gradient(to top right, #000, transparent); 
	opacity: 0.3;
}

.main-img {
    z-index:10;
    opacity: 0;
    width: 100%;
    height: 680px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 36s 0s infinite;
    animation: anime 36s 0s infinite; 
}

.main-img-bg01 {
	background-image: url(../img/01.jpg);
}

.main-img-bg02 {
	background-image: url(../img/02.jpg);
}

.main-img-bg03 {
	background-image: url(../img/03.jpg);
}

.main-img-bg04 {
	background-image: url(../img/04.jpg);
}

.main-img-bg05 {
	background-image: url(../img/05.jpg);
}

.main-img-bg06 {
	background-image: url(../img/06.jpg);
}

.main-img:nth-of-type(2) {
      -webkit-animation-delay: 6s;
      animation-delay: 6s; 
}

.main-img:nth-of-type(3) {
      -webkit-animation-delay: 12s;
      animation-delay: 12s; 
}

.main-img:nth-of-type(4) {
      -webkit-animation-delay: 18s;
      animation-delay: 18s; 
}

.main-img:nth-of-type(5) {
      -webkit-animation-delay: 24s;
      animation-delay: 24s; 
}

.main-img:nth-of-type(6) {
      -webkit-animation-delay: 30s;
      animation-delay: 30s; 
}

@keyframes anime {
  0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
        transform: scale(1.1);
         z-index:9;
    }
    100% { opacity: 0 }
}

/* -----------------------------------------------------------------------
 　トップ　ダイサブについて
--------------------------------------------------------------------------*/
.top-fv-bottom-wrap {
	padding:57px 20px 60px;
}

.top-fv-bottom-inner {
	max-width:960px;
	margin:0 auto;
	display:flex;
	justify-content: space-between;
}

.top-fv-bottom-left {
	width:12%;
}

.top-fv-bottom-center {
	width:32%;
}

.top-fv-bottom-right {
	width:50%;
	padding-left:5px;
}

.top-about-title {
	font-size:30px;
	color:#fff;
	letter-spacing:2px;
	line-height:1;
	margin-bottom:10px;
	transition: 0.2s ease-in-out;
}

.top-about-subtitle {
	font-size:17px;
	color:#fff;
	letter-spacing:2px;
	margin-bottom:20px;
	transition: 0.2s ease-in-out;
}

.top-about-text {
	font-size:16px;
	color:#fff;
	letter-spacing:1px;
	line-height:2.1;
	margin-bottom:10px;
	transition: 0.2s ease-in-out;
}

@media screen and (max-width:1050px) {
	.top-about-title {
		font-size:27px;
	}
	.top-about-subtitle {
		font-size:16px;
	}
	.top-about-text {
		font-size:15px;
	}
}

/* -----------------------------------------------------------------------
 　動画
--------------------------------------------------------------------------*/
.movie-wrap {
	background:#fff;
	padding:40px 40px 80px;
	text-align:center;
}

.movie-title {
	position: relative;
    display: inline-block;
	font-size:25px;
	font-family: 'Roboto', sans-serif;
	font-weight:700;
	letter-spacing:1px;
	color:#062f85;
	padding: 0 30px;
	margin-bottom:30px;
}

.movie-title:before,
.movie-title:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #062f85;
}
 
.movie-title:before {
    left: 0;
}
 
.movie-title:after {
    right: 0;
}

.movie {
	max-width:900px;
	margin:0 auto;
}

.movie video {
	width:100%;
}

/* -----------------------------------------------------------------------
 　トップ　サービス
--------------------------------------------------------------------------*/
.top-block-wrap {
	width:100%;
	padding-top:50px;
}

.top-block-service {
	background:#d8e8fe;
	padding-bottom:1px;
}

.top-heading-img {
	position: relative;
	width:200px;
	margin:0 auto 45px;
}

.top-heading-img:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left:50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width:140px;
	height:4px;
	background:#062f85;
}

.top-under-heading {
	font-size:15px;
	text-align:center;
}

.top-service-wrap {
	margin-top:55px;
	width:100%;
	height:430px;
	position:relative;
	transition: 0.2s ease-in-out;
}

.top-service-wrap2 {
	margin-bottom:30px;
}

.top-service-layer {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	display:flex;
	justify-content: space-between;
}

.top-service-layer-inner-descpart {
	width:47.5%;
	transition: 0.2s ease-in-out;
}

.top-service-layer-inner-photopart {
	width:49%;
	transition: 0.2s ease-in-out;
}

.top-service-titlebar-wrap {
	width:100%;
	height:80px;
	display:flex;
	justify-content: space-between;
	transition: 0.2s ease-in-out;
}

.top-service-titlebar-sq {
	width:calc(100% - 30px);
	background:#062f85;
	height:80px;
	position:relative;
	transition: 0.2s ease-in-out;
}

.top-service-title-wrap01 {
	width:400px;
	position:absolute;
	top:-30px;
	right:0;
	display:flex;
	transition: 0.2s ease-in-out;
}

.top-service-title-wrap02 {
	position:absolute;
	top:-30px;
	left:20px;
	display:flex;
	transition: 0.2s ease-in-out;
}

.top-service-title-number {
	width:70px;
	filter: drop-shadow(4px 4px 4px rgba(20,35,60,0.4));
	transition: 0.2s ease-in-out;
}

.top-service-title-text {
	width:calc(100% - 70px);
	font-size:33px;
	font-weight:bold;
	color:#fff;
	letter-spacing:3px;
	padding:43px 0 0 20px;
	transition: 0.2s ease-in-out;
}

.top-service-titlebar-tri01 {
	width: 0;
	height:80px;
	border-top: 80px solid #062f85;
	border-right: 30px solid transparent;
	transition: 0.2s ease-in-out;
}

.top-service-titlebar-tri02 {
	width: 0;
	height:80px;
	border-top: 80px solid #062f85;
	border-left: 30px solid transparent;
	transition: 0.2s ease-in-out;
}

.top-service-desc-wrap01 {
	max-width:420px;
	margin:25px 0 0 auto;
	transition: 0.2s ease-in-out;
}

.top-service-desc-wrap02 {
	margin-top:25px;
	padding-left:55px;
	transition: 0.2s ease-in-out;
}

.top-service-text {
	font-size:16px;
	letter-spacing:1px;
	line-height:2.1;
	text-align: justify;
	text-justify: inter-ideograph;
	transition: 0.2s ease-in-out;
}

.top-service-img {
	max-width:560px;
	transition: 0.2s ease-in-out;
}

.top-service-img-left {
	margin:0 0 0 auto;
}

@media screen and (max-width:1200px) {
	.top-service-wrap {
		height:420px;
	}
	.top-service-layer-inner-descpart {
		width:44%;
	}
	.top-service-layer-inner-photopart {
		width:53%;
	}
}

@media screen and (max-width:1050px) {
	.top-service-wrap {
		height:380px;
	}
	.top-service-img {
		max-width:500px;
	}
	.top-service-titlebar-wrap {
		height:60px;
	}
	.top-service-titlebar-sq {
		height:60px;
	}
	.top-service-title-wrap01 {
		width:calc(100% - 30px);
		top:-33px;
		right:0;
	}
	.top-service-title-wrap02 {
		top:-33px;
		left:20px;
	}
	.top-service-title-number {
		width:55px;
	}
	.top-service-title-text {
		width:calc(100% - 55px);
		font-size:27px;
		padding:40px 0 0 20px;
	}
	.top-service-titlebar-tri01 {
		height:60px;
		border-top: 60px solid #0a3492;
	}
	.top-service-titlebar-tri02 {
		height:60px;
		border-top: 60px solid #0a3492;
	}
	.top-service-desc-wrap01 {
		width:100%;
		padding-left:30px;
		margin:20px 0 0 auto;
	}
	.top-service-desc-wrap02 {
		margin-top:20px;
		padding-left:30px;
	}
	.top-service-text {
		font-size:15px;
	}
}

/* -----------------------------------------------------------------------
 　トップ　採用
--------------------------------------------------------------------------*/
.top-recruit-wrap {
	max-width:1000px;
	margin:0 auto;
	padding:40px 20px 60px 30px;
	display:flex;
	justify-content: space-between;
	transition: 0.2s ease-in-out;
}

.top-recruit-inner-descpart {
	width:48%;
	padding-top:7px;
	transition: 0.2s ease-in-out;
}

.top-recruit-inner-photopart {
	width:50%;
	transition: 0.2s ease-in-out;
}

.top-recruit-midashi {
	font-size:20px;
	font-weight:bold;
	color:#062f85;
	letter-spacing:1px;
	line-height:1.5;
	margin-bottom:12px;
}

.top-recruit-text {
	font-size:16px;
	letter-spacing:1px;
	line-height:2.1;
	text-align: justify;
	text-justify: inter-ideograph;
	transition: 0.2s ease-in-out;
}

@media screen and (max-width:1050px) {
	.top-recruit-inner-descpart {
		width:calc(100% - 480px);
	}
	.top-recruit-inner-photopart {
		width:480px;
	}
	.top-recruit-text {
		font-size:15px;
	}
}
@media screen and (max-width:890px) {
	.top-recruit-wrap {
		padding:30px 0 80px 25px;
	}
	.top-recruit-inner-descpart {
		width:370px;
	}
	.top-recruit-inner-photopart {
		width:calc(100% - 370px);
	}
}

/* -----------------------------------------------------------------------
 　トップ　コンタクト
--------------------------------------------------------------------------*/
.top-contact-wrap {
	background:#d8e8fe;
	padding:45px 20px 55px;
}

.top-contact-inner-wrap {
	max-width:790px;
	margin:65px auto 0;
	display:flex;
	justify-content: space-between;
}

.top-contact-box {
	width:46%;
	background:#fff;
	padding:25px 0 8px;
	border-radius:15px;
}

.top-contact-title {
	font-size:16.5px;
	font-weight:bold;
	letter-spacing:1px;
	text-align:center;
	margin-bottom:24px;
}

.top-contact-phone {
	font-size:19px;
	font-weight:bold;
	letter-spacing:1px;
	line-height:1.3;
	text-align:center;
	margin-bottom:25px;
}

.top-contact-time {
	font-size:14px;
	font-weight:normal;
	text-align:center;
}

/* -----------------------------------------------------------------------
 　リンクボタン
--------------------------------------------------------------------------*/
.btn {
	position:relative;
	transition: 0.2s ease-in-out;
}

.btn a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.btn-top-about {
	width:200px;
	height:50px;
	font-size:14px;
	letter-spacing:2px;
	line-height:50px;
	text-align:center;
	color:#fff;
	border:1px solid #fff;
	margin-top:30px;
}

.btn-top-about:hover {
	border:1px solid #fff;
	background:#fff;
	color:#062f85;
	transition: 0.2s ease-in-out;
}

.btn-top-service {
	width:200px;
	height:50px;
	font-size:14px;
	letter-spacing:2px;
	line-height:50px;
	text-align:center;
	color:#012155;
	border:1px solid #012155;
	margin-top:20px;
}

.btn-top-service:hover {
	border:1px solid #0a3492;
	background:#0a3492;
	color:#fff;
	transition: 0.2s ease-in-out;
}

.btn-top-contact {
	width:70%;
	height:60px;
	font-size:14px;
	letter-spacing:1px;
	line-height:60px;
	text-align:center;
	color:#012155;
	border:1px solid #012155;
	margin:50px auto 0;
}

.btn-top-contact:hover {
	border:1px solid #0a3492;
	background:#0a3492;
	color:#fff;
	transition: 0.2s ease-in-out;
}

.btn-recruit {
	width:290px;
	margin:30px auto 0;
}

/* -----------------------------------------------------------------------
 　フッター
--------------------------------------------------------------------------*/
footer {
	background:#062f85;
	padding:30px 0 25px;
}

.footer-logo {
	width:280px;
	margin:0 auto 37px;
}

.footer-adress-wrap {
	max-width:830px;
	margin:0 auto 26px;
	display:flex;
	justify-content: space-between;
}

.footer-adress-box {
	width:48.5%;
}

.footer-adress-title {
	font-size:14.8px;
	font-weight:bold;
	color:#fff;
	letter-spacing:1px;
	border-bottom:1px dotted #fff;
	padding-bottom:4px;
	margin-bottom:6px;
}

.footer-adress-title span {
	font-size:13px;
	font-weight:normal;
	color:#fff;
	margin-left:4px;
}

.footer-adress-text {
	font-size:13.8px;
	color:#fff;
	letter-spacing:1px;
	line-height:1.5;
}

.footer-menu {
	display:flex;
	justify-content: center;
	margin-bottom:20px;
}

.footer-menu li a {
	font-size:13px;
	position: relative;
	color:#fff;
	padding:0 11px;
}

.footer-menu li a:hover {
	opacity:0.75;
}

.footer-menu li a::before {
    content:"";
    display:inline-block;
    width: 1px;
    height: 14px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

@media screen and (min-width:891px) {
	.footer-menu li:last-child a::after {
		content:"";
    	display:inline-block;
    	width: 1px;
    	height: 14px;
    	background-color: #fff;
    	position: absolute;
    	top: 50%;
    	transform: translateY(-50%);
    	right: 0;
	}
}

.copyright {
    font-size:11px;
    color:#fff;
    text-align:center;
}

@media screen and (max-width:890px) {
	.footer-adress-wrap {
		max-width:100%;
		padding-left:70px;
		display:block;
	}
	.footer-adress-box {
		width:100%;
		margin-bottom:30px;
	}
	.footer-menu {
		padding:0 20px 0 70px;
		display:flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		margin-bottom:27px;
	}
	.copyright {
		text-align:left;
		padding-left:70px;
	}
}

/* -----------------------------------------------------------------------
 　サービスページ
--------------------------------------------------------------------------*/
.page-heading-img {
	position: relative;
	width:200px;
	margin:120px auto 28px;
}

.page-heading-img:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left:50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width:140px;
	height:4px;
	background:#062f85;
}

.page-title {
	font-size:20px;
	font-weight:bold;
	color:#062f85;
	text-align:center;
	margin-bottom:70px;
}

.page-bg-blue {
	width:100%;
	position:relative;
	background:#d8e8fe;
	padding:75px 0 40px;
}

.page-titlebar-wrap {
	position:absolute;
	top:-30px;
	left:0;
	width:calc(50% + 80px);
	height:60px;
	display:flex;
	justify-content: space-between;
	transition: 0.2s ease-in-out;
}

.page-titlebar-sq {
	width:calc(100% - 30px);
	background:#062f85;
	height:60px;
	position:relative;
	transition: 0.2s ease-in-out;
}

.page-titlebar-textwrap {
	width:370px;
	position:absolute;
	top:10px;
	right:0;
}

.page-titlebar-text-wh {
	font-size:26px;
	font-weight:bold;
	letter-spacing:1px;
	color:#fff;
	margin-bottom:12px;
}

.page-titlebar-text-blue {
	font-size:20px;
	letter-spacing:1px;
	color:#062f85;
}

.page-titlebar-tri {
	width: 0;
	height:60px;
	border-top: 60px solid #062f85;
	border-right: 30px solid transparent;
	transition: 0.2s ease-in-out;
}

.page-inner {
	max-width:640px;
	margin:0 auto;
}

.page-img {
	margin:35px 0;
}

.page-img img {
	border-radius:15px;
}

.page-text {
	font-size:17px;
	line-height:1.85;
	text-align: justify;
	text-justify: inter-ideograph;
	margin-bottom:24px;
}

.page-bg-white {
	padding:70px 10px;
}

.service-chart {
	max-width:760px;
	padding:10px 25px 20px;
	border:1px solid #062f85;
	border-radius:20px;
	margin:0 auto;
	position:relative;
}

.chart-title {
	font-size:20px;
	font-weight:bold;
	color:#062f85;
	letter-spacing:1px;
	position:absolute;
	top:30px;
	left:40px;
}

.chart-caption-box {
	position:absolute;
	bottom:30px;
	left:40px;
}

.chart-caption {
	font-size:15px;
	letter-spacing:1px;
	line-height:1.6;
}

/* -----------------------------------------------------------------------
 　ダイサブについて
--------------------------------------------------------------------------*/
.about-bg {
	margin-top:85px;
	background:#062f85;
	padding-left:200px;
	position:relative;
}

.about-title-img {
	width:115px;
	position:absolute;
	top:65px;
	left:45px;
}

.about-bg-white{
	background:#fff;
	border-bottom-left-radius: 30px;
	padding:15px 0 10px 50px;
}

.about-title-wrap {
	padding-left:calc((100% - 950px) / 2);
	margin-bottom:40px;
}

.about-title {
	font-size:24px;
	font-weight:bold;
	color:#062f85;
	letter-spacing:1px;
	padding-bottom:2px;
	border-bottom:1px solid #062f85;
}

.about-bg-white-inner {
	max-width:950px;
	margin:0 auto;
}

.about-bg-flexwrap {
	display:flex;
	justify-content: space-between;
	padding-right:50px;
	margin-bottom:80px;
}

.about-img-wrap {
	width:37%;
	padding-top:8px;
}

.about-img-wrap img,
.about-img-sp img {
	border-radius:15px;
}

.about-text-wrap {
	width:59%;
}

.about-desc-heading {
	font-size:30px;
	font-weight:bold;
	color:#062f85;
	letter-spacing:1px;
	margin-bottom:1px;
}

.about-desc-subheading {
	font-size:17px;
	font-weight:bold;
	color:#062f85;
	letter-spacing:1px;
	margin-bottom:34px;
}

.about-text {
	font-size:17px;
	line-height:1.85;
	color:#000;
	text-align: justify;
	text-justify: inter-ideograph;
	margin-bottom:20px;
}

.about-img-sp {
	display:none;
}

@media screen and (max-width:1150px) {
	.about-bg-white{
		padding:15px 0 10px 0;
	}
	.about-title-wrap {
		padding-left:0;
		width:88%;
		margin:0 auto 30px
	}
	.about-bg-white-inner {
		width:88%;
		margin:0 auto;
	}
	.about-bg-flexwrap {
		display:block;
		padding-right:0;
		margin-bottom:80px;
	}
	.about-img-wrap {
		display:none;
	}
	.about-text-wrap {
		width:100%;
	}
	.about-img-sp {
		display:block;
		width:70%;
		margin:40px auto 0;
	}
}

/* -----------------------------------------------------------------------
 　採用情報
--------------------------------------------------------------------------*/
.recruit-bg-white {
	padding:0 30px 80px;
}

.recruit-lead-text {
	font-size:16px;
	color:#012155;
	text-align:center;
	line-height:1.7;
}

.recruit-article-wrap {
	max-width:880px;
	padding: 32px 40px 40px;
	margin:50px auto 90px;
	border:1px solid #062f85;
	border-radius:20px;
}

.recruit-article-inner {
	max-width:640px;
	margin:0 auto;
}

.recruit-title {
	width:280px;
	height:40px;
	background:#062f85;
	border-radius:20px;
	font-size:16px;
	letter-spacing:2px;
	color:#fff;
	line-height:40px;
	text-align:center;
	margin:0 auto 32px;
}

.recruit-img {
	margin:30px 0;
}

.recruit-img img {
	border-radius:15px;
}

.recruit-text {
	font-size:16px;
	line-height:1.8;
	text-align: justify;
	text-justify: inter-ideograph;
	margin-bottom:24px;
}

.recruit-message-wrap {
	margin-bottom:130px;
	text-align:center;
}

.recruit-message-title {
	position: relative;
    display: inline-block;
	font-size:30px;
	font-family: 'Roboto', sans-serif;
	font-weight:900;
	letter-spacing:2px;
	color:#012155;
	padding: 0 30px;
	margin-bottom:28px;
}

.recruit-message-title:before,
.recruit-message-title:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #012155;
}
 
.recruit-message-title:before {
    left: 0;
}
 
.recruit-message-title:after {
    right: 0;
}

.recruit-message-text {
	font-size:18px;
	font-weight:bold;
	color:#012155;
	letter-spacing:1px;
	line-height:1.9;
	margin-bottom:30px;
}

.recruit-details-title {
	font-size:32px;
	font-weight:bold;
	letter-spacing:3px;
	color:#012155;
	text-align:center;
	margin-bottom:25px;
}

.recruit-table-wrap {
	max-width:880px;
	border-top:1px solid #012155;
	margin:0 auto 80px;
}

.recruit-table-row {
	padding:20px 0;
	display:flex;
	border-bottom:1px solid #012155;
}

.recruit-table-cell01 {
	width:150px;
	padding-left:15px;
	display: flex;
	align-items: center;
}

.recruit-table-title {
	font-size:17px;
	font-weight:bold;
	letter-spacing:1px;
}

.recruit-table-cell02 {
	width:calc(100% - 150px);
	font-size:16px;
	line-height:2;
}

.recruit-contact-box {
	max-width:540px;
	margin:0 auto;
	border:1px solid #012155;
	border-radius:15px;
	padding:15px 30px 40px;
}

.recruit-contact-title {
	font-size:19px;
	font-weight:bold;
	letter-spacing:1px;
	text-align:center;
	padding-bottom:10px;
	border-bottom:1px solid #012155;
	margin-bottom:35px;
}

.recruit-contact-text {
	font-size:26px;
	font-weight:bold;
	line-height:1.1;
	letter-spacing:1px;
	text-align:center;
}

.recruit-contact-text span {
	font-size:14.5px;
	font-weight:normal;
}


/* -----------------------------------------------------------------------
 　　会社概要
--------------------------------------------------------------------------*/
.company-heading-img {
	position: relative;
	width:230px;
	margin:117px auto 28px;
}

.company-heading-img:after {
    content: '';
    position: absolute;
    bottom: -18px;
    left:50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width:140px;
	height:4px;
	background:#0a3492;
}

.page-title-company {
	margin-bottom:35px
}

.company-img {
	max-width:960px;
	margin:0 auto 60px;
}

.company-img img {
	border-radius:15px;
}

.company-table-wrap {
	max-width:960px;
}

.company-cell01 {
	width:200px;
}

.company-cell02 {
	width:calc(100% - 200px);
}

.recruit-table-title span.small {
	font-size:13px;
	font-weight:normal;
	color:#012155;
	vertical-align:top;
}

.map-wrap {
	max-width:960px;
	margin:0 auto 20px;
	display:flex;
    justify-content: space-between;
}

.map-box {
	width:48%;
}

.map-title {
	font-size:16px;
	color:#012155;
	text-align:center;
	margin-bottom:8px;
}

.map-box iframe {
	width:100%;
	height:295px;
}

@media screen and (max-width:900px) {
    .map-wrap {
    		display:block;
    }
    .map-box {
		width:100%;
		margin-bottom:40px;
	}
	.map-box:last-child {
		margin-bottom:0;
	}
}

/* -----------------------------------------------------------------------
 　　プライバシーポリシー
--------------------------------------------------------------------------*/
.privacy-title {
	font-size:32px;
	font-family: 'Roboto', sans-serif;
	font-weight:900;
	letter-spacing:1px;
	color:#012155;
	text-align:center;
	margin:115px 0 2px;
}

.privacy-subtitle {
	font-size:14px;
	color:#012155;
	text-align:center;
	margin-bottom:60px;
}

.privacy-wrap {
	max-width:800px;
	margin:0 auto;
	padding:0 30px 80px;
}

.privacy-heading-2 {
	font-size:18px;
	font-weight:bold;
	color:#012155;
	margin:45px 0 7px;
}

.privacy-text {
	font-size:16px;
	color:#012155;
	text-align: justify;
	text-justify: inter-ideograph;
	margin-bottom:18px;
}

.privacy-list {
	font-size:16px;
	color:#012155;
	text-indent:-46px;
	padding-left:46px;
	text-align: justify;
	text-justify: inter-ideograph;
	margin-bottom:12px;
}

.privacy-contact-box {
	width:540px;
	border:1px dotted #012155;
	padding:20px 0 20px 30px;
	margin-top:40px;
}

.privacy-company {
	font-size:17.5px;
	font-weight:bold;
	color:#012155;
	margin-bottom:8px;
}

.privacy-contact-text {
	font-size:16px;
	color:#012155;
	line-height:1.8;
}

.privacy-contact-text a {
	color:#012155;
}

.privacy-contact-text span.small {
	font-size:14.5px;
	color:#012155;
}

/* -----------------------------------------------------------------------
 　　お問い合わせ
--------------------------------------------------------------------------*/
.form-img {
	width:1000px;
	margin:70px auto;
}

/* -----------------------------------------------------------------------
 　　採用応募フォーム
--------------------------------------------------------------------------*/
.entry-heading-img {
	position: relative;
	width:200px;
	margin:120px auto 28px;
}

.entry-heading-img:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left:50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width:100px;
	height:4px;
	background:#062f85;
}

.entry-title {
	font-size:18px;
	font-weight:bold;
	letter-spacing:1px;
	color:#062f85;
	text-align:center;
	margin-bottom:70px;
}