@charset "UTF-8";
/* CSS Document */
*,
*:before,
*:after {
  box-sizing: inherit;
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  background-color: #fff;
  color: #333;
  font-family: "meiryo ui","Yugothic",sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  padding-top: 40px;
}
.icon-track__white{
  width: 40px;
  height: 40px;
  padding: 15px 5px 0 0;
  object-position: top;
  margin-top: 20px;
}
.icon-track__blue{
  width: 40px;
  height: 40px;
  padding: 10px 5px 5px 0;
  object-position: top;
}
.topic-title{
  display: flex;
  width: 250px;
  margin: 0 auto;
}
/*header*/
.header {
    position: fixed;
    top:0;
    left: 0;
    height:40px;
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    z-index: 9999;
}
.header-menu{
    text-align: center;
    margin: 10px auto;
}
.header-menu h2{
  letter-spacing: 3px;
  padding-left: 60px;
}
@media (min-width: 768px) {
    .header {
        height:60px;
    }
    .header-menu h2{
      font-size: 2.0rem;
      letter-spacing: 5px;
      padding-left: 160px;
    }
}
/*hamburger*/
.hamburger-menu {
    width: 40px;
    height: 40px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    margin-right: 20px;
  }
  .hamburger-menu__bar {
    display: inline-block;
    width: 60%;
    height: 3.0px;
    background: #333;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
    z-index: 10000;
  }
  .hamburger-menu__bar:first-child {
    top: 12px;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 20px;
  }
  .hamburger-menu__bar:last-child {
    top: 28px;
  }
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }
  .navigation {
    display: none;
    background: #f9f144;
    position: absolute;
    top: 0;
    width: 100%;
    justify-content: space-around;
    z-index: 9999;
  }
  .navigation__menu ul{
    display: block;
    margin: 0 auto;
    padding-top: 30px;
    justify-content: center;
  }
  .navigation__menu ul li{
    margin: 15% 0;
  }
  .navigation__menu ul li a{
    text-decoration: none;
    color: #333;
    font-size: 2.0rem;
    font-weight: 600;
    letter-spacing: 5px;
  }
  .sns{
    margin-bottom: 20px;
  }
  .sns p{
    font-size: 2.0rem;
  }
  .sns img{
    width: 40px;
    height: 40px;
    margin: 20px;
  }
  @media (min-width: 768px){
    .hamburger-menu {
        width: 60px;
        height: 40px;
        margin-right:100px;
      }
    .hamburger-menu__bar {
        width: 50%;
      }
    .navigation img{
        max-width: 400px;
        margin: 40px 0;
      }
    .navigation__link{
        padding-bottom: 5px;
        position: relative;
        padding: 10px 0;
        }
    .navigation__link::before {
        background: #2fd3d7;
        content: '';
        width: 100%;
        height: 10px;
        position: absolute;
        left: 0;
        bottom: 0;
        margin: auto;
        transform-origin: right top;
        transform: scale(0, 1);
        transition: transform .3s;
        }
    .navigation__link:hover::before {
        transform-origin: left top;
        transform: scale(1, 1);
        }
      .navigation h2{
        font-size: 2.0rem;
      }
      .navigation__menu{
        display: flex;
      }
      .navigation .sns img{
        margin: 30px;
      }
    }
