@charset "utf-8";
/* ==========================================================================
    共通
========================================================================== */
html {
  width: 100%;
  scroll-behavior: smooth;
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
  background-color: #fff;
}
.inner {
  max-width: 1440px;
  margin: auto;
}
a:hover {
  opacity: 0.5;
  -webkit-transition: background-color 0.5s ease-in-out;
}
a {
  color: #121212;
  text-decoration: none;
}
.none {
  display: none;
}

*, *:before, *:after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.br {
  display: block;
}
        @media(max-width:768px){
          .sp-br {
            display: inline-block;
          }
          .sp-none {
            display: none;
          } 
        }

/* ================================================
フォント 
================================================ */
/* [Raleway] */
h2,
header nav a,
.about-title h2,
.scroll {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}
.business-title h2,
.message-title h2,
.recruit-title h2,
.interview-title h2,
.outline-title h2,
.access-title h2,
.contact-title h2{
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 44px;
  line-height: 2;
  letter-spacing: 0;
}
        @media (max-width:768px){
          .business-title h2,
          .message-title h2,
          .recruit-title h2,
          .interview-title h2,
          .outline-title h2,
          .access-title h2,
          .contact-title h2{
          font-size: 36px;
        }
        }
                @media (max-width:425px){
                  .business-title h2,
                  .message-title h2,
                  .recruit-title h2,
                  .interview-title h2,
                  .outline-title h2,
                  .access-title h2,
                  .contact-title h2{
                  font-size: 30px;
                }
                }

.business-title p,
.message-title p,
.recruit-title p,
.interview-title p,
.outline-title p,
.access-title p,
.contact-title p {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.61;
  letter-spacing: 0;
}
        @media (max-width:768px){
          .recruit-title p,
          .message-title p,
          .recruit-title p,
          .interview-title p,
          .outline-title p,
          .access-title p,
          .contact-title p {
            font-size: 17px;
          }       
        }
            @media (max-width:425px){
              .recruit-title p,
              .message-title p,
              .recruit-title p,
              .interview-title p,
              .outline-title p,
              .access-title p,
              .contact-title p {
                font-size: 16px;
              }       
            }

/* [Raanana / Noto Serif JP / Hiragino Mincho ProN] */
h3.about-subtitle,
.recruit-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 1.55;
  letter-spacing: 0;
  text-align: left;
}
.message-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 1.57;
  letter-spacing: 0;
  text-align: left;
}

.fv-title h2,
.fv-subtitle,
.about-cap,
.recruit-cap,
.footer-add p {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}
/* フォント　　END
==================================================*/


/* ================================================
header
================================================*/
nav.drawer-content {
  position: fixed;
  z-index: 1;
  bottom: 70px;
  left: 0;
  width: 200px;
}
header.js-header {
  width: 200px;
  background-color: rgb(255, 255, 255);
  bottom: 0;
}
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}
.drawer-logo {
  display: none;
}
.drawer-logo img:nth-child(2) {
  /* margin: 0 0 0 12px;
  padding: 0 0 0 8px;
  position: relative;
  top: -18px; */
  margin: 0;
  padding: 0 0 0 14px;
  position: relative;
  top: -18px;
}

/* ガタツキの修正案　ここから*/
nav ul li a{
  display: block;
  text-decoration: none;
  color: #397651;
  transition:all .3s;
  padding: 10px 30px 10px 34.5px;
  transition: 0.5s;
  position: relative;
}

nav ul li a::after{
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #D1D1D1;
  opacity: 0;
  transition: .5s;
}

nav ul li a:hover{
  color:#666;	
}
/* ナビゲーションのリストアイテムの現在地のスタイル */
nav ul li.current a,
nav ul li a:hover{
  color: #397651;
  padding: 10px 30px 10px 34.5px;
  border-right: solid 7px #397651;
  transition: 0.5s;
  box-sizing: border-box;
  position: relative;
}

nav ul li.current a::after{
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #D1D1D1;
  opacity: 1;
  transition: .5s;
}

nav ul li a:hover::after{
  opacity: 1;
  transition: .5s;
}
/* ガタツキの修正案　ここまで*/


