@charset "UTF-8";

/* @media screen and (min-width:1024px) { */
/* 画面サイズが1024px以上の場合ここの記述が適用される */


html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-padding-top: 15em;
}

*:before, *:after { 
  box-sizing: inherit;
}

body {
  /* フォントサイズが最小16pxから最大20pxに自動変倍 */
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem); 
  color: #333333;
  background-color: #ffffff;
  font-family: 'Noto Sans JP', sans-serif, 'Noto Serif JP', serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic" , Sans-Serif, 'M PLUS Rounded 1c', sans-serif, 'Kosugi Maru', sans-serif;
}

.inner {
  width: 1080px;
  max-width: 100%;
  margin: 0 auto;
}

h2 {
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: 400;
  font-size: 6rem;
  line-height: normal;
  text-align: center;
  letter-spacing: 1rem;
  text-indent: 1rem;
}

h3 {
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: normal;
  text-align: center;
  letter-spacing: 0.2rem;
}

h4 {
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: normal;
  text-align: left;
  letter-spacing: 0.2rem;
}

p {
  font-family: 'Noto Sans JP', sans-serif,'ヒラギノ角ゴ Pro';
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: justify;
  letter-spacing: 0.2rem;
  color: rgb(59, 59, 59);
}

a {
  color: #333;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}
  
*, *::before, *::after {
  box-sizing:border-box;
}

.clearfix::after {
  content:'';
  display:block;
  clear:both;
}

ul li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  margin: 3px auto;
  table-layout: fixed;
  width: 100%;
}

input {
  cursor: pointer;
}

.orverflow {
  /* service.htmlのウィンドウ幅からはみ出す画像を非表示にするため */
  overflow: hidden;
}


/* 　ボタン　 -----------------------------------------　*/

button {
 position: relative;
 display: inline-block;
 cursor: pointer;
 outline: none;
 border: 0;
 vertical-align: middle;
 text-decoration: none;
 background: transparent;
 padding: 0;
 font-size: inherit;
 font-family: inherit;
}


button.learn-more {/* 青いバーの横幅 */
 width: 22rem;
 height: auto;
}

button.learn-more .circle {/* 青いバーのマル */
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: relative;
 display: block;
 margin: 0;
 width: 5rem;
 height: 5rem;
 background: #06649D;
 border-radius: 5rem;
}

button.learn-more .circle .icon {/* 矢印の位置　*/
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0rem;
 bottom: 0;
 margin: auto;
 background: #fff;
}

button.learn-more .circle .icon.arrow {/* 矢印の横棒　*/
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 left: 1rem;
 width: 3rem;
 height: 0.2rem;
 background: none;
}

button.learn-more .circle .icon.arrow::before {/* 矢印の先　*/
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 content: "";
 top: -0.8rem;
 right: 1rem;
 width: 1.8rem;
 height: 1.8rem;
 border-top: .2rem solid #fff;
 border-right: .2rem solid #fff;
 transform: rotate(45deg);
}

button.learn-more .button-text {/* くわしく見るの文字　*/
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 font-size: 2rem;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 padding: 0.75rem 0;
 margin: 0 0 0 4rem;
 color: #06649D;
 font-weight: 700;
 line-height: 1.6;
 text-align: center;
 text-transform: uppercase;
}

button:hover .circle {
 width: 100%;
}

button:hover .circle .icon.arrow {
 background: #fff;
 transform: translate(1rem, 0);
}

button:hover .circle .icon.arrow::before {/* ボバー時の矢印の横棒のズレ調整　*/
  right: 0.1rem;
 }

button:hover .button-text {
 color: #fff;
}

.contact-btn {
  position: relative;
  display: block;
  margin: 0;
  width: 15rem;
  height: 4rem;
  background: #06649D;
  border: solid 3px #06649D;
  border-radius: 5rem;
  padding-top: 8px;
  margin-top: 10px;
  text-align: center;
  transition: all 0.3s;
  margin-left: 20px;
}

.contact-btn a {
  color: #fff;
  font-size: 1.7rem;
}

.contact-btn:hover {
  background: #fff;
  border: solid 3px #06649D;
}

.contact-btn a:hover {
  color: #06649D;
}

.sp {
  display: none;
}

.tab {
  display: none;
}

/* 空き調整用 */
.h50 {
  margin-bottom: 50px;
}


/* アニメーションまとめ　-------------------------------------------- */

.fadeIn {
  animation: fadein 1s forwards;
}

@keyframes fadein {
  0% {opacity: 0}
  100% {opacity: 1}
}

/* 下からから */
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
   
  .fadeUpTrigger{
      opacity: 0;
  }
  
/* 左から */

