@charset "UTF-8";

/*///////////////////////////////////////
全体設定
///////////////////////////////////////*/
*,*:before,*:after {
 box-sizing: border-box;
}

hr{margin: 0;}

html {
 box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
 font-size: 62.5%;
 height: 100%;
 scroll-behavior: smooth;
 scroll-padding-top: 50px;
}

body {
 color: #333;
 /*font-family:  "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;*/
 font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
 background:#fff;
 font-size: 16px!important;
 font-weight: 400;
 line-height: 1.2;
 margin:0;
 padding:0;
 max-width: 100%;
 height: 100%;
}

img {
 max-width:100%;
 height: auto;
}

a{
 text-decoration: none;
}

a:hover{
 opacity: 0.7;
 transition: 0.8s;
}


a:visited{
 /*color: inherit!important;/*親と同じ*/
}

ul{
 padding-left: 0;
}

/*フェードイン*/
/* 画面外にいる状態 */
.fadein {
 opacity : 0.1;
 transform : translate(0, 50px);
 transition : all 500ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
 opacity : 1;
 transform : translate(0, 0);
}


/*簡易表示切り替え用*/
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
@media only screen and (max-width: 750px) {
img { max-width: 100%; }
}


/*///////////////////////////////////////
横から表示
・flow-wrap　→　横並び（gridかflex指定）
・flow-inner　→　横並びにした要素の装飾はここに追加していく
・class名を変える場合はjsも変更
///////////////////////////////////////*/
.flow-wrap {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.flow-inner {
 display: block;
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.flow-inner.show {
 opacity: 1;
 transform: translateY(0);
}



/* パンくず */
div#breadcrumb {
 font-size: 94%;
}

div#breadcrumb ul{
 padding:5px 5px 5px 20px;
 margin: 0;
}

div#breadcrumb  ul li{
 display:inline;
 line-height:20px;
 font-size: 0.7em;
}

/*///////////////////////////////////////
ヘッダー
///////////////////////////////////////*/
/* ヘッダー */
#site-header {
  background: #fff;
  width: 100%;
  height: 60px;
  /*position: fixed;*/
  position: relative;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-bottom: 3px solid #00479d;
}
.header-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
  padding: 0 20px;
}
.header-inner h1{
 margin: 0;
}

/* ロゴ */
.site-logo a {
  font-size: 0.6em;
  font-weight: bold;
  color: #333;
}

/* ナビメニュー */
.site-nav ul {
  display: flex;
  list-style: none;
}
.site-nav li {
  margin-left: 30px;
}
.site-nav a {
 position: relative;
 display: inline-block;
 font-size: 16px;
 font-weight: bold;
 color: #013366;
 text-decoration: none;
 transition: color 0.3s;
}

.site-nav a::after {
 content: "";
 position: absolute;
 bottom: -3px;
 left: 0;
 width: 0%;
 height: 2px;
 background: #00698f;
 transition: width 0.3s;
}
.site-nav a:hover {
 color: #00698f;
}
.site-nav a:hover::after {
 width: 100%;
}

/* ハンバーガーアイコン */
#nav-toggle {
  display: none;
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
#nav-toggle span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  left: 0;
  transition: 0.5s;
}
#nav-toggle span:nth-child(1) { top: 0; }
#nav-toggle span:nth-child(2) { top: 11px; }
#nav-toggle span:nth-child(3) { top: 22px; }

/* open時の動き */
body.open #nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
body.open #nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.open #nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* SPメニュー初期状態 */
@media screen and (max-width: 768px) {
    #site-header{
    position: fixed;
    }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    transition: right 0.4s ease-in-out;
    z-index: 1000;
    padding-top: 80px;
    border-left: 10px solid #00479d;
  }
  body.open .site-nav {
    right: 0;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .site-nav li {
    margin: 20px 0;
  }

  #nav-toggle {
    display: block;
    position: absolute;
    top: 30%;
    top: 15px;
    right: 20px;
  }
  .site-nav ul {
    margin-top: 30px;
  }
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* 半透明の黒 */
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.open .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* スクロールを止める */
body.open {
  overflow: hidden;
}



/*最上部連絡先*/
.head-contact-area{
 display: flex;
 justify-content: flex-end;
 gap: 10px;
}
.head-contact-inner{
 text-align: center;
 background: #013366;
 padding: 20px;
 border-radius: 0px 0px 0px 20px;
 width: 300px;
 color: #fff;
}
.head-contact-inner a{
 display: block;
 color: #fff;
}

