.scene {
  position: fixed !important;
  height: 100dvh;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.scene.show {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

#scene-1 {
  opacity: 0;
}
#scene-1.is-loaded.show {
  opacity: 1;
}
#scene-1.is-loaded .mainvisual__inner::before {
  clip-path: inset(0 0 0 0);
  -webkit-animation: mvCornerLeft 1.4s cubic-bezier(0.22, 1, 0.36, 1);
          animation: mvCornerLeft 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-transition: clip-path 0.8s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: clip-path 0.8s cubic-bezier(0.52, 0.08, 0.18, 1);
}
#scene-1.is-loaded .mainvisual__inner::after {
  clip-path: inset(0 0 0 0);
  -webkit-animation: mvCornerRight 1.4s cubic-bezier(0.22, 1, 0.36, 1);
          animation: mvCornerRight 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-transition: clip-path 0.8s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: clip-path 0.8s cubic-bezier(0.52, 0.08, 0.18, 1);
}
#scene-1.is-loaded .scene-slider {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-animation: 1s mvBlur forwards cubic-bezier(0.52, 0.08, 0.18, 1);
          animation: 1s mvBlur forwards cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#scene-1.is-loaded .scene-title {
  will-change: transform;
  -webkit-animation: 1.3s mvTit cubic-bezier(0.52, 0.08, 0.18, 1);
          animation: 1.3s mvTit cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}
#scene-1.is-loaded .scene-text {
  will-change: transform;
  -webkit-animation: 1.3s mvText cubic-bezier(0.52, 0.08, 0.18, 1);
          animation: 1.3s mvText cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
#scene-1.is-loaded.out-top .mainvisual__inner::before {
  clip-path: inset(100% 0 0 0);
}
#scene-1.is-loaded.out-top .mainvisual__inner::after {
  clip-path: inset(0 0 100% 0);
}
#scene-1.is-loaded.out-top .scene-title {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
}
#scene-1.is-loaded.out-top .scene-text {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  opacity: 0;
}

@-webkit-keyframes mvTit {
  from {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

@keyframes mvTit {
  from {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes mvText {
  from {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes mvText {
  from {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes mvBlur {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mvBlur {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes mvCornerLeft {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes mvCornerLeft {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes mvCornerRight {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes mvCornerRight {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
#scene-2::before {
  clip-path: inset(0 0 100% 0);
  -webkit-transition: clip-path 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
#scene-2.show::before {
  clip-path: inset(0 0 0 0);
}
#scene-2.out-top::before {
  clip-path: inset(100% 0 0 0);
}
#scene-2.out-bottom::before {
  clip-path: inset(0 0 100% 0);
}
#scene-2 .scene-title {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}
#scene-2 .scene-img {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transform: translate(0) scale(1);
          transform: translate(0) scale(1);
}
#scene-2 .philosophy__content--center {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-2 .philosophy__content--bottom {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-2.show .philosophy__content--center {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
#scene-2.show .philosophy__content--bottom {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
#scene-2.out-bottom .scene-title {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
}
#scene-2.out-bottom .scene-img:nth-child(1) {
  -webkit-transform: translate(-50px, -50px);
          transform: translate(-50px, -50px);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-2.out-bottom .scene-img:nth-child(1) {
    -webkit-transform: translate(-25px, -25px);
            transform: translate(-25px, -25px);
  }
}
#scene-2.out-bottom .scene-img:nth-child(2) {
  -webkit-transform: translate(50px, -50px);
          transform: translate(50px, -50px);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-2.out-bottom .scene-img:nth-child(2) {
    -webkit-transform: translate(25px, -25px);
            transform: translate(25px, -25px);
  }
}
#scene-2.out-bottom .scene-img:nth-child(3) {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-2.out-bottom .scene-img:nth-child(3) {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
#scene-2.out-bottom .scene-img:nth-child(4) {
  -webkit-transform: translate(-100px, 100px);
          transform: translate(-100px, 100px);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-2.out-bottom .scene-img:nth-child(4) {
    -webkit-transform: translate(-40px, 40px);
            transform: translate(-40px, 40px);
  }
}
#scene-2.out-bottom .scene-img:nth-child(5) {
  -webkit-transform: translate(100px, 100px);
          transform: translate(100px, 100px);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-2.out-bottom .scene-img:nth-child(5) {
    -webkit-transform: translate(40px, 40px);
            transform: translate(40px, 40px);
  }
}
#scene-2.out-bottom .philosophy__content--center,
#scene-2.out-bottom .philosophy__content--bottom {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
#scene-2.out-top .scene-title {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-filter: blur(3px);
          filter: blur(3px);
  opacity: 0;
}
#scene-2.out-top .scene-img:nth-child(1) {
  -webkit-transform: translate(-100px, 100px);
          transform: translate(-100px, 100px);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-2.out-top .scene-img:nth-child(1) {
    -webkit-transform: translate(-40px, 40px);
            transform: translate(-40px, 40px);
  }
}
#scene-2.out-top .scene-img:nth-child(2) {
  -webkit-transform: translate(100px, 100px);
          transform: translate(100px, 100px);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-2.out-top .scene-img:nth-child(2) {
    -webkit-transform: translate(40px, 40px);
            transform: translate(40px, 40px);
  }
}
#scene-2.out-top .scene-img:nth-child(3) {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-2.out-top .scene-img:nth-child(3) {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}
#scene-2.out-top .scene-img:nth-child(4) {
  -webkit-transform: translate(-100px, -100px);
          transform: translate(-100px, -100px);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-2.out-top .scene-img:nth-child(4) {
    -webkit-transform: translate(-40px, -40px);
            transform: translate(-40px, -40px);
  }
}
#scene-2.out-top .scene-img:nth-child(5) {
  -webkit-transform: translate(100px, -100px);
          transform: translate(100px, -100px);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-2.out-top .scene-img:nth-child(5) {
    -webkit-transform: translate(40px, -40px);
            transform: translate(40px, -40px);
  }
}
#scene-2.out-top .philosophy__content--center,
#scene-2.out-top .philosophy__content--bottom {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

