@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #49565e;
  background-color: #0a0f1a;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
a[target=_blank] {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
a[target=_blank]::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("../src-lp/img/icon-linkout-b.svg");
  mask-size: 16px;
  background-color: #ffffff;
  opacity: 0.8;
}
.header__logo a[target=_blank]::after {
  display: none;
}
a[target=_blank].sp-menu__logo::after {
  display: none;
}

ul,
ol {
  list-style: none;
}

button {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

.opening-movie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease-out, visibility 0s 1s;
}
.opening-movie.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.opening-movie__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0.75em 1.5em;
  border-radius: 999px;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  opacity: 0.5;
}
.btn[target=_blank] {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.btn[target=_blank]::after {
  content: "";
  display: block;
  width: 16x;
  height: 16px;
  mask-image: url("../src-lp/img//icon-linkout-b.svg");
  mask-size: 16px;
  background-color: #0086bf;
  opacity: 0.8;
}
.btn--gradient {
  background: linear-gradient(90deg, #32aae1 11.563%, #0091d4 87.813%);
  border: 1px solid #5dbae4;
  color: #ffffff;
  height: 48px;
  width: 300px;
  box-shadow: 2px 2px 2px rgba(31, 31, 31, 0.02);
}
.btn--gradient::after {
  background-color: #ffffff;
}
@media (max-width: 1024px) {
  .btn--gradient {
    width: 100%;
    max-width: 300px;
  }
}
.btn--outline-white {
  background: linear-gradient(90deg, #c5edff 11.563%, #ffffff 87.813%);
  border: 1px solid #ffffff;
  color: #0086bf;
  height: 48px;
  width: 300px;
  box-shadow: 2px 2px 2px rgba(31, 31, 31, 0.02);
}
.btn--outline-white::after {
  background-color: #0086bf;
}
@media (max-width: 1024px) {
  .btn--outline-white {
    width: 100%;
    max-width: 300px;
  }
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.modal__content {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(75%, (100dvh - 260px) * 16 / 9);
  max-width: 1095px;
  height: auto;
  aspect-ratio: 16/9;
  max-height: calc(100dvh - 260px);
  background: #000000;
  transform: translate(-50%, -50%);
}
@media (min-width: 1520px) {
  .modal__content {
    max-width: 1280px;
  }
}
@media (max-width: 1024px) {
  .modal__content {
    width: 82.6%;
  }
}
.modal__close {
  position: absolute;
  left: 100%;
  top: 0;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: none;
  border-radius: 10rem;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: opacity 0.3s;
}
.modal__close:hover {
  opacity: 0.7;
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 34px;
  height: 1px;
  background: #000000;
}
.modal__close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 1024px) {
  .modal__close {
    top: -8px;
    width: 38px;
    height: 38px;
    transform: translate(-100%, -100%);
  }
  .modal__close::before, .modal__close::after {
    width: 22px;
  }
}
.modal__body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.modal__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.modal__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
.modal__info {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, backdrop-filter 1s ease;
}
.header.on-bright .header__logo svg.logo-svg path[fill=msColor] {
  fill: #5C697B;
  transition: 1s;
}
.header.on-bright .header__logo svg.logo-svg path[fill=agentColor] {
  fill: #0091D4;
  transition: 1s;
}
.header.on-bright .header__nav-item a {
  color: #49565e;
  text-shadow: none;
}
.header.on-bright .header__nav-item a:hover {
  opacity: 0.7;
}
.header.on-bright .header__nav-item a[target=_blank]::after {
  background-color: #49565e;
}
.header.on-bright .header__divider {
  background-color: #d9d9d9;
}
@media (min-width: 1025px) {
  .header.is-up {
    backdrop-filter: blur(50px);
  }
}
.header__inner {
  margin-inline: auto;
  padding-inline: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .header__inner {
    display: none;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo svg.logo-svg {
  width: 124px;
  aspect-ratio: 31/10;
}
.header__logo svg.logo-svg path[fill=msColor] {
  fill: #B2B2B2;
}
.header__logo svg.logo-svg path[fill=agentColor] {
  fill: #ffffff;
}
.header__nav {
  flex: 1;
}
.header__nav-list {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 16px;
}
.header__nav-list::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  margin-right: 4px;
  background: #ffffff;
}
.header__nav-item a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  transition: opacity 0.2s;
  text-transform: uppercase;
}
.header__nav-item a:hover {
  opacity: 0.6;
}
.header__nav-item a[target=_blank]::after {
  mask-image: url("../src-lp/img/icon-linkout.svg");
  background-color: #ffffff;
}
.header__cta {
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .header__cta {
    display: none;
  }
}
.header__hamburger {
  position: fixed;
  right: 10px;
  top: 10px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  margin-left: auto;
  width: 60px;
  height: 60px;
  background-color: rgba(73, 86, 94, 0.01);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (max-width: 1024px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger:hover {
  background-color: rgba(73, 86, 94, 0.05);
}
.header__hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 100px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 1s ease;
}
.header__hamburger.on-bright span {
  background-color: #49565e;
}
.header__hamburger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.header__hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.header__hamburger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 108px 35px 80px 31px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sp-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: -1;
}
.sp-menu[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
}
.sp-menu__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.sp-menu__close svg {
  width: 30px;
  height: 30px;
}
.sp-menu__nav {
  width: 100%;
  max-width: 309px;
}
.sp-menu__list {
  position: relative;
  display: flex;
  flex-direction: column;
}
.sp-menu__list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(73, 86, 94, 0.2);
}
.sp-menu__item {
  position: relative;
}
.sp-menu__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(73, 86, 94, 0.2);
}
.sp-menu a:link, .sp-menu a:visited {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #49565e;
  transition: opacity 0.2s ease;
}
.sp-menu a:link:hover, .sp-menu a:visited:hover {
  opacity: 0.7;
}
.sp-menu a:link[target=_blank]::after, .sp-menu a:visited[target=_blank]::after {
  background-color: #49565e;
}
.sp-menu__logo {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.sp-menu__logo-mstage {
  max-width: 210px;
  height: auto;
}
.sp-menu__logo-agent {
  max-width: 220px;
  height: auto;
}

:root {
  --gallery-top-adjust: calc((var(--interview-slide-height) / 2) - (var(--gallary-top-padding)));
}
@media (min-width: 1025px) {
  :root {
    --card-width: 33.35dvw;
    --card-max-width: 427px;
    --ttl-size: 32px;
    --gallary-top-padding: 140px;
  }
}
@media (min-width: 1025px) and (max-height: 800px) {
  :root {
    --card-width: 30dvw;
  }
}
@media (max-width: 1024px) {
  :root {
    --card-width: 50dvw;
    --card-height: calc(var(--card-width) / 16 * 9);
    --gap-length: calc(var(--card-height) - 24px);
    --ttl-size: 28px;
    --transformY: calc((var(--gap-length) + var(--ttl-size) + 30px) / 2);
    --gallary-top-padding: 120px;
  }
}
@media (max-width: 768px) {
  :root {
    --card-width: 72dvw;
  }
}

main {
  overflow: clip;
}

.kv {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 800px;
  overflow: hidden;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .kv {
    min-height: 100svh;
  }
}
.kv__bg {
  position: absolute;
  inset: 0;
  background-color: #0a0f1a;
  z-index: 0;
}
.kv__video {
  position: fixed;
  top: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.5s ease;
}
.kv__video.is-paused {
  opacity: 0;
}
.kv__poster {
  position: fixed;
  top: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.kv__poster.is-hidden {
  display: none;
}
.kv__poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kv__scroll-indicator {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 49px;
  z-index: 1;
  width: 12px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.75s ease-in;
}
@media (max-width: 1024px) {
  .kv__scroll-indicator {
    bottom: 30px;
  }
}
.kv__scroll-indicator.is-visible {
  opacity: 1;
}
.kv__scroll-indicator.is-scrolled {
  opacity: 0;
}
.kv__scroll-line {
  display: block;
  width: 2px;
  height: 52px;
  background-color: #ffffff;
  border-radius: 23px;
  transform-origin: bottom center;
  animation: scrollStretch 1s ease-in-out infinite;
}

@keyframes scrollStretch {
  0%, 100% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
.message {
  position: relative;
}
.message__bg {
  position: absolute;
  left: 0;
  top: 125dvh;
  width: 100%;
  height: 100%;
}
.message__bg img {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 100%;
  height: 100%;
  max-width: none;
}
.message::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  backdrop-filter: blur(50px);
  opacity: var(--blur-opacity, 0);
  transition: opacity 0.1s linear;
}
.message__inner {
  position: relative;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 100px;
  padding-top: 800px;
  z-index: 1;
}
@media (min-width: 1025px) {
  .message__inner {
    display: grid;
    grid-auto-rows: 1fr;
    padding-bottom: 493px;
  }
}
@media (max-width: 1024px) {
  .message__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 400px;
    padding-top: 600px;
    padding-bottom: 600px;
    padding-inline: 20px;
  }
}
.message__inner > div {
  z-index: 1;
}
.message__grid-spacer {
  display: block;
  height: 50px;
}
.message__text {
  position: sticky;
  top: 50%;
  transform: translate(0, -50%);
}
.message__statement {
  font-family: "Koburina Gothic StdN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 300;
  line-height: 38.4px;
  letter-spacing: -0.32px;
  color: #ffffff;
}
@media (min-width: 1025px) {
  .message__statement {
    font-size: 16px;
    padding-left: 60px;
  }
}
@media (max-width: 1024px) {
  .message__statement {
    text-align: center;
    font-size: 14px;
    line-height: 32px;
  }
}
.message__statement p {
  margin: 0;
}
.message__statement br {
  display: block;
  height: 38.4px;
}
@media (max-width: 1024px) {
  .message__statement br {
    height: 32px;
  }
}
.message__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (min-width: 1025px) {
  .message__logo {
    position: sticky;
    top: 50%;
    transform: translate(0, -50%);
    width: 427px;
    margin-left: auto;
  }
}
@media (max-width: 1024px) {
  .message__logo {
    width: 100%;
    max-width: 311px;
    margin: 0 auto;
  }
}
.message__logo-mstage {
  width: 100%;
  aspect-ratio: 427/34;
}
.message__logo-agent {
  width: 100%;
  height: 68px;
  display: flex;
  justify-content: center;
}

.interview {
  position: relative;
  padding-top: 216px;
  padding-bottom: 0;
  color: #49565e;
}
@media (max-width: 1024px) {
  .interview {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.interview__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%);
  overflow: hidden;
}
.interview__bg img {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 100%;
  height: 100%;
  max-width: none;
}
.interview__inner {
  position: relative;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 100px;
}
@media (max-width: 768px) {
  .interview__inner {
    padding-inline: 20px;
  }
  .interview .interview__inner {
    padding-inline: 16px;
  }
}
@media (max-height: 800px) {
  .interview__inner {
    padding-inline: 80px;
  }
}
.interview__indicator {
  position: absolute;
  left: -36px;
  top: 131px;
  transform: translate(-100%, 0);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
@media (max-width: 768px) {
  .interview__indicator {
    left: calc(100% - (100% - 16px - 72dvw) / 2);
    top: calc((40.5dvw + 24px) / 2 * -1);
    transform: translate(-50%, -50%);
  }
}
.interview__indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.interview__indicator-dot.is-active {
  background-color: rgb(255, 255, 255);
}
.interview__title {
  position: absolute;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: var(--ttl-size);
  font-weight: 100;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .interview__title {
    left: 80px;
    top: 80px;
    color: #49565e;
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .interview__title {
    left: 16px;
    top: auto;
    bottom: calc(100% + var(--gap-length) + 30px);
    color: #ffffff;
    margin-bottom: 0;
  }
}
.interview__image {
  position: absolute;
  border-radius: 24px;
  width: var(--card-width);
  overflow: hidden;
  background-color: #e8ecef;
  margin: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
}
.interview__image.is-active {
  opacity: 1;
}
@media (max-width: 1024px) {
  .interview__image {
    left: 16px;
    bottom: calc(100% - 24px);
    aspect-ratio: 16/9;
  }
}
@media (min-width: 1025px) {
  .interview__image {
    left: -80px;
    top: 244px;
    aspect-ratio: 427/360;
    max-width: var(--card-max-width);
  }
}
@media (min-width: 1025px) and (max-height: 800px) {
  .interview__image {
    aspect-ratio: 8/5;
  }
}
.interview__image img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.interview__content {
  display: grid;
  grid-auto-rows: 1fr;
  padding: 80px 0 0 80px;
}
@media (max-width: 1024px) {
  .interview__content {
    padding: 216px 0 0;
  }
}
.interview__content::after {
  content: "";
  display: block;
  flex-shrink: 0;
  position: sticky;
  top: 50%;
}
.interview__content > * {
  flex: 1;
}
.interview__slide {
  position: sticky;
  top: 50%;
  transition: opacity 0.75s ease;
  pointer-events: none;
  padding: 80px;
  padding-left: var(--card-width);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  flex-shrink: 0;
  transform: translate(0, -50%);
}
@media (min-width: 1025px) and (min-width: 1280px) {
  .interview__slide {
    padding-left: 430px;
  }
}
@media (min-width: 1025px) and (max-height: 800px) {
  .interview__slide {
    padding: 72px;
    padding-left: var(--card-width);
  }
}
@media (max-width: 1024px) {
  .interview__slide {
    padding: 48px 24px 40px;
    transform: translate(0, calc(-50% + var(--transformY)));
  }
}
@media (max-width: 1024px) and (max-height: 800px) {
  .interview__slide {
    padding: 40px 24px 24px;
  }
}
.interview__slide:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
}
.interview__body {
  flex: 1;
  opacity: 0;
  transition: opacity 0s ease;
}
.interview__slide.is-active .interview__body {
  opacity: 1;
  transition: opacity 1.5s ease;
}
.interview__qa {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin: 0;
  font-family: "Koburina Gothic StdN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
@media (min-width: 1025px) {
  .interview__qa {
    gap: 77px;
    letter-spacing: 1.96px;
    line-height: 2.74;
  }
}
@media (min-width: 1025px) and (max-height: 800px) {
  .interview__qa {
    gap: 36px;
    line-height: 2.4;
  }
}
@media (max-width: 1024px) {
  .interview__qa {
    gap: 24px;
    letter-spacing: 0;
    line-height: 1.96;
  }
}
@media (max-width: 1024px) and (max-height: 800px) {
  .interview__qa {
    gap: 18px;
    line-height: 1.7;
  }
}
.interview__question {
  font-weight: 600;
  color: #0086bf;
  margin: 0;
  align-self: stretch;
}
@media (min-width: 1025px) {
  .interview__question {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .interview__question {
    font-size: 13px;
  }
}
.interview__answer {
  font-weight: 300;
  color: #49565e;
  margin: 0;
  align-self: stretch;
}
@media (min-width: 1025px) {
  .interview__answer {
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .interview__answer {
    font-size: 14px;
  }
}

.gallery {
  position: relative;
  padding-top: 100px;
  padding-bottom: 200px;
  overflow: hidden;
  background-color: #0d1922;
  margin-top: calc(var(--gallery-top-adjust) * -1);
}
@media (max-width: 1024px) {
  .gallery {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1025px) and (max-height: 800px) {
  .gallery {
    margin-top: -138px;
  }
}
.gallery__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.gallery__bg img {
  min-width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.gallery__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}
@media (max-width: 1024px) {
  .gallery__inner {
    gap: 24px;
  }
}
.gallery__heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 100px;
  border-radius: 120px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .gallery__heading-wrap {
    padding: 20px 60px;
  }
}
.gallery__title {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 32px;
  font-weight: 100;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: #49565e;
  line-height: 1;
}
@media (max-width: 1024px) {
  .gallery__title {
    font-size: 24px;
    letter-spacing: 2.4px;
  }
}
.gallery__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 568px;
}
@media (max-width: 1024px) {
  .gallery__grid {
    height: auto;
    gap: 16px;
  }
}
.gallery__row {
  overflow-x: auto;
  overflow-y: hidden;
  flex: 1;
  scrollbar-width: none;
}
.gallery__row::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  .gallery__row {
    flex: none;
    height: 200px;
  }
}
.gallery__row-inner {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  height: 100%;
  min-width: max-content;
}
.gallery__spacer {
  flex-shrink: 0;
  width: 100px;
}
.gallery__spacer--end {
  width: 200px;
}
.gallery__spacer--lg {
  width: 200px;
}
@media (max-width: 1024px) {
  .gallery__spacer {
    width: 32px;
  }
  .gallery__spacer--end {
    width: 32px;
  }
  .gallery__spacer--lg {
    width: 80px;
  }
  .gallery__spacer--lg--end {
    width: 32px;
  }
}
.gallery__card {
  position: relative;
  flex-shrink: 0;
  width: 318px;
  height: 279px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .gallery__card {
    width: 240px;
    height: 200px;
  }
}
.gallery__card.is-disabled {
  cursor: not-allowed;
}
.gallery__card.is-disabled::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: auto;
  cursor: not-allowed;
}
.gallery__card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(0, 134, 191, 0.2);
  backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  color: #ffffff;
  text-align: center;
  padding: 24px;
  z-index: 5;
}
@media (max-width: 1024px) {
  .gallery__card-overlay {
    padding: 16px;
  }
}
.gallery__card:hover .gallery__card-overlay {
  opacity: 1;
}
.gallery__card-label {
  font-family: "Koburina Gothic StdN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 35.2px;
  letter-spacing: 0.22px;
  margin: 0;
}
@media (max-width: 1024px) {
  .gallery__card-label {
    font-size: 16px;
    line-height: 28px;
  }
}
.gallery__card-meta {
  font-family: "Koburina Gothic StdN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.48px;
  margin: 0;
}
@media (max-width: 1024px) {
  .gallery__card-meta {
    font-size: 14px;
  }
}
.gallery__card-media {
  position: absolute;
  inset: 0;
  margin: 0;
  background-color: #d8dde0;
  overflow: hidden;
  border-radius: 24px;
}
.gallery__card-media img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 156.61%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.gallery__buttons {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1024px) {
  .gallery__buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding-inline: 20px;
  }
}

.cta {
  position: relative;
  overflow: hidden;
  background: url("../src-lp/img/bg_gradation_long.webp") center 100%;
  background-size: cover;
}
.cta__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cta__bg img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 563/1182;
  transform: translate(-50%, -50%);
}
.cta__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
@media (max-width: 768px) {
  .cta__inner {
    flex-direction: column;
    padding-inline: 20px;
    padding-block: 64px 80px;
    text-align: center;
    gap: 0;
  }
}
.cta__visual {
  flex-shrink: 0;
  width: 290px;
  height: 400px;
  position: relative;
  background: transparent;
}
@media (max-width: 768px) {
  .cta__visual {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 290/400;
    order: 2;
  }
}
.cta__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cta__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  filter: drop-shadow(0px 4px 4px rgba(13, 100, 142, 0.8));
}
@media (max-width: 768px) {
  .cta__body {
    align-items: center;
    gap: 0;
    width: 100%;
    order: 1;
  }
}
.cta__text {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cta__text {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    text-align: left;
    width: 100%;
    margin-bottom: 32px;
  }
}
.cta__lead {
  font-family: "Koburina Gothic StdN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.32px;
  margin: 0;
}
@media (max-width: 768px) {
  .cta__lead {
    font-size: 16px;
    line-height: 1.75;
  }
}
.cta__title {
  font-family: "Koburina Gothic StdN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.464px;
  margin: 0;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 24px;
    line-height: 1.65;
    letter-spacing: 0.384px;
  }
}
@media (max-width: 768px) {
  .cta__btn-pc {
    display: none !important;
  }
}
.cta__btn-sp {
  display: none !important;
}
@media (max-width: 768px) {
  .cta__btn-sp {
    display: flex !important;
    order: 3;
    margin-top: 0;
  }
}