.head-contact-area.fixed {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
}
@media screen and (max-width: 768px) {
.head-contact-area{
 display: none;
}
}


/*///////////////////////////////////////
見出し
///////////////////////////////////////*/
h2{
 font-size: 2.2em;
 color: #00479d;
}

.h201{
 font-size: 2.8em;
 display: block;
 color: #333;
 text-align: left;
}
.alfa{
 display: block;
 transform: scale(1, 1.2);
}
.alfa::after{
 content: "";
 display: inline-block;
 width: 40px;
 height: 40px;
 border-right: 2px solid #333;
 transform: rotate(50deg);
 position: relative;
 top: -7px;
}
.h201sub{
 display: block;
 color: #00479d;
 font-size: 0.6em;
 transform: none;
}

@media screen and (max-width: 767px) {
.h201{
 font-size: 2em;
 margin-top: 0;
}
}


.h202{
 display: block;
 margin-top: 0;
 color: #00479d;
 position: relative;
 padding-top: 50px;
 padding-bottom: 50px;
 font-size: 2em;
 text-align: center;
}
.h202 span{
 position: relative;
 z-index: 2;
}
.h202::before {
 content: attr(data-en);
 position: absolute;
 top: -20px;
 left: 50%;
 transform: translateX(-50%);
 color: rgba(0,71,157,0.2);
 font-size: 80px;
 font-style: italic;
}
.h202::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translate(-50%) rotate(30deg);
 width: 1px;
 height: 40px;
 background-color: rgba(0,71,157,1);
}

.h203{
 font-size: 1.3em;
 padding: 1rem 2rem;
 color: #fff;
 transform: skew(-15deg);
 background-image: linear-gradient(to right, #00479d 0%, #1a79c2 100%);
 margin-bottom: 20px;
}



/*///////////////////////////////////////
メインコンテンツ
///////////////////////////////////////*/

/*メインイメージ*/
.mainimg{
 display: block;
 position: relative;
 margin-bottom: -6px;
}
.mainimg img{
 width: 100%;
 height: 750px;
 object-fit: cover;
 border-bottom: 20px solid #00479d;
}

.img-dark img{
 display: block;
 background-color: #333;
 opacity: 0.7;
}

@media screen and (max-width: 767px) {
.mainimg img{
 height: 600px;
}
}



/*メインイメージ　動画の場合*/
.kv{
  /*height: 100vh;*/
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
 }
 .video{
  width: 100%;
  /*height: 100vh;*/
  height: 800px;
  background: url(./images/mainimg.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
 }
 /*
 何もフィルターつけない場合
 .video::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #10394b;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
 }
  */
 .video::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 900px;
  background: rgba(0, 0, 0, 0.3);
  background-image: repeating-linear-gradient(-45deg, rgba(0 0 0 / .2) 0px, rgba(0 0 0 / .2) 1px, rgba(0 0 0 / 0) 0%, rgba(0 0 0 / 0) 50%);
  background-size: 6px 6px;
 }
 .video video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
 }



/*メインイメージ　テキスト*/
.intro-message {
 font-size: 2.5em;
 font-weight: bold;
 z-index: 10;
 text-align: center;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 -webkit-transform: translate(-50%, -50%);
 -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
.intro-message {
 font-size: 1.2em;
}
}
.intro-message .line {
 display: block;
 margin: 0.3em 0;
 padding: 0.5em 1em;
 white-space: nowrap;
 background-color: #00479d;
 color: #fff;
}

/* 2行目だけ別の背景色にしたい場合 */
.intro-message .line:nth-child(2) {
 background-color: #003366;
}

.intro-message span {
  display: inline-block;
  opacity: 0;
  transform: translateX(20px);
  animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}





/*コンテンツ領域*/

main {
 margin: 6rem 0 0 0;
}
section {
 /*margin: 5rem 0;
 padding: 3rem 0;*/
}

.center {
 text-align: center;
 /*margin-bottom: 4rem;*/
}
.container {
 margin: 0 auto;
 max-width: 1200px;
 padding: 0 2.0rem;
 position: relative;
}


/*///////////////////////////////////////
スライダーベーススタイル
///////////////////////////////////////*/
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}


