@charset "UTF-8";
/* CSS Document */





#mask path{
  fill:none;
  stroke:#FFF;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-width:16px;
  stroke-dasharray: 1500;
  stroke-dashoffset:1500;
}
.mainImage{
  position: relative;
  width: min(90vw, 1700px);
  height: calc(100vh + 100px);
  margin: 0 auto;
  margin-bottom: var(--space-section-50);
  display: flex;
  flex-direction: row;
  background: #FFF;
  &::before {
    position: absolute;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #FFF;
    z-index: -1;
    content: '';
  }
}
.mainImageText{
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  width: min(60vw, 700px);
  height: 100vh;
  z-index: 100;
  padding-top: 6%;
}
.mainImageText .news-list{
  position: absolute;
  bottom: 3rem;
  width: 100%;
  line-height: 1.5;
}
.mainImageText .news-list .item .date{
  min-width: 0;
  width: 110px;
  font-size: 12px;
}
.mainImageText .news-list .item a{
  padding: 10px;
}
.mainImageText .news-list .item .title{
  text-overflow: ellipsis;
  font-size: 12px;
}
.ltrAnime{
  position: relative;
}
.ltrMask, .ttbMask{
  display: inline-block;
  position: absolute;
  z-index: 50;
  width: 110%;
  height: 100%;
  background: #FFF;
}
.chiikino{
  width: 90%;
  margin-top: 1rem;
}
.mainImageSlide,
.mainImageSlide .splide{
  height: 100vh;
  overflow: hidden;
}
.mainImageSlide{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: min(50vw, 930px);
  position: absolute;
  right: 0;
}
.splide{
  margin-right: 2rem;
}
.splide__slide img{
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.slide-a{
  width: 40%;
  opacity: 0.7
}
.news-list {
    list-style: none outside;
    margin: 0;
    padding: 0;
}
.news-list .item a ,
.news-list a{
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #DEE3E8;
    padding: 20px 10px;
    gap: 1em 20px;
}
.news-list .item .date {
    margin: 0;
    width: 160px;
    font-size: 16px;
    color: #818181;
    white-space: nowrap;
}
.news-list .item .title {
    color: #333;
}
.news-list .item a:hover .title {
    opacity: 0.8;
}
@media (width <= 1740px) {
  .mainImageSlide,
  .mainImageSlide .splide {
    height: 100vh;
    overflow: hidden;
  }

  .mainImageSlide {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    width: min(48vw, 820px);
    position: absolute;
    right: 0;
  }

  .mainImageSlide .splide {
    margin-right: 0;
    min-width: 0;
  }

  .slide-a {
    flex: 0.8;
    opacity: 0.7;
  }

  .slide-b {
    flex: 1;
  }

  .splide__slide img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
  }
}
@media (width <= 767px) {
  .mainImage{
    width: 100vw;
    height: 100vh;
    margin-bottom: var(--space-section-50);
  }
  .mainImageText{
    width: 100vw;
    padding-left: var(--space-section-20);
    padding-right: var(--space-section-20);
  }
  .mainImageText .news-list{
    width: calc(100% - var(--space-section-40));
    line-height: 1.5;
  }
}
@media (width <= 430px) {
  .mainImageSlide{
    width: min(48vw, 820px);
  }
  .splide{
    margin-right: 0;
  }
  .slide-a{
    display: none;
  }
}




.about {
  margin-bottom: var(--space-section-150);
  .box {
    position: relative;
    padding: var(--space-section-80) var(--space-section-100);
    display: flex;
    align-items: flex-start;
    gap: 150px;
    &::before {
      position: absolute;
      inset: 0;
      width: calc(100% + ((100vw - 100%) / 2));
      height: 100%;
      background: #FFF;      
      z-index: -1;
      border-top-left-radius: var(--radius100);
      border-bottom-left-radius: var(--radius20);
      content: '';
    }
    .box_l {
      flex: 0 1 520px;
      h3 {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        margin-bottom: var(--space-section-30);
        * {
          display: block;
          line-height: 1em;
        }
        em {
          font-family: var(--font-eng-grade);
          font-size: 15.0rem;
          font-weight: 500;
          letter-spacing: .02em;
          background: var(--eng-grade-txt);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          color: transparent;
          margin-bottom: .1em;
          white-space: nowrap;
        }
        span {
          font-size: 1.6rem;
          font-weight: 700;
          letter-spacing: .1em;
          color: #008EB3;
        }
      }
      h4 {
        font-size: 4.0rem;
        font-weight: 700;
        line-height: 1.4;
        letter-spacing: .1em;
        margin-bottom: var(--space-section-30);
      }
      .comment {
        width: min(100%, 460px);
        font-size: 1.8rem;
        letter-spacing: .1em;
        margin-bottom: 1.5em;
      }
    }
    .img {
      flex: 0 1 540px;
      overflow:hidden;
      border-radius: var(--radius20);
    }
  }
}