.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeLeftAnime{
    from {
      opacity: 0;
    transform: translateX(-100px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
   
  .fadeLeftTrigger{
      opacity: 0;
  }



/* Delightersの設定-------------------------------------------- */
/* 基本のスタイル */
.delighter {
  transition: all 0.5s ease-out;
  transform: translateY(5%);
  opacity: 0;
}

/* スタート時のスタイル */
.delighter.started {
  transform: none;
  opacity: 1;
}

/* エンド時のスタイル */
/* .delighter.started.ended { } */


.delighter.right { transform:translate(-100%); opacity:0; transition: all 1s ease-out; }
.delighter.right.started { transform:none; opacity:1; }

.delighter.left { transform:translate(100%); opacity:0; transition: all 1s ease-out; }
.delighter.left.started { transform:none; opacity:1; }

.delighter.bottom { transform:translateY(50%); opacity:0; transition: all 2s ease-out; }
.delighter.bottom.started { transform:none; opacity:1; }

/* Delightersの設定-------------------------------------------- */


/* 青い線　-------------------------------------------- */
.lineTop{
  position: relative;
  padding-bottom: 100px;
  margin: 0 calc(100% - 100vw);
  width: 100vw;
  height: 1px;
}

.lineTop::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1285c5;
  z-index: 9;
  transform: scaleX(0);
  transition: 2s;
  transition-delay: 0.2s;
}
.lineTop.is-show::before{
  transform: scaleX(1);

  margin: 0 calc(50% - 50vw);
}

  

/* =========================================
   header
========================================= */
.pageHeader {
  box-sizing: border-box;
  position: fixed;
  display: flex;
  justify-content: space-between;
  height: 80px;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  z-index: 100;
  box-shadow: 0px 6px 3px -3px rgba(0, 0, 0, .1);
}

.logo {
  display: flex;
  margin-left: 0;
  padding-right: 5rem;;
}

.logo img {
  width: 85%;
}

.header-nav{
  display: flex;
  flex-wrap: wrap;/*スマホ表示折り返し用なのでPCのみなら不要*/
  list-style: none;
  margin-top: 10px;
}

.header-nav li a{
  display: block;
  font-size: 1.8rem;
  letter-spacing: .1em;
  padding:10px 30px;
  text-decoration: none;
  color: #333;
}

/*==================================================
　Navのホバー設定
===================================*/

/*背景の設定*/

.header-nav li a{
  /*背景色の基点とするためrelativeを指定*/
position: relative;
}

.header-nav li a::after {
content: '';
  /*絶対配置で線の位置を決める*/
position: absolute;
z-index: -1;
top: -20px;
left: 0;
  /*背景の形状*/
width: 0;
height:80px;
background:#06649D;
  /*アニメーションの指定*/
transition:all .5s;
opacity: 0;/*はじめは透過0*/
}

/*現在地とhoverの設定*/
.header-nav li a:hover::after {
  /*背景の形状*/
width: 100%;/*横幅を伸ばす*/
opacity: 1;/*不透明に*/
}

.header-nav li a:hover{
  color: #fff;
}



/* =========================================
   footer
========================================= */
#footer {
  box-sizing: border-box;
  width: 100%;
  background: #004671;
}

footer .inner {
  color: white;
  margin: 0 auto;
  border-radius: 0;
}

.footer-wrap {
  width: 100%;
} 

.footer-left--container {
  width: 50%;
}

.companyName {
  position: relative;
  font-size: 4rem;
  margin: 20px 0;
}

.footerLogo {
  width: 25%;
}

.footerLogo-wrap h4 {
  text-align: left;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  font-size: 2.5rem;
}

.companyName h1 {
  margin-bottom: 15px;
}

.companyName h3 {
  font-size: 4rem;
  color: #fff;
  text-align: left;
  letter-spacing: 0.5rem;
}

.footer-right--container {
  width: 60%;
}

.nav-wrap {
  position: relative;
}

.footer-nav {
  position: absolute;
  justify-content: flex-end;
  width: 570px;
  height: 90px;
  padding: 37px 30px;
  margin-bottom: 100px;
  background: #fff;
  border-radius: 0 0 20px 20px;
  will-change: transform;
}

.footer-nav ul {
  display: inline-block;
  margin: 0 50px 0 50px;
  line-height: 50%;
}

.footer-nav li {
  margin-bottom:20px;
  padding: 0 1rem;
}

.footer-nav li a {
  position: relative;
  font-size: 1.8rem;
  color: #333;
}

.footer-nav li a:hover {
  color:#06649D;
  font-weight: bold;
}

.footer-nav li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -5px;
  left: 0%;
  /*線の形状*/
  width: 100%;
  height: 2px;
  background:#06649D;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: left top;/*左上基点*/
}

.footer-nav li a:hover::after{
  transform: scale(1, 1);/*X方向にスケール拡大*/
}


.address {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin-top: 100px;
  margin-left: 30px;
}
.address th, .address td {
  font-size: 1.8rem;
  padding: .4em;
  text-align: left;
}

.address th {
  color: #fff;
  font-weight: bold;
}

.address th:first-child {
  width: 200px;
}

.copyright {
  text-align: center;
  padding-bottom: 10px;
  font-size: 1.3rem;
  letter-spacing: .075em;
  color: #fff;
}

.counter {
  text-align: center;
}

/* =========================================
   TOP　MV
========================================= */
.flex {
  display: flex;
}

.mv, .kasouTtl {
  display: block;
  padding-top: 80px;
}