/*///////////////////////////////////////
ボタン
///////////////////////////////////////*/
.dkbtn{
 display: flex;
 align-items: center;
 justify-content: center;
 background-color: #00479d;
 clip-path: polygon(0 0, 83% 0, 100% 100%, 0% 100%);
 margin: 30px 0;
 width: 180px;
 max-width: 100%;
 height: 50px;
 color: #fff;
 padding-right: 20px;
 text-shadow:none;
}


/*///////////////////////////////////////
セクション区切り
///////////////////////////////////////*/
.secbg01{
 display: block;
 border-bottom:20px solid #00479d;
 position: relative;
}
.secbg01::before{
 content: "";
 display: block;
 width: 280px;
 height: 280px;
 background-color: #00479d;
 clip-path: polygon(100% 0, 0 0, 0 100%);
 position: absolute;
 top: -1px;
 left: 0;
}
.secbg01::after {
 content: "";
 display: block;
 width: 600px;
 height: 600px;
 background-color: #00479d;
 clip-path: polygon(100% 0, 100% 100%, 0 100%);
 position: absolute;
 bottom: -1px;
 right: 0;
 z-index: 0;
}
@media screen and (max-width: 767px) {
.secbg01{
 margin-top: -26px;
 padding: 50px 0;
}
.secbg01::before{
 width: 180px;
 height: 180px;
}
.secbg01::after {
 width: 400px;
 height: 400px;
}
}

.secbg02{
 display: block;
 background: url(./images/bg02.png) no-repeat top center / cover;
 /*background-attachment: fixed;*/
 padding: 100px 0;
}
.secbg02 p{
 margin-top: 0px;
}

.secbg03{
 display: block;
 position: relative;
 border-top: 20px solid #00479d;
 padding-bottom: 50px;
}
.sec03title{
 display: flex;
 justify-content: center;
 align-items: center;
 font-size: 80%;
 font-weight: bold;
 height: 350px;
 padding-top: 250px;
 background: url(./images/secbg03.jpg) no-repeat center center / cover;
 background-attachment: fixed;
 background-color: #fff;
}

/*///////////////////////////////////////
固定ページタイトルエリア
///////////////////////////////////////*/
.pagetitle{
 display: flex;
 justify-content: flex-start;
 align-items: center;
 font-weight: bold;
 height: 130px;
 padding-top: 20px;
}