#scene-3 .scene-bg {
  -webkit-transition: opacity 1s ease, -webkit-transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1s ease, -webkit-transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease, -webkit-transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0;
}
#scene-3::before, #scene-3::after {
  -webkit-transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#scene-3::before {
  clip-path: inset(0 100% 0 0);
}
#scene-3::after {
  clip-path: inset(0 0 0 100%);
}
#scene-3 .scene-title {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}
#scene-3 .scene-info {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-3 .scene-img {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
}
#scene-3 .scene-img > * {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
}
#scene-3.show .scene-bg {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
#scene-3.show::before {
  clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#scene-3.show::after {
  clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#scene-3.show .scene-info {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
#scene-3.show .scene-img:nth-child(1) > * {
  -webkit-animation: riseIn 0.85s 0.2s both cubic-bezier(0.25, 1, 0.5, 1);
          animation: riseIn 0.85s 0.2s both cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-3.show .scene-img:nth-child(2) > * {
  -webkit-animation: riseIn 0.85s 0.35s both cubic-bezier(0.25, 1, 0.5, 1);
          animation: riseIn 0.85s 0.35s both cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-3.show .scene-img:nth-child(3) > * {
  -webkit-animation: riseIn 0.85s 0.5s both cubic-bezier(0.25, 1, 0.5, 1);
          animation: riseIn 0.85s 0.5s both cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-3.show .scene-img:nth-child(4) > * {
  -webkit-animation: riseIn 0.85s 0.65s both cubic-bezier(0.25, 1, 0.5, 1);
          animation: riseIn 0.85s 0.65s both cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-3.out-bottom .scene-title {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
}
#scene-3.out-bottom .scene-bg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0;
}
#scene-3.out-bottom::before {
  clip-path: inset(0 0 100% 0);
}
#scene-3.out-bottom::after {
  clip-path: inset(100% 0 0 0);
}
#scene-3.out-bottom .scene-info {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
#scene-3.out-top .scene-title {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-filter: blur(3px);
          filter: blur(3px);
  opacity: 0;
}
#scene-3.out-top .scene-bg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0;
}
#scene-3.out-top::before {
  clip-path: inset(0 0 0 100%);
}
#scene-3.out-top::after {
  clip-path: inset(0 100% 0 0);
}
#scene-3.out-top .scene-info {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
#scene-3 .scene-link {
  -webkit-transform: translateX(57px);
          transform: translateX(57px);
}

@-webkit-keyframes riseIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#scene-4::before {
  clip-path: inset(0 0 100% 0);
  -webkit-transition: clip-path 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
#scene-4.show::before {
  clip-path: inset(0 0 0 0);
}
#scene-4.out-top::before {
  clip-path: inset(100% 0 0 0);
}
#scene-4.out-bottom::before {
  clip-path: inset(0 0 100% 0);
}
#scene-4 .smart__title {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}
#scene-4 .smart__slider-wrapper {
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s ease-out, -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s ease-out, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 1s ease-out, transform 1s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#scene-4 .smart__arrows {
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
  opacity: 1;
}
#scene-4.out-bottom .smart__title {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
}
#scene-4.out-bottom .smart__slider-wrapper {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
#scene-4.out-bottom .smart__arrows {
  opacity: 0;
}
#scene-4.out-top .smart__title {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-filter: blur(3px);
          filter: blur(3px);
  opacity: 0;
}
#scene-4.out-top .smart__slider-wrapper {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
#scene-4.out-top .smart__arrows {
  opacity: 0;
}

#scene-5::before {
  clip-path: inset(100% 0 0 0);
  -webkit-transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#scene-5 .scene-title {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}
#scene-5 .scene-img {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transform: translate(0) scale(1);
          transform: translate(0) scale(1);
}
#scene-5 .service__body {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-5.show::before {
  clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
#scene-5.show .service__body {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
#scene-5.out-bottom::before {
  clip-path: inset(100% 0 0 0);
}
#scene-5.out-bottom .scene-item:nth-child(1) .scene-title {
  -webkit-transform: translate(0, -40px);
          transform: translate(0, -40px);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
}
#scene-5.out-bottom .scene-item:nth-child(2) .scene-title {
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
}
#scene-5.out-bottom .scene-item:nth-child(1) .scene-img {
  -webkit-transform: translate(-160px, 0);
          transform: translate(-160px, 0);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-5.out-bottom .scene-item:nth-child(1) .scene-img {
    -webkit-transform: translate(-60px, 0);
            transform: translate(-60px, 0);
  }
}
#scene-5.out-bottom .scene-item:nth-child(2) .scene-img {
  -webkit-transform: translate(160px, 0);
          transform: translate(160px, 0);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-5.out-bottom .scene-item:nth-child(2) .scene-img {
    -webkit-transform: translate(60px, 0);
            transform: translate(60px, 0);
  }
}
#scene-5.out-bottom .service__body {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
#scene-5.out-top::before {
  clip-path: inset(0 0 100% 0);
}
#scene-5.out-top .scene-item:nth-child(1) .scene-title {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0;
}
#scene-5.out-top .scene-item:nth-child(2) .scene-title {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0;
}
#scene-5.out-top .scene-item:nth-child(1) .scene-img {
  -webkit-transform: translate(0, 200px);
          transform: translate(0, 200px);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-5.out-top .scene-item:nth-child(1) .scene-img {
    -webkit-transform: translate(0, 80px);
            transform: translate(0, 80px);
  }
}
#scene-5.out-top .scene-item:nth-child(2) .scene-img {
  -webkit-transform: translate(0, -200px);
          transform: translate(0, -200px);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  #scene-5.out-top .scene-item:nth-child(2) .scene-img {
    -webkit-transform: translate(0, -80px);
            transform: translate(0, -80px);
  }
}
#scene-5.out-top .service__body {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

#scene-6 .living__bg-top {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#scene-6 .living__bg-bottom {
  clip-path: inset(0 0 0 100%);
  -webkit-transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#scene-6 .scene-title {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}
#scene-6 .living-brief {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-6 .living-process__item {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-6 .living-footer {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-6.show .living__bg-top {
  clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