.mv-wrap {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.mvImg {
  position: absolute;
  background: url(img/mv.jpg);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  border-radius: 0 0 0 80px;
  width: 50%;
  height: 70%;
  margin-bottom: 20px;
  right: 0;
}

.mainCopy {
  position: absolute;
  top: 20%;
  left: 150px;
  width: 50%;
  margin-left: 30px;
  font-family: 'Kosugi Maru', sans-serif;
  line-height: 7vh;
  font-size: clamp(3rem, 2.67rem + 2.27vw, 8rem);
  text-align: left;
  letter-spacing: 1rem;
  padding: 1rem;
  filter: drop-shadow(0px 0px 10px #f6f4ea);
  -moz-text-shadow: 0px 0px 17px rgba(255, 255, 255, 1);
  -webkit-text-shadow: 0px 0px 17px rgba(255, 255, 255, 1);
  -ms-text-shadow: 0px 0px 17px rgba(255, 255, 255, 1);
  text-shadow: 0px 0px 17px rgba(255, 255, 255, 1);
  text-indent: 0rem;
}

.mvBg {
  position: absolute;
  top: 300px;
  left: 0%;
  background-color: #FFFDE7;
  border-radius: 0 80px 0 0;
  width: 40vw;
  height: 800px;
  z-index: -1;
}

.trackAnimation-wrap {
  margin-top: -180px;
  width: 100%;
  margin-bottom: 200px;
  overflow: hidden;
}

/*トラックのアニメーション----------------------------*/

/*　右から左へ　*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}

/*
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.track-images {
  display: -ms-grid;
  overflow: hidden;
}
/*----------------------------*/

.track-images-wrap {
  display: flex;
  overflow: hidden;
}

.track-images-list {
  display: flex;
  list-style: none;
}

.track-images-list--left{
animation :infinity-scroll-left 40s infinite linear 0.5s both;
}

.track-images_item {
  width: calc(100vw / 3);
}
.track-images_item > img{
   width: 100%;
}
/*トラックのアニメーション----------------------------*/

.vegImages-container {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 50vh;
}

[class*="vegImg"] {
  width: calc(100% / 3);
}

.vegImgLeft {
  background: url(img/img-top-veg-left.jpg);
  border-radius: 0 0 0 60px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.vegImgCenter {
  background: url(img/img-top-veg-center.jpg);
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.vegImgRight {
  background: url(img/img-top-veg-right.jpg);
  border-radius: 0 0 60px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

/* scroll top */
#page-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
  filter: drop-shadow(0px 0px 8px rgba(0,0,0,0.4));
}

#page-top img {
  width: 75px;
  transition: all 0.2s;
}

#page-top img:hover {
  cursor: pointer;
  transform: scale(1.2, 1.2);
}
/* scroll top ここまで*/

/* =========================================
   TOP　Service
========================================= */

.service {
  margin-bottom: 200px;
}

.topContents-wrap  {
  width: 100%;
  margin-bottom: 70px;
}

.ttl-container {
  position: relative;
  width: 45%;
  margin-left: 70px;
}

.contentTtl {
  position: relative;
  border-bottom: 6px solid #06649D;
  width: 300px;
  padding-bottom: 30px;
}

.contentTtl::after {
  content: attr(data-en);
  display: block;
  position: absolute;
  top:140%;
  left:50%;
  transform: translate(-50%,-50%);
  margin-top: 10px;
  color: #06649D;
  font-size: 20px;
}

.txt-container {
  position: relative;
  width: 40%;
}

.trackImg {
  position: absolute;
  top: -60px;
  left: -90px;
  min-width: 850px;
  z-index: -1;
  opacity: .2;
}

.threeImages-container {
  margin: 0 calc(50% - 50.5vw);
  width: 100vw;
  height: 300px;
  margin-bottom: 150px;
}

[class*="serviceImg"],[class*="companyImg"],[class*="newopenImg"] {
  width: calc(100% / 3); 
}

.serviceImgLeft {
  background: url(img/img-top-service-left.jpg);
  border-radius: 0 30px 30px 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.serviceImgCenter {
  background: url(img/img-top-service-center.jpg);
  border-radius: 30px;
  margin: 0 15px;
  background-size: cover;
  background-repeat: no-repeat;
}

.serviceImgRight {
  background: url(img/img-top-service-right.jpg);
  border-radius: 30px 0 0 30px;
  background-size: cover;
  background-repeat: no-repeat;
}

.txt {
  margin-bottom: 30px;
}

/* =========================================
   TOP　Company
========================================= */
.companyImgLeft {
  background: url(img/img-top-company-left.jpg);
  border-radius: 0 30px 30px 0;
  background-position: center;
  background-size: cover;
}

.companyImgCenter {
  background: url(img/img-top-company-center.jpg);
  border-radius: 30px;
  margin: 0 15px;
  background-position: center;
  background-size: cover;
}

.companyImgRight {
  background: url(img/img-top-company-right.jpg);
  border-radius: 30px 0 0 30px;
  background-position: center;
  background-size: cover;
}

/* =========================================
   TOP　Recruit & Contact
========================================= */
.recruit-contact {
  position: relative;
  z-index: 1;
  height: 450px;
  width: 100%;
  background: url(img/bg_gaikan.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

/* 背景の外観を透かすための擬似要素 */
.recruit-contact::after{
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height:100%;
  top: 0;
  left: 0;
  background-color: white;
  opacity: 0.5;
}

.recruit-contact--container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 15px;
  object-fit: cover;
  background:  #06649D;
  border-radius: 20px;
  z-index: 3;
}

.recruit-contact--container img {
  opacity: 0.3  ;
  transition-duration: 0.3s;
}

.recruit-contact--container:hover img{
  opacity: 0.8;
  transform: scale(1.1);
  transition-duration: 0.3s;
}

.contentTtl2 {
  color: #fff;
  position: absolute;
  top:45%;
  left:50%;
  transform: translate(-50%,-50%);
  border-bottom: 4px solid #ffff;
  width: 28rem;
  padding-bottom: 18px;
  text-align: center;
  filter: drop-shadow(0px 0px 6px rgba(0,0,0,0.75));
}

.contentTtl2::after {
  content: attr(data-en);
  display: block;
  position: absolute;
  top:140%;
  left:50%;
  transform: translate(-50%,-50%);
  margin-top: 10px;
  color: #ffff;
  font-size: 20px;
}


/* =========================================
   下層ページ　Service
========================================= */


.kasouTtl-wrap {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.ttlImg {
  position: absolute;
  width: 50%;
  height: 500px;
  margin-bottom: 20px;
  right: 0;
}

.ttlImg img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0 0 0 80px;
}

.ttlPosition {
  position: absolute;
  top: 20vh;
  left: 15vw;
}

.ttlEyecatch {
  display: block;
  position: absolute;
  top: -48px;
  left: -68px;
  border-radius: 90px;
  width: 170px;
  height: 170px;
  z-index: -1;
  overflow: hidden;
  opacity: 0.15;
}

.ttlEyecatch img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/* リボン  ----------------------------*/
.kiran-effect {
  position: relative;
  overflow: hidden;
}

.ribbon {
  display: block;
  position: relative;
  width: 850px;
  height: 80px;/*高さ*/
  line-height: 80px;/*高さ*/
  text-align: center;
  padding: 0 40px 0 18px;/*文字の左右の余白*/
  font-size: 4.5rem;/*文字サイズ*/
  background: #E53935;/*背景色*/
  color: #FFF;/*文字色*/
  box-sizing: border-box;
  margin-bottom: 50px;
}

.ribbon:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
  top: 0;
  right: 0;
  border-width: 40px 30px 40px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

 /* 赤いリボンの光るアニメーション */
.kiran {
	height:80px;
	width:30px;
	position:absolute;
	top:-180px;
	left:0;
	background-color: #fff;
	opacity:0;
	transform: rotate(45deg);
	animation: reflection 5s ease-in-out infinite;
	-webkit-transform: rotate(45deg);
	-webkit-animation: reflection 5s ease-in-out infinite;
	-moz-transform: rotate(45deg);
	-moz-animation: reflection 5s ease-in-out infinite;
	-ms-transform: rotate(45deg);
	-ms-animation: reflection 5s ease-in-out infinite;
	-o-transform: rotate(45deg);
	-o-animation: reflection 5s ease-in-out infinite;
}
@keyframes reflection {
	0% { transform: scale(0) rotate(45deg); opacity: 0; }
	10% { transform: scale(0) rotate(45deg); opacity: 0.5; }
	20% { transform: scale(4) rotate(45deg); opacity: 1; }
  41% { transform: scale(50) rotate(45deg); opacity: 0; }
  100% { transform: scale(0) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
	0% { transform: scale(0) rotate(45deg); opacity: 0; }
	10% { transform: scale(0) rotate(45deg); opacity: 0.5; }
	20% { transform: scale(4) rotate(45deg); opacity: 1; }
  41% { transform: scale(50) rotate(45deg); opacity: 0; }
  100% { transform: scale(0) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
	0% { transform: scale(0) rotate(45deg); opacity: 0; }
	10% { transform: scale(0) rotate(45deg); opacity: 0.5; }
	20% { transform: scale(4) rotate(45deg); opacity: 1; }
  41% { transform: scale(50) rotate(45deg); opacity: 0; }
  100% { transform: scale(0) rotate(45deg); opacity: 0; }
}


.kasou-contents-wrap {
  margin: 0 0 100px 0;
}

.kasou-txt-container {
  width: 55%;
  margin-right: 70px;
}

.kasou-txt-container h3 {
  font-size: 3rem;
  text-align: left;
  line-height: 4rem;
  margin-bottom: 50px;
}

.souko-info li {
  font-size: 2.2rem;
  line-height: normal;
  margin-bottom: 30px;
  border-left: #06649D solid 1.5rem;
  padding-left: 20px;
}

.img-container {
  width: 600px;
  height: 350px;
}

.img-container img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.img-container p {
  text-align: right;
  letter-spacing: normal;
  padding-right: 1.5rem;
}

.newopenImgLeft {
  background: url(img/img-services-new-open2.jpg);
  border-radius: 0 30px 30px 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.newopenImgCenter {
  background: url(img/img-services-new-open3.jpg);
  border-radius: 30px;
  margin: 0 15px;
  background-size: cover;
  background-repeat: no-repeat;
}

.newopenImgRight {
  background: url(img/img-services-new-open4.jpg);
  border-radius: 30px 0 0 30px;
  background-size: cover;
  background-repeat: no-repeat;
}

.souko-txt-container {
  width: 50%;
}

.services-souko-h4 {
  font-size: 3rem;
  line-height: 4.5rem;
}

.services-souko-h3 {
  font-size: 4rem;
  line-height: 4.5rem;
  text-align: left;
  letter-spacing: 0.8rem;
  margin-bottom: 30px;
}

.underline {
  font-size: 4rem;
  line-height: 4.5rem;
  text-align: left;
  letter-spacing: 0.8rem;
  background: linear-gradient(transparent 60%, yellow 30%)
}

.img-container2 {
  position: relative;
  width: 400px;
  height: 300px;
  margin: 0 0 0 auto;
}

.img-container2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.img-container2::after {
  display: block;
  position: absolute;
  top: 100px;
  left: -280px;
  content: "";
  background: url(img/img-services-tochigi_map.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 350px;
  height: 350px;
  z-index: -1;
  overflow: hidden;
}

.souko-txt-area {
  width: 80%;
}

.souko-img-wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}

.soukoItem {
  position: relative;
  width: 30%;
  margin-bottom: 20px;
  padding: 10px;
  box-sizing: border-box;
}

.soukoItem h4 {
  margin-bottom: 20px;
}

.soukoImg {
  width: 300px;
  height: 200px;
  margin-bottom: 30px;
}

.soukoImg img {
  border-radius: 20px;
}

.soukoImgTtl {
  margin-bottom: 15px;
}

.soukoIcon {
  display: block;
  position: absolute;
  top: 270px;
  left: 170px;
  content: "";
  width: 180px;
  height: 180px;
  z-index: -1;
  opacity: 0.15;
}

.services-contents-container {
  position: relative;
  margin-bottom: 100px;
  width: 100%;
}

.services-contents-ttl {
  font-size: 4.5rem;
  letter-spacing: 0.5rem;
  margin: 100px 50px;
}

.services-contents-ttl-wrap {
  position: relative;
  padding-bottom: 80px;
}

.services-contents-ttl::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100px;/*線の上下位置*/
  display: inline-block;
  width: 300px;/*線の長さ*/
  height: 6px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #06649D;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}

.services-contents-ttl::after {
  content: attr(data-num);
  display: block;
  position: absolute;
  top: 0;
  left:50%;
  transform: translate(-50%,-50%);
  color: #35ACF4;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 20rem;
  opacity: 0.2;
  z-index: -1;
}

.services-contents-info-wrap,
.contents-add-info {
  width: 85%;
  margin: 0 auto 50px;
  justify-content: space-between;
}

.services-contentsTxt {
  width: 45%;
}

.services-contentsTxt p {
  margin-bottom: 30px;
}

.services-contentsImg {
  width: 50%;
  text-align: right;
}

.services-contentsImg img {
  border-radius: 20px;
}

.contents-add-info, .infoList {
  padding: 30px;
  background: #FFFDE7;
  border: 3px solid #E0B113;
  border-radius: 20px;
}

.add-info-txt {
  display: inline-block;
  width: 50%;
  margin-right: 30px;
}

.add-info-ttl {
  width: 100%;
  background: #06649D;
  border-radius: 30px;
  margin-right: 30px;
}

.add-info-txt h4 {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.add-info-txt p {
  padding:  20px 40px;
}

.add-info-img {
  display: block;
  justify-content: space-between;
  width: 45%;
}

.add-info-img img {
  width: 100%;
  border-radius: 10px;
}

.services-contentsTxt h3 {
  text-align: left;
  margin-bottom: 30px;
}

.infoList{
  position: relative;
}

.infoList li {
  font-size: 1.8rem;
  line-height: 2.5rem;
  padding: 0 0 20px 40px;
}

.infoList li:last-child {
  padding: 0 0 0 40px;
}

.infoList li::before {
  position: absolute;
  left: 20px;
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image:url(img/circle-chevron-right-solid.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  padding-left: 20px;
}

.haisou-img-wrap {
    width: 100%;
    justify-content: space-between;
  }

.haisouImg {
  width: 30%;
}

.bgObject1 {
  position: absolute;
  top: -60em;
  left: -350em;
  border-radius: 100px;
  z-index: -10;
}

.bgObject2 {
  position: absolute;
  top: -60em;
  right: -350em;
  border-radius: 100px;
  z-index: -10;
  overflow: hidden;
}

.bgObject1 img, .bgObject2 img, .bgObject3 img {
  width: 700px;
  height: 700px;
  border-radius: 500px;
  opacity: 0.2;
}

/* =========================================
   下層ページ　Company
========================================= */



/* サイドバー  ----------------------------*/

.company-contents-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.main_content {
  background: #e0efff;
  margin-left: 100px;
  height: 5000px;
}

/* .company-contents-wrap {
  background: white;
} */

.main_content p {
  font-size: 20px;
}

.side {
  width: 20%;
  z-index: 100;
  margin-right: 3%;
}

.side_content {
  position: sticky;
  width: 100%;
  top: 150px;
  background: #FFFDE7;
  padding: 50px;
  border-radius: 0 30px 30px 0;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.4));
  transform: translateZ(0);
}

.side-list {
  width: 100%;
  margin: 0 auto;
}

.side-list li {
  position: relative;
  font-family: 'Kosugi Maru', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5rem;
  font-size: 2.5rem;
  margin: 0 0 5rem 0;
  padding-left: 6rem;
}

.side-list li:last-child {
  margin-bottom: 0;
  border-bottom: #06649D solid 0px;
  padding-bottom: 0rem;
}

.side-list li::before {
  position: absolute;
  left: 0px;
  content: "";
  display: inline-block;
  width: 4rem;
  height: 5rem;
  background-image:url(img/ico_track.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  padding-left: 20px;
}

.side-list li::after {
  content: '';
  position: absolute;
  left: 0%;
  bottom: -24px;/*線の上下位置*/
  display: inline-block;
  width: 100%;
  height: 2px;/*線の太さ*/
  background-color: #06649D;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}

.side-list li:last-child::after {
  height: 0px;/*線の太さ*/
}

.company-contents-wrap {
  width: 75%;
}

.greeting-contents-wrap,
.gaiyou-contents-wrap,
.access-contents-wrap {
  margin: 0 200px 100px 100px;
}

.company-contents-ttl {
  position: relative;
  font-size: 4.5rem;
  text-align: left;
  letter-spacing: 0.5rem;
  padding: 5rem 0 10px 3rem;
  border-left: 10px solid #06649D;
  margin-bottom: 80px;
}

.company-contents-ttl::before {
  content: attr(data-en);
  display: block;
  position: absolute;
  top:0%;
  margin-top: 10px;
  color: #06649D;
  font-size: 2rem;
  font-weight: bold;
}

.greeting-txt-img-wrp  {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.greeting-txt {
  margin: 0 5rem 0 0;
}

.greeting-txt h3 {
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 5rem;
  line-height: 4rem;
}

.greeting-txt p {
  margin-bottom: 50px;
}

.img-president img {
  width: 100%;
  border-radius: 20px;
  filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.6));
  margin-bottom: 2rem;
}

.greeting-img p {
  text-align: right;
  font-weight: bold;
  font-family: serif;
  margin-bottom: 1rem;
}

.president-name {
  display: block;
  text-align: right;
}

.president-name img {
  width: 70%;
}

.gaiyou-table {
  width: 100%;
  margin: 0 auto 100px;
  font-weight: 300;
}

.gaiyou-table table th {
  border-bottom: solid 1px #06649D;
  padding: 30px 50px;
  width: 30%;
  text-align: left;
  vertical-align: top;
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  line-height: 3rem;
}

.gaiyou-table table th:nth-child(1){
  border-top: solid 1px #06649D;
}

.gaiyou-table table td{
  border-bottom: solid 1px #06649D;
  border-top: solid 1px  #06649D;
  padding: 30px 50px;
  width: 70%;
  text-align: left;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
}

.gaiyou-table table td li{
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  padding-left: 2rem;
}

.gaiyou-table table td li:before{
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #64B5F6;
  top: 1.6rem;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link a {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  color: #1285c5;
  padding: 0.2rem;
  margin-left: 4rem;
}

.link a:hover {
  color: #06649D;
}

.link a::before {
  position: absolute;
  left: -26px;
  top: 5px;
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  background-image:url(img/circle-chevron-right-solid.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  padding-left: 20px;
}

.link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image:url(img/arrow-up-right-from-square-solid.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 0.5rem;
  margin-bottom: 0.8rem;
}

.underLine::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #06649D;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
  z-index: -1;
}

.underLine:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.access-contents-wrap {
  margin-bottom: 150px;
}

.access-img-wrap {
  position: relative;
  margin-bottom: 80px;
}

.map {
  display: block;
  width: 80%;
  height: 400px;
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.access-img {
  position: absolute;
  top: -40%;
  right: 5%;
  border-radius: 50px;
}

.access-img img {
  width: 400px;
  height: 300px;
  border-radius: 20px;
  filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.6));
  object-fit: cover;
}

.gaiyou-table h4 {
  color: #06649D;
  padding: 0 0 10px 50px;
}

.googleMapLink a {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: #06649D;
  padding: 15px 0 10px 30px;
}

.googleMapLink a::before {
  position: absolute;
  top: 18px;
  left: 0px;
  content: "";
  display: inline-block;
  width: 2rem;
  height: 3rem;
  background-image:url(img/ico_location.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  padding-left: 20px;
}


/* =========================================
   下層ページ　Recruit
========================================= */

.contact-info-container  {
  position: relative;
  width: 70%;
  height: 300px;
  background-color: #fff;
  left: 50%;
  transform: translate(-50%);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 10;
}

.recruitLead {
  line-height: 5rem;
  margin-bottom: 100px;
}

.jobTtl h4{
  color: #fff;
  background-color: #06649D;
  padding: 15px 30px;
  margin-bottom: -3px;
}

.recruit-table {
  width: 100%;
}

.kyouchou {
  font-size: 1.8rem;
  font-weight: bold;
  background-color: yellow;
  line-height: 3rem;
}

.contentInfoTtl {
  margin: 0 auto;
  padding: 40px 0;
}

.contentInfoTtl h2 {
  font-size: 3.5rem;
  padding-bottom: 20px;
  letter-spacing: 0.3rem;
  font-weight: 600;
}

.contentInfoTtl p {
  text-align: center;
  font-size: 2rem;
  letter-spacing: normal;
}

.tel ul {
  font-size: 5rem;
  text-align: center;
}

.tel li {
  line-height: 100%;
  padding-bottom: 10px;
}

.tel a {
  font-size: 6rem;
  text-align: left;
}

.tel ul p {
  font-size: 2rem;
  text-align: center;
}


/* =========================================
   下層ページ　Contact
========================================= */
.contact {
  margin: 0 auto;
  display: block;
}

.contactLead h4{
  text-align: center;
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 100px;
}


.formWrap {
  width: 70%;
  margin: 0 auto 150px;
  color: #333333;
  line-height: 120%;
  font-weight: bold;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table.formTable td, table.formTable th {
  /* border: 1.5px solid #ccc; */
  padding: 1.5rem 1rem;
  font-size: 1.6rem;
}

table.formTable th {
  width: 30%;
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
}

.hissu {
  font-size: 1.4rem;
  color: #E64A19;
  padding-left: 10px;
}

.contactformBtn {
  -webkit-appearance: none;
  display: block;
  padding: 0.6rem 4rem 0.4rem;
  border-radius: 7px;
  border: none;
  border-bottom: 4px solid #06649D;
  background-color: #1285c5;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  margin-right: 2.5rem;
}
.contactformBtn:active {
  margin-top: 3px;
  background-color: #309bf2;
  border-bottom: 2px solid #006366;
}
/*
  =========================================
   お問い合わせありがとうございました
========================================= */
.toTopBtnWrap {
  position: relative;
  width: 100%;
  height: 100px;
}

.toTopBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  color: #ffff;
  background-color: #00B496;
  border: solid 3px #00B496;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 50px;
  /* ↓↓↓文字の天地センター寄せのため */
  display: flex;
  justify-content: center;
  align-items: center;
}

.toTopBtn:hover {
  background: #fff;
  color: #00B496;
  text-shadow: none;
}

.pageTtlEng_thanks {
  font-size: 3rem;
  color: #00B496;
  margin-bottom: 100px;
}
   





/* ----------------------------------------

  タブレット(ヨコ)

  タブレットが横の場合は、基本的にはPCサイズで表示


---------------------------------------- */
@media screen and (min-width: 200px) and (max-width: 1025px) and (orientation: landscape) {

  .inner {
    width: 90%;
  }

  .ttlPosition {
    left: 10vw;
  }

  .greeting-contents-wrap,
  .gaiyou-contents-wrap,
  .access-contents-wrap {
    margin: 0 80px 50px 50px;
  }

}


/* ----------------------------------------

   タブレット(タテ)

---------------------------------------- */
@media screen and (max-width: 768px) {
  /* 画面サイズが768px以下の場合ここの記述が適用される

/* @media screen and (min-width: 768px) and (max-width: 1024px) { */
  /* 画面サイズが768px〜1023pxまでここの記述が適用される */



/* =========================================
   タブレット　　下層ページ　Serices
========================================= */


/* =========================================
   タブレット　　下層ページ　Company
========================================= */

/* =========================================
   タブレット　　下層ページ　recruit
========================================= */

/* =========================================
   タブレット　　下層ページ　contact
========================================= */



}

/* ----------------------------------------

   スマホ

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

.sp {
  display: block;
}

.pc {
  display: none;
}

.inner {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  margin-top: 0;
  padding-left: 15px;
  padding-right: 15px;
}

/* scroll top */
#page-top {
  bottom: 30px;
  right: 30px;
}

#page-top img {
  width: 60px;
}

#nav-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  height: 32px;
  cursor: pointer;
  z-index: 1000;
}

#nav-toggle>div {
  position: relative;
  width: 36px;
}

#nav-toggle>div span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  transition: transform .3s ease, top .5s ease;
}

#nav-toggle>div span:nth-child(1) {
  top: 0;
}

#nav-toggle>div span:nth-child(2) {
  top: 14px;
}

#nav-toggle>div span:nth-child(3) {
  top: 28px;
}

.open #nav-toggle>div span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
  background: #fff;
}