@media (width <= 1440px) {
  .about {
    .box {
      gap: var(--space-section-50);
      padding: var(--space-section-60) var(--space-section-50);
      align-items: center;
      .box_l,
      .img {
        min-width: 0;
      }
      .box_l {
        flex: 5;
        h3 {
          em {
            font-size: clamp(8rem, 10vw, 12rem);
          }
          span {
            font-size: 1.5rem;
          }
        }
        h4 {
          font-size: clamp(2.8rem, 2.4vw, 3.6rem);
        }
        .comment {
          width: 100%;
          font-size: clamp(1.5rem, 1.2vw, 1.8rem);
        }
      }
      .img {
        flex: 6;
        img {
          width: 100%;
          height: auto;
          display: block;
        }
      }
    }
  }
}
@media (width <= 767px) {
  .about {
    margin-bottom: var(--space-section-100);
    .box {
      padding: var(--space-section-80) 0;
      flex-direction: column;
      gap: var(--space-section-40);
      &::before {
        inset: 0;
        left: calc(50% - 50vw);
        width: 100vw;
      }
      .box_l {
        flex: inherit;
        h3 {
          margin-bottom: var(--space-section-30);
          em {
            font-size: clamp(6.0rem, 20.5vw, 8.0rem);
          }
          span {
            font-size: 1.4rem;
          }
        }
        h4 {
          font-size: clamp(2.8rem, 8vw, 3.2rem);
          margin-bottom: var(--space-section-20);
        }
        .comment {
          width: 100%;
          font-size: 1.6rem;
        }
      }
      .img {
        width: min(100%, 540px);
        margin: 0 auto;
      }
    }
  }
}


.business {
  margin-bottom: var(--space-section-160);
  .box {
    position: relative;
    padding: var(--space-section-80) var(--space-section-100);
    &::before {
      position: absolute;
      inset: 0;
      left: auto;
      right: 0;
      width: calc(100% + ((100vw - 100%) / 2));
      height: 100%;
      background: var(--bg-grade01);
      z-index: -1;
      border-top-right-radius: var(--radius100);
      border-bottom-right-radius: var(--radius20);
      content: '';
    }
    &::after {
      position: absolute;
      bottom: 110px;
      right: 100px;
      width: 508px;
      height: 1831px;
      background: url(../img/top/business_line.svg) no-repeat center center;
      background-size: cover;
      transform: translateX(100%);
      content: '';
    }
    h3 {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-section-40);
      color: #FFF;
      * {
        display: block;
        color: #FFF;
        line-height: 1em;
      }
      em {
        font-family: var(--font-eng-grade);
        font-size: 15.0rem;
        font-weight: 500;
        letter-spacing: .02em;
        margin-bottom: .1em;
      }
      span {
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: .1em;
      }
    }
    .box_in {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px 20px;
      section {
        border-radius: var(--radius20);
        background: #FFF;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
        a {    
          position: relative;
          display: block;
          .img {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius20);
          }
          &::after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-grade04);
            overflow: hidden;
            border-radius: var(--radius20);
            content: '';
          }
          .img img {
            display: block;
            width: 100%;
            height: auto;          
            transition: transform .4s ease;          
            will-change: transform;          
            transform-origin: center;
          }
          &:hover .img img {
            transform: scale(1.08);
          }
          h4 {
            position: absolute;
            bottom: var(--space-section-20);
            left: 0;
            right: 0;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            * {
              display: block;
              line-height: 1em;
            }
            span {
              font-size: 2.4rem;
              font-weight: 700;
              background: var(--eng-grade-txt);
              -webkit-background-clip: text;
              background-clip: text;
              -webkit-text-fill-color: transparent;
              color: transparent;
              letter-spacing: .1em;
              margin-bottom: .2em;
            }
            em {
              color: #008EB3;
              font-size: 1.2rem;
              letter-spacing: .1em;
            }
          }
        }
      }
    }
  }
}
@media (width <= 1440px) {
  .business {
    .box {
      padding:
        var(--space-section-60)
        var(--space-section-50);
  
      &::after {
        right: 50px;
        width: 380px;
        height: auto;
        aspect-ratio: 508 / 1831;
      }
  
      h3 {
        em {
          font-size: clamp(10rem, 10vw, 13rem);
        }
      }
  
      .box_in {
        gap: 20px 15px;
  
        section {
          a {
            h4 {
              bottom: var(--space-section-15);
  
              span {
                font-size: 2rem;
              }
            }
          }
        }
      }
    }
  }
}
@media (width <= 1040px) {
  .business {
    .box {
      &::after {
        display: none;
      }  
      .box_in {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;  
        section {
          aspect-ratio: 3 / 1;  
          a {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
          }  
          .img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border-radius: var(--radius20);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;  
            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              object-position: center center;
              display: block;
            }
          }  
          h4 {
            position: absolute;
            top: 50%;
            right: 0;
            left: 0;
            bottom: auto;
            z-index: 2;  
            transform: translateY(-50%);  
            width: 100%;  
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;  
            text-align: center;
          }
        }
      }
    }
  }
}
@media (width <= 767px) {
  .business {
    margin-bottom: var(--space-section-100);
    .box {
      padding: var(--space-section-80) 0;
      &::before {
        inset: 0;
        left: calc(50% - 50vw);
        width: 100vw;
      }
      &::after {
        content: none;
      }
      h3 {
        margin-bottom: var(--space-section-40);
        em {
          font-size: clamp(6.0rem, 20.5vw, 8.0rem);
        }
        span {
          font-size: 1.4rem;
        }
      }
      .box_in {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-section-15);
        section {
          a {
            &::after {
              background: var(--bg-grade06);
            }
            h4 {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              span {
                font-size: 1.8rem;
                margin-bottom: .4em;
              }
            }
          }
        }
      }
    }
  }
}


