@charset "utf-8";

.display-pc{
	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%;
}

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

.header-inner {
	width:95%;
	margin:0 auto;
	display: flex;
	justify-content: space-between;
}

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

/* -----------------------------------------------------------------------
 グローバルメニュー（トグルメニュー）
--------------------------------------------------------------------------*/
#toggle {
  display: block;
  text-align: center;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  position: absolute;
  top: -2px;
  right: 6px;
  z-index: 20;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: 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;
}
.trigger,
.trigger span {
  display: inline-block;
  -webkit-transition: all .4s;
          transition: all .4s;
}
.trigger {
  position: relative;
  width: 32px;
  height: 23px;
}
.trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #062f85;
  border-radius: 4px;
}
.trigger span:nth-of-type(1) {
  top: 0;
}
.trigger span:nth-of-type(2) {
  top: 10px;
}
.trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #062f85;
  border-radius: 4px;
  -webkit-transition: all .4s;
          transition: all .4s;
}
.trigger span:nth-of-type(3) {
  bottom: 0;
}
.trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) scale(0);
          transform: translateY(8px) scale(0);
}
.trigger.active span:nth-of-type(2) {
  -webkit-transform: rotate(-405deg);
          transform: rotate(-405deg);
          background: #fff;
}
.trigger.active span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
          background: #fff;
}
.trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) scale(0);
          transform: translateY(-8px) scale(0);
}

/* スマホでメニューを開いた際に背景色が画面全体にかかるようにと
フルスクリーンで固定したいので、position: fixed; top: 0; left: 0; を指定 */
.global {
	background:#062f85;
	padding: 30px 0 10px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index:15;
}

.menu-logo {
	max-width:190px;
	margin:0 auto 30px;
}

.global .menu {
	width:90%;
	margin:0 auto;
}

.menu li.navbtn {
  list-style-type: none;
  width:100%;
  margin-bottom:12px;
}

.navItem {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  border-radius:10px;
  padding: 12px 0;
  text-align: center;
  font-size: 18px;
}

/* メニューを閉じる時のスタイル
display:none; を使用せず、opacityを使うとfadeっぽくなる */
.hide {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

/* アニメーションはメニューの開閉時のみでいいので
.toggleWrapに書かず、別にclassを用意 */
.animation {
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}

/* メニューオープン時のみ、メニューの後ろのコンテンツをスクロールさせない
iOS safariには別途対応が必要（jQueryに記述）*/
.no-scroll {
  overflow: hidden;
}

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

.main-img-wrap {
    height: 400px;
    overflow: hidden;
    position: relative; 
}

.top-catch {
	z-index:13;
	max-width:290px;
	position: absolute;
    left: 13px;
    bottom: 12px;
}

.top-img-layer {
	z-index:12;
	width:100%;
	height: 680px;
	position: absolute;
	background:#000;
	opacity: 0.3;
}

.main-img {
	z-index:10;
    opacity: 0;
    width: 100%;
    height: 400px;
    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.2);
         z-index:9;
    }
    100% { opacity: 0 }
}

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

.top-fv-bottom-inner {
	width:90%;
	margin:0 auto;
}

.top-fv-bottom-about {
	width:160px;
	margin-bottom:30px;
}

.top-fv-bottom-flexwrap {
	display:flex;
	justify-content: space-between;
}

.top-fv-bottom-left {
	width:26%;
	background-image: url(../img/top-buhin.jpg);
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.top-fv-bottom-right {
	width:69%;
}

.top-about-title {
	font-size:21px;
	color:#fff;
	letter-spacing:2px;
	line-height:1;
	margin-bottom:7px;
}

.top-about-subtitle {
	font-size:14px;
	color:#fff;
	letter-spacing:1.7px;
	margin-bottom:15px;
}

.top-about-text {
	font-size:14px;
	color:#fff;
	letter-spacing:1px;
	line-height:1.7;
	text-align: justify;
	text-justify: inter-ideograph;
	margin-top:-6px;
}

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

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

.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 {
	width:90%;
	margin:0 auto;
}

.movie video {
	width:100%;
}

.movie iframe {
	width: 100%;
	height: 100%;
  }

/* -----------------------------------------------------------------------
 　トップ　サービス
--------------------------------------------------------------------------*/
.top-block-wrap {
	width:100%;
	padding-top:40px;
}
.top-block-service {
	background:#d8e8fe;
	padding-bottom:1px;
}

.top-heading-img {
	position: relative;
	width:170px;
	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:130px;
	height:4px;
	background:#062f85;
}

.top-under-heading {
	font-size:15px;
	color:#012155;
	padding:0 8%;
}

.top-service-wrap {
	margin:40px 0 30px;
	width:100%;
	position:relative;
}

.top-service-bg {
	width:100%;
	padding:0 9% 20px;
}

.top-service-img {
	margin-bottom:20px;
}

.top-service-titlebar-wrap {
	width:100%;
	height:60px;
	padding-right:30px;
	display:flex;
	justify-content: space-between;
	margin-bottom:20px;
}

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

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

.top-service-title-number {
	width:50px;
	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% - 50px);
	font-size:29px;
	font-weight:bold;
	color:#fff;
	letter-spacing:3px;
	padding:29px 0 0 20px;
}