.open #nav-toggle>div span:nth-child(2) {
  width: 0;
}

.open #nav-toggle>div span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
  background: #fff;
}

#header {
  width: 100%;
  height: 70px;
}

.logo img {
  width: 70%;
}

.header-nav {
  background: linear-gradient(-45deg, #06649D, rgb(7, 121, 192));
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50px;
  margin: 0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 1s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 0 0 0 20px;
}

.open #header .header-nav {
  transform: translateX(0) !important;
}

#header .header-nav ul {
  display: block;
}

#header .header-nav li {
  position: relative;
  margin: 0 !important;
  text-align: center;
  line-height: 4rem;
  transform: translateX(200px);
  transition: transform 1.3s ease;
}

.open #header .header-nav li {
  transform: translateX(0);
}

#header .header-nav ul>li {
  transition-delay: .15s;
}

#header .header-nav li h4 {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  font-size: 2.5rem;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin-bottom: 3rem;
  letter-spacing: 1rem;
  text-indent: 1rem;
  text-align: center;
}

#header .header-nav li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  font-size: 2rem;
}

.nav.line::before {
  display: none;
}

.mv, .kasouTtl {
  margin-top: -70px;
}

.mv-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.mvImg {
  display: block;
  background: url(img/mv.jpg);
  background-size: cover;
  background-position: right -20px bottom -20px;
  background-repeat: no-repeat;
  border-radius: 0 0 0 50px;
  width: 90%;
  height: 45%;
  margin-bottom: 20px;
  margin-left: 5rem;
}