.recruit {
  background: url(../img/top/square_bg.png) repeat center center;
  background-size: calc(50px / 2);
  padding-top: var(--space-section-150);
  padding-bottom: var(--space-section-150);
  .title-img {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: var(--space-section-80);    
    .box_r {
      position: relative;
      order: 2;
      width: min(100%, 460px);
      margin-left: auto;
      h3 {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        margin-bottom: var(--space-section-30);
        * {
          display: block;
          line-height: 1em;
        }
        em {
          font-family: var(--font-eng-grade);
          font-size: 15.0rem;
          font-weight: 500;
          letter-spacing: .02em;
          background: var(--eng-grade-txt);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          color: transparent;
          margin-bottom: .1em;
          white-space: nowrap;
        }
        span {
          font-size: 1.6rem;
          font-weight: 700;
          letter-spacing: .1em;
          color: #008EB3;
        }
      }
      .comment {
        font-size: 1.8rem;
        letter-spacing: .1em;
        margin-bottom: 1.5em;
      }
      .img-reveal {
        position: absolute;
        right: -140px;
        bottom: 20px;
        overflow: visible;
        span {
          display: block;
          width: 140px;
          overflow: hidden;
        }
        img {
          display: block;
          width: 100%;
          transform: translateY(120%);
          opacity: 0;
          will-change: transform, opacity;
        }
        &.show img {
          animation: imgBounceUp 1s cubic-bezier(.22, 1, .36, 1) forwards;
        }
      }  
    }
    .img {
      order: 1;
      margin-right: -115px;
      ul {
        position: relative;
        display: flex;
        align-items: flex-start;
        li {
          overflow:hidden;
          border-radius: var(--radius20);
          &:nth-of-type(1) {
            width: 395px;
          }
          &:nth-of-type(2) {
            position: relative;
            top: 240px;
            left: -115px;
            width: 340px;
          }
        }
      }
    }
  }
  .recruitSlide li {
    width: 250px;
    overflow:hidden;
    border-radius: var(--radius10);
  }
}
@media (width <= 1240px) {  
  .recruit {  
    .title-img {
      gap: var(--space-section-40);
      .box_r {
        width: min(100%, 500px);
        h3 {
          em {
            font-size: clamp(10rem, 11vw, 13rem);
          }
        }
        .comment {
          font-size: 1.6rem;
        }
        .img-reveal {
          right: -80px;
          span {
            width: 100px;
          }
        }
      }
      .img {
        margin-right: clamp(-60px, -4vw, -115px);  
        ul {
          li {
            &:nth-of-type(1) {
              width: clamp(240px, 26vw, 395px);
            }  
            &:nth-of-type(2) {
              top: clamp(140px, 15vw, 240px);
              left: clamp(-60px, -4vw, -115px);
              width: clamp(210px, 22vw, 340px);
            }
          }
        }
      }
    }
    .recruitSlide {
      li {
        width: 220px;
      }
    }
  }
}
@media (width <= 767px) {
  .recruit {
    background: url(../img/top/square_bg.png) repeat center center;
    background-size: calc(50px / 2);
    padding-top: var(--space-section-80);
    padding-bottom: var(--space-section-80);
    .title-img {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      gap: 30vw;
      margin-bottom: 300px;    
      .box_r {
        order: 2;
        width: 100%;
        margin-left: 0;
        h3 {
          em {
            font-size: clamp(6.0rem, 20.5vw, 8.0rem);
          }
          span {
            font-size: 1.4rem;
          }
        }
        .comment {
          font-size: 1.6rem;
        }
        .img-reveal {
          right: 0;
          bottom: -250px;
          span {
            width: 140px;
          }
        }  
      }
      .img {
        order: 1;
        margin-right: 0;
        ul {
          li {
            &:nth-of-type(1) {
              width: 65vw;
            }
            &:nth-of-type(2) {
              position: relative;
              top: 40vw;
              left: -30vw;
              width: 55vw;
            }
          }
        }
      }
    }
    .recruitSlide li {
      width: 250px;
    }
  }
}


