@charset "UTF-8";
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body, header, footer, section, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  width: 100%;
  overflow-y: scroll;
  font-size: 62.5%;
  scroll-behavior: smooth;
  margin-top: 0 !important; }

img {
  height: auto;
  max-width: 100%;
  -webkit-backface-visibility: hidden; }

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: top; }

th {
  text-align: left; }

li {
  list-style: none; }

a {
  will-change: transform, opacity;
  outline: none;
  color: #333333;
  text-decoration: none; }

address {
  font-style: normal; }

body {
  margin: 0;
  overflow: hidden;
  background-color: #C6D4E5;
  color: #403D3C;
  font-size: 1.5rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 300; }
  @media screen and (max-width: 834px) {
    body {
      font-size: 1.4rem; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0; }

.inner {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto; }

.inner.\-s {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto; }

.inner.inner-l {
  max-width: 1650px;
  width: 90%;
  margin: 0 auto; }

.sp {
  display: none; }
  @media screen and (max-width: 834px) {
    .sp {
      display: block; } }

.pc {
  display: block; }
  @media screen and (max-width: 834px) {
    .pc {
      display: none; } }

.jp {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif; }

.en {
  font-family: 'Hanken Grotesk'; }

.fadein.scroll-activate {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 0.8s;
  transition-delay: 0.2s; }

.fadein.scroll-activate.active {
  opacity: 1;
  transform: translateY(0); }

.btn {
  -webkit-transition: 0.8s cubic-bezier(0.12, 1, 0.5, 1) 1.7s;
  -o-transition: 0.8s cubic-bezier(0.12, 1, 0.5, 1) 1.7s;
  transition: 0.8s cubic-bezier(0.12, 1, 0.5, 1) 1.7s; }

.btn {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: "Unbounded", sans-serif;
  transition: background-color 0.3s, color 0.3s; }
  .btn:before {
    -webkit-transform: scale(0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 101%;
    transform: scale(0.9);
    border-radius: 28px;
    background-color: #2b5e98;
    content: "";
    opacity: 0;
    transition-duration: .3s;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }
  @media screen and (max-width: 834px) {
    .btn {
      width: 183px; } }

.button-text-wrapper {
  position: relative;
  height: 50px;
  width: 100%; }
  @media screen and (max-width: 834px) {
    .button-text-wrapper {
      height: 50px; } }

/* 初期テキストのスタイル */
.button-text {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-align: center;
  color: #fff; }

/* 最初のテキスト */
.button-text.first {
  transform: translateY(0%);
  opacity: 1; }

/* 2つ目のテキスト */
.button-text.second {
  transform: translateY(100%);
  opacity: 0; }

/* ホバー時のアニメーション */
.btn:hover .button-text.first {
  transform: translateY(-100%);
  opacity: 0; }

.btn:hover .button-text.second {
  transform: translateY(0%);
  opacity: 1; }

/* ボタンのホバースタイル */
.btn:hover {
  border: 1px solid #2b5e98;
  color: #fff; }
  .btn:hover:before {
    transform: scale(1.01);
    opacity: 1; }

/*nav fadein アニメーション*/
.header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* リスト全体をクリッピング */ }

.header__nav li {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  /* 初期状態で完全に隠す */
  transform: translateY(20px);
  /* 下に少しずらす */
  transition: opacity 0.8s ease, transform 0.8s ease, clip-path 0.8s ease;
  /* スムーズなアニメーション */
  background-color: transparent; }

.header__nav li.visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  /* 完全に表示 */
  transform: translateY(0);
  /* 元の位置に戻す */ }

.header {
  display: flex;
  opacity: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 37px 3% 10px 20px;
  position: absolute;
  background: transparent;
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
  z-index: 1000; }
  @media screen and (min-width: 835px) {
    .header {
      margin: 0 0 0 auto;
      position: fixed;
      top: 0;
      right: 0;
      transition: transform 0.6s ease, opacity 0.6s ease;
      width: 20%; } }
  @media screen and (max-width: 834px) {
    .header {
      width: 100%;
      flex-direction: row;
      top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      right: 0;
      left: 0;
      padding: 0 5%;
      position: fixed; } }

@media screen and (min-width: 835px) {
  .header.hidden {
    transform: translateY(-100%);
    /* 上部に隠す */
    opacity: 0; } }
.header.active {
  animation: headerShowUp 1s 1.5s ease-out forwards; }

@keyframes headerShowUp {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@media screen and (max-width: 834px) {
  .logo img {
    width: 200px; } }

.haeder-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%; }
  @media screen and (max-width: 1200px) {
    .haeder-left {
      width: 80%; } }
  @media screen and (max-width: 834px) {
    .haeder-left {
      width: fit-content; } }

.header-nav {
  width: 85%; }
  @media screen and (max-width: 834px) {
    .header-nav {
      display: none; } }

.header__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 17px;
  display: flex;
  justify-content: right;
  margin-top: 10px; }

.header__nav a {
  text-align: right;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.3rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: #fff;
  line-height: 1; }

.header__nav li {
  line-height: 1; }

.header__nav .contact a {
  border-radius: 17.5px;
  background-color: #2B5E98;
  padding: 12px 20px;
  display: block; }

.header__nav a:hover {
  opacity: .6; }

.hamburger {
  display: none; }
  @media screen and (max-width: 834px) {
    .hamburger {
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 3px;
      background: none;
      border: none;
      position: relative;
      z-index: 1000;
      border-radius: 35px;
      background-color: #fff;
      padding: 13px 24px; } }

@media screen and (max-width: 834px) {
  .hamburger.open {
    background-color: #ECEFF2; } }

@media screen and (max-width: 834px) {
  .hamburger__line {
    height: 1px;
    background-color: #fff;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 15px;
    background-color: #333333; } }

.hamburger.open .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px); }
  @media screen and (max-width: 834px) {
    .hamburger.open .hamburger__line:nth-child(1) {
      transform: rotate(45deg) translate(1px, 3px);
      background-color: #fff; } }

@media screen and (max-width: 834px) {
  .hamburger.open .hamburger__line:nth-child(2) {
    transform: rotate(-45deg) translate(0px, -2px);
    background-color: #fff; } }

@media screen and (max-width: 834px) {
  .hamburger.open .hamburger__line:nth-child(3) {
    display: none; } }

.menu-overlay {
  display: none; }
  @media screen and (max-width: 834px) {
    .menu-overlay {
      position: fixed;
      top: -150%;
      left: 0;
      width: 100%;
      height: 100vh;
      max-height: 100vh;
      overflow-y: auto;
      overflow-x: hidden;
      color: #3D5877;
      transition: top 0.3s ease;
      background-color: #fff;
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start; } }

.menu-overlay video {
  display: none; }
  @media screen and (max-width: 834px) {
    .menu-overlay video {
      display: block;
      position: absolute;
      z-index: 1000;
      top: 50%;
      left: 50%;
      width: 740px;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%); } }

@media screen and (max-width: 834px) {
  .menu-overlay.open {
    top: 0; } }

.menu-overlay .contact {
  background-color: #2B5E98;
  border-radius: 30px;
  padding: 15px 20px;
  width: 90%;
  text-align: center;
  margin-bottom: 45px; }
  .menu-overlay .contact p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em; }

.accordion-nav {
  width: 100%;
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px 20px;
  z-index: 1001; }

.accordion-nav ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.accordion-nav li {
  border-bottom: 1px solid #DEE3E8; }

.accordion-nav li:last-child {
  border-bottom: 0px solid #DEE3E8; }

.parent-a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 15px;
  cursor: pointer;
  text-decoration: none;
  color: #3D5877 !important;
  color: inherit;
  font-size: 1.6rem;
  font-weight: 400; }

.accordion-toggle {
  display: block;
  width: 100%;
  text-align: left;
  padding: 15px;
  cursor: pointer;
  text-decoration: none;
  color: #3D5877 !important;
  font-size: 1.6rem;
  font-weight: 400; }

.has-submenu .accordion-toggle::before {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background-color: #3D5877;
  transform: rotate(90deg);
  transition: 0.5s ease; }
.has-submenu .accordion-toggle::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background-color: #3D5877; }

.has-submenu.open .accordion-toggle::before {
  transform: rotate(0deg);
  transition: 0.5s ease; }

.submenu {
  display: none;
  padding-left: 20px; }

.submenu li a {
  display: block;
  padding: 0px 15px;
  font-size: 12px;
  text-decoration: none;
  color: #939393; }

.accordion-nav li.open > .submenu {
  display: block;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 3rem; }

.accordion-nav li.open > .submenu li {
  border-bottom: 0;
  width: 100%; }

.footer {
  background-color: #030303;
  color: #fff;
  padding: 3rem 0 4.5rem; }
  .footer__breadcrumb {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 2rem; }
    .footer__breadcrumb a {
      font-size: 13px;
      color: #fff; }
      @media screen and (max-width: 834px) {
        .footer__breadcrumb a {
          font-size: 12px; } }
    .footer__breadcrumb ol {
      display: flex;
      align-items: center;
      gap: 0 2.5rem;
      line-height: 1; }
      @media screen and (max-width: 834px) {
        .footer__breadcrumb ol {
          gap: 0 0.2rem; } }
      @media screen and (max-width: 374px) {
        .footer__breadcrumb ol {
          gap: 0 0.2rem; } }
    .footer__breadcrumb li {
      font-size: 13px;
      display: flex;
      align-items: center;
      justify-content: center; }
      @media screen and (max-width: 834px) {
        .footer__breadcrumb li {
          font-size: 12px; } }
      @media screen and (max-width: 374px) {
        .footer__breadcrumb li {
          font-size: 11px; } }
    .footer__breadcrumb .breadcrumb__separator img {
      width: 16px;
      height: auto; }
      @media screen and (max-width: 834px) {
        .footer__breadcrumb .breadcrumb__separator img {
          width: 13px; } }
      @media screen and (max-width: 374px) {
        .footer__breadcrumb .breadcrumb__separator img {
          width: 11px; } }
  .footer__logo {
    display: block;
    margin-bottom: 3rem; }
  .footer .footer-nav {
    display: flex;
    align-items: flex-start;
    column-gap: 8.5rem; }
    @media screen and (max-width: 834px) {
      .footer .footer-nav {
        flex-direction: column;
        column-gap: 0;
        grid-row-gap: 2rem; } }
  .footer .footer__nav--title {
    color: #fff; }
    .footer .footer__nav--title a {
      color: #fff;
      font-size: 15px; }
  .footer .mt2 {
    margin-bottom: 2rem; }
  @media screen and (max-width: 834px) {
    .footer .mt2.mt-sp0 {
      margin-bottom: 0; } }
  .footer ul li a {
    color: #939393;
    font-size: 12px; }
  .footer .footer-bottom {
    text-align: right;
    margin-top: 9rem;
    color: #CCCCCC;
    font-size: 12px;
    font-family: "Inter", sans-serif; }
    @media screen and (max-width: 834px) {
      .footer .footer-bottom {
        text-align: center;
        margin-top: 5rem; } }

#under-mv--img {
  padding-top: 13rem; }
  @media screen and (max-width: 834px) {
    #under-mv--img {
      padding-top: 9rem; } }
  #under-mv--img .under-mv__title {
    padding-bottom: 10rem; }
    @media screen and (max-width: 834px) {
      #under-mv--img .under-mv__title {
        padding-bottom: 4rem; } }
  #under-mv--img .under-mv__title-en {
    color: #fff;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(70px, 8vw, 120px);
    font-weight: 300;
    line-height: 1.2; }
    @media screen and (max-width: 834px) {
      #under-mv--img .under-mv__title-en {
        font-size: clamp(40px, 8vw, 70px); } }
  #under-mv--img .under-mv__title-en.scroll-activate {
    opacity: 0;
    transform: translate(0, 30px);
    transition: all 0.8s;
    transition-delay: 0.2s; }
    #under-mv--img .under-mv__title-en.scroll-activate span {
      opacity: 0; }
  #under-mv--img .under-mv__title-en.scroll-activate.active {
    opacity: 1;
    transform: translateY(0); }
    #under-mv--img .under-mv__title-en.scroll-activate.active span {
      animation: fadeInBottom 2s ease-out forwards; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(1) {
      animation-delay: 0.2s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(2) {
      animation-delay: 0.3s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(3) {
      animation-delay: 0.4s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(4) {
      animation-delay: 0.5s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(5) {
      animation-delay: 0.6s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(6) {
      animation-delay: 0.7s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(7) {
      animation-delay: 0.8s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(8) {
      animation-delay: 0.9s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(9) {
      animation-delay: 1s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(10) {
      animation-delay: 1.1s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(11) {
      animation-delay: 1.2s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(12) {
      animation-delay: 1.3s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(13) {
      animation-delay: 1.4s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(14) {
      animation-delay: 1.5s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(15) {
      animation-delay: 1.6s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(16) {
      animation-delay: 1.7s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(17) {
      animation-delay: 1.8s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(18) {
      animation-delay: 1.9s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(19) {
      animation-delay: 2s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(20) {
      animation-delay: 2.1s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(21) {
      animation-delay: 2.2s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(22) {
      animation-delay: 2.3s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(23) {
      animation-delay: 2.4s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(24) {
      animation-delay: 2.5s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(25) {
      animation-delay: 2.6s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(26) {
      animation-delay: 2.7s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(27) {
      animation-delay: 2.8s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(28) {
      animation-delay: 2.9s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(29) {
      animation-delay: 3s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(30) {
      animation-delay: 3.1s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(31) {
      animation-delay: 3.2s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(32) {
      animation-delay: 3.3s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(33) {
      animation-delay: 3.4s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(34) {
      animation-delay: 3.5s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(35) {
      animation-delay: 3.6s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(36) {
      animation-delay: 3.7s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(37) {
      animation-delay: 3.8s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(38) {
      animation-delay: 3.9s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(39) {
      animation-delay: 4s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(40) {
      animation-delay: 4.1s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(41) {
      animation-delay: 4.2s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(42) {
      animation-delay: 4.3s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(43) {
      animation-delay: 4.4s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(44) {
      animation-delay: 4.5s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(45) {
      animation-delay: 4.6s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(46) {
      animation-delay: 4.7s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(47) {
      animation-delay: 4.8s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(48) {
      animation-delay: 4.9s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(49) {
      animation-delay: 5s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(50) {
      animation-delay: 5.1s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(51) {
      animation-delay: 5.2s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(52) {
      animation-delay: 5.3s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(53) {
      animation-delay: 5.4s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(54) {
      animation-delay: 5.5s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(55) {
      animation-delay: 5.6s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(56) {
      animation-delay: 5.7s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(57) {
      animation-delay: 5.8s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(58) {
      animation-delay: 5.9s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(59) {
      animation-delay: 6s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(60) {
      animation-delay: 6.1s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(61) {
      animation-delay: 6.2s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(62) {
      animation-delay: 6.3s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(63) {
      animation-delay: 6.4s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(64) {
      animation-delay: 6.5s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(65) {
      animation-delay: 6.6s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(66) {
      animation-delay: 6.7s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(67) {
      animation-delay: 6.8s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(68) {
      animation-delay: 6.9s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(69) {
      animation-delay: 7s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(70) {
      animation-delay: 7.1s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(71) {
      animation-delay: 7.2s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(72) {
      animation-delay: 7.3s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(73) {
      animation-delay: 7.4s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(74) {
      animation-delay: 7.5s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(75) {
      animation-delay: 7.6s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(76) {
      animation-delay: 7.7s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(77) {
      animation-delay: 7.8s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(78) {
      animation-delay: 7.9s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(79) {
      animation-delay: 8s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(80) {
      animation-delay: 8.1s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(81) {
      animation-delay: 8.2s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(82) {
      animation-delay: 8.3s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(83) {
      animation-delay: 8.4s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(84) {
      animation-delay: 8.5s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(85) {
      animation-delay: 8.6s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(86) {
      animation-delay: 8.7s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(87) {
      animation-delay: 8.8s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(88) {
      animation-delay: 8.9s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(89) {
      animation-delay: 9s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(90) {
      animation-delay: 9.1s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(91) {
      animation-delay: 9.2s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(92) {
      animation-delay: 9.3s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(93) {
      animation-delay: 9.4s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(94) {
      animation-delay: 9.5s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(95) {
      animation-delay: 9.6s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(96) {
      animation-delay: 9.7s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(97) {
      animation-delay: 9.8s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(98) {
      animation-delay: 9.9s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(99) {
      animation-delay: 10s; }
    #under-mv--img .under-mv__title-en.scroll-activate.active span:nth-child(100) {
      animation-delay: 10.1s; }
  #under-mv--img .under-mv__title-ja {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    margin-top: 1rem; }
    @media screen and (max-width: 834px) {
      #under-mv--img .under-mv__title-ja {
        margin-top: 0.5rem; } }
  #under-mv--img .under-mv__picture {
    max-width: 1650px;
    width: 96%;
    overflow: hidden;
    border-radius: 10px; }
    @media screen and (max-width: 834px) {
      #under-mv--img .under-mv__picture {
        border-radius: 5px; } }
    #under-mv--img .under-mv__picture img {
      display: block; }

@keyframes fadeInBottom {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
#under-mv--img.under-mv--business {
  padding-top: 1.5rem;
  position: relative;
  height: calc(100vh - 20vh);
  overflow: hidden;
  border-radius: 10px;
  margin: 0 auto;
  width: 98%; }
  @media screen and (max-width: 834px) {
    #under-mv--img.under-mv--business {
      height: calc(100vh - 34vh);
      padding-top: 1rem;
      width: 95%;
      border-radius: 5px; } }
  #under-mv--img.under-mv--business .under-mv__title {
    position: absolute;
    z-index: 2;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    padding: 0; }
    @media screen and (max-width: 834px) {
      #under-mv--img.under-mv--business .under-mv__title {
        top: 46%; } }
    #under-mv--img.under-mv--business .under-mv__title .under-mv__title-en {
      font-size: clamp(34px, 8vw, 90px);
      line-height: 1; }
    #under-mv--img.under-mv--business .under-mv__title .under-mv__lead {
      font-size: 20px;
      font-weight: 300;
      font-family: "Unbounded", sans-serif;
      color: #fff; }
      @media screen and (max-width: 834px) {
        #under-mv--img.under-mv--business .under-mv__title .under-mv__lead {
          font-size: 18px; } }
  #under-mv--img.under-mv--business .under-mv__text {
    position: absolute;
    right: 5%;
    bottom: 5vh;
    color: #fff;
    width: 40%;
    z-index: 2;
    text-align: right; }
    @media screen and (max-width: 990px) {
      #under-mv--img.under-mv--business .under-mv__text {
        width: 60%; } }
    @media screen and (max-width: 834px) {
      #under-mv--img.under-mv--business .under-mv__text {
        text-align: left;
        width: 93%;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%); } }
  #under-mv--img.under-mv--business .under-mv__picture {
    max-width: none;
    position: absolute;
    z-index: 0;
    top: 1.5rem;
    width: 100%;
    height: 100%; }
    #under-mv--img.under-mv--business .under-mv__picture img {
      object-fit: cover;
      height: 100%;
      width: 100%;
      object-position: center; }
