@charset "utf-8";
body {
  background: #fff;
}
.mv {
  position: relative;
  overflow: clip;
  width: 100%;
}
.mv::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("../../images/mv_frame.svg") no-repeat left top / 100%;
    content: "";
  }
.mv__movie {
  position: relative;
  height: 100vh;
  height: 100dvh;
}
.mv__movie video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
.mv__lead {
  position: absolute;
  top: 90px;
  left: 4.166%;
  color: var(--color-primary);
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.main-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 2.5rem;
  gap: 0.3em;
  font-weight: bold;
  line-height: 1.37;
  letter-spacing: 0.13em;
}
.main-lead span {
    --delay: 0.5s;
    --cover-delay: 1s;
    position: relative;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    transition: -webkit-clip-path 0.4s var(--delay) cubic-bezier(0.46, 0.03, 0.52, 0.96);
    transition: clip-path 0.4s var(--delay) cubic-bezier(0.46, 0.03, 0.52, 0.96);
    transition: clip-path 0.4s var(--delay) cubic-bezier(0.46, 0.03, 0.52, 0.96), -webkit-clip-path 0.4s var(--delay) cubic-bezier(0.46, 0.03, 0.52, 0.96);
  }
.main-lead span::after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--color-primary);
      content: "";
      transition: height 0.4s var(--cover-delay) cubic-bezier(0.46, 0.03, 0.52, 0.96);
    }
.main-lead span:nth-of-type(1) {
    --delay: 0.5s;
    --cover-delay: 1s;
  }
.main-lead span:nth-of-type(2) {
    --delay: 0.8s;
    --cover-delay: 1.3s;
  }
.main-lead span:nth-of-type(3) {
    --delay: 1.1s;
    --cover-delay: 1.6s;
  }
.is-loaded .main-lead span {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
.is-loaded .main-lead span::after {
      height: 0;
    }
.sub-lead {
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.833;
}
.mv__btn {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}
.mv__btn a {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 150px;
    transition: all 0.3s;
  }
.mv__btn a:hover {
      transform: scale(0.9);
    }
/* 見出し */
.top-heading {
  margin-bottom: 20px;
}
.top-heading__en {
  display: block;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.top-heading__en::before {
    display: inline-block;
    width: 0.4375rem;
    height: 0.4375rem;
    margin-right: 0.25em;
    border-radius: 50%;
    background: var(--color-secondary);
    vertical-align: middle;
    content: "";
  }
.top-heading__main {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.intro {
  position: relative;
  padding-top: 22vw;
  padding-bottom: 15vw;
}
.intro__title {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: min(10vw, 6.875rem);
  font-weight: 600;
  line-height: 1.2;
}
.intro__title span {
    --delay: 0s;
    display: block;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s var(--delay) cubic-bezier(0.46, 0.03, 0.52, 0.96);
  }
.intro__title span:nth-of-type(1) {
      color: #fff;
    }
.intro__title span:nth-of-type(2) {
      --delay: 0.5s;
    }
.intro__title span:nth-of-type(2)::before {
      overflow: hidden;
      position: absolute;
      top: 0;
      left: 0;
      height: 50%;
      color: #fff;
      content: attr(data-text);
    }
.intro__title span:nth-of-type(3) {
      --delay: 1s;
    }
.intro__title.is-shown span {
    opacity: 1;
    transform: translateX(0);
  }
.intro__body {
  margin-bottom: 2em;
  font-weight: 500;
}
.top-result {
  overflow: hidden;
  margin-bottom: 15vw;
  padding: 30px 5%;
  border-radius: 15px;
  border: 1px solid var(--color-primary);
  background: url("../../images/result_bg@sp.jpg") no-repeat center center / cover;
  color: #fff;
}
.top-result__body {
  font-size: 2rem;
  font-weight: bold;
  text-align: right;
  line-height: 1.33;
  text-shadow: 7px 7px 10px rgba(0, 0, 0, 0.5);
}
.top-result__body [data-countup-target] {
    font-size: 1.842em;
  }
.top-bg {
  border-radius: 0 60px 0 0;
}
.top-about {
  padding-top: 15vw;
}
.top-about__image {
  position: relative;
  margin-bottom: 8vw;
}
.top-about__image .illust {
    position: absolute;
    bottom: -24px;
    left: -26px;
  }
.top-service {
  padding-top: min(15vw, 80px);
}
.top-service__column {
  margin-top: 40px;
  position: relative;
}
.top-service__column .illust {
    position: absolute;
    top: -7%;
    right: -3%;
    width: 18.33%;
  }
.top-service-link {
  display: block;
  overflow: hidden;
  position: relative;
  margin-bottom: 5vw;
  border-radius: 15px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.05);
  background: #fff;
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.top-service-link .icon-arrow-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-primary);
    transition: all 0.4s;
  }
.top-service-link__body {
  padding: 6% 7.166%;
}
.top-service-link__body h3 {
    margin-bottom: 0.66em;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
  }
.top-service-link__body h3 strong {
      color: var(--color-primary);
      font-size: 1.4em;
    }
.top-service-link__image {
  overflow: hidden;
  height: 40vw;
}
.top-service-link__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.7s;
  }