/*top*/
.section-top{
  width: 100%;
  height: 350px;
  padding-top: 0px;
  background: url(../images/top/top-bg.png);
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}
.section-top img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
@media (min-width: 768px){
  .section-top{
    margin-bottom: 20px;
    height: 100vh;
  }
}
/*introduction*/
.section-introduction{
  position: relative;
  margin: 0 auto;
  padding-top: 30px;
  background-image: url(../images/icon/track-yellow.png),url(../images/icon/box-green.png),url(../images/icon/forklift-orange.png);
  background-size: 100%,45%,70%;
  background-position:center 0,left 320px,right 410px;
  background-repeat: no-repeat;
  text-align: left;
  padding: 0 20px;
  max-width: 450px;
}
.section-introduction__description{
  padding-top: 20px;
}
.section-introduction__description h2{
  font-size: 2.4rem;
  text-align: left;
  margin-bottom: 20px;
}
.section-introduction__marker{
  background: linear-gradient(transparent 60%, #2fd3d7 50%);
}
.section-introduction__description p{
  margin-bottom: 20px;
}
.section-introduction__description h3{
  font-size: 3.2rem;
  color: #f9449b;
  font-weight: 600;
}
.about__step{
  display: block;
  padding: 80px 0 0 0;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 768px){
  .section-introduction{
    position: relative;
    margin: 0 auto 190px auto;
    padding: 0;
    background-size: 80%,30%,50%;
    background-position:bottom 0 left 30px,bottom 620px left 440px,bottom 220px left 450px;
    background-repeat: no-repeat;
    text-align: left;
    max-width: 900px;
    height: 900px;
  }
  .section-introduction__description{
    margin: 0 50px;
  }
  .section-introduction__description h2{
    font-size: 3.2rem;
    padding-bottom: 20px;
  }
  .section-introduction__description p{
    font-size: 2.0rem;
    line-height: 200%;
  }
  .about__step{
    width: 550px;
    height: auto;
    padding: -0.3px ;
  }
}
/*about us*/
.section-aboutus{
  background-color: #2fd3d7;
  padding: 30px 20px;
  margin: 0 auto;
}
.section-aboutus h2{
 font-size: 2.4rem;
 margin-bottom: 30px;
 padding-top: 30px;
}
.section-aboutus__marker{
  background: linear-gradient(transparent 65%, #fff 50%);
  margin-left: 5px;
}
.section-aboutus__container{
  justify-content: center;
  max-width: 450px;
  margin: 0 auto;
}
.section-aboutus__topic{
  width: 80%;
  margin: 0 auto 40px auto;
}
.section-aboutus__topic h3{
  text-align: center;
  color: #fff;
  line-height: 40px;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
}
.section-aboutus__index{
  border-radius: 20px 0 0 0;
  background-color: #0080DC;
  width: 200px;
  height: 40px;
  margin: 0 0 0 auto;
}
.section-aboutus__description{
  background-color: #fff;
  padding: 20px;
  border-radius: 20px 0 0 0;
}
.section-aboutus__description p{
  margin-bottom: 20px;
  text-align: left;
  letter-spacing: 2px;
}
.section-aboutus__topic img{
  width: 100%;
  object-fit: cover;
  border-radius: 60% 40% 50% 70%/40% 60% 70% 60%;
}
@media (min-width: 920px){
  .section-aboutus__container{
    display: flex;
    justify-content: space-between;
    max-width: 1170px;
  }
  .topic-title{
    margin-bottom: 40px;
  }
  .section-aboutus__topic{
    width: 30%;
    margin: 0 auto 40px auto;
  }
  .aboutus-description2{
    padding-bottom: 110px;
  }
  .aboutus-description3{
    padding-bottom: 180px;
  }
}
/*schedule*/
.section-schedule{
  padding-top: 60px;
}
.section-schedule h2{
  font-size: 2.4rem;
  padding-top: 5px;
  margin-left: 5px;
 }
 .section-schedule__marker{
   background: linear-gradient(transparent 65%, #2fd3d7 50%);
 }
 .section-schedule__title{
  margin-bottom: 0;
 }
 .section-schedule__timetable{
  width: 375px;
 }
 .section-schedule__line{
  border-right: 3px dashed #2fd3d7;
  height: 200px;
  width: 100px;
  margin-right: 57px;
}
.section-schedule__line-short{
  border-right: 3px dashed #2fd3d7;
  height: 50px;
  width: 100px;
  margin-left: -57px;
}
.section-schedule__img-container{
  max-width: 330px;
  display: flex;
  margin: 0 auto;
}
 .section-schedule__img-container img{
  justify-content: right;
  width: 70%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
 }
 .section-schedule h3{
  margin-bottom: 30px;
 }
.section-schedule__timetable{
  margin: 0 auto;
  padding: 0 20px;
}
.timetable-detail{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding-top: 20px;
}
.timetable-detail h4{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 2.0rem;
  margin-right: 20px;
}
.tb-yellow h4{
  background-color: #f9f144;
  padding-top: 30px;
}
.tb-orange h4{
  background-color: #f9a544;
  padding-top: 30px;
}
.timetable-description p{
  width: 230px;
  text-align: left;
}
.timetable-description p{
  letter-spacing: 2px;
}
.section-schedule__img-wrapper{
  display: none;
}
@media (min-width: 1050px){
  .section-schedule h3{
    margin-bottom: 50px;
   }
  .section-schedule__container{
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
  }
  .schedule-img__sp{
    display: none;
  }
  .section-schedule__line{
    display: none;
  }
  .schedule-line__PC{
    border-right: 3px dashed #2fd3d7;
    height: 50px;
    width: 100px;
    margin-left: -57px;
  }
  .section-schedule__img-wrapper{
    display: block;
    width: 50%;
  }
  .section-schedule__img-wrapper img{
    width: 420px;
    height: 280px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 30px;
  }
.schedule-img__pc1,.schedule-img__pc3{
  margin-right: 20%;
}
.schedule-img__pc2{
  margin-left: 20%;
}
}
/*interview*/
.section-interview{
  padding-top: 70px;
  margin: 0 auto;
}
.section-interview h2{
  font-size: 2.4rem;
  padding: 5px 0 0 5px;
 }
 .section-interview__marker{
   background: linear-gradient(transparent 65%, #2fd3d7 50%);
 }
 .section-interview__list{
  margin: 0 auto;
 }
.section-interview__list a{
  text-decoration: none;
  color: #333;
}
.interview-01{
  background-color: #f96444;
}
.interview-02{
  background-color: #93f944;
}
.interview-03{
  background-color: #f9a544;
}
.interview-04{
  background-color: #44eef9;
}
.interview-05{
  background-color: #f9f144;
}
.interview-06{
  background-color: #f9449b;
}
.interview-cover{
  border-radius: 20px;
  margin: 20px auto;
  width: 320px;
  height: 140px;
}
.interview-cover__container{
  display: flex;
}
.interview-cover img{
  height: 140px;
  width: auto;
  padding: 10px 10px 0 10px;
}
.interview-cover h3{
  font-size: 2.0rem;
}
.interview__title{
  width: 150px;
}
.title-right h3{
  text-align: left;
  padding: 20px 10px 10px 10px;
}
.title-right h4{
  text-align: left;
  padding: 15px;
}
.title-left h3{
  text-align: left;
  padding: 20px 0 10px 20px;
}
.title-left h4{
  text-align: left;
  padding: 15px 10px 15px 20px
}
@media (min-width: 1050px){
  .section-interview__title{
    margin-bottom: 0;
  }
  .section-interview__list{
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 60px auto;
  }
  .interview-01{
    margin-top: 60px;
  }
}
/*interview-modal*/
.inner {
  width: min(80%, 1120px);
  margin: 0 auto;
  padding: 0;
}

/* モーダルを開くボタン */
.modal__trigger {
  cursor: pointer;
}

.modal__trigger:nth-child(n + 2) {
  margin-top: 60px;
}

/* モーダル本体 */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.modal__layer {
  height: 100%;
  background: rgba(50, 50, 50, .85);
  cursor: pointer;
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 40px), 1000px);
  height: calc(100% - 40px);
}
.modal__container01{
  background-color: #f96444;
}
.modal__container02{
  background-color: #93f944;
}
.modal__container03{
  background-color: #f9a544;
}
.modal__container04{
  background-color: #44eef9;
}
.modal__container05{
  background-color: #f9f144;
}
.modal__container06{
  background-color: #f9449b;
}
.modal__inner {
  position: relative;
  overflow-y: scroll;
  height: 100%;
  padding: 60px 0 20px 0;
  margin: 0 auto;
  box-sizing: border-box;
}

/* モーダルを閉じるボタン */
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(50, 50, 50, 1);
  cursor: pointer;
  transition: opacity .6s;
}

.modal__close:hover {
  opacity: .6;
}

.modal__close:before,
.modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: '';
}

.modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (min-width: 768px){
  .modal__close{
    top:40px;
  }
}
/* モーダル内のコンテンツ */
.modal__text {
  margin-top: 30px;
  line-height: 2.875;
}
.modal__title{
  color: #fff;
  display: block;
  text-align: left;
  font-weight: 600;
  padding: 20px 0 0 20px;
  margin-bottom: 20px;
}
.modal__img{
  width: 80%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 auto;
}
.modal__question{
  text-align: left;
  width: 80%;
  margin: 0 auto 15px auto;
  padding-top: 15px;
}
.modal__q{
  color: #fff;
  font-weight: 600;
  letter-spacing: 3px;
  padding-left: 20px;
  margin-bottom: 10px;
}
.modal__a{
  background-color: #fff;
  border-radius: 20px;
  font-size: 1.4rem;
  padding: 15px;
  box-sizing: border-box;
  line-height: 200%;
  letter-spacing: 2px;
}
.tx-black{
  color: #333;
}
@media (min-width: 786px){
  .modal__title{
    font-size: 2.4rem;
    margin-left: 80px;
    line-height: 200%;
  }
  .modal__img{
    width: 60%;
   max-height: 50vh;
   object-fit: cover;
   object-position: top;
  }
  .modal__question{
    width: 60%;
  }
  .modal__q{
    font-size: 2.0rem;
  }
  .modal__a{
    font-size: 1.6rem;
  }
}
/*Garelly*/
.section-garelly{
  margin: 0 auto;
}
.section-garelly img{
  width: 15%;
  aspect-ratio: 1;
  margin: 20px 20px 0 20px;
  object-fit: cover;
  box-sizing: border-box;
}
.garelly-base{
  height: auto;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1140px){
  .section-garelly img{
  width: 200px;
  height: 200px;
  margin: 30px;
  }
  }