#scene-6.show .living__bg-bottom {
  clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
#scene-6.show .living-brief {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
#scene-6.show .living-process__item:nth-child(1) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#scene-6.show .living-process__item:nth-child(2) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
#scene-6.show .living-process__item:nth-child(3) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#scene-6.show .living-process__item:nth-child(4) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
#scene-6.show .living-process__item:nth-child(5) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
#scene-6.show .living-process__item:nth-child(6) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 1.05s;
          transition-delay: 1.05s;
}
#scene-6.show .living-footer {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
#scene-6.out-bottom .scene-title {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
}
#scene-6.out-bottom .living__bg-top {
  clip-path: inset(0 100% 0 0);
}
#scene-6.out-bottom .living__bg-bottom {
  clip-path: inset(0 0 0 100%);
}
#scene-6.out-bottom .living-brief {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
#scene-6.out-bottom .living-process__item {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
}
#scene-6.out-bottom .living-footer {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
#scene-6.out-top .scene-title {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-filter: blur(3px);
          filter: blur(3px);
  opacity: 0;
}
#scene-6.out-top .living__bg-top {
  clip-path: inset(100% 0 0 0);
}
#scene-6.out-top .living__bg-bottom {
  clip-path: inset(0 0 100% 0);
}
#scene-6.out-top .living-brief {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
#scene-6.out-top .living-process__item {
  opacity: 0;
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
}
#scene-6.out-top .living-footer {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

#scene-7 .news__footer::before {
  clip-path: inset(0 0 0 100%);
  -webkit-transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#scene-7 .scene-title {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
}
#scene-7 .scene-title-02 {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
#scene-7 .scene-cont {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
#scene-7 .scene-btn {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  will-change: transform;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
#scene-7 .scene-opacity {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
#scene-7.show .news__footer::before {
  clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#scene-7.out-bottom .scene-btn {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0.2;
}
#scene-7.out-bottom .scene-title {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
#scene-7.out-bottom .scene-title-02 {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0.2;
}
#scene-7.out-bottom .scene-cont {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  opacity: 0;
}
#scene-7.out-bottom .scene-opacity {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
#scene-7.out-bottom .news__footer::before {
  clip-path: inset(0 0 0 100%);
}
#scene-7.out-top .scene-title {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
#scene-7.out-top .scene-title-02 {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0.2;
}
#scene-7.out-top .scene-btn {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0.2;
}
#scene-7.out-top .scene-cont {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  opacity: 0;
}
#scene-7.out-top .scene-opacity {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
#scene-7.out-top .news__footer::before {
  clip-path: inset(0 100% 0 0);
}

#scene-8::before {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#scene-8::after {
  clip-path: inset(0 0 0 100%);
  -webkit-transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#scene-8 .scene-title {
  -webkit-transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  transition: all 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}
#scene-8 .footer-contact__header {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-8 .footer-contact__listItem {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-8 .footer__aside-inner {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
#scene-8.show::before {
  clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
#scene-8.show::after {
  clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
#scene-8.show .footer-contact__header {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#scene-8.show .footer-contact__listItem:nth-child(1) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
#scene-8.show .footer-contact__listItem:nth-child(2) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}
#scene-8.show .footer__aside-inner {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
#scene-8.out-bottom .scene-title {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0;
}
#scene-8.out-bottom::before {
  clip-path: inset(0 100% 0 0);
}
#scene-8.out-bottom::after {
  clip-path: inset(0 0 0 100%);
}
#scene-8.out-bottom .footer-contact__header {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
#scene-8.out-bottom .footer-contact__listItem {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
}
#scene-8.out-bottom .footer__aside-inner {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
#scene-8.out-top .scene-title {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-filter: blur(3px);
          filter: blur(3px);
  opacity: 0;
}
#scene-8.out-top::before {
  clip-path: inset(100% 0 0 0);
}
#scene-8.out-top::after {
  clip-path: inset(0 0 100% 0);
}
#scene-8.out-top .footer-contact__header {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
#scene-8.out-top .footer-contact__listItem {
  opacity: 0;
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
}
#scene-8.out-top .footer__aside-inner {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.mainvisual {
  background-color: #525966;
  color: #fff;
  letter-spacing: 0.05em;
}
.mainvisual__h1 {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.mainvisual__inner {
  position: relative;
  max-width: 1920px;
  margin-inline: auto;
  max-height: 100%;
}
.mainvisual__inner::before, .mainvisual__inner::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  background: no-repeat center/contain;
  pointer-events: none;
}
.mainvisual__inner::before {
  width: 35.7%;
  max-width: 687px;
  aspect-ratio: 687/567;
  top: 0;
  left: 0;
  background-image: url(../img/top/mv-corner-left.svg);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mainvisual__inner::before {
    width: 83.4%;
    aspect-ratio: 328/271;
  }
}
.mainvisual__inner::after {
  width: 56%;
  max-width: 1074px;
  aspect-ratio: 1074/526;
  bottom: 0;
  right: 0;
  background-image: url(../img/top/mv-corner-right.svg);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mainvisual__inner::after {
    width: 92%;
    aspect-ratio: 361/177;
  }
}
.mainvisual__image {
  position: absolute;
  z-index: -2;
  display: block;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transition: -webkit-transform 1.5s ease-in-out;
  transition: -webkit-transform 1.5s ease-in-out;
  transition: transform 1.5s ease-in-out;
  transition: transform 1.5s ease-in-out, -webkit-transform 1.5s ease-in-out;
}
.mainvisual__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainvisual__wrapper {
  position: absolute;
  left: 6.7%;
  bottom: 19%;
  z-index: 4;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mainvisual__wrapper {
    bottom: 16%;
  }
}
.mainvisual__tit {
  font-family: "Cinzel", serif;
  font-size: 9rem;
  line-height: 1.2;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mainvisual__tit {
    font-size: 4.3rem;
    line-height: 1.35;
    margin-bottom: 0.1em;
  }
}
.mainvisual__catch {
  font-size: 4.4rem;
  line-height: 2;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mainvisual__catch {
    font-size: 1.8rem;
  }
}