.top-service-titlebar-tri {
	width: 0;
	height:655px;
	border-top: 55px solid #062f85;
	border-right: 25px solid transparent;
	transition: 0.2s ease-in-out;
}

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

/* -----------------------------------------------------------------------
 　トップ　採用
--------------------------------------------------------------------------*/
.top-recruit-wrap {
	margin:20px auto;
	padding:0 9% 20px;
}

.top-recruit-photo {
	margin-bottom:20px;
}

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

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

/* -----------------------------------------------------------------------
 　トップ　コンタクト
--------------------------------------------------------------------------*/
.top-contact-wrap {
	background:#d8e8fe;
	padding:40px 0 30px;
}

.top-contact-inner-wrap {
	width:80%;
	margin:50px auto 0;
}

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

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

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

.top-contact-phone a {
	color:#012155;
}

.top-contact-time {
	font-size:12.5px;
	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:160px;
	height:46px;
	font-size:13px;
	letter-spacing:2px;
	line-height:46px;
	text-align:center;
	color:#fff;
	border:1px solid #fff;
	margin-top:15px;
}

.btn-top-service {
	width:160px;
	height:46px;
	font-size:13px;
	letter-spacing:2px;
	line-height:46px;
	text-align:center;
	color:#012155;
	border:1px solid #012155;
	margin:20px auto 0;
}

.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:20px auto 30px;
}

.btn-recruit {
	width:260px;
	margin:20px auto 0;
}

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

.footer-logo {
	width:250px;
	margin-bottom:30px;
}

.footer-adress-wrap {
	margin-bottom:30px;
}

.footer-adress-box {
	margin-bottom:20px;
}

.footer-adress-title {
	font-size:14px;
	font-weight:bold;
	color:#fff;
	letter-spacing:1px;
	border-bottom:1px solid #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:13px;
	color:#fff;
	letter-spacing:1px;
	line-height:1.5;
}

.footer-menu {
	display:flex;
	flex-wrap: wrap;
	padding-right:20px;
	margin-bottom:20px;
}

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

.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;
}

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

/* -----------------------------------------------------------------------
 　サービスページ
--------------------------------------------------------------------------*/
.page-heading-img {
	position: relative;
	width:165px;
	margin:90px auto 25px;
}

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

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

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

.page-titlebar-wrap {
	position:absolute;
	top:-20px;
	left:0;
	width:calc(100% - 25px);
	height:40px;
	display:flex;
	justify-content: space-between;
	transition: 0.2s ease-in-out;
}

.page-titlebar-sq {
	width:calc(100% - 20px);
	background:#0a3492;
	height:40px;
	position:relative;
	transition: 0.2s ease-in-out;
}

.page-titlebar-textwrap {
	width:100%;
	position:absolute;
	top:6px;
	right:0;
	padding-left:6%;
}

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

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

.page-titlebar-tri {
	width: 0;
	height:40px;
	border-top: 40px solid #0a3492;
	border-right: 20px solid transparent;
	transition: 0.2s ease-in-out;
}

.page-inner {
	width:88%;
	margin:0 auto;
}

.page-img {
	width:88%;
	margin:30px auto;
}

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

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

.page-bg-white {
	padding:30px 0;
}

.service-chart {
	width:88%;
	padding:30px 10px 100px;
	border:1px solid #062f85;
	border-radius:20px;
	margin:0 auto;
	position:relative;
}