.topics-sns_line {
  position: relative;
  &::before {
    position: absolute;
    top: calc(var(--space-section-150) + .2em);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-eng-grade);
    font-size: 15.0rem;
    line-height: 1em;
    width: 2287px;
    height: 1916px;
    background: url(../img/top/topics-sns_line.svg) no-repeat center center;
    content: '';
  }
  @media (width <= 1240px) {
    &::before {
      top: calc(var(--space-section-120) + .2em);
      font-size: clamp(10rem, 11vw, 12rem);
      width: min(180vw, 2287px);
      height: auto;
      aspect-ratio: 2287 / 1916;
      background-size: cover;
    }
  }
  @media (width <= 767px) {
    &::before {
      content: none;
    }
  }
}

.topics {
  padding-top: var(--space-section-150);
  padding-bottom: var(--space-section-150);
  h3 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: var(--space-section-30);
    * {
      display: block;
      line-height: 1em;
    }
    em {
      font-family: var(--font-eng-grade);
      font-size: 15.0rem;
      font-weight: 500;
      letter-spacing: .02em;
      background: var(--eng-grade-txt);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      margin-bottom: .1em;
      white-space: nowrap;
    }
    span {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: .1em;
      color: #008EB3;
    }
  }
  .box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    section {
      border-bottom: solid 1px #DDDDDD;
      padding-bottom: var(--space-section-30);
      margin-bottom: var(--space-section-30);
      &:nth-of-type(odd) {
        padding-right: 80px;
      }
      a {
        display: flex;
        align-items: center;
        gap: 30px;
        .box_l {
          flex: 1;
          display: flex;
          flex-direction: column;
          time {
            font-size: 1.4rem;
            color: #818181;
            margin-bottom: .6em;
          }
          h4 {
            font-size: 1.6rem;
          }
        }
        .img {
          width: 220px;
          overflow:hidden;
          border-radius: var(--radius10);
        }
      }
    }
  }
  .more-btn {
    display: flex;
    justify-content: flex-end;
    padding-top: var(--space-section-30);
    p a {
      position: relative;
      display: block;
      font-size: 1.6rem;
      letter-spacing: .1em;
      padding-left: 2.75em;
      transition: transform .3s ease;
      &::before {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: calc(30 / 16 * 1em);
        aspect-ratio: 1;
        background: url(../img/top/more-btn-icon.svg) no-repeat center center;
        background-size: cover;
        content: '';
      }
      &:hover {
        transform: translateX(8px);
      }
    }
  }
}
@media (width <= 1240px) {   
  .topics {
    h3 {
      em {        
        font-size: clamp(10rem, 11vw, 13rem);
      }
    }
    .box {  
      section {
        padding-bottom: var(--space-section-20);
        margin-bottom: var(--space-section-20);  
        &:nth-of-type(odd) {
          padding-right: 30px;
        }  
        a {
          gap: 20px;  
          .box_l {
            min-width: 0;  
            time {
              font-size: 1.3rem;
            }  
            h4 {
              font-size: 1.5rem;
            }
          }  
          .img {
            width: clamp(140px, 18vw, 180px);
            flex-shrink: 0;
          }
        }
      }
    }
  }
}
@media (width <= 767px) {
  .topics {
    padding-top: var(--space-section-100);
    padding-bottom: var(--space-section-100);
    h3 {
      em {
        font-size: clamp(6.0rem, 20.5vw, 8.0rem);
      }
      span {
        font-size: 1.4rem;
      }
    }
    .box {
      display: flex;
      flex-direction: column;
      section {
        &:nth-of-type(odd) {
          padding-right: 0;
        }
        a {
          align-items: flex-start;
          gap: var(--space-section-15);
          .box_l {
            h4 {
              font-size: 1.4rem;
            }
          }
          .img {
            width: 115px;
          }
        }
      }
    }
  }
}