.mainCopy {
  position: absolute;
  top: 47%;
  left: 0px;
  width: 100%;
  margin-left: 0px;
  font-family: 'Kosugi Maru', sans-serif;
  line-height: 7vh;
  text-align: left;
  letter-spacing: 1rem;
  padding: 1rem;
}


.mainCopy h2 {
  position: relative;
  width: 100%;
  margin-left: 8%;
  font-family: 'Kosugi Maru', sans-serif;
  line-height: 7vh;
  font-size: 5vh;
  text-align: left;
  letter-spacing: 0.5rem;
  text-indent: 0rem;
  padding: 0.5rem;
}

.track-images_item {
  width: calc(100vw / 1);
}

.vegImages-container {
  height: 25vh;
}

.vegImgLeft {
  border-radius: 0 0 0 20px;
}

.vegImgRight {
  border-radius: 0 0 20px 0;
}

.trackAnimation-wrap {
  margin-bottom: 150px;
}

.topContents-wrap  {
  flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
}

.ttl-container {
  width: 100%;
  margin-left: 0px;
  margin-bottom: 80px;
}

.ttl-container h2 {
  font-size: 4rem;
}

.ttlEyecatch {
  top: -59px;
  left: 9px;
  width: 150px;
  height: 150px;
  z-index: -1;
}