.gallery__row.on-pc {
  cursor: grab;
}
.gallery__row.on-pc:active {
  cursor: grabbing;
}

.footer {
  position: relative;
  width: 100%;
  height: 460px;
  padding-top: 100px;
  background-color: #efefef;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .footer {
    --footer-white-area-height:0;
  }
}
@media (max-width: 1024px) {
  .footer {
    height: auto;
    padding: 120px 0 0;
    --footer-white-area-height:calc(80px + 16px + 16px + (0.6875rem * 2.16) - 5px);
  }
}
@media (max-width: 600px) {
  .footer {
    height: auto;
    padding: 120px 0 0;
    --footer-white-area-height:5%;
  }
}
@media (max-width: 540px) {
  .footer {
    --footer-white-area-height:13.3%;
  }
}
.footer__bg {
  position: absolute;
  left: 0;
  bottom: var(--footer-white-area-height);
  width: 100%;
  height: 100%;
  z-index: 0;
}
.footer__bg img {
  position: absolute;
  left: 50%;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, 0);
}
.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 100%;
}
@media (max-width: 1024px) {
  .footer__inner {
    gap: 40px;
    gap: 226px;
  }
}
.footer__inner > div.block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .footer__inner > div.block {
    width: 100%;
    background: #ffffff;
    padding: 40px 20px;
    margin: 0;
  }
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: start;
  width: 23.5dvw;
  min-width: 275px;
  max-width: 300px;
  height: auto;
}
.footer__logo-copy {
  width: 94.8%;
}
@media (max-width: 1024px) {
  .footer__logo {
    max-width: 300px;
    min-width: none;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .footer__logo {
    max-width: 73%;
  }
}
.footer__logo img {
  width: 100%;
  max-width: none;
}
.footer__nav {
  line-height: 1;
}
@media (max-width: 1024px) {
  .footer__nav {
    width: 100%;
  }
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}
@media (max-width: 1024px) {
  .footer__nav-list {
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
}
.footer__nav-list a {
  position: relative;
  display: flex;
  align-items: center;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: rgba(73, 86, 94, 0.47);
  transition: color 0.2s;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .footer__nav-list a {
    font-size: 1rem;
    letter-spacing: 0.02em;
  }
}
.footer__nav-list a:hover {
  color: #49565e;
}
.footer__nav-list a[target=_blank] {
  gap: 8px;
}
.footer__nav-list a[target=_blank]::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url("../src-lp/img/icon-linkout-b.svg");
  mask-size: 16px;
  background-color: rgba(73, 86, 94, 0.47);
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .footer__nav-list a[target=_blank]::after {
    width: 14px;
    height: 14px;
    mask-size: 14px;
  }
}
@media (max-width: 1024px) {
  .footer__copy-wrap {
    width: 100%;
  }
}
.footer__copy {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(73, 86, 94, 0.47);
  margin-top: auto;
}
@media (max-width: 1024px) {
  .footer__copy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.6875rem;
    letter-spacing: 0.02em;
    line-height: 2.16;
  }
}
@media (max-width: 1024px) {
  .footer__copy-sep {
    display: inline;
  }
}

/*# sourceMappingURL=lp-style.css.map */