.mainvisual__panel {
  position: relative;
  height: 100svh;
  min-height: 750px;
  z-index: 2;
  padding: 25px;
  overflow: hidden;
}
.mainvisual__panel::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: -1;
}
.mainvisual__panel--style01 .mainvisual__image {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 96.8%;
  max-width: 1860px;
  aspect-ratio: 1860/760;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mainvisual__panel--style01 .mainvisual__image {
    width: 100%;
    aspect-ratio: 393/550;
  }
}
.mainvisual__panel--style02 .mainvisual__image {
  --img-pos-x: 1.5%;
  --img-pos-y: 0px;
  --img-trans-y: calc(100% + var(--img-pos-y));
  max-width: 920px;
  width: 48%;
  aspect-ratio: 920/850;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  will-change: transform;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mainvisual__panel--style02 .mainvisual__image {
    --img-pos-x: 0;
    --img-pos-y: 60px;
    width: 49.6%;
    aspect-ratio: 195/570;
  }
}
.mainvisual__panel--style02 .mainvisual__image--pos01 {
  left: var(--img-pos-x);
  bottom: var(--img-pos-y);
  -webkit-transform: translateY(var(--img-trans-y));
          transform: translateY(var(--img-trans-y));
}
.mainvisual__panel--style02 .mainvisual__image--pos02 {
  right: var(--img-pos-x);
  top: var(--img-pos-y);
  -webkit-transform: translateY(calc(var(--img-trans-y) * -1));
          transform: translateY(calc(var(--img-trans-y) * -1));
}
.mainvisual__panel--style03 .mainvisual__image {
  --img-pos-y: 3.2%;
  max-width: 1650px;
  width: 86%;
  height: 45.7%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  will-change: transform;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mainvisual__panel--style03 .mainvisual__image {
    --img-pos-y: 7.6%;
    width: 89%;
    height: 42%;
  }
}
.mainvisual__panel--style03 .mainvisual__image--pos01 {
  top: var(--img-pos-y);
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.mainvisual__panel--style03 .mainvisual__image--pos02 {
  bottom: var(--img-pos-y);
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.mainvisual__slider .splide__slide.is-active .mainvisual__panel--style02 .mainvisual__image--pos01, .mainvisual__slider .splide__slide.is-active .mainvisual__panel--style02 .mainvisual__image--pos02 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mainvisual__slider .splide__slide.is-active .mainvisual__panel--style03 .mainvisual__image--pos01, .mainvisual__slider .splide__slide.is-active .mainvisual__panel--style03 .mainvisual__image--pos02 {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fixed-track {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform-origin: center right;
          transform-origin: center right;
  padding: 27px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 233px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .fixed-track {
    min-height: 110px;
    padding-inline: 11px;
  }
}
.fixed-track__item {
  display: block;
  will-change: transform;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  cursor: pointer;
  padding: 7px 5px;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .fixed-track__item {
    padding-block: 3.5px;
  }
}
.fixed-track__item::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .fixed-track__item::before {
    width: 6px;
  }
}
.fixed-track__item:hover, .fixed-track__item.active {
  opacity: 1;
  -webkit-transform: scaleX(1.4);
          transform: scaleX(1.4);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .fixed-track__item:hover, .fixed-track__item.active {
    -webkit-transform: scaleX(1.33);
            transform: scaleX(1.33);
  }
}
.fixed-track:hover {
  -webkit-transform: scale(1.2) translateY(-50%);
          transform: scale(1.2) translateY(-50%);
}

.philosophy {
  position: relative;
}
.philosophy::before {
  content: "";
  position: absolute;
  width: 192rem;
  height: 100dvh;
  background: url("../img/top/philosophy-redline.svg") no-repeat center;
  background-size: cover;
  left: 0;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy::before {
    position: fixed;
    width: 100%;
    background: url("../img/top/philosophy-redline-sp.svg") no-repeat center;
    background-size: cover;
  }
}

.philosophy__inner {
  display: block;
  height: 100%;
  position: relative;
}
.philosophy__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy__inner {
    width: 300vw;
  }
}

.philosophy__gallery {
  position: absolute;
  width: 57.2%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -2;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy__gallery {
    width: 100%;
  }
}

.philosophy__gallery-item {
  position: absolute;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.philosophy__gallery-item:nth-child(1) {
  width: 56.1rem;
  height: auto;
  aspect-ratio: 561/381;
  left: 0;
  top: 6.3rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy__gallery-item:nth-child(1) {
    width: 34.4rem;
    aspect-ratio: 344/315;
    top: 4.7rem;
  }
}
.philosophy__gallery-item:nth-child(2) {
  width: 26.5rem;
  height: auto;
  aspect-ratio: 265/221;
  right: 0;
  top: 4.4rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy__gallery-item:nth-child(2) {
    width: 21.4rem;
    aspect-ratio: 214/177;
    top: 3.1rem;
    right: 2rem;
  }
}
.philosophy__gallery-item:nth-child(3) {
  width: 14.8rem;
  height: auto;
  left: 69.5rem;
  top: 35.4rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy__gallery-item:nth-child(3) {
    width: 11.9rem;
    top: 26.9rem;
    right: 22.6rem;
    left: auto;
  }
}
.philosophy__gallery-item:nth-child(4) {
  width: 19.8rem;
  height: auto;
  aspect-ratio: 198/190;
  left: 26.9rem;
  bottom: 20rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy__gallery-item:nth-child(4) {
    width: 15.9rem;
    aspect-ratio: 159/153;
    bottom: 15.7rem;
    left: 8.6rem;
  }
}
.philosophy__gallery-item:nth-child(5) {
  width: 34.6rem;
  height: auto;
  aspect-ratio: 346/329;
  right: 23rem;
  bottom: 0;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy__gallery-item:nth-child(5) {
    width: 43.3rem;
    aspect-ratio: 433/264;
    right: 10rem;
  }
}
.philosophy__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.philosophy__content {
  position: relative;
  width: 94%;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  padding: 0 15rem;
  z-index: 1;
}
.philosophy__content--top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.7rem;
  text-align: right;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy__content--top {
    text-align: left;
  }
}
.philosophy__content--center, .philosophy__content--bottom {
  width: 47%;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy__content {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
  .philosophy__content--top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.5rem;
    padding: 0 4rem;
  }
  .philosophy__content--center, .philosophy__content--bottom {
    width: 100%;
    padding: 0 4rem;
  }
}

.philosophy__link {
  margin-top: 4rem;
}

.philosophy__sub {
  font-size: 3.7rem;
  font-weight: 400;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy__sub {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}

.philosophy__title {
  font-size: min(4.2vw, 8rem);
  font-family: "Cinzel", serif;
  font-weight: 400;
  line-height: 1.35;
  word-break: break-word;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy__title {
    font-size: 4rem;
    line-height: 1.25;
  }
}

.philosophy__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.7;
  margin-top: 7rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .philosophy__text {
    font-size: 1.3rem;
  }
}

.mission {
  position: relative;
  padding-bottom: 12.6rem;
  margin-bottom: 500px;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission {
    width: 100%;
    padding-top: 18rem;
    padding-bottom: 20.7rem;
  }
}
@media (max-width: 375px) {
  .mission {
    padding-top: min(16svh, 18rem);
  }
}
.mission::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background: url("../img/top/mission-timeline-top.svg") no-repeat center/contain;
  z-index: 2;
  max-width: 687px;
  aspect-ratio: 687/567;
  width: 36%;
  pointer-events: none;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission::before {
    max-width: 32.8rem;
    width: 100%;
  }
}
.mission::after {
  content: "";
  position: fixed;
  bottom: -3.1rem;
  right: 0;
  background: url("../img/top/mission-timeline-bottom.svg") no-repeat center/contain;
  aspect-ratio: 1260/594;
  max-width: 1260px;
  width: 80%;
  pointer-events: none;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission::after {
    aspect-ratio: 393/243;
    width: 100%;
    bottom: -2.7rem;
    left: 0;
    background: url("../img/top/mission-timeline-bottom-sp.svg") no-repeat center/contain;
  }
}
.mission__bg {
  position: absolute;
  width: 100%;
  height: 93.2%;
  top: 3.2rem;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission__bg {
    position: fixed;
  }
}
.mission__bg:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}
.mission__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mission__container {
  width: 100%;
  max-width: 1651px;
  margin: 0 auto;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission__container {
    max-width: none;
    width: 300vw;
  }
}
.mission__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 5.1rem;
  z-index: 2;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-left: 0;
    gap: 1.5rem;
  }
}
.mission__info {
  margin-top: 26.8rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission__info {
    margin-top: -0.4rem;
    padding-left: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mission__lead {
  font-size: 3.7rem;
  letter-spacing: 0.05em;
  line-height: 1.9;
  margin-left: 1.4rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission__lead {
    display: none;
    font-size: 1.6rem;
    margin-left: 0;
    margin-top: 15px;
  }
}
.mission__desc {
  margin-top: 4rem;
  font-size: 1.6rem;
  letter-spacing: 0.05rem;
  font-family: "Shippori Mincho B1", serif;
  line-height: 2.7;
  margin-left: 0.4rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission__desc {
    font-size: 1.3rem;
    line-height: 2.7;
    margin-top: 0;
    margin-left: 0;
  }
}
.mission__title {
  text-align: right;
}
.mission__title span {
  font-family: "Cinzel", serif;
  font-size: 8rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
}
@media screen and (max-width: 1700px) {
  .mission__title span {
    font-size: 7rem;
  }
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission__title {
    text-align: left;
  }
  .mission__title span {
    font-size: 4rem;
    line-height: 1.25;
  }
  .mission__title span:nth-child(1) {
    display: block;
    margin-right: 4rem;
  }
}
.mission__link {
  margin-top: 4rem;
  margin-left: 1.4rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission__link {
    margin-left: 6rem;
    margin-top: 10.7rem;
    margin-bottom: 10.7rem;
  }
}
.mission__visual {
  margin-top: 16.7rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission__visual {
    margin-top: 0;
    padding: 0 4rem;
  }
}
.mission-step {
  position: fixed;
  right: 15.6rem;
  bottom: 10.2rem;
  z-index: 3;
}
@media screen and (max-width: 1700px) {
  .mission-step {
    right: 12rem;
    bottom: 8rem;
  }
}
@media screen and (max-width: 1280px) {
  .mission-step {
    right: 15rem;
  }
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission-step {
    display: block;
    bottom: 3.6rem;
    left: 0;
    right: 0;
  }
}
.mission-step__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12.8rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission-step__list {
    gap: 0;
    width: 100%;
    margin-left: 2.2rem;
  }
}
.mission-step__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission-step__item {
    gap: 0.5rem;
  }
}
.mission-step__item:nth-child(2) {
  -webkit-transform: translateY(-9.1rem);
          transform: translateY(-9.1rem);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission-step__item:nth-child(2) {
    -webkit-transform: translateY(-2.7rem);
            transform: translateY(-2.7rem);
    margin-left: 3.3rem;
  }
}
.mission-step__item:nth-child(3) {
  -webkit-transform: translateY(-14.2rem);
          transform: translateY(-14.2rem);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission-step__item:nth-child(3) {
    -webkit-transform: translateY(-4.2rem);
            transform: translateY(-4.2rem);
    margin-left: 2.2rem;
  }
}
.mission-step__item:nth-child(4) {
  -webkit-transform: translateY(-18.7rem);
          transform: translateY(-18.7rem);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission-step__item:nth-child(4) {
    -webkit-transform: translateY(-6.7rem);
            transform: translateY(-6.7rem);
    margin-left: 1.2rem;
  }
}
.mission-step__number {
  font-family: "Cinzel", serif;
  color: #FFFFFF;
  font-size: 4rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission-step__number {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
.mission-step__text {
  font-size: 2rem;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  line-height: 1.45;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission-step__text {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}
.mission-step__icon {
  margin-top: 1.9rem;
  aspect-ratio: 40/93;
  max-width: 40px;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mission-step__icon {
    margin-top: 0.5rem;
    max-width: 16px;
    aspect-ratio: 16/40;
  }
}
.mission-step__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.smart {
  position: relative;
  height: 100dvh;
  padding: 8rem 0;
}
.smart::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../img/top/scene-redline.svg") no-repeat center/cover;
  z-index: -1;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart::before {
    background: url("../img/top/scene-redline-sp.svg") no-repeat center/cover;
  }
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart {
    padding: 7rem 0;
  }
}

.smart-slider {
  margin-top: 10.6rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-slider {
    margin-top: 1.8rem;
  }
}

.smart__inner {
  width: 192rem;
  max-width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart__content {
    opacity: 0;
    z-index: -99;
    -webkit-transition: opacity 0.1s ease;
    transition: opacity 0.1s ease;
  }
  .smart__content.is-active {
    position: relative;
    z-index: 1;
    opacity: 1;
  }
}

.smart__slider-wrapper {
  position: relative;
  z-index: 2;
  margin-left: -15%;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart__slider-wrapper {
    margin-left: 0;
    margin-top: 3.7rem;
  }
}
@media (max-width: 765px) {
  .smart__slider-wrapper {
    margin-top: 0;
  }
}

.smart__slider {
  width: 100%;
  position: relative;
}
.smart__slider .splide__list {
  gap: 6px;
}
.smart__slider .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.smart__slider .splide__slide img {
  opacity: 0.5;
  -webkit-transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease;
  transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease;
  transition: opacity 0.1s ease-in, transform 0.3s ease;
  transition: opacity 0.1s ease-in, transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  height: 100%;
  max-height: 32.7rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart__slider .splide__slide img {
    max-height: 19.2rem;
    aspect-ratio: 250/193;
  }
}
.smart__slider .splide__slide.is-active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.smart__arrows {
  position: absolute;
  top: 60%;
  left: 24.4%;
  width: 27.6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart__arrows {
    left: 18%;
    top: 182px;
    width: 63.6%;
  }
}
.smart__arrows button {
  position: relative;
  width: 54px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart__arrows button {
    width: 32px;
  }
}
.smart__arrows button img {
  position: absolute;
  display: block;
  width: 10%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.smart__title {
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 1.6;
  padding: 0 16rem;
  max-width: 90rem;
}
@media screen and (max-width: 1700px) {
  .smart__title {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart__title {
    margin-bottom: 0;
    font-size: 1.8rem;
    line-height: 1.7;
    padding: 0 4rem;
    text-align: center;
    max-width: none;
  }
}

.smart__txt {
  font-size: 1.6rem;
  margin-top: 3.5rem;
  padding: 0 16rem;
  line-height: 2.5;
  letter-spacing: 0.05rem;
  width: 60%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart__txt {
    font-size: 1.3rem;
    line-height: 2.2;
    padding: 0 3.5rem;
    text-align: center;
    margin-top: 3.8rem;
    width: 100%;
  }
}
@media (max-width: 375px) {
  .smart__txt {
    font-size: 1.1rem;
  }
}

.smart__link {
  padding: 0 16rem 0 15.6rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart__link {
    padding: 0 6.6rem;
    margin-top: 4rem;
  }
}
@media (max-width: 765px) {
  .smart__link {
    margin-top: 1em;
  }
}

.smart-box {
  position: absolute;
  bottom: 3.5rem;
  right: 3.5rem;
  width: 40%;
  height: 82.2vh;
  background-color: rgba(33, 40, 51, 0.7);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box {
    width: 100%;
    bottom: 0;
    right: 0;
    height: 45vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    opacity: 0;
    z-index: -999;
  }
  .smart-box.is-active {
    opacity: 1;
    z-index: 2;
  }
}
.smart-box__panels {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: auto;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__panels {
    overflow: hidden;
  }
}
.smart-box__panel {
  display: none;
}
.smart-box__panel.is-active {
  display: block;
}
.smart-box__header {
  margin: 1.5rem 0 1.5rem 1.5rem;
  background-color: #161c26;
  padding: 1.7rem 2.3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__header {
    display: none;
  }
}
.smart-box__number {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.05rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__number {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
.smart-box__number::after {
  content: "";
  height: 2.5rem;
  display: block;
  width: 0.1rem;
  background: rgba(255, 255, 255, 0.22);
  margin-inline: 1.7rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__number::after {
    height: 1rem;
    margin-inline: 1.1rem 0.9rem;
  }
}
.smart-box__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__text {
    font-size: 1.1rem;
    line-height: 1.55;
  }
}
.smart-box__body {
  margin-top: 5.5rem;
  margin-inline: 13rem 11rem;
}
@media screen and (max-width: 1280px) {
  .smart-box__body {
    margin-inline: 10rem 8rem;
  }
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__body {
    margin: 0;
    padding: 3rem 3.5rem;
  }
}
.smart-box__title {
  font-size: 1.8rem;
  line-height: 2.7;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__title {
    font-size: 1.2rem;
    line-height: 2.25;
    padding-bottom: 0.4rem;
    margin-top: 0;
  }
}
.smart-box__describe {
  font-size: 3rem;
  line-height: 2;
  margin-block: 3.5rem 3.5rem;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__describe {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-block: 1.4rem 1.1rem;
  }
}
.smart-box__detail {
  letter-spacing: 0.05rem;
  line-height: 2.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__detail {
    font-size: 1.2rem;
    line-height: 1.9;
  }
}
.smart-box__footer {
  background-color: #212833;
  padding: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__footer {
    overflow: auto;
  }
  .smart-box__footer::-webkit-scrollbar {
    display: none;
  }
}
.smart-box__list {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 0.2rem;
  }
}
.smart-box__item.is-active {
  background-color: #161c26;
}
.smart-box__item.is-active .smart-box__btn::before {
  opacity: 1;
}
.smart-box__btn {
  text-align: center;
  padding: 2.3rem 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #FFFFFF;
  font-size: 1.6rem;
  width: 100%;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__btn {
    padding: 1.1rem;
    font-size: 1.1rem;
  }
}
.smart-box__btn[data-number] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.smart-box__btn[data-number]::before {
  content: attr(data-number);
  display: none;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .smart-box__btn[data-number]::before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.smart-box__btn[data-number]::before {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  font-family: "Cinzel", serif;
  width: 1.5em;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.service {
  position: relative;
}
.service::before {
  content: "";
  position: fixed;
  width: 100%;
  background-image: url("../img/top/bg-service.png");
  background-repeat: no-repeat;
  height: 400px;
  left: 0;
  bottom: 0;
  background-position: bottom;
  pointer-events: none;
  background-size: 100%;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service::before {
    background-image: url("../img/top/bg-service-sp.png");
  }
}
.service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 12.5rem 0 6rem 13rem;
  will-change: transform;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service__inner {
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100vw;
  }
}
.service__item {
  display: block;
  width: 1288px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  padding-right: 4rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service__item {
    width: 100%;
    padding-right: 0;
    padding: 0 0 0 3rem;
  }
}
.service__item:not(:first-child) {
  margin-left: 6rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service__item:not(:first-child) {
    margin-left: 0;
  }
}
.service__bg {
  width: 92%;
  aspect-ratio: 230/151;
  max-height: calc(100vh - 12.5rem);
  margin-left: auto;
  margin-right: 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service__bg {
    aspect-ratio: 323/390;
    width: 82.2%;
    position: absolute;
    right: 1.9rem;
    top: 7.5rem;
  }
}
.service__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.service__bg picture > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service__btn .btn02__icon {
    width: 5.5rem;
    height: 5.5rem;
  }
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service__btn .btn02__text {
    display: none;
  }
}
.service__content {
  position: absolute;
  left: 0;
  top: 16.2rem;
  pointer-events: none;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service__content {
    top: 0;
    position: relative;
    z-index: 1;
  }
}
.service__heading, .service__body {
  pointer-events: auto;
}
.service__heading {
  font-family: "Cinzel", serif;
  font-size: 7.6rem;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service__heading {
    font-size: 4rem;
    line-height: 1.25;
  }
}
.service__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  line-height: 1.45;
  margin-top: 10px;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service__sub {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 1.6rem;
  }
}
@media (max-width: 375px) {
  .service__sub {
    margin-top: 0.8rem;
  }
}
.service__body {
  margin-top: 16.2rem;
  margin-left: 18.8rem;
  max-width: 53%;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service__body {
    margin-left: 0;
    margin-top: 17.8rem;
    max-width: 73%;
  }
}
@media (max-width: 375px) {
  .service__body {
    margin-top: 2rem;
  }
}
.service__title {
  font-size: 2.7rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service__title {
    font-size: 1.7rem;
    line-height: 1.76;
  }
}
.service__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 2.5;
  margin-top: 3.2rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .service__desc {
    margin-top: 2rem;
    font-size: 1.2rem;
    line-height: 2;
    margin-top: 1.4rem;
  }
}

.living {
  min-height: 100svh;
  width: 100%;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  word-break: normal;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living {
    gap: 0;
  }
}
.living__bg-top {
  display: block;
  width: 687px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.living__bg-bottom {
  display: block;
  width: 1074px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.living__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living__inner {
    padding: 0;
    overflow-x: scroll;
    scrollbar-width: none;
  }
  .living__inner::-webkit-scrollbar {
    display: none;
  }
  .living__inner > .living-brief {
    display: none;
  }
}
.living-title {
  display: inline-block;
  position: absolute;
  right: 0.5rem;
  top: 16.2rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-title {
    position: static;
    margin-top: 13.5rem;
    margin-left: 10.1%;
  }
}
@media (max-width: 375px) {
  .living-title {
    margin-top: calc(5.6rem + 5svh);
  }
}
.living-title__text {
  font-family: "Cinzel", serif;
  font-size: 8rem;
  letter-spacing: 0.05em;
  line-height: 10.8rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-title__text {
    font-size: 4rem;
    line-height: 5rem;
  }
}
.living-title__desc {
  font-family: "Shippori Mincho B1", serif;
  font-size: 3.7rem;
  letter-spacing: 0.05em;
  line-height: 7rem;
  margin-top: 23px;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-title__desc {
    font-size: 1.6rem;
    line-height: 3rem;
    margin-top: 15px;
  }
}
.living-brief {
  margin-top: 262px;
}
.living-brief__title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  line-height: 3.7rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-brief__title {
    font-size: 1.7rem;
    line-height: 3rem;
  }
}
.living-brief__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 4rem;
  margin-top: 22px;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-brief__desc {
    font-size: 1.2rem;
    line-height: 2.5rem;
    margin-top: 13px;
  }
}
.living-process {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 63px;
  gap: 40px;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-process {
    margin-top: 30px;
    padding-left: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 40px;
  }
}
.living-process::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  opacity: 0.2;
  background-color: #ffffff;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-process::after {
    width: 100%;
  }
}
.living-process__item {
  min-width: 220px;
}
@media screen and (max-width: 1024px) {
  .living-process__item {
    min-width: unset;
    width: 25%;
  }
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-process__item {
    min-width: unset;
    width: calc(100vw - 40px);
  }
  .living-process__item > .living-brief {
    margin-top: 62px;
  }
}
.living-process__item.living-process__item-sp {
  display: none;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-process__item.living-process__item-sp {
    display: block;
  }
}
.living-process__item-step {
  min-height: 29px;
  position: relative;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2.1rem;
  color: #a1a8b3;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-process__item-step {
    font-size: 1.4rem;
    line-height: 1.9rem;
  }
}
.living-process__item-step::after {
  content: "";
  max-width: 220px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.living-process__item-num {
  margin-top: 8.5px;
  font-family: "Cinzel", serif;
  font-size: 4rem;
  letter-spacing: 0.05em;
  line-height: 5.4rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-process__item-num {
    font-size: 3.5rem;
    line-height: 4.7rem;
  }
}
.living-process__item-desc {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 3rem;
  margin-top: 25px;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-process__item-desc {
    font-size: 1.4rem;
    line-height: 2.5rem;
  }
}
.living-process__item--btn {
  padding-top: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-process__item--btn {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.living-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.living-footer__item {
  width: 50%;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-footer__item {
    width: 100%;
  }
}
.living-footer__item--real {
  background-color: rgba(0, 0, 0, 0.15);
}
.living-footer__item--qna {
  background-color: rgba(0, 0, 0, 0.3);
}
.living-footer__item-title {
  font-family: "Cinzel", serif;
  font-size: 4.5rem;
  letter-spacing: 0.05em;
  line-height: 6.1rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-footer__item-title {
    font-size: 2.5rem;
    line-height: 3.3rem;
  }
}
.living-footer__item-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2.4rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-footer__item-desc {
    height: 16px;
    font-size: 1.1rem;
    line-height: 1.8rem;
  }
}
.living-footer__item-desc::before {
  content: "";
  display: block;
  width: 55px;
  height: 1px;
  background-color: #a1a8b3;
  margin-right: 16px;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .living-footer__item-desc::before {
    display: none;
  }
}

.info {
  position: relative;
}
.info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 1920px;
  margin-inline: auto;
  height: 100svh;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .info__inner {
    width: 200vw;
    overflow: hidden;
  }
}
.info__panel {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .info__panel {
    width: 100vw;
    height: 100svh;
  }
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .info__panel--news {
    height: auto;
    min-height: 100svh;
  }
}

.staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 90px;
  position: relative;
  z-index: 2;
  background: url(../img/top/staff-01.jpg) no-repeat center/cover;
  container-type: inline-size;
}
@media screen and (max-width: 1024px) {
  .staff {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .staff {
    padding: 40px;
    background-image: url(../img/top/staff-01-sp.jpg);
  }
}
.staff::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.69);
}