.contentTtl {
  border-bottom: 3px solid #06649D;
  width: 231px;
  padding-bottom: 20px;
  margin: 0 auto;
}

.txt-container {
  width: 100%;
}

.txt {
  margin-bottom: 30px;
}

.trackImg {
  top: 81px;
  left: -13px;
  min-width: 372px;
  z-index: -1;
  opacity: .2;
}

.oneImage-container{
  margin-bottom: 30px;
}

.service-oneImg {
  width: 100%;
  height: 200px;
  background: url(img/img-top-service-left.jpg);
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
}

.learn-more-btn-sp {
  position: relative;
  display: block;
  margin: 0;
  width: 82%;
  height: 6rem;
  background: #06649D;
  border: solid 3px #06649D;
  border-radius: 5rem;
  padding-top: 15px;
  text-align: center;
  margin: 0 auto 30px;
}

.learn-more-btn-sp a {
  color: #FFF;
  font-size: 2.2rem;
}

.company-oneImg {
  width: 100%;
  height: 200px;
  background: url(img/img-top-company-center.jpg);
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
}

.recruit-contact--container {

  margin: 0 calc(50% - 50vw);
  width: 100vw;
  margin-bottom: 30px;
  border-radius: 0px;
}

.recruit-contact {
  height: 450px;
  background-size: contain;
}