/*サービス一覧ページタイトルエリア*/
.pagetitle-service{
 background: url(./images/titleBG2.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}

/*会社概要ページタイトルエリア*/
.pagetitle-company{
 background: url(./images/titleBG4.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}

/*お問い合わせページタイトルエリア*/
.pagetitle-contact{
 background: url(./images/titleBG1.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}


.pagetitle h2{
 margin: 0 auto;
 color: #333;
}

.pagetitle02{
 display: flex;
 justify-content: center;
 align-items: center;
 font-weight: bold;
 height: 350px;
 padding-top: 20px;
 position: relative;
}
.pagetitle02 h3{
 font-size: 1.8em;
 font-weight: bold;
 margin-top: 0;
}
.pagetitletxt{
 color: #fff;
 width: 1200px;
 max-width: 100%;
 padding: 0px 20px;
}
.pagetitletxt div{
 font-size: 0.9em;
 font-weight: normal;
}
@media screen and (max-width: 767px) {
.pagetitle{
 padding-top: 70px;
}

.pagetitle02{
 padding-top: 0;
 height: 300px;
}
.pagetitle02 h3{
 font-size: 1.2em;
}
}


.pageBG{
 background: url(./images/pageBG.jpg) no-repeat top right / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
 margin: 0;
 padding: 100px 0;
}

/*///////////////////////////////////////
会社概要
///////////////////////////////////////*/


.kaisya-gaiyou {
  border-collapse: collapse;
  width: 100%;
}

.kaisya-gaiyou th,
.kaisya-gaiyou td {
  border-bottom: 1px solid #dbe1e8;
  padding: 15px;
}

.kaisya-gaiyou th {
  /*background: #f9fafc;*/
  text-align: left;
  width: 200px;
}

@media only screen and (max-width: 800px) {
  .kaisya-gaiyou tr,
  .kaisya-gaiyou th,
  .kaisya-gaiyou td {
    display: block;
    width: auto;
  }

  .kaisya-gaiyou tr:first-child {
    border-top: 1px solid #dbe1e8;
  }

  .kaisya-gaiyou th,
  .kaisya-gaiyou td {
    border-top: none;
  }
}


/*///////////////////////////////////////
お問い合わせフォーム
///////////////////////////////////////*/
.contact-wrap{
 display: grid;
 grid-template-columns: repeat(2,1fr);
 gap:30px;
 line-height: 1.8;
}
.contact-left{
 display: block;
}
@media screen and (max-width: 767px) {
.contact-wrap{
 display: block;
}
}

/* フォーム全体 */
.wpcf7 {
 width: 100%;
 margin: 0 auto;
 padding: 2rem;
 background: #fff;
 border-radius: 12px;
 box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ラベル */
.wpcf7-form label {
 display: block;
 margin-bottom: 0.5rem;
 font-weight: bold;
 color: #333;
}

/* 入力・テキストエリア */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
 width: 100%;
 padding: 0.75rem 1rem;
 margin-bottom: 1.5rem;
 border: 1px solid #ccc;
 border-radius: 8px;
 background: #fff;
 font-size: 1.5rem;
 transition: border-color 0.3s, box-shadow 0.3s;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
 border-color: #35bff1;
 box-shadow: 0 0 5px rgba(53,191,241,0.3);
 outline: none;
}

/* テキストエリアサイズ */
.wpcf7-form textarea {
 min-height: 150px;
 resize: vertical;
}

/* 送信ボタン */
.wpcf7-form input[type="submit"] {
 background: linear-gradient(45deg, #2d85cf, #7ad9ff);
 color: #fff;
 border: none;
 border-radius: 50px;
 font-size: 1.5rem;
 cursor: pointer;
 transition: background 0.3s, transform 0.2s;
 width: 100%;
 padding: 25px;
 font-weight: bold;
}

.wpcf7-form input[type="submit"]:hover {
 background: linear-gradient(45deg, #7ad9ff, #2d85cf);
 transform: translateY(-2px);
}

/* エラーメッセージ・成功メッセージ */
.wpcf7-response-output {
 margin-top: 1rem;
 padding: 1rem;
 border-radius: 8px;
 font-weight: bold;
}

.wpcf7-mail-sent-ok {
 background: #d1f7dc;
 color: #278c52;
 border: 1px solid #278c52;
}

.wpcf7-not-valid-tip,
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
 background: #ffdede;
 color: #c0392b;
 border: 1px solid #c0392b;
}


/*　必須ラベル　*/
.cf7-req{
 font-size:0.7em;
 padding: 4px 6px;
 border-radius: 5px;
 background: #eb2a2a;
 color: #ffffff;
 margin-left: 10px;
 display:inline-block;
}
/*任意ラベル*/
.cf7-any{
 font-size:0.7em;
 padding: 4px 6px;
 border-radius: 5px;
 background: #0b52a0;
 color: #ffffff;
 margin-left: 10px;
 display:inline-block;
}

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

}

/*///////////////////////////////////////
フッター
///////////////////////////////////////*/

.footer {
 padding: 2rem 2rem 3.2rem;
 font-size: 15px;
 color: #fff;
 background-color: #00459B;
 margin-top: auto;
 border-top: 0.8px solid #fff;
}

.footer a{
 /*font-weight: bold!important;*/
 color: #fff!important;
}

  .copyright {
 text-align: center;
 padding: 10px 0;
  }

@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }
}


/*///////////////////////////////////////
テキストボックス
///////////////////////////////////////*/
.txtBox{
 display: block;
 margin: 30px auto 50px;
 width: 100%;
 text-align: left;
 font-size: 14px;
 line-height: 1.5;
}
.txtBox_center{
 display: block;
 margin: 30px auto 50px;
 width: 100%;
 text-align: center;
 font-size: 14px;
 line-height: 1.5;
}
@media screen and (max-width: 768px){
.txtBox{
 text-align: left;
 margin: 10px auto 20px;
}
.txtBox_center{
 text-align: left;
}
}


/*///////////////////////////////////////
レスポンシブ表示
///////////////////////////////////////*/
@media screen and (max-width: 768px){

/*ヘッダー*/
#header{
 height: 60px;
}

.header {
 flex-direction: column;
 /*margin-bottom: 10px;*/
}

.sitetitle {
 font-size: 1.1em;
}

.header-box {
 display: none;
}


/*スライダー*/
.mainslider .sliderImg img, .mainslider .sliderImg video{
 height: 100vh;
}
.slideContent{
 font-size: 1.2em;
}


/*見出し*/
h2{
 font-size: 1.5em;
 color: #00479d;
}

/*メインコンテンツ*/

.imgcontent{
 max-width: 90%;
 top:40%;
 font-size: 1.5em;
}

/*フッター*/
#nav ul{
 display: inline-block;
}
#nav li{
 display: inline-block;
 width: 160px;
}

}