.sns {
  background: url(../img/top/square_bg.png) repeat center center;
  background-size: calc(50px / 2);
  padding-top: var(--space-section-150);
  padding-bottom: var(--space-section-150);
  h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: var(--space-section-40);
    * {
      display: block;
      line-height: 1em;
    }
    em {
      font-family: var(--font-eng-grade);
      font-size: 15.0rem;
      font-weight: 500;
      letter-spacing: .02em;
      background: var(--eng-grade-txt);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      margin-bottom: .1em;
      white-space: nowrap;
    }
    span {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: .1em;
      color: #008EB3;
    }
  }
  .box {
    display: grid;
    grid-template-columns: minmax(0, 620fr) minmax(0, 455fr);
    gap: clamp(30px, 10.416vw, 125px);
    h4 {
      font-family: var(--font-eng-grade);
      color: #004EB3;
      font-size: 4.0rem;
      font-weight: 500;
      letter-spacing: .05em;
      line-height: 1em;
      text-align: center;
      margin-bottom: .5em;
    }
    .box_in {
      width: 100%;
    }
    .insta iframe,
    .youtube iframe {
      display: block;
      width: 100%;
    }
    .youtube iframe {
      aspect-ratio: 455 / 315;
      height: auto;
    }
  }
  .img-reveal {
    position: absolute;
    right: -145px;
    top: -70px;
    overflow: visible;
    span {
      display: block;
      width: 293px;
      overflow: hidden;
    }
    img {
      display: block;
      width: 100%;
      transform: translateY(120%);
      opacity: 0;
      will-change: transform, opacity;
    }
    &.show img {
      animation: imgBounceUp 1s cubic-bezier(.22, 1, .36, 1) forwards;
    }
  }
}
@media (width <= 1240px) {  
  .sns {
    h3 {
      em {        
        font-size: clamp(10rem, 11vw, 13rem);
      }
    }
    .img-reveal {
      right: clamp(-80px, -6vw, -145px);
      top: clamp(-40px, -3vw, -70px);
    
      span {
        width: clamp(180px, 20vw, 293px);
      }
    }
  }  
}
@media (width <= 767px) {
  .sns {
    background: url(../img/top/square_bg.png) repeat center center;
    background-size: calc(50px / 2);
    padding-top: var(--space-section-80);
    padding-bottom: var(--space-section-80);
    .mw1200 {
      display: flex;
      flex-direction: column;
    }
    h3 {
      order: -99;
      margin-bottom: var(--space-section-40);
      em {
        font-size: clamp(6.0rem, 20.5vw, 8.0rem);
      }
      span {
        font-size: 1.4rem;
      }
    }
    .box {
      order: 99;
      display: flex;
      flex-direction: column;
      gap: var(--space-section-80);
      h4 {
        font-size: clamp(2.8rem, 8vw, 3.2rem);
      }
    }
    .img-reveal {
      order: -99;
      position: relative;
      right: inherit;
      top: inherit;
      display: flex;
      justify-content: flex-end;
      margin-bottom: var(--space-section-40);
      span {
        width: 200px;
      }
    }
  }
}



.common-online {
  padding-top: var(--space-section-150);
  padding-bottom: var(--space-section-150);
}
@media (width <= 767px) {
  .common-online {
    padding-top: var(--space-section-100);
    padding-bottom: var(--space-section-100);
  }
}













@keyframes imgBounceUp {
  0% {
    transform: translateY(120%);
    opacity: 0;
  }
  60% {
    transform: translateY(-4%);
    opacity: 1;
  }
  75% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}