/* その場でふわっと表示 */
.fade {
  animation-name: fadeAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  }
      @keyframes fadeAnime{
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }
  /* fadeInをする動き END*/
  
  /*==768px以下の形状*/
        @media screen and (max-width:768px){
          div#container {
            display: block;
          }
          /* ナビゲーションのリストアイテムの現在地のスタイル */
          nav ul li.current a,
          nav ul li a:hover{
            border-right: none;
            border-bottom: none;
            padding: 10px 30px 10px 20px;
          }
          .drawer-logo {
            width: 56px;
            margin: 9px 0 0 20px;
            display: block;
          }
          
        }

        @media (max-width:768px){
        header.js-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 0 20px;
          background: transparent;
          width: 100%;
          height: 60px;
          top: 0;
          z-index:9;
          position: fixed;
        }
        /*p.fadeUp_logo {
          width: 114px;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%,-50%);
          animation: fadeUpAnime 2.5s ease-in-out 0s forwards;
          margin: 34.5px;
          z-index: 10000000;
          opacity: 0;
      }*/

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

          ここから下がハンバーガーメニュー
          に関するCSS

        ------------------------------*/
        /* ハンバーガーアイコンの設置スペース */
        .drawer-open {
          display: flex;
          height: 60px;
          width: 60px;
          justify-content: center;
          align-items: center;
          position: relative;
          z-index: 10000000;/* 重なり順を一番上に */
          cursor: pointer;
        }

        /* ハンバーガーメニューのアイコン */
        .drawer-open span,
        .drawer-open span:before,
        .drawer-open span:after {
          content: '';
          display: block;
          height: 2px;
          width: 36px;
          border-radius: 3px;
          background: white;
          transition: all 0.6s;
          position: absolute;
        }
        /* 下層ページは、最初から緑 */
        .policy-page .drawer-open span,
        .policy-page .drawer-open span:before,
        .policy-page .drawer-open span:after,
        .thanks-page .drawer-open span,
        .thanks-page .drawer-open span:before,
        .thanks-page .drawer-open span:after {
          background: #397651;
          z-index: 100000000;
          opacity: 1;
        }

        /* index-pageスクロール1px進んだらgreenに変更 */
        .scrolled-1px.drawer-open span,
        .scrolled-1px.drawer-open span:before,
        .scrolled-1px.drawer-open span:after {
            background: #397651;
            z-index: 100000000;
            opacity: 1;
        }
        #drawer-check:checked ~ .drawer-open span::before,
        #drawer-check:checked ~ .drawer-open span::after {
          top: 0;
          transform: rotate(-45deg);
          background: #397651;
      }
        /* 三本線のうち一番上の棒の位置調整 */
        .drawer-open span:before {
          bottom: 8px;
        }

        /* 三本線のうち一番下の棒の位置調整 */
        .drawer-open span:after {
          top: 8px;
        }

        /* アイコンがクリックされたら真ん中の線を透明にする */
        #drawer-check:checked ~ .drawer-open span {
          background: rgba(255, 255, 255, 0);
        }

        /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
        #drawer-check:checked ~ .drawer-open span::before {
          bottom: 0;
          transform: rotate(45deg);
        }

        #drawer-check:checked ~ .drawer-open span::after {
          top: 0;
          transform: rotate(-45deg);
        }
        .drawer-open {
          position: absolute;
          right: 20px;
          width: 36px;
          height: 2px;
          transition: all .6s;
          background-color: white;
          z-index: 10000000;
        }
        ul.drawer-list {
          transform: translateY(-50%);
          position: absolute;
          top: 50%;
        }

        /* メニューのデザイン*/
        nav.drawer-content {
          width: 100%;
          height: 100%;
          position: fixed;
          top: 0;
          left: 100%;/* メニューを画面の外に飛ばす */
          z-index: 1000000;
          background: #fff;
          transition: .5s;
        }

        /* アイコンがクリックされたらメニューを表示 */
        #drawer-check:checked ~ .drawer-content {
          left: 0;
          padding: 0;
        }
  }
/* header
================================================*/

/* ================================================
.header-logoカラーチェンジ 
================================================*/
        /* 幅が769以上の場合、color-whを非表示、color-grを表示 */
        @media (min-width: 769px) {
          .fadeUp_logo.color-wh {
            display: none;
          }
        }
/* .header-logoカラーチェンジ END
================================================*/


/* ================================================
firstView
================================================ */
.fv {
  height: 100vh;
}
/* fadeUp2 アニメーション リサイクルの可能性を広げる ~ */
.fadeUp2 {
  animation-name: fadeUp2Anime;
  animation-duration: 2.5s;
  animation-fill-mode:forwards;
  opacity: 0;
  }
        @keyframes fadeUp2Anime {
          from {
            opacity: 0;
          transform: translateY( 1000px );
          }
          to {
            opacity: 1;
          transform: translateY(0);
          }
        } /* fadeUp2をするアイコンの動き END*/

.fv-title {
  position: absolute;
  bottom: 70px;
  left: calc(200px + 6%);
}
.fv-title h2 {
  color: #fff;
  font-size: 72px;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 30px;
}
.fv-subtitle {
  color: #fff;
  font-size: 25px;
  line-height: 1.32;
  text-align: right;
  white-space: nowrap;
}
.line {
  display: inline-block;
  width: 200px;
  height: 1px;
  background-color: #fff;
  margin: auto 20px auto auto;
}
.subttl-wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
    @media (max-width:888px){
      .subttl-wrap {
        display: block;
      }
      p.fv-subtitle {
        display: block;
        text-align: left;
        white-space: normal;
      }
      p.line-wrap {
        width: 100%;
        margin-top: 10px;
      }
      }
/* scroll */
p.line-wrap {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  line-height: 1.16;
  text-align: center;
}
.sub-ttiWrap {
  display: flex;
  flex-wrap: nowrap;
}
.scroll-img {
  display: block;
  width: 22px;
  margin: 0 0 0 13px;
}
p.line-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.fv-img {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  max-width: 100%;
  z-index: -1;
  display: none;
}

    @media (max-width:1250px) {
    .fv-title h2 {
      font-size: 56px;
    }
    .fv-subtitle {
      font-size: 19px;
    }
    }
        @media (max-width:1024px) {
        .fv-title h2 {
          font-size: 40px;
        }
        .fv-subtitle {
          font-size: 14px;
        }
        }
            @media(max-width:888px){
              .line {
                width: 88%;
                }
          
            }
                @media (max-width:768px) {
                .fv-title h2 {
                  font-size: 38.16px;
                }
                .fv-subtitle {
                  font-size: 13.25px;
                }
                .flex-container {
                  display: block;
                }
                p.fv-subtitle {
                  color: #fff;
                  font-size: 12px;
                  display: block;
                  text-align: left;
                  white-space: normal
                }
                .line {
                  display: block;
                  width: 80%;
                  margin: auto 0 auto auto;
                }
                .fv-title {
                  width: 88%;
                  left: 6%;
                  bottom: 70px;
                }
                p.line-wrap {
                  display: flex;
                  align-items: center;
                  width: 100%;
                }
                }
                    @media (max-width:425px) {
                    .fv-title h2 {
                      font-size: max(6vw , 20px);
                    }
                    .fv-subtitle {
                      font-size: 12px;
                    }
                    .subttl-wrap {
                      display: flex;
                      justify-content: space-between;
                      flex-wrap: wrap;
                    }
                    }