.contentTtl2 {
  width: 20rem;
  padding-bottom: 15px;
  font-size: 2.5rem;
  border-bottom: 3px solid #ffff;
}

#footer {
  padding: 0px;
}

.footer-wrap {
  flex-direction: column;
  padding-top: 0;
  padding-bottom: 0;
}

.footer-right--container,
.footer-left--container {
  width: 100%;
}

.contact-info-container  {
  width: 100%;
  height: auto;
  padding: 30px 10px 20px;
  margin-top: 30px;
  color: #333;
}

.tel a {
  font-size: 4rem;
  text-align: left;
}

.contentInfoTtl {
  margin: 0 auto;
  padding: 0px 0 20px;
}

.footerLogo-wrap {
  flex-direction: column;
  margin: 30px auto 40px;
}

.footerLogo {
  width: 50%;
  margin: 0 auto;
}

.footerLogo-wrap h4 {
  padding: 0rem;
  text-align: center;
}

.companyName {
  margin-bottom: 30px;
}

.address {
  margin: 0 auto;
}

.address table {
  width: 100%;
  margin-top: 30px;
  margin-left: 0px;
}
.address th, .address td {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  padding: .4em;
  text-align: center;
}

.address th:first-child {
  width: 100%;
}

.copyright {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0px;
  padding-bottom: 10px;
}

/* =========================================
  スマホ　　下層ページ　Serices
========================================= */
.kasouTtl-wrap {
  position: relative;
  height: 400px;
}

.ttlImg {
  position: absolute;
  width: 90%;
  height: 300px;
  margin-bottom: 20px;
  right: 0;
}

.lineTop{
  padding-bottom: 50px;
}

.ribbon {
  width: 100%;
  line-height: 30px;/*高さ*/
  text-align: left;
  padding: 10px 40px 0 18px;/*文字の左右の余白*/
  font-size: 2.5rem;/*文字サイズ*/
  margin-bottom: 30px;
}

.kasou-contents-wrap {
  flex-direction: column-reverse;
}

.kasou-contents-wrap {
  margin: 0 0 50px 0;
}

.kasou-txt-container {
  width: 100%;
  margin-right: 0px;
}

.kasou-txt-container h3 {
  font-size: 5.5vw;
  text-align: left;
  line-height: 3rem;
  margin-bottom: 20px;
}

.souko-info li {
  font-size: 1.8rem;
  line-height: normal;
  margin-bottom: 30px;
  border-left: #06649D solid 1rem;
  padding-left: 10px;
}

.souko-info li:last-child {
  margin-bottom: 0px;
}

.img-container {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: auto;
  margin-bottom: 20px;
}

.img-container img {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  object-fit: cover;
}

.threeImages-container {
  flex-direction: column;
  width: 90%;
  height: 100%;
  margin: 0 auto 50px;
}

.newopenImgLeft,
.newopenImgCenter,
.newopenImgRight {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  margin: 0 auto 20px;
}

.img-container2 {
  position: relative;
  width: 100%;
  height: 250px;
  margin: 0 0 0 auto;
}

.souko-txt-container {
  width: 100%;
}

.services-souko-h4 {
  font-size: 2.5rem;
  line-height: 4rem;
}

.underline {
  font-size: 3rem;
  line-height: 4rem;
  letter-spacing: 0.1rem;
}

.services-souko-h3 {
  font-size: 3rem;
  line-height: 4rem;
  letter-spacing: 0.1rem;
  margin-bottom: 30px;
}

.img-container2 img {
  border-radius: 20px;
}

.souko-txt-area {
  width: 100%;
  margin-bottom: 30px;
}

.souko-img-wrap {
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 0px;
}

.soukoItem {
  width: 100%;
  padding: 0 0 50px 0;
}

.soukoImg {
  width: 100%;
}

.soukoItem h4 {
  margin-bottom: 30px;
}

.soukoImgTtl {
  margin-bottom: 50px;
  text-align: center;
}

.soukoImgTxt {
  margin-bottom: 30px;
}

.soukoIcon {
  top: -33px;
  left: 50%;
  transform: translate(-50%);
}

.img-container2 {
  margin-top: 70px;
  margin-bottom: 30px;
}