.top-service-link:hover .icon-arrow-next {
    background: var(--color-primary);
    color: #fff;
  }
.top-service-link:hover .top-service-link__image img {
      transform: scale(1.1);
    }
.top-company {
  margin-top: min(15vw, 100px);
}
.top-company__image {
  display: flex;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto 10vw;
}
.top-company__image > :first-child {
    margin-top: 12.5%;
  }
.top-company__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16em, auto));
  grid-gap: 16px;
}
.top-company__links a {
    display: block;
    position: relative;
    border-radius: 15px;
    padding: 1.1rem 3.75rem 1.1rem 1.5rem;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.05);
    background: #fff;
    color: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.33;
    -webkit-text-decoration: none;
    text-decoration: none;
  }
.top-company__links a .en {
      display: block;
      color: var(--color-primary);
      font-size: 2em;
      font-weight: 700;
    }
.top-company__links a .icon-arrow-next {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      right: 1.3125rem;
      width: 2em;
      height: 2em;
      margin-top: -1em;
      border-radius: 50%;
      background: #e4e5f2;
      color: var(--color-primary);
      transition: transform 0.3s;
    }
.top-company__links a:hover .icon-arrow-next {
      transform: translateX(5px);
    }
/* 採用情報 */
.top-recruit-outer {
  position: relative;
  z-index: 0;
  width: max(94.666%, calc(100% - 60px));
  max-width: none;
  margin-top: 13vw;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: min(15vw, 150px);
}
.top-recruit-outer::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    width: 100vw;
    height: 50%;
    background: #fff;
    content: "";
  }
.top-recruit {
  padding: 50vw 3vw 3vw;
  border-radius: 0 12vw;
  background: #ddd9fb url("../../images/recruit_bg1@sp.jpg") no-repeat center top / 100%;
}
.top-recruit__body {
  padding: 8vw;
  border-radius: 0 9vw;
  background: url("../../images/recruit_bg2.jpg") no-repeat center center / cover;
  color: #fff;
}
.top-recruit__body .top-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
.top-recruit__body .top-heading__en {
    color: #fff;
    font-size: 0.75rem;
  }
.top-recruit__body .top-heading__main {
    font-size: 1.875rem;
  }
.top-recruit__body .btn {
    border: 1px solid #fff;
    background: transparent;
  }
.top-news {
  margin-top: min(15vw, 150px);
  margin-bottom: min(15vw, 150px);
}
.top-news__body {
  margin-top: 2.5em;
}
.top-news-category-list {
  list-style: none;
  padding: 0;
}
.top-news-category-list li {
    margin-bottom: 0.5em;
  }
.top-news-category-list a {
    display: flex;
    align-items: center;
    gap: 0.3em;
    padding: 0 1em 0 0.5em;
    border-radius: 1em;
    color: inherit;
    font-weight: 500;
    line-height: 1.75;
    -webkit-text-decoration: none;
    text-decoration: none;
  }
.top-news-category-list a.is-current {
      background: #f7f8f8;
    }
.top-news-category-list a:hover {
      -webkit-text-decoration: underline;
      text-decoration: underline;
    }