/*///////////////////////////////////////
スティッキーフッター
///////////////////////////////////////*/
.sticky-footer {
 position: fixed;
 bottom: 0;
 left: 0;
 width: 100%;
 display: flex;
 z-index: 9999;
 background: #00479d;
 color: #fff;
}

.sticky-footer-btn {
 flex: 1;
 text-align: center;
 padding: 12px 0;
 font-size: 1.3rem;
 font-weight: bold;
 color: #fff;
 text-decoration: none;
 transition: background 0.3s;
}

.sticky-footer-btn.call {
 background-color: #0072ce;
}
.sticky-footer-btn.mail {
 background-color: #00a2e8;
}

.sticky-footer-btn:hover {
 opacity: 0.8;
}

/* アイコンとか付けたい場合は :before とかで追加可能 */

/* スマホだけ表示 */
@media screen and (min-width: 768px) {
  .sticky-footer {
    display: none;
  }
}




/*///////////////////////////////////////
インデックス
///////////////////////////////////////*/
.aboutWrap{
 display: grid;
 grid-template-columns: 600px 1fr;
 align-items: center;
 text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
 gap: 50px;
}
@media screen and (max-width: 768px){
.aboutWrap{
 display: block;
}
}
.aboutTxt{
 display: block;
 line-height: 1.8;
}
.aboutTxt h3{
 display: block;
 font-size: 2.2em;
 margin-bottom: 0;
}
.slide-in {
 opacity: 0;
 transform: translateX(-50px);
 transition: all 0.6s ease-out;
}
.slide-in.visible {
 opacity: 1;
 transform: translateX(0);
}

@media screen and (max-width: 768px){
.aboutTxt h3{
 font-size: 1.5em;
}
}

/*縦スライダー*/
.slider-content{
  display: flex;
  align-items: center;
  height: 600px;
  width: 100%;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}
.swiper{
  height: 100%;
  width: calc(50% - 10px);
  position: absolute!important;
  &.downup{
    left: 0;
    top: 0;
  }
  &.updown{
    left: calc(50% + 10px);
    top: 0;
  }
}
/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}
/* 画像のサイズ調整 */
.swiper-slide {
  img {
    height: 100%;
    width: 150%;
    /*margin-left: -25%;*/
    max-width: none;
    object-fit: cover;
    /*transform: skew(10deg);*/
  }
}
@media screen and (max-width: 767px) {
  .slider-content {
    flex-direction: column;
    height: auto;
  }
  .swiper {
    width: 100% !important;
    height: 300px;
    position: static !important;
  }
  .updown{
   display: none;
  }
}


.topmenu {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
.topmenu {
 display: block;
}
}

.topmenu-inner {
 position: relative;
 overflow: hidden;
 cursor: pointer;
 display: block;
}

.topmenu-inner img {
 width: 100%;
 height: auto;
 display: block;
 transition: transform 0.5s ease;
}

.topmenu-inner::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 71, 157, 0.4);
 z-index: 1;
 transition: background-color 0.3s ease;
}