/* firstview　　END
==================================================*/


/* ================================================
全体のレイアウト
================================================ */
.flex-container {
  display: flex;
  justify-content: space-between;
}
main#main-area {
  width: calc(100% - 200px);
  margin: 0 0 0 auto;
}
        @media (max-width:768px) {
          main#main-area {
            width: 100%;
            margin: 0;
        }
        }
/* 全体のレイアウト　END
================================================ */


/* ================================================
loading__アニメーション
================================================ */
.curtain {
  width: 100%;
  height: 100vh;
  animation-name: curtain_slide;
  animation-duration: 2.75s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  background-color: #F2FFF7;
  transition: background-color 1s;
  position: fixed;
  z-index: 99;
}
.curtain.time-to-change {
  background-color: #fff; /* 指定時間後に背景色を変更 */
}
        @keyframes curtain_slide {
          0% {
            transform: translate(0,0);
          }
          50% {
            transform: translate(0,0);
          }
          100% {
          transform: translate(calc(-100% - 200px),0);
          }
        }
            @media (max-width:768px) {
              .curtain {
                animation-duration: 3s;
              }
              .curtain.time-to-change {
                width: 100%;
              }
            @keyframes curtain_slide {
              0% {
                transform: translate(0,0);
              }
              50% {
                transform: translate(0,0);
              }
              100% {
                transform: translate(-100%,0);
              }
            }
            }

/* カーテンアニメーション　END
================================================ */


/* ================================================
loading__ロゴフェイドアップして、左上へ移動
================================================ */
p.fadeUp_logo img {
  display: block;
  width: 100%;
  transition: background-color 0.5s;
}
.logo-wh {
    display: none; /* まずはどちらも非表示にする */
}
/*ここから書き換え
p.fadeUp_logo {
  width: 114px;
  position: fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  animation: fadeUpAnime 2.5s ease-in-out 0s forwards;
  opacity: 0;
  z-index: 100000;
  margin: 0;
}*/

p.fadeUp_logo {
  position: fixed;
  width: 114px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  margin: 0;
  z-index: 1000001;
  }

  p.fadeUp_logo.color-gr {
    animation: fadeUpAnime 2.5s ease-in-out 0s forwards;
  }

  /*書き換えここまで*/
img.splash-logo1 {
  width: 114px;
}
p.fadeUp_logo.js-fixed {
  position: fixed;
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translate(-50%,calc(-50% + 50px));
  }
  40% {
    opacity: 1;
    transform:translate(-50%,-50%);
  }
  55% {
    opacity: 1;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
  }
  100% {
    opacity: 1;
    top: 34.5px;
    left: 46.5px;
    transform:translate(0,0);
}
}


/*　↓　ローディングlogo中央で始まり右揃えで着地  1119修正　ここから ↓*/
img.splash-logo2 {
  padding: 12px 12px 0 12px;
}
/* ここまで1119追加  ↑　*/






          @media (max-width:768px) {
            img.splash-logo2 {
              /* margin: 5px 0 0 12px;
              padding: 0 0 0 8px; */
              margin: 0;
              padding: 5px 0 0 14px;
            }
            /*この中不要
            p.fadeUp_logo.color-gr {
              width: 114px;
              top: 50%;
              left: 50%;
              transform: translate(-50%,-50%);
              animation: fadeUpAnime 2.75s ease-in-out 0s forwards;
              opacity: 0;
              margin: 0;
              z-index: 100000;
              }*/
              @keyframes fadeUpAnime {
                0% {
                  opacity: 0;
                  transform: translate(-50%,calc(-50% + 50px));
                }
                40% {
                  opacity: 1;
                  transform:translate(-50%,-50%);
                }
                55% {
                  opacity: 1;
                  top:50%;
                  left:50%;
                  transform:translate(-50%,-50%);
                }
                100% {
                  opacity: 1;
                  top:20px;
                  left:20px;
                  transform:translate(0,0);
                }
              }
              /*ここから追記*/
              p.fadeUp_logo.color-wh {
                animation: fadeInAnime 2.75s ease-in-out 0s forwards;
                width: 56px;
                margin: 0;
                opacity: 0;
                top:20px;
                left:20px;
                transform:translate(0,0);
              }
              @keyframes fadeInAnime {
                0% {
                  opacity: 0;
                  top:20px;
                  left:20px;
                  transform:translate(0,0);
                }
                90% {
                  opacity: 0;
                  top:20px;
                  left:20px;
                  transform:translate(0,0);
                }
                100% {
                  opacity: 1;
                  top:20px;
                  left:20px;
                  transform:translate(0,0);
                }
              }
              /* kyeflames END*/

              nav ul li a {
                padding: 10px 30px 10px 20px;
                }

              /* js　= 18 =　switchLogo  　全ページ　 */

              .fadeUp_logo.color-gr {
                opacity: 1;
              }
              p.fadeUp_logo.color-gr:first-child {
              width: 56px;
              }
              p.fadeUp_logo.color-gr:nth-child(2) {
              width: 42px;
              }

              p.fadeUp_logo.color-wh.scrolled-1px {
                opacity: 0!important;
                }

              p.fadeUp_logo.color-gr.scrolled-1px {
                opacity: 1!important;
                }

                p.fadeUp_logo.color-wh.hidden , 
                p.fadeUp_logo.color-gr.hidden{
                  opacity: 0!important;
                }
             /* p.fadeUp_logo.color-wh {
              opacity: 1;
              width: 56px;
              margin: 0;
              }

              .index-page .color-wh {
                 width: 56px;
              }
            }
            /* js　= 18 =　switchLogo  　全ページ　*/
          }
            /* 
フェイドアップして、左上へ移動 END
================================================ */