/*merit*/
.section-merit{
  background-color: #2fd3d7;
  padding: 60px 0 30px 0;
  margin: 0 auto;
}
.section-merit .topic-title{
  width: 320px;
}
.section-merit h2{
  font-size: 2.4rem;
  margin-bottom: 40px;
  padding: 20px 0 0 5px;
 }
 .section-merit__marker{
  background: linear-gradient(transparent 65%, #fff 50%);
}
.section-merit__pink{
  color: #f9449b;
}
.merit-detail{
  width: 350px;
  padding-bottom: 30px;
  background-image: url(../images/merit/merit-bg.png);
  background-position: top 45px right 50%;
  background-repeat: no-repeat;
  background-size: 230px 300px;
  margin:0 auto 40px auto;
  box-sizing: border-box;
}
.merit-title{
  display: flex;
}
.merit-title img{
  width: 175px;
  height: 175px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.merit-title h3{
  font-size: 9.0rem;
  width: 175px;
  height: 175px;
  color: #f9a544;
  opacity: 50%;
  padding-top: 80px;
  text-align: left;
}
.merit-description h4{
  text-align: left;
  font-size: 2.0rem;
  margin-bottom: 10px;
  letter-spacing: 3px;
}
.merit-description h4 span{
  color: #f9f144;
  font-size: 3.6rem;
}
.merit-description p{
  text-align: left;
  letter-spacing: 2px;
}
.merit-06 img{
  object-position: right;
}
.section-merit .icon-track__white{
  margin-top: 10px;
}
@media (min-width: 1050px){
  .section-merit__list{
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 60px auto;
  }
  .merit-detail{
    margin: 0 auto 60px auto;
  }
  .section-merit__pink{
    font-size: 3.6rem;
  }
  .section-merit .icon-track__white{
    margin-top: 18px;
  }
}
/*message*/
.section-message{
  padding-top: 60px;
}
.section-message .topic-title{
  width: 330px;
  height: 45px;
}
.section-message h2{
  font-size: 2.4rem;
  margin-bottom: 40px;
  padding: 5px 0 0 5px;
 }
 .section-message__marker{
   background: linear-gradient(transparent 65%, #2fd3d7 50%);
 }
 .section-message__img-area{
  background-image: url(../images/message/message.jpg);
  width: 100%;
  height: auto;
  object-fit: contain;
  background-repeat: no-repeat;
  background-size: 100%;
  object-position: center;
 }
 .message-line{
  width: 100%;
  height: auto;
  padding-top: 46%;
 }
 .message-line__bottom{
  padding-top: 20px;
 }
 .message-text{
  margin: 0 auto;
  max-width: 850px;
 }
 .section-message p{
  text-align: left;
  max-width: 850px;
  padding: 20px 20px 0 20px;
  letter-spacing: 2px;
 }
 /*copyright*/
 .copyright{
  padding-top: 40px;
 }
 .copyright p{
    font-size: 1.2rem;
 }
/*footer*/
.footer{
  width: 100%;
  height: 65px;
  background-color:rgba(249,241,68,0.7) ;
  position: fixed;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
}
.active{
  opacity: 1;
  visibility: visible;
}
.link-button img{
  width: 20px;
  height: auto;
  margin: 10px 10px 10px 0;
}
.link-button p{
  margin: 10px;
  font-weight: 600;
  letter-spacing: 3px;
}
.btn_hp{
  text-decoration: none;
  color: #fff;
  background-color: #2fd3d7;
  display: flex;
  padding: 0 10px;
  border-radius: 20px;
  box-shadow:5px 5px 0px 0 #333;
}
.btn_application{
  text-decoration: none;
  color: #fff;
  background-color: #0080DC;
  display: flex;
  padding: 0 10px;
  border-radius: 20px;
  box-shadow:5px 5px 0px 0 #333;
}
.link-button{
  display:flex;
  justify-content: space-around;
  max-width: 920px;
  margin: 10px auto;
}