.top-news-category-list a::before {
    width: 0.4em;
    height: 0.4em;
    border-radius: 50%;
    background: #a7a9d4;
    content: "";
  }
@media (max-width: 40em) {}
@media (min-width: 40.001em) {
  .mv__movie {
    height: 1212px;
  }
  .main-lead {
    top: 13.2%;
    font-size: 3.5rem;
  }
  .sub-lead {
    font-size: 0.75rem;
  }
    .mv__btn a {
      right: 30px;
      bottom: 25px;
      width: 202px;
    }
  .top-heading__en {
    font-size: clamp(0.875rem, 0.624rem + 0.63vw, 1.063rem);
  }
  .top-heading__main {
    font-size: clamp(2.25rem, 1.25rem + 2.5vw, 3rem);
  }
  .intro {
    padding-top: 170px;
  }
  .intro__body {
    margin-left: auto;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
    .intro__body .combine {
      text-combine-upright: all;
    }
  .intro__image {
    width: 66%;
  }
  .top-result {
    padding: 30px 3% 30px 4%;
  }
  .top-result__body {
    font-size: 2.375rem;
  }
  .top-recruit {
    padding-top: 40vw;
  }
  .top-recruit__body {
    padding: 30px;
  }
    .top-recruit__body .top-heading__en {
      font-size: clamp(0.75rem, 0.5rem + 0.63vw, 0.875rem);
    }
    .top-recruit__body .top-heading__main {
      font-size: clamp(1.875rem, 0.875rem + 2.5vw, 2.375rem);
    }}
@media (max-width: 48em) {}
@media (min-width: 48.001em) {
    .top-service__column .illust {
      top: -10%;
      max-width: 110px;
    }
  .top-service-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 0;
  }
  .top-service-link {
    flex-direction: row;
  }
  .top-service-link__body {
    flex: 0 0 60.5%;
    padding: 6% min(7.166%, 40px);
  }
  .top-service-link__image {
    flex: 0 0 39.5%;
    height: auto;
  }}
@media (max-width: 60em) {}
@media (min-width: 60.001em) {
  .intro {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 175px;
  }
  .intro__body {
    font-size: 1.125rem;
  }
  .intro__image {
    flex: 0 1 38.3%;
  }
  .top-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url("../../images/result_bg.jpg");
    margin-bottom: 150px;
  }
  .top-result__body {
    min-width: 10em;
  }
  .top-bg {
    border-radius: 0 180px 0 0;
  }
  .top-about {
    display: flex;
    justify-content: space-between;
    padding-top: 130px;
  }
  .top-about__image {
    flex: 0 0 50%;
    margin-bottom: 0;
  }
  .top-about__body {
    flex: 0 0 43.226%;
  }
  .top-company {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 160px;
  }
  .top-company__image {
    flex: 0 0 47.742%;
    position: relative;
    right: 30px;
    margin: 0;
  }
  .top-company__body {
    flex: 0 0 48.387%;
  }
  .top-recruit-outer {
    margin-top: 140px;
  }
  .top-recruit {
    padding: 70px min(5%, 78px);
    border-radius: 0 175px;
    background: url("../../images/recruit_bg1.jpg") no-repeat center center / cover;
  }
  .top-recruit__body {
    max-width: 440px;
    margin-left: auto;
    padding: min(4.6%, 60px);
    border-radius: 0 130px;
  }}
@media (max-width: 70em) {
  .top-news-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
    .top-news-category-list a {
      min-width: 6em;
    }}
@media (min-width: 70.001em) {
  .top-service {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 115px;
  }
    .top-service .top-heading {
      flex: 0 0 100%;
    }
  .top-service__column {
    flex: 0 0 48.387%;
    display: flex;
    margin-top: 20px;
  }
    .top-service-link__body h3 {
      font-size: 1.4rem;
    }
  .top-news {
    display: flex;
    justify-content: space-between;
  }
  .top-news__header {
    flex: 0 0 200px;
  }
  .top-news__body {
    flex: 0 0 77.742%;
  }}
/*# sourceMappingURL=maps/index.css.map */