.topmenu-text {
 position: absolute;
 top: 50%;
 left: 50%;
 z-index: 2;
 transform: translate(-50%, -50%);
 color: #fff;
 font-weight: bold;
 font-size: 2em;
 pointer-events: none;
 margin: 0;
 line-height: 1;
 text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

.topmenu-inner:hover img {
 transform: scale(1.1);
}

.topmenu-inner:hover::before {
 background-color: rgba(0, 71, 157, 0.6);
}



.service-wprap{
 display: flex;
 padding-left: 0;
 margin: 0 auto;
 flex-wrap: wrap;
}
.service-wprap li{
 display: grid;
 grid-template-columns: 60px 1fr;
 gap: 15px;
 align-items: center;
 list-style: none;
 text-align: left;
 width: calc(100%/4);
}
.service-wprap li span{
 display: block;
 font-size: 60px;
 color: #3db9ec;
 font-weight: bold;
 transform: scale(0.8, 1);
}
.service-wprap li h3{
 color: #00479d;
 margin: 0;
}
.service-wprap div p{
 margin: 0;
 font-size: 0.9em;
}

.carlist{
 display: grid;
 grid-template-columns: repeat(4,1fr);
 gap: 10px;
 text-align: center;
}
.carlist div{
 display: flex;
 align-items: center;
 justify-content: center;
 background: #00479d;
 padding: 10px;
 color: #fff;
 font-weight: bold;
}

@media screen and (max-width: 767px) {
.service-wprap{
 margin-bottom: 70px;
}
.service-wprap li {
 display: block;
 width: calc(100%/2);
 text-align: center;
}
.carlist{
 grid-template-columns: repeat(2,1fr);
}
}


/*リクルート*/
.rectitle{
 display: block;
 background: #fff;
 padding: 20px 0px;
 width: 500px;
 max-width: 100%;
 color: #333;
 text-align: center;
 font-size: 3em;
 border: 1px solid #00459B;
 border-top: 15px solid #00459B;
}
.rectitle span{
 display: block;
 font-size: 0.6em;
 color: #00459B;
}

.recsubtitle{
 display: block;
 margin: 0px auto;
 padding-top: 60px;
 text-align: center;
 font-size: 1.5em;
 color: #00459B;
 font-weight: bold;
}

.rectxt{
 display: block;
 margin: 30px auto;
}



/*///////////////////////////////////////
プライバシーポリシー
///////////////////////////////////////*/
.privacy_h3{
 display: block;
 background-color: #0b52a0;
 text-align: left;
 font-size: 1.2em;
 color: #fff;
 margin: 30px auto 0px;
 padding: 10px;
}


/*///////////////////////////////////////
フッターメニュー
///////////////////////////////////////*/
.footerMenu{
 text-align: left;
}
.footerMenu ul{
 display: flex;
 list-style: none;
 padding-left: 0;
}
.footerMenu li{
 display: block;
 margin: 0 20px;
}
.footerMenu  > li > a{
 display: block;
 padding: 0 15px;
 line-height: 40px;
 color: #00459B;
 font-size: 15px;
 text-decoration: none;
}

.footerMenu i{
 vertical-align: middle;
}

@media screen and (max-width: 767px){
.footerMenu ul{
 display: block;
}
}



/*///////////////////////////////////////
会社概要
///////////////////////////////////////*/
/* タイムライン全体 */
.timeline {
  position: relative;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* 縦の線 */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3px;
  width: 2px;
  height: 100%;
  background: #ccc;
}

/* 各項目 */
.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 2rem;
}

/* 丸アイコン */
.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -14px;
  width: 16px;
  height: 16px;
  background: #35BFF1;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #35BFF1;
}

/* 日付部分 */
.timeline-date {
  font-weight: bold;
  color: #013366;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.timeline-date div{
  font-weight: bold;
  color: #013366;
  font-size: 2em;
  font-style: italic;
}

/* コンテンツ部分 */
.timeline-content {
  background: #fff;
  padding: 1rem 1.2em;
  border-radius: 8px;
}

.timeline-content h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #013366;
}



/*///////////////////////////////////////
業務内容
///////////////////////////////////////*/
.service-wrap{
 display: grid;
 grid-template-columns: 250px 1fr;
 gap: 30px;
 align-items: start;
 margin-bottom: 30px;
}
.service-wrap h3{
 color: #00479d;
 border-bottom: 2px solid #00479d;
 margin-top: 0;
}

.sercice-wrap-full{
 display: grid;
 grid-template-columns: repeat(2,1fr);
 gap: 30px;
 align-items: start;
}

@media screen and (max-width: 767px){
.service-wrap{
 display: block;
}
.sercice-wrap-full{
 display: block;
}
}


/*///////////////////////////////////////
保有車両
///////////////////////////////////////*/
.hoyu{
 display: grid;
 grid-template-columns: 400px 1fr;
 gap: 30px;
}
@media screen and (max-width: 767px) {
.hoyu{
 display: grid;
 grid-template-columns: 1fr;
}
}