.chart-title {
	font-size:16px;
	font-weight:bold;
	color:#062f85;
	letter-spacing:1px;
	position:absolute;
	top:15px;
	left:17px;
}
.chart-caption-box {
	position:absolute;
	bottom:15px;
	left:17px;
}

.chart-caption {
	font-size:13px;
	text-indent:-1.5em;
	padding:0 10px 0 1.5em;
	letter-spacing:1px;
	line-height:1.5;
	margin-bottom:3px;
}

/* -----------------------------------------------------------------------
 　ダイサブについて
--------------------------------------------------------------------------*/
.about-title-bg-sp {
	background:#062f85;
	padding:80px 0 30px;
}

.about-title-img {
	width:160px;
	margin:0 auto;
}

.about-bg-white {
	width:88%;
	margin:0 auto;
	padding:22px 0 10px;
}

.about-title {
	font-size:19px;
	font-weight:bold;
	text-align:center;
	color:#062f85;
	letter-spacing:1px;
	padding-bottom:3px;
	border-bottom:1px solid #062f85;
	margin-bottom:40px;
}

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

.about-text-wrap {
	margin-bottom:70px;
}

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

.about-desc-subheading {
	font-size:14px;
	font-weight:bold;
	text-align:center;
	color:#062f85;
	margin-bottom:20px;
}

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

.about-img-sp {
	width:88%;
	margin:30px auto;
}

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

/* -----------------------------------------------------------------------
 　採用情報
--------------------------------------------------------------------------*/
.recruit-bg-white {
	padding:0 5% 40px;
}

.recruit-lead-text {
	font-size:15px;
	color:#012155;
	padding:0 3px;
	line-height:1.7;
}

.recruit-article-wrap {
	width:100%;
	padding: 20px 20px 10px;
	margin:30px auto 40px;
	border:1px solid #062f85;
	border-radius:20px;
}

.recruit-title {
	width:230px;
	height:38px;
	background:#062f85;
	border-radius:19px;
	font-size:13.5px;
	color:#fff;
	line-height:38px;
	text-align:center;
	margin:0 auto 20px;
}

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

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

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

.recruit-message-wrap {
	padding:0 12px;
	margin-bottom:70px;
	text-align:center;
}

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

.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:15px;
	font-weight:bold;
	color:#012155;
	text-align:left;
	text-align: justify;
	text-justify: inter-ideograph;
	line-height:1.7;
	margin-bottom:16px;
}

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

.recruit-table-wrap {
	width:100%;
	border-top:1px solid #012155;
	margin:0 auto 40px;
}

.recruit-table-row {
	padding:10px 0 15px;
	border-bottom:1px solid #012155;
}

.recruit-table-title {
	font-size:15.5px;
	font-weight:bold;
	color:#012155;
	letter-spacing:1px;
	margin-bottom:6px;
}

.recruit-table-cell02 {
	width:100%;
	font-size:14.5px;
	color:#012155;
	line-height:1.6;
}

.recruit-contact-box {
	border:1px solid #012155;
	border-radius:15px;
	padding:15px 30px 40px;
}

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

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

.recruit-contact-text span {
	font-size:13px;
	font-weight:normal;
	color:#012155;
}

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

/* -----------------------------------------------------------------------
 　　会社概要
--------------------------------------------------------------------------*/
.company-heading-img {
	position: relative;
	width:190px;
	margin:90px auto 22px;
}

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

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

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

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

.recruit-table-title span.small {
	font-size:13px;
	font-weight:normal;
	color:#012155;
	margin-left:10px;
}

.map-box {
	width:100%;
	margin-bottom:30px;
}

.map-box:last-child {
	margin-bottom:0;
}
	
.map-title {
	font-size:15px;
	color:#012155;
	margin-bottom:8px;
}

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

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

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

.privacy-wrap {
	width:90%;
	margin:0 auto;
	padding-bottom:30px;
}

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

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

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

.privacy-contact-box {
	width:100%;
	border:1px dotted #012155;
	padding:12px 0 10px 20px;
	margin-top:30px;
}

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

.privacy-contact-text {
	font-size:15px;
	color:#012155;
	line-height:1.6;
	margin-bottom:8px;
}

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

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

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

/* -----------------------------------------------------------------------
 　　採用応募フォーム
--------------------------------------------------------------------------*/
.entry-heading-img {
	position: relative;
	width:165px;
	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:90px;
	height:4px;
	background:#062f85;
}

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