.staff-tit {
  width: 100%;
}
.staff-tit__tit, .staff-tit__sub {
  display: block;
}
.staff-tit__tit {
  font-size: min(7.8cqw, 6rem);
  line-height: 1.35;
  font-family: "Cinzel", serif;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .staff-tit__tit {
    font-size: min(12cqw, 4rem);
    line-height: 1.25;
  }
}
.staff-tit__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  line-height: 1.45;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .staff-tit__sub {
    font-size: 1.4rem;
  }
}

.staff-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 8.2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .staff-btn {
    width: 6.2rem;
  }
}
.staff-btn::before {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow_01.svg) no-repeat center/contain;
  -webkit-transition: 0.3s background-color ease-in-out;
  transition: 0.3s background-color ease-in-out;
}
.staff-btn:hover {
  background-color: #BF0A28;
  border-color: #BF0A28;
}

.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
.news__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4rem 8rem;
  padding-top: 11rem;
  max-height: 100svh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .news__body {
    padding: 2rem 4rem;
    padding-top: 9rem;
  }
}
@media (max-width: 375px) {
  .news__body {
    padding-block: 8rem 1rem;
  }
}
.news__footer {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .news__footer {
    position: initial;
  }
}
.news__footer::before {
  content: "";
  display: block;
  position: absolute;
  width: 100svw;
  aspect-ratio: 1920/370;
  background: url(../img/top/info-corner-bottom.svg) no-repeat center/contain;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .news__footer::before {
    position: fixed;
    background-image: url(../img/top/info-corner-bottom-sp.svg);
    aspect-ratio: 393/197;
  }
}
.news__tit {
  font-family: "Cinzel", serif;
  font-size: 4.5rem;
  line-height: 1.35;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .news__tit {
    font-size: 3.4rem;
  }
}
@media (max-width: 375px) {
  .news__tit {
    font-size: 2.4rem;
  }
}
.news__btn {
  --icon-size: 4.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin-top: 3rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .news__btn {
    --icon-size: 3.5rem;
    font-size: 1.2rem;
    gap: 10px;
    margin-top: 0.7rem;
  }
}
.news__btn::before, .news__btn::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
}
.news__btn::before {
  width: var(--icon-size);
  border-radius: 50%;
  background-color: rgba(112, 112, 112, 0.23);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.news__btn::after {
  width: 15px;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_arrow_next.svg) no-repeat center/contain;
  position: absolute;
  top: calc(var(--icon-size) / 2);
  left: calc(var(--icon-size) / 2);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .news__btn::after {
    width: 11px;
  }
}
.news__btn:hover::before {
  background-color: #BF0A28;
}
.news__emptyText {
  padding-block: 4rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .news__emptyText {
    font-size: 1.3rem;
    padding-block: 0;
  }
}