/* ================================================
パララックス
================================================ */
.parallax::before {
  background-image: url(../images/fv.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  right: 0;
  position: fixed;
  top: 0;
  width: calc(100% - 200px);
  z-index: -3;
}

            @media (max-width:768px) {
              .parallax::before {
                background-image: url(../images/fv-sp@2x.jpg);
                width: 100%;
              }
            }

/* パララックス
================================================ */


/* ================================================
ABOUT
================================================ */
.about {
  background-color: #F2F2F2;
  padding: 110px 0 170px 6%;;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.about-title {
  position: relative;
  z-index: 0;
}
.about-text {
  width: 61%;
}
.about-img {
  width: 31%;
  margin-top: 87px;
  opacity: 1;
}
.about-img img {
  width: 100%;
  object-fit: cover;
  box-shadow: -25px 28px 0 #D8E3DC;
}
.about-title img {
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
}
h3.about-subtitle {
  padding: 60px 0 0 40px;
  color: #030303;
  font-size: 45px;
  line-height: 1.55;
  letter-spacing: 0;
  text-align: left;
}
.about-txt-wrap {
  width: 82%;
  text-align: left;
  margin: 63px auto auto 40px;
}
.about-cap {
  color: #C3C3C3;
  font-size: 12px;
  line-height: 1.66;
  letter-spacing: 0.1em;
  text-align: left;
  width: 100%;
}
.about-txt {
  color: #030303;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0;
  text-align: left;
  margin: 0 6% 40px 0;
}
        @media (max-width:768px){
          .about {
            display: block;
            padding: 60px 0 80px 6%;
          }
          h3.about-subtitle {
            padding: 30px 6% 0 20px;
            color: #030303;
            font-size: 33px;
            line-height: 1.55;
            letter-spacing: 0;
            text-align: left;
            margin: 0 auto;
        }
          .about-txt-wrap {
            width: 100%;
            margin: 40px auto;
          }
          .about-text {
            width: 100%;
            padding: 0;
          }
          .about-img {
            width: 90%;
            margin: 0 0 0 auto;
          }
          .about-subtitle {
            font-size: 25px;
            top: 18px;
            left: 12px;
            width: 100%;
          }
          .about-img img {
            aspect-ratio: 1 / 0.5;
          }
          .about-cap {
            margin: 0 6% 20px 0;
          }
          }
              @media (max-width:425px){
                  h3.about-subtitle {
                    font-size: 22px;
                    padding: 30px 0 20px;
                }
              }
                @media (max-width:375px){
                  h3.about-subtitle {
                    font-size: 20px;
                }
              }
                @media (max-width:320px){
                  h3.about-subtitle {
                    font-size: 18px;
                }
              }
/* ABOUT　END
================================================ */


/* ================================================
Business
================================================ */
.business {
  background-color: #397651;
  color: #fff;
  padding: 150px 10% 150px 8%;;
}
.business-wrap {
  text-align: left;
}
.business-title {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
}
.business-title h2 {
  color: #fff;
}
.business-title p {
  color: #D1D1D1;
  text-align: center;
  margin-left: 16px;
}
.business-txt {
  color: #fff;
  margin-bottom: 60px;
}
.business-item {
  display: flex;
  justify-content: space-between;
}
.business-item li {
  width: 30%;
}
.business-item img {
  width: 100%;
  margin-bottom: 18px;
}
.business-item p {
  font-weight: 300;
  color: #fff;
  font-size: 14px;
}
        @media (max-width:768px){
          .business {
            padding: 60px 6%;
            margin: 0 auto;
          }
          .business-item {
            display: block;
            padding: 20px 0 0;
          }
          .business-item li {
            width: 100%;
          }
          .business-item p {
            margin-bottom: 60px;
          }
          .business-title {
            margin-bottom: 30px;
          }
        }
/* Business　END
================================================ */                

/* ================================================
Message
================================================ */
.message {
  background-color: #F2F2F2;
  padding: 143px 10% 148px 8%;
  height: auto;
}
.message-wrap {
  text-align: left;
}
.message-title {
  display: flex;
  align-items: baseline;
  margin-bottom: 4%;
}
.message-title h2 {
  color: #397651;
}
.message-title p {
  color: #40362A;
  margin-left: 16px;
}
.message-txt {
  color: #030303;
  margin-bottom: 16px;
}
.message-subtitle {
  color: #030303;
  margin-bottom: 50px;
}
.message-name {
  color: #282928;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: right;
}
.message-sign {
  color: #282928;
  font-size: 18px;
  line-height: 1.66;
  letter-spacing: 0;
  text-align: right;
}
span.message-sign {
  margin-right: 20px;
}
        @media (max-width:768px){
        .message {
          height: auto;
          padding: 60px 6%;
        }
        .message-title {
          margin-bottom: 30px;
        }
        .message-subtitle {
          margin-bottom: 20px;
          font-size: 28px;
        }
        .message-txt {
          margin-bottom: 20px;
        }
        }
        @media (max-width:425px){
          .message-subtitle {
            font-size: 24px;
          } 
          }  
/* Message　END
================================================ */


/* ================================================
RECRUIT
================================================ */
.recruit {
  background-color: #D8E3DD;
  padding: 107px 0 71px 8%;
  text-align: left;
  overflow: hidden;
}
.recruit-title {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
}
.recruit-title h2 {
  color: #397651;
  text-align: left;
}
.recruit-title p {
  color: #40362A;
  margin-left: 16px;
}
.recruit-view {
  width: 100%;
  margin: 0 0 0 auto;
}
.recruit-view img {
  box-shadow: -28px 22px 0 #397651;
  width: 100%;
}
.recruit-subtitle {
  color: #030303;
  font-size: 45px;
  line-height: 1.22;
  letter-spacing: 0;
  margin: 52px auto 20px -30px;
}
.recruit-txt {
  color: #40362A;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding: 0 10% 0 2%;
}
.recruit-cap {
  color: #C3C3C3;
  font-size: 12px;
  line-height: 1.66;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 0 10% 0 2%;
}
.recruit-txt-wrap {
  margin-bottom: 70px;
}
    @media (max-width:1024px){
      .recruit-subtitle {
        font-size: 35px;
      }
    }
        @media (max-width:768px){
        .recruit {
          padding: 60px 0 60px 6%;
        }
        .recruit-subtitle {
          font-size: 28px;
          text-align: left;
          margin: 36px auto 28px;
          line-height: 1.57;
        }
        .recruit-view {
          width: 100%;
          margin: 0 0 0 auto;
        }
        .recruit-view img {
          box-shadow: -20px 16px 0 #397651;
        }
        .recruit-txt {
          padding: 0 6% 0 0;
        }
        .recruit-cap {
          padding: 0 6% 0 0;
        }
        }
            @media (max-width:425px){
            .recruit-subtitle {
              font-size: 26px;
            } 
            }        
/*　RECRUIT　END
================================================ */


/* ================================================
interview
================================================ */
.interview {
  background-color: #D8E3DD;
  padding: 0 10% 115px 0;
}
.interview-title {
  display: flex;
  align-items: baseline;
  margin-bottom: 40px;
}
.interview-title h2 {
  color: #397651;
  text-align: left;
}
.interview-title p {
  color: #40362A;
  margin-left: 16px;
}
.interview-list li {
  margin-bottom: 80px;
  display: flex;
  width: 100%;
  justify-content: center;
}
.caption {
  width: 66%;
}
figure {
  width: 30%;
  margin-right: 3%;
}
figcaption {
  color: #282928;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
  margin: 36px auto;
  align-items: center;
  display: flex;
}
figcaption span {
  color: #767676;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  margin-left: 14px;
  border-left: solid 3px #397651;
  padding-left: 12px;

}

.caption h3 {
  font-size: 33px;
  line-height: 1.51;
  letter-spacing: 0;
  margin-top: 30px;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  color: #40362A;
}
.interview-txt {
  font-weight: 300;
  color: #40362A;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
  width: 92%;
}
.interview-picture {
  position: relative;
}
.interview-picture::before {
  position: absolute;
  content: "";
  width: 33%;
  height: auto;
  background-color: #fff;
  bottom: -64%;
  left: -7%;
  aspect-ratio: 1 / 1;
}
.interview-img {
  object-fit: cover;
  width: 100%;
  position: relative;
  z-index: 1;
}
.interview-parts {
  width: 35%;
  left: -28px;
  bottom: -17px;
  z-index: 0;
  position: absolute;
}
.link-wrap {
  display: grid;
  justify-content: space-between;
  place-content: center;
}

.interview .link-btn {
  background-color: #397651;
  border-radius: 35px;
  padding: 18px 32px;
  display: inline-block;
  width: 371px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  color: #fff;
  font-size: 16px;
  line-height: 1.56;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: center;
}
.interview a.link-btn:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
  transform: translate(0, 1px);
  cursor: pointer;
  transition: .3s;
}
.interview .link-btn img {
  height: 16px;
  margin-left: 58px;
}
ul.interview-list {
  margin-bottom: 20px;
}

        @media (max-width:1024px){
          .interview {
            padding: 60px 6% 100px 0;
          }
          .interview-title {
            display: block;
          }
          .interview-subtitle h2 {
            font-size: clamp(3rem, 1.046rem + 4.07vw, 4rem);
          }
          .interview-list {
            display: block;
            width: 100%;
            padding: 0 6%;
          }
          .interview-list li {
            width: 100%;
            margin-bottom: 80px;
            display: block;
          }
          .interview .link-btn .link-btn {
            padding: 18px;
            width: 300px;
            padding: 16px;
            font-size: 1.6rem;
          }
          .link-btn img {
            margin-left: 10px;
          }
          .interview-parts {
            width: 35%;
            left: -28px;
            bottom: -17px;
            z-index: 0;
            position: absolute;
          }
          figcaption {
            margin: 18px auto;
          }
          figcaption span {
            margin: 14px;
            border-left: solid 3px #397651;
            padding-left: 12px;
          }
          .caption {
            width: 100%;
          }
          .caption h3 {
            font-size: 28px;
            margin-top: 36px;
        }
          .link-wrap {
            margin: 0 auto;
          }
          .interview .link-btn img {
            height: 16px;
            margin-left: 16px;
          }
          .interview .link-btn {
            padding: 18px 0;
            width: 300px;
            font-size: 14px;
          }
          .interview-title p {
            margin-left: 0;
            margin-top: -10px;
          }
          figure {
            width: 40%;
            margin: 0 auto;
          }
          .interview-txt {
            width: 100%;
          }
            .interview-picture {
              position: relative;
          }
        }


        @media(max-width:425px) {
        .caption h3 {
          font-size: 28px;
        }
        .interview-picture::before {
          bottom: -64%;
          left: -7%;
        }
        figure {
          width: 100%;
          margin-right: 0;
        }
        figcaption {
          font-size: 17.5px;
        }
        .caption h3 {
          font-size: 20px;
        }
        }
        


/* ================================================
OUTLINE
================================================ */
.outline {
  padding: 126px 10% 111px 8%;
  display: flex;
  justify-content: space-between;
  background-color: #fefefec9;
}
.outline-title {
  text-align: left;
}
.outline-title h2 {
  color: #397651;
  line-height: 1.15;
}
.outline-title p {
  color: #40362A;
}

/*=== table ===*/
.outline-table {
  font-weight: 300;
  color: #282928;
  font-size: 1.7rem;
  line-height: 1.47;
  letter-spacing: 0.1em;
  text-align: left;
  width: 70%;
}
td.outline-item {
  color: #397651;
  font-weight: bold;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: 0.1em;
  text-align: center;
  width: 30%;
  border-bottom: solid 2px #397651;
  padding: 22px 0;
}
td.outline-item:first-child {
  border-top: solid 2px #397651;
}
td.outline-txt {
  width: 70%;
  border-bottom: solid 1px #767676;
  border-top: solid 1px #767676;
  padding: 22px 0 22px 1rem;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.47;
}

        @media (max-width:768px){
          .outline {
            display: block;
            padding: 60px 6% 100px;
          }
          .outline-title {
            margin-bottom:50px;
          }
          .outline-subtitle h2 {
            font-size: clamp(3rem, 1.046rem + 4.07vw, 4rem);
          }
          .outline-table {
            width: 100%;
          }
          td.outline-txt {
            font-size: 16px;
          }
          .sp-mb10 {
            margin-bottom: 10px;
          }
          td.outline-item {
            font-size: 16px;
        }
        }


/* ================================================
Access
================================================ */
.access {
  background-color: #397651;
  padding: 102px 0 94px 8%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  color: #fff;
  text-align: left;
}
.access-title {
  text-align: left;
}
.access-title h2 {
  line-height: 1.15;
}
.access-company {
  font-weight: bold;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: 0.05em;
}
.access-add {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.64;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.access-left {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
map {
  width: 61%;
}
map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
iframe {
  width: 100%;
  aspect-ratio: 756 / 305;
}
        @media (max-width:768px){
        .access {
          display: block;
          padding: 80px 0 80px 6%;
        }
        .access-title {
          margin-bottom: 60px;
        }
        .access-addWrap {
          margin-bottom: 30px;
        }
        }
/* Access　END
================================================ */


/* ================================================
CONTACT
================================================ */
.contact {
  background-color: #ffffff;
  padding: 100px 10% 137px 8%;
  color: #282928;
}
.contact-title {
  text-align: center;
  margin: 0 auto;
}
.contact-title h2 {
  color: #397651;
  line-height: 1.15;
  text-align: center;
}
.contact-title p {
  color: #40362A;
  line-height: 1.61;
  text-align: center;
}
.contact-txt {
  margin: 60px auto;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: 0.05em;
  text-align: center;
}
.contact-form {
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

/* お問い合わせラジオボタン エリア*/
legend {
  padding: 20px 0;
  display: block;
  width: 34%;
  color: #191919;
  font-size: 17px;
  line-height: 2.35;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin: auto 2% auto 0;
}

input {
  margin: 0.4rem;
}
fieldset {
  display: contents;
}
.fieldset-flex {
  display: flex;
  justify-content: flex-start;
  max-width: 760px;
  margin: auto auto 20px;
  align-items: center;
}
.Choice-wrap {
  display: block;
}
/* お問い合わせラジオボタン エリア　END*/
label.label {
  margin-right: 2%;
}
.label {
  display: block;
  width: 34%;
  color: #191919;
  font-size: 17px;
  line-height: 2.35;
  letter-spacing: 0.1em;
  font-weight: bold;
}
placeholder {
  color: #898989;
  font-size: 17px;
  line-height: 1.29;
  letter-spacing: 0.1em;
}

input, textarea {
  vertical-align: middle;
  border: solid 1px #AFAFAF;
  border-radius: 5px;
  padding: 20px;
  margin: 0;
}

.contact-flex {
  display: flex;
  /* margin-bottom: 20px; */
  justify-content: center;/* 1119追加 */
  margin: auto auto 20px;
}

.input {
  width: 64%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  color: #282928;
  letter-spacing: 0.1em;
}
textarea#message {
  line-height: 2;
}

.required {
  color: #397651;
  border: solid 1px #397651;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  border-radius: 20px;
  margin-left: 18px;
  display: inline-block;
  height: 22px;
  vertical-align: middle;
  width: 45px;
  text-align: center;
  
}

/* ラジオボタンカスタマイズ */
input[type=radio]{
  display: none;
}
.radio__btn {
  appearance: none;
  border: none;
}
.radio__text {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
.radio__text::before {
  content: '';
  display: block; 
  border-radius: 50%; 
  background-color: #E2E2E2;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.radio__btn:checked +.radio__text::after {
  content: '';
  display: block;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #397651;
  position: absolute;
  top: 50%;
  left: 4.5px;
  transform: translateY(-50%);
}
span.radio__text {
  font-size: 14px;
  line-height: 1.42;
  letter-spacing: 0.05em;
}
span.radio__text:first-child,
span.radio__text:nth-child(2) {
  margin-right: 29px;
}
/* ラジオボタンカスタマイズ  END*/

/* プライバシーポリシー */
.form_checkbox-wrap a {
  border-bottom: solid 1px #397651;
  color: #397651;
  margin-left: 20px;
  font-size: 17px;
  line-height: 1.29;
  letter-spacing: 0.1em;
}
.form_checkbox-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #AFAFAF;
  margin: 68px auto 54px;
}
.contact .link-btn {
  background-color: #397651;
  border-radius: 35px;
  padding: 18px 32px;
  display: inline-block;
  width: 371px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  color: #fff;
  font-size: 20px;
  line-height: 1.56;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: center;
  border: none;
}
.contact a.link-btn:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
  transform: translate(0, 1px);
  cursor: pointer;
  transition: .3s;
}
/* ラジオボタンカスタマイズ */
      @media (max-width:1040px){
        /* お問い合わせ内容 */
        legend {
          margin: 0 2% auto 0;
      }
        .Choice-wrap {
          display: block;
          width: 64%;
          margin: auto 0 auto auto;
        }
        span.radio__text {
          display: block;
          margin: 30px auto 24px 6px;
        }
      }
      @media (max-width:820px){
        /* お問い合わせ内容 */
        .Choice-wrap {
          display: block;
          width: 100%;
        }
        span.radio__text {
          display: block;
          margin: 30px auto 24px 6px;
        }
      }
        @media (max-width:768px){
          .contact {
            padding: 80px 6% 100px;
          }
          .Choice-wrap {
            display: block;
            width: 100%;
          }
          .contact-flex {
            display: block;
          }
          .label {
            width: 100%;
          }
          .input {
            width: 100%;
          }
          input#choice1 {
            padding: 0;
          }
          span.radio__text {
            display: block;
            margin: 30px auto 24px 6px;
          }
          span.radio__text:first-child {
            display: block;
            margin: 10px auto 24px 6px;
          }
          input, textarea {
            padding: 16px;
          }
          .form_checkbox-wrap a {
            margin-left: 10px;
            font-size: 15px;
          }
          .contact-form {
            padding: 0 4%;
          }
          .Choice-wrap {
            padding: 0 0 20px 10px;
          }
          label {
            margin-bottom: 10px;
          }
          .contact-flex {
            margin-bottom: 32px;
          }
          .contact .link-btn {
            width: 300px;
            font-size: 16px;
          }
          .fieldset-flex {
            margin: auto auto 40px;
          }
          legend {
            margin: 0 2% auto 0;
            width: 100%;
          }
          fieldset {
            display: flex;
          }
        }

/* プライバシー checkboxカスタマイズ */
input[type="checkbox"]  {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックスデザイン */
input[type="checkbox"] {
  cursor: pointer;
  padding-left: 30px;
  vertical-align: middle;
  position: relative;
}
input[type="checkbox"]::before,
input[type="checkbox"]::after {
  content: "";
  display: block; 
  position: absolute;
}
input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #AFAFAF;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
input[type="checkbox"]::after {
  border-bottom: 3px solid #397651;
  border-left: 3px solid #397651;
  opacity: 0;
  height: 7px;
  width: 10px;
  transform: rotate(-45deg);
  top: -5px;
  left: 9px;
}
input[type="checkbox"]:checked::after {
  opacity: 1;/*チェック後表示*/
}
        @media(max-width:375px) {
        .form_checkbox-wrap {
          text-align: center;
        }
        input[type="checkbox"] {
          padding-left: 0;
        }
        .sp-br-375 {
          display: block;
        }
        label {
          margin-bottom: 0;
        }
        input#form_checkbox {
          margin: 0;
          position: relative;
          left: -30px;
        }
        }
/*　CONTACT　END
================================================ */        


/* ================================================
footer
================================================ */
.footer {
  background-color: #EAEAEA;
  padding: 70px 8% 27px 10%;
  text-align: left;
  color: #767676;
  margin: 0 0 0 auto;
  width: calc(100% - 200px);
}
.footer-flex {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 50px;
  height: 84px;
  align-items: center;
}
.footer-logo a {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 74px;
}
.footer-logo img {
  display: block;
}
.footer-logo img:first-child {
  width: 146px;
}
.footer-logo img:nth-child(2) {
  width: 116px;
}

.footer-add {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  margin-left: 65px;
}
.footer-add p {
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
hr {
  width: 100%;
  border: solid 1px #767676;
  margin: 0 0 10px;
}
small,
small a {
  font-size: 12px;
  color: #767676;
  font-weight: 300;
}
small a {
  margin-right: 37px;
}
.appercase {
  text-transform: uppercase;
}
    @media (max-width:930px){
      .footer-flex {
        display: block;
        height: auto;
        margin-bottom: 10px;
    }
    .footer-logo {
      display: block;
      margin-bottom: 20px;
    }
    .footer-add {
      margin-left: 0;
      display: block;
    }
    .footer-logo img:first-child {
      width: 146px;
      margin-bottom: 16px;
    }
    }

        @media (max-width:768px){
        .footer {
          width: 100%;
          padding: 60px 6% 20px;
        }
        .footer-flex {
          display: block;
          height: auto;
          margin-bottom: 30px;
        }
        .footer-logo {
          display: block;
          margin-bottom: 20px;
        }
        .footer-add {
          margin-left: 0;
          display: block;
        }
        .footer-logo img {
          display: block;
          margin-bottom: 10px;
        }
        .footer-small {
          display: flex;
        }
        }
        @media(max-width:374px){
          .sp-br-374 {
            display: block;
          }
          .sp-none-374 {
            display: none;
          }
        }
/* footer
================================================ */


/* ================================================
policyページ
================================================ */
/* policy.html特有のheader*/
body.policy-page header.js-header {
  top: 0;
}
body.policy-page p.fadeUp_logo.js-fixed {
  position: fixed;
  width: 114px;
  margin: 34.5px;
}
body.policy-page p.fadeUp_logo {
  width: 114px;
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  animation: none;
  opacity: 1;
  margin: 34.5px;
  z-index: 10000000;
}
body.policy-page .p_header-logo {
  opacity: 1;
  position: fixed;
  width: 114px;
  margin: 34.5px;
  z-index: 10000000;
}
body.policy-page img.splash-logo1 {
  margin-left: -20px;
  width: 114px;
}
body.policy-page header.js-header {
  top: 0;
}
body.policy-page img.splash-logo2 {
  padding: 0px 0 0 15px;
  margin-left: 25px;
  margin-top: 8px;
}
        @media (max-width: 768px){
          body.policy-page p.fadeUp_logo.js-fixed {
            position: fixed;
            width: 56px;
            margin: 0;
          }
          body.policy-page p.fadeUp_logo {
            top: 15px;
            left: 15px;
            transform: none;
            animation: none;
            opacity: 1;
          }
          body.policy-page img.splash-logo2 {
            padding: 0 0 0 9px;
            margin-left: 12px;
            margin-top: 6px;
          }
        }


section.policy {
  padding: 120px 6% 100px;
}
.policy {
  font-size: 12px;
  line-height: 1;
  letter-spacing: .05em;
  padding-right: 7px;
  color: #fff;
  font-weight: 300;
  font-style: italic;
}
.p-form__frame {
  color: #242424;
  width: 70%;
  margin: auto;
}
.c-txt {
  font-size: 15px;
  margin-bottom: 100px;
  line-height: 2;
  font-style: normal;
}
.c-bold {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  display: block;
  font-style: normal;
}
.txt-center {
  text-align: center;
  font-style: normal;
}
h2.c-bold.txt-center {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  display: block;
  font-family: "Noto Sans JP",sans-serif;
}

        @media (max-width:768px){
          .p_header-logo {
            width: 100%;
            margin: 0;
          }
          }
              @media (max-width:425px){
                .p-form__frame {
                  width: 80%;
              }
            }
/* policyページ END
================================================ */


/* ================================================
thanksページ
================================================ */
section.thanks {
  display: grid;
  place-content: center;
  background-color: #EAEAEA;
  padding-top: 100px;
}
.t-h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 18px;
  color: #40362A;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1em;
}
h2.t-h2 span {
  display: block;
}
body.thanks-page header.js-header {
  top: 0;
}
body.thanks-page p.fadeUp_logo {
  width: 114px;
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  animation: none;
  opacity: 1;
  margin: 34.5px;
  z-index: 100000;
}
body.thanks-page img.splash-logo2 {
  margin-left: 25px;
  margin-top: 8px;
}
        @media(max-width:572px){
          section.thanks {
            padding: 190px 12% 80px;
          }
          .t-h2 {
            font-size: 16px;
          }
          h2.t-h2 span {
            display: inline;
          }
          /* body.thanks-page p.fadeUp_logo {
            margin: 15px;
          }
          body.thanks-page img.splash-logo2 {
            margin-left: 12px;
            margin-top: 5px;
          } */
        }
/* thanksページ　END
================================================ */


/* ================================================
policyページ,thanksページ共通ヘッダーロゴ、ハンバーガーボタン
================================================ */
.u_header-logo {
  width: 114px;
  margin: 34.5px;
  position: fixed;
  transition: background-color 0.5s;
}
.u_header-logo p {
  width: 100%;
}
.green-en {
  display: block;
  width: 114px;
}
.green-ja {
  display: block;
  width: 90px;
  margin: 12px 0 0 auto;
}
@media(max-width:768px){
  .u_header-logo {
    width: 56px;
    margin: 7px 0 0 0;
  }
  .u_header-logo p {
    width: 100%;
  }
  .green-en {
    display: block;
    width: 56px;
  }
  .green-ja {
    display: block;
    width: 42px;
    margin: 6px 0 0 auto;
  }
}

/* ぼかしから出現 */
.blur{
	animation-name:blurAnime;
	animation-duration: 3s;
	animation-fill-mode:forwards;
}
@keyframes blurAnime{
  from {
	opacity: 0.1;
  }

  to {
    opacity: 1;
  }
}
/* policyページ,thanksページ共通ヘッダーロゴ、ハンバーガーボタン　END
================================================ */