.img-container2::after {
  top: -270px;
  left: 178px;
  width: 182px;
}

.services-contents-ttl {
  font-size: 3rem;
  letter-spacing: 0.5rem;
  margin: 50px 0px 100px;
  line-height: 5rem;
}

.services-contents-ttl::before {
  bottom: -50px;/*線の上下位置*/
  width: 230px;
}

.services-contents-ttl::after {
  top: 10px;
  font-size: 15rem;
}

.services-contents-info-wrap {
  width: 100%;
  margin: 0 auto 50px;
  flex-direction: column-reverse;
}

.services-contents-ttl-wrap {
  position: relative;
  padding-bottom: 0px;
}

.services-contentsImg {
  width: 100%;
  margin-bottom: 30px;
}

.services-contentsTxt {
  width: 100%;
}

.contents-add-info {
  width: 100%;
  margin: -30px auto 50px;
  flex-direction: column;
}

.add-info-ttl {
  line-height: 2.8rem;
  margin-bottom: 10px;
}

.add-info-txt, .add-info-img {
  width: 100%;
}

.add-info-txt h4 {
  font-size: 2rem;
  padding: 10px;
}

.contents-add-info, .infoList {
  padding: 20px 10px;
}

.add-info-txt p {
  padding:  10px 10px 20px;
}

.services-contentsTxt h3 {
  font-size: 3rem;
  text-align: center;
}

.infoList li {
  padding: 0 0 20px 50px;
}

.infoList li:last-child {
  padding: 0 0 0 50px;
}

.haisou-img-wrap {
  flex-direction: column;
}

.haisouImg {
  width: 90%;
  margin: 0 auto 50px;
}

.services-contents-container {
  margin-bottom: 20px;
}

/* =========================================
  スマホ　　下層ページ　Company
========================================= */
.company-contents-wrap {
  position: relative;
  width: 100%;
  margin-top: 50px;
}

.greeting-contents-wrap,
.gaiyou-contents-wrap,
.access-contents-wrap {
  margin: 0px 15px 50px;
}

.company-contents-ttl-wrap {
  display: flex;
}

.company-contents-ttl {
  font-size: 3.5rem;
  padding: 4rem 50px 10px 2rem;
  margin-bottom: 50px;
}

.company-contents-ttl::before {
  top:-10%;
  padding-top: 10px;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}

.img-president {
  position: absolute;
  width: 35%;
  height: 50%;
  right: 0;
  top: -0.5%;
}

.img-president img {
  width: 100%;
  border-radius: 20px 0 0 20px;
}

.greeting-txt-img-wrp  {
  display: block;
  width: 100%;
}

.greeting-txt {
  margin: 0 0rem 0 0;
}

.greeting-txt h3 {
  margin-bottom: 3rem;
  line-height: 3.5rem;
}

.president-name-sp p {
  text-align: right;
  margin-bottom: 10px;
}

.president-name-sp img {
  margin-bottom: 50px;
  width: 50%;
}

.gaiyou-table table th,
.gaiyou-table table td {
  width:100%;
  display:block;
  text-align: center;
  padding: 15px 10px;
  letter-spacing: 0ex;
  border-bottom: 0;
}

.gaiyou-table table th {
  background: #CEE7F7;
}

.map {
  display: block;
  width: 100%;
  height: 100vh;
}

.gaiyou-table {
  margin-bottom: 0;
}

.gaiyou-table h4 {
  padding: 0 0 10px 0px;
}

.access-table table th,
.access-table table td {
  text-align: left;
  background: #fff;
}

.company {
  margin-bottom: 50px;
}

/* =========================================
  スマホ　　下層ページ　recruit
========================================= */
.recruitLead {
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 50px;
}

.contentInfoTtl h2 {
  font-size: 2.5rem;
}

.jobTtl h4{
  margin-bottom: 20px;
  line-height: 3rem;
}

.recruit {
  margin-bottom: 80px;
}

/* =========================================
  スマホ　　下層ページ　contact
========================================= */
table {
  border-collapse: collapse;
}
 
.contactLead h4{
  font-size: 1.8rem;
  line-height: 3rem;
  margin-bottom: 50px;
  text-align: justify;
}

.formWrap {
  width: 100%;
  margin: 0 auto 100px;
}

table.formTable td, table.formTable th {
  width:100%;
  display:block;
  text-align: center;
  letter-spacing: 0ex;
  font-size: 1.8rem;
  text-align: left;
}

table.formTable th {
  background: rgb(223, 241, 252);
}


.formWrap p {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 40px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}


input[type="text"],
input[type="email"],
textarea {
  background: #f8f8f8;
  display: block;
  font-size: 1.6rem;
  padding: 12px 15px;
  width: 100%;
  transition: 0.8s;
  border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}

::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

.form-table {
  width: 100%;
}

.form-table th,
.form-table td {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 20px;
}

.form-table th {
  background: #ffecea;
  padding-left: 50px;
  position: relative;
  text-align: left;
  width: 100%;
}

.hissu {
  line-height: 2.5rem;
}
}


@media (orientation: landscape)and (max-width:768px) {
  /* デバイスが横向きの場合の記述 */
.header-nav {
  width: 50vw;
  top: 0;
  left: 50vw;
  right: 0;
  bottom: 0px;
}

#header .header-nav li {
  line-height: 3rem;
}


.mv-wrap {
  height: 100vh;
}

.mvImg {
  background-position: right 0px bottom -20px;
  width: 50%;
  height: 70%;
  margin-bottom: 20px;
  margin-left: 5rem;
}

.mainCopy {
  position: absolute;
  top: 20%;
  left: 0px;
  width: 100%;
  margin-left: 0px;
  text-align: left;
  letter-spacing: 1rem;
  padding: 1rem;
}

.mainCopy h2 {
  font-size: 4.5vw;
  line-height: 10vh;
}

.track-images_item > img{
  width: 60%;
}

.trackAnimation-wrap {
  margin-top: -144px;
}

.vegImages-container {
  height: 50vh;
}

.ttlEyecatch {
  left: 152px;
}

.service-oneImg, .company-oneImg {
  height: 350px;
}

.recruit-contact {
  height: 280px;
}

.recruit-contact .topContents-wrap  {
  flex-direction: row;
}


}