.news-grid {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem 12.1%;
  position: relative;
  z-index: 3;
}
@media (max-width: 375px) {
  .news-grid {
    row-gap: 2rem;
  }
}
.news-grid__item {
  max-width: 40%;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .news-grid__item {
    max-width: 100%;
    width: 100%;
  }
}

.news-list__link, .news-list__date, .news-list__tit {
  display: block;
}
.news-list__link {
  padding-block: 20px;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .news-list__link {
    padding-block: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 15px;
  }
}
.news-list__link:hover {
  opacity: 0.6;
}
.news-list__date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .news-list__date {
    font-size: 1rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.news-list__tit {
  font-size: 1.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .news-list__tit {
    font-size: 1.3rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.about-btn {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 70px 60px;
  padding-left: 80px;
  background-color: rgba(0, 0, 0, 0.3);
  gap: 5px 20px;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .about-btn {
    padding: 50px;
  }
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .about-btn {
    padding: 30px;
  }
}
.about-btn__tit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 4.5rem;
  line-height: 1.35;
  font-family: "Cinzel", serif;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .about-btn__tit {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
    font-size: 2.5rem;
  }
}
.about-btn__sub {
  font-size: 1.6rem;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .about-btn__sub {
    width: 100%;
    font-size: 1.1rem;
  }
}
.about-btn__sub::before {
  content: "";
  display: block;
  width: 55px;
  height: 1px;
  background-color: #A1A8B3;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .about-btn__sub::before {
    display: none;
  }
}
.about-btn:hover {
  background-color: #BF0A28;
}