@charset "utf-8";

/* ==========================================================================
   Tokens
========================================================================== */

:root {
  --breakpoint-mobile: 767px;
  --header-height: 80px;

  --color-white: #ffffff;
  --color-black: #030c18;
  --color-text-main: #112050;
  --color-text-body: #030c18;
  --color-text-muted: #5d6678;
  --color-bg-section: #f0f4f9;
  --color-border: #d9e0ea;
  --color-accent-blue: #0f74c7;
  --color-accent-cyan: #6ac7de;
  --color-heading-ghost: #dbe4f0;
  --color-brand-navy: #0d1b3e;
  --color-brand-deep: #16273d;

  --gradient-cv-corp: linear-gradient(90deg, #5596ff 0%, #8380ff 100%);
  --gradient-dark: radial-gradient(circle at 24% 50%, #075490 0%, #0b4573 18%, #12324d 44%, #16273d 100%);
  --gradient-heading: linear-gradient(180deg, #112050 0%, #112050 64%, #0f74c7 100%);

  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Outfit", sans-serif;
  --content-width: 1200px;
  --content-padding: 32px;
  --section-radius: 8px;
  --transition-default: 0.3s ease;
}

/* CSS custom properties cannot be used in native media query conditions.
   Keep the mobile query value in sync with --breakpoint-mobile. */

@media screen and (max-width: 767px) {
  :root {
    --header-height: 60px;
    --content-padding: 20px;
  }
}

/* ==========================================================================
   Base
========================================================================== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  font-family: var(--font-base);
  color: var(--color-text-body);
  background: var(--color-white);
}

body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: 700;
}

/* ==========================================================================
   Component
========================================================================== */

.c-section-heading {
  margin-bottom: 50px;
}
.c-section-heading--row {
  display: flex;
  align-items: flex-end; 
  gap: 80px; 
}

.c-section-heading--row .c-section-heading__title {
  margin-top: 0;
  padding-bottom: 20px; 
}

.c-section-heading__en {
  font-family: var(--font-en);
  font-size: clamp(68px, calc(1vw * 120 / 1440 * 100), 120px);
  font-weight: 500;
  line-height: calc(151 / 120);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(1,1fr);
  padding: 72px 0 0;
}

.c-section-heading__en-sub {
  position: absolute;
  top: 0;
  left: -50px;
  color: #D7DFEA;
}

.c-section-heading__en-main {
  position: relative;
  z-index: 1;
  justify-self: start;
  width: fit-content;
  background-image: radial-gradient(50% 50% at 61.6% 100%, #187DCC 0%, #16273D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.c-section-heading__title {
  position: relative;
  margin: 20px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: calc(41 / 24);
  letter-spacing: 0.02em;
  color: var(--color-black);
}

@media screen and (min-width: 768px) {
  .c-section-heading--row {
    flex-wrap: nowrap;
    gap: 80px;
    min-width: 0;
  }

  .c-section-heading--row .c-section-heading__en {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
  }

  .c-section-heading--row .c-section-heading__title {
    flex: 0 0 auto;
    min-width: 0;
  }

  .c-section-heading--row .c-section-heading__en-main {
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .c-section-heading--row .c-section-heading__en {
    font-size: clamp(68px, 8.3vw, 100px);
  }

  .c-section-heading--row .c-section-heading__en-sub {
    left: clamp(-50px, -3.5vw, -24px);
  }
}

@media screen and (min-width: 1320px) and (max-width: 1399px) {
  .c-section-heading--row:not(.lp-faq__header) .c-section-heading__en-sub {
    left: 0;
  }
}

/* 1320px未満では、通常の横並び見出しをSPと同じ縦配置へ変更 */
@media screen and (min-width: 768px) and (max-width: 1319px) {
  .c-section-heading--row:not(.lp-faq__header) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .c-section-heading--row:not(.lp-faq__header)
    .c-section-heading__en {
    flex: none;
    width: fit-content;
    max-width: 100%;
  }

  .c-section-heading--row:not(.lp-faq__header) .c-section-heading__en-sub,
  .lp-challenge__header .c-section-heading__en-sub,
  .lp-message__header .c-section-heading__en-sub {
    left: 0;
  }

  .c-section-heading--row:not(.lp-faq__header) .c-section-heading__title {
    margin-top: 25px;
    padding-bottom: 0;
  }
}


/* ==========================================================================
   Component: Section Heading CTA Variation
========================================================================== */

.c-section-heading--cta {
  margin: 0;
}

.c-section-heading--cta .c-section-heading__en {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  font-family: var(--font-en);
}

.c-section-heading--cta .c-section-heading__en-sub {
  position: static;
  display: block;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.3);
}

.c-section-heading--cta .c-section-heading__en-main {
  display: block;
  margin-top: -28px;
  padding-left: 50px;
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-white);

  background-image: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: currentColor;
  background-clip: initial;
  text-fill-color: currentColor;
}

@media screen and (max-width: 767px) {
  .c-section-heading--cta .c-section-heading__en-sub {
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.3);
  }

  .c-section-heading--cta .c-section-heading__en-main {
    margin-top: -4px;
    padding-left: 0;
    font-size: 58px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-white);

    background-image: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: currentColor;
    background-clip: initial;
    text-fill-color: currentColor;
  }
}

.c-section-subheading {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #063F85;
  margin: 0 0 20px;
}

/* ==========================================================================
   Component: CTA Banner
========================================================================== */

.c-cta-banner {
  position: relative;
  min-height: 487px;
  overflow: hidden;
  border-radius: 8px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #075490 0%,
    #0b4573 17%,
    #12324d 42%,
    #132c45 60%,
    #16273d 92%
  );
}

.c-cta-banner__content {
  width: 50%;
  position: relative;
  z-index: 2;
  color: var(--color-white);
  margin-left: auto;
  padding: 70px 0 0 140px;
}

.c-cta-banner__heading {
  margin-bottom: 30px;
  margin-left: -50px;
}

.c-cta-banner__text {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.c-cta-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 360px;
  min-height: 54px;
  padding: 0 28px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-decoration: none;
  background: linear-gradient(90deg, #6ac7de 0%, #8380ff 100%);
  transition: opacity 0.2s ease;
}

.c-cta-banner__button-text {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  white-space: nowrap;
}

.c-cta-banner__button-sub {
  display: block;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.c-cta-banner__button-main {
  display: block;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.c-cta-banner__button-arrow {
  justify-content: center;
  width: 20px;
  height: 5px;
  max-width: none;
  margin: 0;
  transform: translateY(-50%);
}

.c-cta-banner__visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
}

.c-cta-banner__visual picture,
.c-cta-banner__visual img {
  display: block;
}

.c-cta-banner__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-cta-banner__visual--orbit {
  position: absolute;
  width: 60%;
  height: 100%;
  isolation: isolate;

  --cta-center-x: 50%;
  --cta-center-y: 50%;
  --cta-orbit-duration: 62s;
  --cta-circle-diameter: clamp(520px, 54vw, 800px);
  --cta-circle-img-num: 8;
  --cta-circle-img-angle: calc(360deg / var(--cta-circle-img-num));
  --cta-circle-img-width: calc(var(--cta-circle-diameter) * 3.14 / (var(--cta-circle-img-num) * 1.24));
  --cta-circle-img-height: calc(var(--cta-circle-img-width) / 2);
  --cta-circle-tilt-x: -103deg;
  --cta-circle-tilt-y: -12deg;
  --cta-circle-offset-y: 0px;
  --cta-ring-scale: 1;

  perspective: 1500px;
}

.c-cta-banner__stage,
.c-cta-banner__orbit,
.c-cta-banner__orbit-inner,
.c-cta-banner__orbit-card,
.c-cta-banner__card-surface,
.c-cta-banner__card-surface div {
  transform-style: preserve-3d;
}

.c-cta-banner__stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  perspective: inherit;
}

.c-cta-banner__flame {
  position: absolute;
  top: var(--cta-center-y);
  left: var(--cta-center-x);
  z-index: 7;
  width: calc(var(--cta-circle-diameter) * 0.60);
  margin: 0;
  filter: drop-shadow(0 0 36px rgba(0, 200, 255, 0.55));
  transform: translate(-50%, -70%);
}

.c-cta-banner__flame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.96;
}

.c-cta-banner__orbit {
  position: absolute;
  top: var(--cta-center-y);
  left: var(--cta-center-x);
  z-index: 3;
  width: var(--cta-circle-diameter);
  height: var(--cta-circle-diameter);
  pointer-events: none;
  animation: none;
  transform:
    translate(-50%, -50%)
    translate3d(0, var(--cta-circle-offset-y), 0)
    rotateX(var(--cta-circle-tilt-x))
    rotateY(var(--cta-circle-tilt-y))
    scale3d(var(--cta-ring-scale), var(--cta-ring-scale), var(--cta-ring-scale));
  transform-origin: center;
  will-change: transform;
}

.c-cta-banner__orbit-inner {
  position: absolute;
  inset: 0;
  animation: cta-banner-ring-rotate var(--cta-orbit-duration) linear infinite;
  will-change: rotate;
}

.c-cta-banner__orbit-card {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: var(--cta-circle-img-width);
  height: var(--cta-circle-diameter);
  margin: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: rotateZ(var(--cta-item-angle));
}

.c-cta-banner__card-surface {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: var(--cta-circle-img-height);
  translate: 0 -34%;
  transform: rotateX(90deg) rotateY(calc(180deg - var(--cta-circle-img-angle) / 2));
}

.c-cta-banner__card-surface div {
  position: absolute;
  top: 0;
  left: 95%;
  display: block;
  width: 100%;
  height: 100%;
  background-image: var(--cta-card-image);
  background-repeat: no-repeat;
  background-position-y: center;
  background-size: 476% auto;
  transform: rotateY(calc(var(--cta-circle-img-angle) / 5.6));
  transform-origin: center left;
}

.c-cta-banner__card-surface > div {
  left: 0;
  width: 21%;
  border-radius: 8px 0 0 8px;
}

.c-cta-banner__card-surface > div > div > div > div > div {
  border-radius: 0 8px 8px 0;
}

.c-cta-banner__card-surface > div { background-position-x: calc(100% / 4 * 0); }
.c-cta-banner__card-surface > div > div { background-position-x: calc(100% / 4 * 1); }
.c-cta-banner__card-surface > div > div > div { background-position-x: calc(100% / 4 * 2); }
.c-cta-banner__card-surface > div > div > div > div { background-position-x: calc(100% / 4 * 3); }
.c-cta-banner__card-surface > div > div > div > div > div { background-position-x: calc(100% / 4 * 4); }

.c-cta-banner__orbit-card--01 {
  --cta-item-angle: calc(var(--cta-circle-img-angle) * 0);
  --cta-card-image: url("../img/fv/fv_card_01.webp");
}

.c-cta-banner__orbit-card--02 {
  --cta-item-angle: calc(var(--cta-circle-img-angle) * 1);
  --cta-card-image: url("../img/fv/fv_card_02.webp");
}

.c-cta-banner__orbit-card--03 {
  --cta-item-angle: calc(var(--cta-circle-img-angle) * 2);
  --cta-card-image: url("../img/fv/fv_card_03.webp");
}

.c-cta-banner__orbit-card--04 {
  --cta-item-angle: calc(var(--cta-circle-img-angle) * 3);
  --cta-card-image: url("../img/fv/fv_card_04.webp");
}

.c-cta-banner__orbit-card--05 {
  --cta-item-angle: calc(var(--cta-circle-img-angle) * 4);
  --cta-card-image: url("../img/fv/fv_card_05.webp");
}

.c-cta-banner__orbit-card--06 {
  --cta-item-angle: calc(var(--cta-circle-img-angle) * 5);
  --cta-card-image: url("../img/fv/fv_card_06.webp");
}

.c-cta-banner__orbit-card--07 {
  --cta-item-angle: calc(var(--cta-circle-img-angle) * 6);
  --cta-card-image: url("../img/fv/fv_card_07.webp");
}

.c-cta-banner__orbit-card--08 {
  --cta-item-angle: calc(var(--cta-circle-img-angle) * 7);
  --cta-card-image: url("../img/fv/fv_card_08.webp");
}

@keyframes cta-banner-ring-rotate {
  to {
    rotate: -360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-cta-banner__orbit-inner {
    animation: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-cta-banner__button:hover {
    opacity: 0.8;
  }
}

.c-cta-banner__button:focus-visible {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .c-cta-banner {
    display: flex;
    flex-direction: column;
    min-height: auto;
    border-radius: 0;
    height: auto;
    background: url(../img/common/cta-bnr-bg.png) no-repeat center top / cover;
    padding: 60px 15px;
    margin-inline: calc(50% - 50vw);
  }

  .c-cta-banner__content {
    display: contents;
    padding-right: 0;
  }

  .c-cta-banner__heading {
    order: 1;
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 100;
  }

  .c-cta-banner__text {
    order: 3;
    margin: 30px 0;
    font-size: 24px;
    line-height: 1.8;
  }

  .c-cta-banner__button {
    order: 4;
    width: 100%;
    min-height: 58px;
    font-size: 18px;
  }

  .c-cta-banner__visual {
    order: 2;
    width: 100%;
    margin-top: 10px;
  }

  .c-cta-banner__visual img {
    width: 100%;
    height: auto;
    object-fit: initial;
  }

  .c-cta-banner__visual--orbit {
    --cta-center-x: 50%;
    --cta-center-y: 52%;
    --cta-circle-diameter: clamp(330px, 132vw, 560px);
    --cta-circle-img-width: calc(var(--cta-circle-diameter) * 3.14 / (var(--cta-circle-img-num) * 1.15));
    --cta-circle-tilt-x: -103deg;
    --cta-circle-tilt-y: -12deg;

    position: relative;
    height: min(82vw, 340px);
    min-height: 248px;
    perspective: 1100px;
  }

  .c-cta-banner__flame {
    transform: translate(-45%,-70%);
  }
  .c-cta-banner__flame img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .c-cta-banner__orbit {
    transform:
      translate(-50%, -50%)
      translate3d(0, var(--cta-circle-offset-y), 0)
      rotateX(var(--cta-circle-tilt-x))
      rotateY(var(--cta-circle-tilt-y))
      scale3d(var(--cta-ring-scale), var(--cta-ring-scale), var(--cta-ring-scale));
  }

  .c-cta-banner__card-surface > div {
    border-radius: 5px 0 0 5px;
  }

  .c-cta-banner__card-surface > div > div > div > div > div {
    border-radius: 0 5px 5px 0;
  }
}

@media screen and (max-width: 767px) {

  .c-section-heading--row,
  .lp-faq__header.c-section-heading--row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .c-section-heading--row .c-section-heading__title,
  .lp-faq__header .c-section-heading__title {
    margin-top: 25px;
    padding-bottom: 0;
  }

  .c-section-heading__en {
    line-height: calc(86 / 68);
    letter-spacing: -0.02em;
    padding: 46px 0 0;
  }

  .c-section-heading__en-sub {
    left: 0;
  }

  .c-section-heading__en-main {
    background-image: radial-gradient(50% 50% at 61.6% 100%, #187DCC 0%, #16273D 100%);
  }
}

/* ==========================================================================
   Layout
========================================================================== */

.l-main {
  padding-top: var(--header-height);
}

.l-inner {
  width: min(100%, calc(var(--content-width) + var(--content-padding) * 2));
  margin-inline: auto;
  padding-inline: var(--content-padding);
}

@media screen and (max-width: 767px) {
  .l-main {
    padding-top: var(--header-height);
  }

}

/* ==========================================================================
   Utility
========================================================================== */

.u-text-accent {
  color: var(--color-accent-blue);
}

.u-pc {
  @media screen and (min-width: 768px) {
    display: block;
  }
  @media screen and (max-width: 767px) {
    display: none;
  }
}

.u-sp {
  @media screen and (min-width: 768px) {
    display: none;
  }
  @media screen and (max-width: 767px) {
    display: block;
  }
}

/* ==========================================================================
   Component: Chart Swipe Hint
========================================================================== */

@media screen and (max-width: 767px) {
  .p-chart__wrap {
    position: relative;
  }

  .p-chart__swipe-hint.js-swipe-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
  }

  .p-chart__swipe-hint.js-swipe-hint.is-hidden {
    opacity: 0;
    visibility: hidden;
  }
}

/* ==========================================================================
   Unique: Challenge
========================================================================== */

.lp-challenge {
  padding: 100px 15px 120px;
  background-color: var(--color-bg-section);
  background-image: url("../img/common/bg_pattern.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 770px auto;
}

.lp-challenge__inner {
  max-width: min(100%, var(--content-width));
  margin-inline: auto;
}

.lp-challenge__title {
  font-size: 32px;
  line-height: 1.7;
  font-weight: 700;
  margin-top: 20px;
}

.lp-challenge__title--em {
  color: #0F74C7;
}

.lp-challenge__layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.92fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.lp-challenge__visual img {
  width: 100%;
  height: auto;
}

.lp-challenge__body {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 50px;
}

.lp-challenge__text-block {
  p {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .02em;
  }
  p + p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .lp-challenge {
    padding: 60px 15px;
    background-position: right 0 top 0;
    background-size: 210px auto;
    background-image: url("../img/common/sp/bg_pattern.svg");
  }

  .lp-challenge__title {
    font-size: 24px;
  }

  .lp-challenge__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lp-challenge__body {
    gap: 40px;
  }
}

/* ==========================================================================
   Unique: Message
========================================================================== */

.lp-message {
  padding: 100px 15px 120px;
  position: relative;
  overflow: hidden;
  color: var(--color-text-body);
  background-color: var(--color-white);
  background-image: url("../img/common/bg_pattern_02.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 686px auto;
}

.lp-message__inner {
  max-width: min(100%, var(--content-width));
  margin-inline: auto;
}

.lp-message__columns {
  display: grid;
  grid-template-columns: minmax(0, 1.214fr) minmax(320px, 1fr);
  gap: clamp(40px, 5.56vw, 80px);
  align-items: start;
}

.lp-message__lead {
  margin: 0 0 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #063f85;
}

.lp-message__content {
  display: grid;
  gap: 20px;
}

.lp-message__para {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

.lp-message__signature {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 20px;
  margin: 20px 0 0;
  color: var(--color-black);
}

.lp-message__signature-role {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.lp-message__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.lp-message__photo {
  overflow: hidden;
  aspect-ratio: 506 / 725;
  border-radius: 10px;
  background-color: #eef2f6;
}

.lp-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .lp-message {
    padding: 60px 15px;
    background-image: url("../img/common/sp/bg_pattern_02.svg");
    background-size: 200px auto;
  }

  .lp-message::before {
    width: 210px;
    height: 255px;
  }

  .lp-message__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lp-message__lead {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.7;
  }

  .lp-message__photo {
    order: -1;
    width: min(100%, 280px);
    height: auto;
    margin-inline: auto;
    border-radius: 6px;
  }

  .lp-message__signature {
    gap: 20px;
    margin-top: 10px;
  }

  .lp-message__name {
    font-size: 22px;
  }
}

/* ==========================================================================
   Unique: About
========================================================================== */

.lp-about {
  padding: 100px 30px 120px;
  background-color: var(--color-bg-section);
}

.lp-about__inner {
  max-width: min(100%, var(--content-width));
  margin-inline: auto;
}

.lp-about__lead {
  margin-bottom: clamp(40px, 5vw, 60px);
  text-align: left;
}

.lp-about__lead-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-body); 
}

.lp-about__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px; 
}

.lp-about__item {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 0 18px 0 rgba(5, 32, 68, 0.1);
  overflow: hidden;
  padding: 30px;
}

.lp-about__item-body {
  padding: 0; 
}
.lp-about__item-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-about__item-title {
  font-size: 20px; 
  line-height: 1.7;
  font-weight: 700; 
  letter-spacing: 0.02em;
  text-align: center;
  margin: 20px 0;
}


.lp-about__item-text {
  font-size: 16px; 
  line-height: 1.7; 
  letter-spacing: 0.02em;
  text-align: left;
}


@media screen and (max-width: 767px) {
  .lp-about {
    padding: 60px 15px;
  }

  .lp-about__header .c-section-heading__en-main {
    white-space: nowrap;
    font-size: clamp(56px, 16vw, 64px);
    line-height: calc(86 / 68);
  }

  .lp-about__list {
    grid-template-columns: 1fr; 
    gap: 15px;
  }

  .lp-about__item {
    border-radius: 6px;
    overflow: hidden;
    padding: 20px;
  }

  .lp-about__item-title {
    font-size: 18px; 
    margin: 15px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1319px) {
  .lp-about__header .c-section-heading__en-main {
    white-space: nowrap;
  }
}

/* ==========================================================================
   Unique: Number
========================================================================== */

.lp-number {
  padding: 100px 30px 120px;
  background-color: var(--color-white);
}

.lp-number__inner {
  max-width: min(100%, var(--content-width));
  margin-inline: auto;
}

.lp-number__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-number__item {
  display: grid;
  grid-template-columns: 198px minmax(0, 1fr);
  column-gap: 30px;
  align-items: center;
  min-height: 218px;
  padding: 10px 40px;
  color: var(--color-white);
  background: linear-gradient(135deg, #1070bc 0%, #062038 100%);
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(48, 76, 113, 0.2);
}

.lp-number__item-icon {
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
}

.lp-number__item-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-number__item-body {
  display: grid;
  align-content: center;
  justify-items: center;
  min-width: 0;
}

.lp-number__item-title,
.lp-number__item-sub,
.lp-number__item-num {
  text-align: center;
}

.lp-number__item-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.lp-number__item-sub {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.lp-number__item-num {
  display: flex;
  align-items: baseline;
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.lp-number__item-num--ratio {
  flex-wrap: nowrap;
  min-width: 0;
}

.lp-number__item-num--ratio .lp-number__item-num-large,
.lp-number__item-num--ratio .lp-number__item-separator {
  font-family: var(--font-en);
}

.lp-number__item-num--ratio .lp-number__item-separator {
  margin-inline: 8px;
}

.lp-number__item-ratio-group {
  display: inline-flex;
  align-items: baseline;
  flex: 0 0 auto;
}

.lp-number__item-num-large {
  margin-inline: 4px;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
}

.lp-number__item-value {
  display: inline-flex;
  align-items: baseline;
  flex: 0 0 auto;
  white-space: nowrap;
}

.lp-number__item-unit {
  flex-shrink: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.lp-number__item--age .lp-number__item-num-large {
  margin-inline: 0 4px;
}

.lp-number__item-note {
  margin: 20px 0 0;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: center;
}

.lp-number__item-stats {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 40px;
  align-items: start;
  margin-top: 12px;
}

.lp-number__item-stat {
  min-width: 0;
}

.lp-number__item-stat + .lp-number__item-stat {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.lp-number__item:nth-child(2) .lp-number__item-num,
.lp-number__item:nth-child(3) .lp-number__item-num {
  justify-content: center;
}

.lp-number__item--age .lp-number__item-note {
  margin-top: 4px;
  white-space: nowrap;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .lp-number__item-ratio-group {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .lp-number__item-ratio-group > * {
    flex-shrink: 0;
  }
  .lp-number__item-num--ratio .lp-number__item-label {
    white-space: nowrap;
  }
  .lp-number__item-num--ratio .lp-number__item-separator {
    flex-shrink: 0;
  }
}

@media screen and (max-width: 1199px) {
  .lp-number {
    padding: 60px 15px;
  }
  .lp-number__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .lp-number__item {
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    min-height: 240px;
    row-gap: 16px;
    padding: 28px 20px 24px;
    text-align: center;
    border-radius: 6px;
  }
  .lp-number__item-icon {
    width: 120px;
    height: 120px;
  }
  .lp-number__item-body {
    width: 100%;
    justify-items: center;
  }
  .lp-number__item-title {
    width: 100%;
    margin: 0 0 16px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }
  .lp-number__item-sub {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .lp-number__item-num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .lp-number__item-num-large {
    font-family: var(--font-en);
    font-size: 40px;
    line-height: 1;
  }
  .lp-number__item-note {
    margin-top: 6px;
    font-size: 11px;
    text-align: center;
  }
  .lp-number__item:nth-child(3) .lp-number__item-note {
    width: 100%;
    text-align: right;
  }
  .lp-number__item-num--ratio {
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    line-height: 1;
  }
  .lp-number__item-ratio-group {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .lp-number__item-num--ratio .lp-number__item-label {
    display: inline-block;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .lp-number__item-num--ratio .lp-number__item-separator {
    flex-shrink: 0;
    margin-inline: 1px;
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
  }
  .lp-number__item-num--ratio .lp-number__item-num-large {
    flex-shrink: 0;
    font-size: 48px;
  }
  .lp-number__item--age {
    padding-inline: 10px;
  }
  .lp-number__item--age .lp-number__item-title {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
  }
  .lp-number__item--age .lp-number__item-stats {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
    margin-top: 0;
  }
  .lp-number__item--age .lp-number__item-stat {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 8px;
    align-items: center;
  }
  .lp-number__item--age .lp-number__item-stat + .lp-number__item-stat {
    padding-left: 0;
    border-left: 0;
  }
  .lp-number__item--age .lp-number__item-note {
    order: -1;
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-align: left;
    white-space: normal;
  }
  .lp-number__item--age .lp-number__item-num {
    justify-content: flex-end;
    flex-wrap: nowrap;
    margin: 0;
    white-space: nowrap;
  }
  .lp-number__item--age .lp-number__item-value {
    display: inline-flex;
    align-items: baseline;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .lp-number__item--age .lp-number__item-unit {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }
  .lp-number__item--age .lp-number__item-num-large {
    flex-shrink: 0;
    margin-inline: 0 2px;
    font-family: var(--font-en);
    font-size: 40px;
    line-height: 1;
  }
}

/* タブレット幅もSPと同じ見た目にするため、セクション内 .u-sp を有効化 */
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .lp-number .u-sp {
    display: block;
  }
}

/* ==========================================================================
   Unique: Solution
========================================================================== */

.lp-solution {
  padding: 100px 30px 120px;
  background-color: var(--color-bg-section);
}

.lp-solution__inner {
  max-width: min(100%, var(--content-width));
  margin-inline: auto;
}

.lp-solution__header {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.lp-solution__header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 1200px);
  height: 1px;
  background-color: #bbcce2;
  transform: translateX(-50%);
}

.lp-solution__block {
  margin-top: 60px; 
}

.lp-solution__block:first-of-type {
  margin-top: 0; 
}

.lp-solution__block-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-left: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-text-body);
  text-align: left;
  border-left: 0;
}

.lp-solution__block-title::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 36px;
  background: linear-gradient(
    to bottom,
    #16273d 0%,
    #174976 40%,
    #187dcc 100%
  );
}

.lp-solution__intro {
  display: grid;
  grid-template-columns: 490px minmax(0, 1fr);
  column-gap: 30px; 
  align-items: start;
  margin-bottom: 30px;
}

.lp-solution__visual {
  margin: 0;
}

.lp-solution__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px; 
}

.lp-solution__desc-text {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
  text-align: left;
}

.lp-solution__compare {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  column-gap: 20px;
}

.lp-solution__compare-box {
  min-height: 240px;
  background-color: #f0f4f9;
  border-radius: 10px;
  padding: 30px 50px 40px;
  box-shadow: 0 0 18px rgba(5, 32, 68, 0.1);
}

.lp-solution__compare-box--before {
  grid-column: 1;
}

.lp-solution__compare-box--after {
  grid-column: 2;
  background-color: var(--color-white);
  box-shadow: 0 0 18px rgba(5, 32, 68, 0.1);
}

.lp-solution__compare-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 80px;
  margin: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.lp-solution__compare-arrow img {
  display: block;
  width: 80px;
  height: auto;
}

.lp-solution__compare-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 41px;
  margin: 0 0 24px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-black);
  background-color: transparent;
  border: none;
  border-radius: 5px;
}

.lp-solution__compare-box--before .lp-solution__compare-title {
  color: var(--color-black); 
  background: #d5deea; 
}

.lp-solution__compare-box--after .lp-solution__compare-title {
  color: var(--color-white);
  background: linear-gradient(90deg, #6ac7de 0%, #5596ff 50%, #8380ff 100%);
}

.lp-solution__compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px; 
}

.lp-solution__compare-item {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  position: relative;
  text-align: left;
}

.lp-solution__compare-box--before .lp-solution__compare-item {
  padding-left: 1.1em;
}

.lp-solution__compare-box--before .lp-solution__compare-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-black);
}


.lp-solution__compare-box--after .lp-solution__compare-item {
  padding-left: 36px;
}

.lp-solution__compare-box--after .lp-solution__compare-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px; 
  width: 24px;
  height: 24px;
  background-image: url("../img/solution/icon_check_circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.lp-solution__divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1); 
  margin: 80px 0; 
}

@media screen and (max-width: 767px) {
  .lp-solution {
    padding: 60px 15px;
  }

  .lp-solution__header {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .lp-solution__header::after {
    width: min(100%, 345px);
  }

  .lp-solution__block {
    margin-top: 40px;
  }

  .lp-solution__block-title {
    position: relative;
    margin-bottom: 24px;
    padding-left: 14px;
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-align: left;
    border-left: 0;
  }

  .lp-solution__block-title::before {
    content: "";
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 6px;
    height: 1.2em;
    background: linear-gradient(to bottom, #16273d 0%, #174976 40%, #187dcc 100%);
  }

  .lp-solution__intro {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .lp-solution__compare {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0;
    align-items: stretch;
  }

  .lp-solution__compare-box--before,
  .lp-solution__compare-box--after {
    grid-column: 1;
  }

  .lp-solution__compare-box {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 15px;
  }

  .lp-solution__compare-list {
    gap: 10px;
  }

  .lp-solution__compare-title {
    margin: 0 0 10px
  }

  .lp-solution__compare-arrow {
    position: relative;
    z-index: 2;
    top: auto;
    left: auto;
    justify-self: center;
    width: 52px;
    height: 34px;
    margin: -8px 0;
    transform: none;
    pointer-events: none;
  }

  .lp-solution__compare-arrow picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .lp-solution__compare-arrow img {
    display: block;
    width: 52px;
    height: 34px;
  }

  .lp-solution__compare-item {
    font-size: 16px;
  }

  .lp-solution__compare-box--before .lp-solution__compare-item {
    padding-left: 17px;
  }

  .lp-solution__compare-box--before .lp-solution__compare-item::before {
    top: 0.75em;
    width: 6px;
    height: 6px;
  }

  .lp-solution__divider {
    margin: 30px 0;
  }
}

/* ==========================================================================
   Unique: Work
========================================================================== */

.lp-work {
  position: relative;
  isolation: isolate;
  padding: 30px 30px 60px;
  background-color: var(--color-white);
}

.lp-work::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -224px;
  z-index: 0;
  width: 910px;
  height: 969px;
  background-image: url("../img/common/bg_pattern_cta_work.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 910px 969px;
  pointer-events: none;
}

.lp-work__cta,
.lp-work__inner {
  position: relative;
  z-index: 1;
}

.lp-work__inner {
  max-width: min(100%, var(--content-width));
  margin-inline: auto;
}

.lp-work__cta {
  margin-bottom: 130px;
}

.lp-work__header {
  margin-bottom: 50px; 
}

.lp-work__lead {
  margin-bottom: 60px; 
}

.lp-work__lead-text {
  margin: 0;
  font-size: 32px; 
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #063f85; 
}

.lp-work__group {
  margin-top: 50px; 
}

.lp-work__group:first-of-type {
  margin-top: 0;
}

.lp-work__group-title {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 20px; 
  font-size: 28px; 
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
  border-bottom: none;
}

.lp-work__group-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #187dcc 0%,
    #174976 25%,
    #16273d 50%,
    #16273d 100%
  );
}

.lp-work__card-list {
  display: grid;
  grid-template-columns: repeat(3, 380px);
  gap: 30px; 
  width: 1200px;
  margin: 0 0 60px;
  padding: 0;
}

.lp-work__card {
  min-width: 0;
  padding: 30px;
  overflow: visible;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 0 16.7px 0 rgba(5, 32, 68, 0.1);
}

.lp-work__card-visual {
  position: relative;
  overflow: visible;
  margin: 0 0 20px;
}

.lp-work__card-image {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.lp-work__card-body {
  position: relative;
  text-align: center;
}

.lp-work__card-text {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

.lp-work__card-number {
  position: absolute;
  left: 10px;
  bottom: -22px;
  z-index: 2;
  display: block;
  max-width: none;
  height: 66px;
  pointer-events: none;
}

.lp-work__card-number--01 {
  width: 52px;
}

.lp-work__card-number--02,
.lp-work__card-number--03 {
  width: 62px;
}

@media screen and (min-width: 1200px) {
  .lp-work {
    overflow: hidden;
  }

  .lp-work__card-visual {
    overflow: visible;
  }

  .lp-work__card-number {
    bottom: -22px;
  }

  .lp-work__card-list {
    align-items: stretch;
    height: auto;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1279px) {
  .lp-work__card-text {
    max-width: 15em;
    margin-inline: auto;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: balance;
  }
}


@media screen and (max-width: 1199px) {
  .lp-work {
    padding: 60px 15px;
  }

  .lp-work::before {
    display: none;
  }

  .lp-work__cta {
    margin-bottom: 60px; 
  }

  .lp-work__header {
    margin-bottom: 30px; 
  }

  .lp-work__lead {
    margin-bottom: 30px; 
  }

  .lp-work__lead-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .lp-work__group {
    margin-top: 40px; 
  }

  .lp-work__group-title {
    margin-bottom: 20px;
    padding-bottom: 8px; 
    font-size: 18px;
    line-height: 1.7;
  }

  .lp-work__card-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    margin-left: -15px;
    padding: 25px 15px 35px;
    gap: 15px;
    box-sizing: border-box;
    margin-bottom: 0px;
    scrollbar-width: none;
  }


  .lp-work__card-list::-webkit-scrollbar {
    display: none;
  }

  .lp-work__card {
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
    padding: 20px;
    overflow: visible;
    border-radius: 4px;
    scroll-snap-align: start;
  }

  .lp-work__card-visual {
    width: 260px;
    height: 161px;
    margin: 0 auto 0;
    overflow: visible;
  }

  .lp-work__card-image {
    width: 260px;
    height: 161px;
    object-fit: cover;
    border-radius: 3px;
  }

  .lp-work__card-number {
    left: 10px;
    bottom: -18px;
    height: 48px;
    max-width: none;
  }

  .lp-work__card-number--01 {
    width: 38px;
    height: 48px;
  }

  .lp-work__card-number--02,
  .lp-work__card-number--03 {
    width: 45px;
    height: 48px;
  }

  .lp-work__card-text {
    width: 100%;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: balance;
  }
}

/* ==========================================================================
   Unique: Job Categories
========================================================================== */

.lp-job {
  padding: 100px 30px 120px;
  background-color: var(--color-bg-section);
}

.lp-job__inner {
  max-width: min(100%, var(--content-width));
  margin-inline: auto;
}

.lp-job__lead {
  margin-bottom: 60px; 
}

.lp-job__lead-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

.lp-job__content {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr); 
  column-gap: 60px; 
  align-items: start;
}

.lp-job__summary {
  min-width: 0;
}

.lp-job__summary-title {
  position: relative;
  margin: 0 0 10px; 
  padding-left: 18px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

.lp-job__summary-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 6px;
  height: 1.2em;
  background: linear-gradient(to bottom, #16273d 0%, #174976 40%, #187dcc 100%);
}

.lp-job__summary-item--business .lp-job__summary-label,
.lp-job__summary-item--business .lp-job__summary-value {
  color: #063f85; 
}

.lp-job__summary-item--direct .lp-job__summary-label,
.lp-job__summary-item--direct .lp-job__summary-value {
  color: #1F8EFF; 
}

.lp-job__summary-list {
  display: grid;
  gap: 20px;
  margin: 0;
}

.lp-job__summary-item {
  display: grid;
  grid-template-columns: 200px auto;
  column-gap: 20px; 
  align-items: baseline;
}
.lp-job__summary-item--direct {
  grid-template-columns: 210px auto;
}

.lp-job__summary-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
  font-size: 18px; 
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #063f85;
  white-space: nowrap;
}

.lp-job__summary-label::after {
  content: "：";
  margin-left: 8px; 
}

.lp-job__summary-value {
  margin: 0;
  font-weight: 700;
  line-height: 1;
  color: #0f74c7;
}

.lp-job__summary-num {
  font-family: var(--font-en);
  font-size: 56px; 
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.lp-job__summary-unit {
  margin-left: 2px;
  font-size: 36px; 
  font-weight: 700;
  line-height: 1;
}

.lp-job__chart {
  margin: 0;
}

.lp-job__chart-scroll {
  position: relative;
}

.lp-job__chart picture,
.lp-job__chart img {
  display: block;
}

.lp-job__chart img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-job__chart .lp-job__chart-swipe {
  display: none;
}


@media screen and (max-width: 767px) {
  .lp-job {
    padding: 60px 15px;
  }

  .lp-job__header {
    margin-bottom: 30px;
  }
  
  .lp-job__lead {
    margin-bottom: 30px; 
  }

  .lp-job__lead-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .lp-job__content {
    grid-template-columns: 1fr;
    row-gap: 20px; 
  }

  .lp-job__summary-title {
    margin-bottom: 24px; 
    padding-left: 14px;
    font-size: 22px;
    line-height: 1.7;
  }

  .lp-job__summary-title::before {
    top: 0.35em;
    width: 6px;
    height: 1.2em;
  }

  .lp-job__summary-list {
    gap: 16px; 
  }

  .lp-job__summary-item {
    display: grid;
    grid-template-columns: 210px auto;
    column-gap: 12px;
    align-items: baseline;
  }

  .lp-job__summary-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .lp-job__summary-label::after {
    content: "：";
    margin-left: 8px;
  }

  .lp-job__summary-value {
    margin: 0;
    line-height: 1;
  }

  .lp-job__summary-num {
    font-size: 56px; 
  }

  .lp-job__summary-unit {
    font-size: 36px; 
  }

  .lp-job__chart {
    margin-inline: calc(50% - 50vw);
    padding-left: 15px; 
    overflow: hidden;
  }

  .lp-job__chart-scroll {
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .lp-job__chart-scroll::after {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 1px;
  }
  

  .lp-job__chart-scroll::-webkit-scrollbar {
    display: none;
  }

  .lp-job__chart img:not(.lp-job__chart-swipe) {
    display: block;
    width: 575px; 
    max-width: none;
    height: auto;
    flex: 0 0 auto;
  }

  .lp-job__chart .lp-job__chart-swipe {
    position: absolute;
    top: 50%; 
    left: 100px; 
    z-index: 2;
    display: block;
    width: 146px; 
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
  }

}

/* ==========================================================================
   Unique: Training
========================================================================== */

.lp-training {
  padding: 100px 30px 120px;
  background-color: var(--color-white);
}

.lp-training__inner {
  max-width: min(100%, var(--content-width));
  margin-inline: auto;
}

.lp-training__lead {
  margin-bottom: 60px;
}

.lp-training__lead-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-text-body);
}

.lp-training__header-divider {
  width: 100%;
  height: 1px;
  margin: 0 0 50px; 
  background-color: #bbcce2;
  border: 0;
}

.lp-training__divider {
  width: 100%;
  height: 1px;
  margin: 50px 0;
  background-color: #bbcce2;
  border: 0;
}

.lp-training__block {
  margin-top: 0;
}

.lp-training__block-title {
  position: relative;
  margin: 0 0 30px; 
  padding-left: 15px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-text-main);
}

.lp-training__block-title::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 6px;
  height: 1.2em;
  background: linear-gradient(to bottom, #16273d 0%, #174976 40%, #187dcc 100%);
}

.lp-training__visual {
  margin: 0 0 30px; 
}

.lp-training__visual-scroll {
  position: relative;
  overflow: visible;
}

.lp-training__visual img:not(.lp-training__visual-swipe) {
  display: block;
  width: 100%;
  height: auto;
}

.lp-training__visual-swipe {
  display: none;
}

.lp-training__card {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 0 18px 0 rgba(5, 32, 68, 0.1);
}

.lp-training__card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  margin: 0;
  padding: 50px 60px; 
  list-style: none;
}

.lp-training__card-item {
  position: relative;
  padding: 0;
}

.lp-training__card-item + .lp-training__card-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  width: 1px;
  background-color: #bbcce2;
}


.lp-training__card-title {
  position: relative;
  margin: 0 0 12px; 
  padding-left: 34px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

.lp-training__card-icon {
  position: absolute;
  top: 5px;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("../img/training/icon_check_deep.svg"); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.lp-training__card-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .lp-training {
    padding: 60px 15px;
  }

  .lp-training__lead {
    margin-bottom: 30px; 
  }

  .lp-training__lead-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .lp-training__header-divider {
    margin-bottom: 30px; 
  }

  .lp-training__divider {
    width: 345px;
    max-width: 100%;
    height: 1px;
    margin: 30px auto;
    background-color: #bbcce2;
    border: 0;
  }

  .lp-training__block-title {
    margin-bottom: 20px; 
    padding-left: 16px;
    font-size: 22px;
    line-height: 1.7;
  }

  .lp-training__block-title::before {
    top: 0.35em;
    width: 6px;
    height: 1.2em;
  }

  .lp-training__visual {
    margin-inline: calc(50% - 50vw);
    margin-bottom: 20px; 
    padding-left: 15px;
    overflow: hidden;
  }

  .lp-training__visual-scroll {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
    align-items: flex-start;
  }

  .lp-training__visual-scroll::after {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 1px;
  }

  .lp-training__visual-scroll picture {
    flex: 0 0 auto;
  }

  .lp-training__visual-scroll::-webkit-scrollbar {
    display: none;
  }

  .lp-training__visual img:not(.lp-training__visual-swipe) {
    display: block;
    width: 927px; 
    max-width: none;
    height: auto;
  }

  .lp-training__visual--evaluation img:not(.lp-training__visual-swipe) {
    width: 815px; 
  }

  .lp-training__visual .lp-training__visual-swipe {
    position: absolute;
    top: 50%; 
    left: 100px; 
    z-index: 2;
    display: block;
    width: 146px; 
    max-width: none;
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .lp-training__card {
    border-radius: 10px;
  }

  .lp-training__card-list {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .lp-training__card-item {
    padding: 0;
  }

  .lp-training__card-item + .lp-training__card-item::before {
    content: none;
  }

  .lp-training__card-item + .lp-training__card-item {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #bbcce2;
    border-left: 0;
  }

  .lp-training__card-title {
    margin-bottom: 12px;
    padding-left: 32px;
    font-size: 18px;
    line-height: 1.7;
  }

  .lp-training__card-icon {
    width: 24px;
    height: 24px;
  }

  .lp-training__card-text {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ==========================================================================
   Unique: Career
========================================================================== */

.lp-career {
  padding: 100px 30px 120px;
  background-color: var(--color-bg-section);
}

.lp-career__inner {
  max-width: min(100%, var(--content-width));
  margin-inline: auto;
}

.lp-career__lead {
  margin-bottom: 60px; 
}

.lp-career__lead-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

.lp-career__visual {
  margin: 0;
}

.lp-career__visual-scroll {
  position: relative;
  overflow: visible;
}

.lp-career__visual picture,
.lp-career__visual img {
  display: block;
}

.lp-career__visual img:not(.lp-career__visual-swipe) {
  width: 100%;
  height: auto;
}

.lp-career__visual .lp-career__visual-swipe {
  display: none;
}


@media screen and (max-width: 767px) {
  .lp-career {
    padding: 60px 15px;
  }

  .lp-career__header .c-section-heading__en-main {
    white-space: nowrap;
    font-size: clamp(58px, 17vw, 64px);
    line-height: 1.05;
  }
  .lp-career__header .c-section-heading__en-sub {
    transform: translateY(-8px);
  }

  .lp-career__header {
    margin-bottom: 30px; 
  }

  .lp-career__lead {
    margin-bottom: 50px; 
  }

  .lp-career__lead-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .lp-career__visual {
    margin-inline: calc(50% - 50vw);
    padding-left: 15px; 
    overflow: hidden;
  }

  .lp-career__visual-scroll {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .lp-career__visual-scroll::-webkit-scrollbar {
    display: none;
  }

  .lp-career__visual img:not(.lp-career__visual-swipe) {
    width: 753px; 
    max-width: none;
    height: auto;
  }

  .lp-career__visual .lp-career__visual-swipe {
    position: absolute;
    top: 50%;
    left: 100px;
    z-index: 2;
    display: block;
    width: 146px;
    max-width: none;
    height: auto;
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }

  .lp-career__visual .lp-career__visual-swipe.is-hidden {
    opacity: 0;
    visibility: hidden;
  }
}

/* ==========================================================================
   Unique: Voice
========================================================================== */

.lp-voice {
  padding: 100px 30px 120px;
  background-color: var(--color-white);
  overflow: hidden;
}

.lp-voice__inner {
  max-width: min(100%, var(--content-width));
  margin-inline: auto;
}

.lp-voice__lead {
  margin-bottom: 60px; 
}

.lp-voice__lead-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

.lp-voice__slider {
  position: relative;
}

.lp-voice__viewport {
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.lp-voice__viewport:active {
  cursor: grabbing;
}

.lp-voice__viewport img {
  -webkit-user-drag: none;
  user-drag: none;
}

.lp-voice__list {
  display: flex;
  gap: 60px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.4s ease;
  will-change: transform;
}

.lp-voice__item {
  flex: 0 0 340px; 
  min-width: 0;
}

.lp-voice-card {
  height: 100%;
}

.lp-voice-card__photo {
  margin: 0 0 20px; 
}

.lp-voice-card__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-voice-card__body {
  color: var(--color-black);
}

.lp-voice-card__title {
  margin: 0 0 15px; 
  font-size: 20px; 
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #063f85; 
}

.lp-voice-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7; 
  letter-spacing: 0.02em;
  color: var(--color-black);
}

.lp-voice-card__focus {
  display: inline-flex;
  align-items: center;
  min-height: 24px; 
  margin: 15px 0; 
  padding: 4px 12px;
  font-size: 14px; 
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-white);
  background: linear-gradient(90deg, #6ac7de 0%, #8380ff 100%); 
  border-radius: 2px; 
}

.lp-voice-card__profile {
  display: grid;
  gap: 4px; 
  margin: 0;
  font-size: 14px; 
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #767C83; 
}

.lp-voice-card__name,
.lp-voice-card__position {
  display: block;
}

.lp-voice__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 52px; 
  align-items: center;
  margin-top: 70px; 
}

.lp-voice__progress {
  position: relative;
  width: 100%;
  height: 4px; 
  background-color: rgba(230, 233, 237, 0.95);
  overflow: hidden;
}

.lp-voice__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%; 
  height: 100%;
  background-color: #3065A6; 
  transition: width 0.3s ease, transform 0.3s ease;
}

.lp-voice__buttons {
  display: flex;
  gap: 20px; 
}

.lp-voice__button {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px; 
  height: 64px; 
  padding: 0;
  color: #063f85;
  background-color: #EDF2F9; 
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.lp-voice__button:hover {
  opacity: 0.75;
}

.lp-voice__button-arrow {
  position: relative;
  display: block;
  width: 28px;
  height: 7px;
}

.lp-voice__button-arrow::before,
.lp-voice__button-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #063f85;
  transform-origin: center;
}

.lp-voice__button--prev .lp-voice__button-arrow::before {
  left: 0;
  width: 22px;
  transform: translateY(-50%);
}

.lp-voice__button--prev .lp-voice__button-arrow::after {
  left: 0;
  width: 10px;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left center;
}

.lp-voice__button--next .lp-voice__button-arrow::before {
  right: 0;
  width: 22px;
  transform: translateY(-50%);
}

.lp-voice__button--next .lp-voice__button-arrow::after {
  right: 0;
  width: 10px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}


@media screen and (max-width: 767px) {
  .lp-voice {
    padding: 60px 15px;
  }

  .lp-voice__header {
    margin-bottom: 30px; 
  }

  .lp-voice__header .c-section-heading__en-main {
    font-size: clamp(56px, 17vw, 64px);
    line-height: 1.05;
  }

  .lp-voice__lead {
    margin-bottom: 30px; 
  }

  .lp-voice__lead-text {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .lp-voice__slider {
    margin-inline: calc(50% - 50vw);
    padding-left: 15px; 
    overflow: hidden;
  }

  .lp-voice__viewport {
    overflow: visible;
  }

  .lp-voice__list {
    display: flex;
    gap: 25px; 
  }

  .lp-voice__list::after {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 1px;
  }

  .lp-voice__item {
    flex-basis: 280px; 
  }

  .lp-voice-card__photo {
    margin-bottom: 15px; 
  }

  .lp-voice-card__photo img {
    border-radius: 6px; 
  }

  .lp-voice-card__title {
    margin-bottom: 15px; 
    font-size: 18px; 
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .lp-voice-card__text {
    font-size: 16px;
    line-height: 1.7; 
    letter-spacing: 0.02em;
  }

  .lp-voice-card__focus {
    min-height: 24px; 
    margin: 15px 0;
    padding: 0 12px;
    font-size: 14px; 
    border-radius: 2px;
  }

  .lp-voice-card__profile {
    font-size: 14px; 
    line-height: 1.7;
  }

  .lp-voice__controls {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 20px; 
    align-items: center;
    margin-top: 112px; 
    padding-right: 15px; 
  }

  .lp-voice__progress {
    height: 4px;
  }

  .lp-voice__progress-bar {
    width: 25%; 
  }

  .lp-voice__buttons {
    gap: 10px; 
  }

  .lp-voice__button {
    width: 50px; 
    height: 50px; 
  }

  .lp-voice__button-arrow {
    width: 20px;
    height: 10px;
  }

  .lp-voice__button-arrow::before,
  .lp-voice__button-arrow::after {
    height: 0.78px;
  }

  .lp-voice__button--prev .lp-voice__button-arrow::before {
    width: 18px;
  }

  .lp-voice__button--prev .lp-voice__button-arrow::after {
    width: 8px; 
  }

  .lp-voice__button--next .lp-voice__button-arrow::before {
    width: 18px; 
  }

  .lp-voice__button--next .lp-voice__button-arrow::after {
    width: 8px; 
  }
}

/* ==========================================================================
   Unique: Selection
========================================================================== */

.lp-selection {
  padding: 100px 30px 120px;
  background-color: var(--color-bg-section);
  overflow: hidden;
}

.lp-selection__inner {
  max-width: min(100%, var(--content-width));
  margin-inline: auto;
}

.lp-selection__header {
  margin-bottom: 50px; 
}

.lp-selection__lead {
  margin-bottom: 60px; 
}

.lp-selection__lead-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

.lp-selection__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 50px; 
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-selection__list::before {
  content: "";
  position: absolute;
  top: -2px;
  left:  50%;
  right: auto;
  width: 1440px;
  height: 4px; 
  background: linear-gradient(
    90deg,
    rgba(215, 223, 234, 0) 0%,
    rgba(215, 223, 234, 0.949) 8%,
    rgba(215, 223, 234, 0.949) 92%,
    rgba(215, 223, 234, 0) 100%
  );
  transform: translateX(-50%);
}

.lp-selection__item {
  position: relative;
  min-width: 0;
  padding-top: 40px; 
}

.lp-selection__marker {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 20px; 
  height: 20px; 
  border-radius: 50%;
  background: linear-gradient(135deg, #6ac7de 0%, #5596ff 50%, #8380ff 100%);
  transform: translateY(-50%);
}

.lp-selection__marker--icon {
  top: 0;
  width: 70px; 
  height: 70px; 
  background: none;
  transform: translateY(-50%);
}

.lp-selection__marker--icon img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-selection__body {
  min-width: 0;
}

.lp-selection__item-title {
  margin: 0 0 15px; 
  font-size: 20px; 
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #063f85;
}

.lp-selection__item-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .lp-selection {
    padding: 60px 15px;
  }

  .lp-selection__header {
    margin-bottom: 30px; 
  }

  .lp-selection__header .c-section-heading__en-main {
    max-width: 300px; 
    font-size: clamp(56px, 17vw, 64px);
    line-height: 1.05;
    white-space: normal;
  }

  .lp-selection__lead {
    margin-bottom: 30px; 
  }

  .lp-selection__lead-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .lp-selection__list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 25px; 
    padding-left: 85px; 
  }

  .lp-selection__list::before {
    top: -20px;
    bottom: 0;
    left: 33px; 
    right: auto;
    width: 4px; 
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(215, 223, 234, 0) 0%,
      rgba(215, 223, 234, 0.949) 8%,
      rgba(215, 223, 234, 0.949) 92%,
      rgba(215, 223, 234, 0) 100%
    );
    transform: none;
  }

  .lp-selection__item {
    padding-top: 0;
  }

  .lp-selection__marker {
    top: 0.55em; 
    left: -60px; 
    width: 18px;
    height: 18px;
    transform: none;
  }

  .lp-selection__marker--icon {
    top: 0;
    left: -85px; 
    width: 70px; 
    height: 70px;
  }

  .lp-selection__item-title {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.7;
  }

  .lp-selection__item-text {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* ==========================================================================
   Unique: Description
========================================================================== */

.lp-description {
  padding: 100px 30px 120px;
  background-color: var(--color-white);
}

.lp-description__inner {
  max-width: min(100%, var(--content-width));
  margin-inline: auto;
}

.lp-description__header {
  margin-bottom: 50px; 
}

.lp-description__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px; 
  column-gap: 70px; 
  align-items: start;
}

.lp-description__visual {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  overflow: hidden;
}

.lp-description__visual picture,
.lp-description__visual img {
  display: block;
}

.lp-description__visual img {
  width: 100%;
  height: auto;
}

.lp-description__list {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.lp-description__item {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid #bbcce2;
}

.lp-description__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 180px;
  height: 1px;
  background-color: #063f85;
  pointer-events: none;
}

.lp-description__item:first-child {
  border-top: 0;
}

.lp-description__term {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #063f85;
}

.lp-description__desc {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  .lp-description {
    padding: 60px 15px;
  }

  .lp-description__header {
    margin-bottom: 30px; 
  }

  .lp-description__header .c-section-heading__en-main {
    white-space: nowrap;
    font-size: clamp(56px, 17vw, 64px);
    line-height: 1.05;
  }

  .lp-description__content {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px; 
  }

  .lp-description__visual {
    grid-column: 1;
    grid-row: 1;
    border-radius: 6px;
  }

  .lp-description__list {
    grid-column: 1;
    grid-row: 2;
  }

  .lp-description__item {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px; 
    padding: 18px 0;
  }

  .lp-description__term {
    font-size: 16px;
    line-height: 1.7;
  }

  .lp-description__desc {
    font-size: 16px;
    line-height: 1.7;
  }
}
/* ==========================================================================
   Unique: FAQ
========================================================================== */

.lp-faq {
  --faq-section-target: 320px;
  --faq-sub-offset: 50px;
  padding: 100px 30px 120px;
  background-color: var(--color-bg-section);
}

.lp-faq__inner {
  max-width: min(100%, 900px);
  margin-inline: auto;
}

.lp-faq__header {
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .lp-faq__inner {
    padding-left: calc(
      var(--faq-section-target) - 30px -
      (100% - min(var(--content-width), 100%)) / 2
    );
  }

  .lp-faq__header.c-section-heading--row {
    position: relative;
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 137px;
    align-items: end;
    justify-content: start;
  }

  .lp-faq__header .c-section-heading__en {
    position: relative;
    flex: none;
    min-width: 0;
  }

  .lp-faq__header .c-section-heading__en-sub {
    left: calc(-1 * var(--faq-sub-offset));
    font-size: clamp(68px, calc(1vw * 100 / 1440 * 100), 100px);
    font-weight: 500;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .lp-faq__header .c-section-heading__en-main {
    display: block;
    width: fit-content;
  }

  .lp-faq__header .c-section-heading__title {
    margin: 0;
    padding-bottom: 20px;
  }

}

@media screen and (min-width: 768px) and (max-width: 1319px) {
  .lp-faq {
    overflow-x: clip;
  }
}

.lp-faq__list {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lp-faq__item {
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 0 18px 0 rgba(5, 32, 68, 0.1);
}

.lp-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  cursor: pointer;
  list-style: none;
}

.lp-faq__question::-webkit-details-marker {
  display: none;
}

.lp-faq__question-label {
  display: flex;
  flex: 1;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.lp-faq__question-mark {
  display: inline-flex;
  align-items: baseline;
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.lp-faq__question-q {
  display: inline-block;
  color: transparent;
  background-image: radial-gradient(
    circle at 78% 78%,
    #075490 0%,
    #0b4573 17%,
    #12324d 42%,
    #132c45 60%,
    #16273d 92%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-faq__question-dot {
  display: inline-block;
  color: transparent;
  background-image: radial-gradient(
    circle at 0% 50%,
    #187dcc 0%,
    #16273d 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-faq__question-text {
  display: block;
  min-width: 0;
  font-size: 20px; 
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

.lp-faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  align-self: center;
  margin-top: 0;
}

.lp-faq__icon::before,
.lp-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #063f85;
  transform-origin: center;
  transition:
    transform 0.35s ease,
    opacity 0.25s ease;
}

.lp-faq__icon::before {
  transform: translate(-50%, -50%);
}

.lp-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.lp-faq__item.is-open .lp-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.lp-faq__answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.lp-faq__item.is-animating .lp-faq__answer {
  will-change: height, opacity;
}

.lp-faq__item[open] .lp-faq__answer {
  opacity: 1;
}

.lp-faq__answer-inner {
  padding: 20px 30px 30px;
}

.lp-faq__answer-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .lp-faq__inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .lp-faq__list {
    width: 100%;
    max-width: 800px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .lp-faq {
    padding: 60px 15px;
  }

  .lp-faq__inner {
    max-width: 100%;
    padding-left: 0;
  }

  .lp-faq__header {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 30px; 
  }

  .lp-faq__header .c-section-heading__en {
    width: 100%;
  }

  .lp-faq__header .c-section-heading__en-sub {
    left: 0; 
    white-space: nowrap;
    font-size: clamp(38px, 12vw, 45px); 
    line-height: 1;
  }

  .lp-faq__header .c-section-heading__en-main {
    white-space: nowrap;
    font-size: clamp(58px, 18.13vw, 68px);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .lp-faq__header .c-section-heading__title {
    padding-bottom: 0;
    margin-top: 25px; 
  }

  .lp-faq__list {
    width: 100%;
    max-width: none;
    gap: 20px; 
    margin-inline: 0;
  }

  .lp-faq__item {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .lp-faq__question {
    gap: 10px;
    padding: 20px;
  }

  .lp-faq__question-label {
    min-width: 0;
    gap: 10px; 
  }

  .lp-faq__question-mark {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .lp-faq__question-text {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .lp-faq__icon {
    width: 16px;
    height: 16px;
  }

  .lp-faq__answer-inner {
    padding: 20px 20px 20px;
  }

  .lp-faq__answer-text {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-faq__answer,
  .lp-faq__icon::before,
  .lp-faq__icon::after {
    transition: none;
  }
}

/* ==========================================================================
   Unique: Footer
========================================================================== */

.lp-footer {
  background: url(../img/common/footer-cta.png) no-repeat center top / cover;
  position: relative;
  padding: 110px 15px 30px;
  overflow: hidden;
}

.lp-footer__visual {
  position: absolute;
  top: 50%;
  left: -85px;
  z-index: 1;
  width: 60%;
  height: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  isolation: isolate;

  --cta-center-x: 50%;
  --cta-center-y: 45%;
  --cta-orbit-duration: 62s;
  --cta-circle-diameter: clamp(520px, 54vw, 800px);
  --cta-circle-img-num: 8;
  --cta-circle-img-angle: calc(360deg / var(--cta-circle-img-num));
  --cta-circle-img-width: calc(var(--cta-circle-diameter) * 3.14 / (var(--cta-circle-img-num) * 1.24));
  --cta-circle-img-height: calc(var(--cta-circle-img-width) / 2);
  --cta-circle-tilt-x: -103deg;
  --cta-circle-tilt-y: -12deg;
  --cta-circle-offset-y: 0px;
  --cta-ring-scale: 1;

  perspective: 1500px;
}

.lp-footer__content {
  width: 50%;
  position: relative;
  z-index: 2;
  color: var(--color-white);
  margin-left: auto;
  padding: 0 0 0 80px;
}

.lp-footer__heading {
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}

.lp-footer__message {
  margin-bottom: 30px;
  padding-left: 50px;
}

.lp-footer__text {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.lp-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 360px;
  min-height: 54px;
  margin-left: 50px;
  padding: 0 28px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-decoration: none;
  background: linear-gradient(90deg, #6ac7de 0%, #8380ff 100%);
  transition: opacity 0.2s ease;
}

.lp-footer__button-text {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  white-space: nowrap;
}

.lp-footer__button-sub {
  display: block;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;

}

.lp-footer__button-main {
  display: block;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.lp-footer__button-arrow {
  justify-content: center;
  width: 20px;
  height: 5px;
  max-width: none;
  margin: 0;
  transform: translateY(-50%);
}


.lp-footer__copyright {
  z-index: 2;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-white);
  text-align: center;
  margin-top: 140px;
}

@media (hover: hover) and (pointer: fine) {
  .lp-footer__button:hover {
    opacity: 0.8;
  }
}

.lp-footer__button:focus-visible {
  opacity: 0.8;
}


/* ==========================================================================
   Unique: Footer (SP Adjust)
========================================================================== */

@media screen and (max-width: 767px) {

  .lp-footer {
    background: url(../img/common/cta-bnr-bg.png) no-repeat center top / cover;
    padding: 60px 15px 30px;
  }

  .lp-footer__content {
    display: contents;
    width: auto;
    margin-left: 0;
  }

  .lp-footer__heading {
    order: 1;
    margin-bottom: 0;
  }

  .lp-footer__visual {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    width: auto;
    height: min(82vw, 340px);
    min-height: 248px;
    margin: 0 -15px 34px;
    transform: none;

    --cta-center-x: 50%;
    --cta-center-y: 52%;
    --cta-circle-diameter: clamp(330px, 132vw, 560px);
    --cta-circle-img-width: calc(var(--cta-circle-diameter) * 3.14 / (var(--cta-circle-img-num) * 1.15));
    --cta-circle-tilt-x: -103deg;
    --cta-circle-tilt-y: -12deg;

    perspective: 1100px;
  }

  .lp-footer__message {
    order: 3;
    margin-bottom: 22px;
    padding-left: 0;
  }

  .lp-footer__text {
    order: 3;
    margin: 30px 0;
    font-size: 20px;
    line-height: 1.8;
  }

  /* .lp-footer__text {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
  }

  .lp-footer__note {
    width: 100%;
    margin-bottom: 14px;
    text-align: center;
  } */

  .lp-footer__button {
    order: 4;
    width: 100%;
    margin-left: 0;
  }

  .lp-footer__copyright {
    position: static;
    order: 5;
    margin-top: 54px;
    text-align: center;
    transform: none;
  }
}


.p-header {
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.u-pc-only {
  display: block !important;
}

.u-sp-only {
  display: none !important;
}

.c-entry-btn--circle,
.p-fv__circle-btn {
  position: relative;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 200px;
  height: 200px;
  padding: 58px 0 0 !important;
  overflow: hidden;
  border-radius: 50%;
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
}

.p-fv__circle-btn.c-entry-btn--circle {
  background: linear-gradient(
    275deg,
    #8380FF 0%,
    #5596FF 50%,
    #6AC7DE 100%
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.c-entry-btn__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 191px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  /* animation: fv-ring-spin 15s linear infinite; */
}

.c-entry-btn__circle-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.c-entry-btn--circle .c-entry-btn__circle-sub,
.p-fv__circle-btn-sub {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.c-entry-btn--circle .c-entry-btn__circle-main,
.p-fv__circle-btn-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Roboto", sans-serif;
}

.c-entry-btn__circle-main-row {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@keyframes fv-ring-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.p-fv {
  --fv-upper-height: clamp(165px, 22vw, 330px);
  --fv-stage-inset: 30px;
  --fv-stage-radius: 10px;
  --fv-center-x: 50%;
  --fv-center-y: 50%;
  --fv-orbit-radius: clamp(170px, 19vw, 275px);
  --fv-orbit-duration: 62s;
  --fv-scroll-x: 0%;
  --fv-scroll-y: 0%;
  --fv-scroll-scale: 1;
  --fv-scroll-origin-x: var(--fv-center-x);
  --fv-scroll-origin-y: var(--fv-center-y);
  --fv-progress: 0;
  --fv-viewport-height: 100vh;

  position: relative;
  height: 260vh;
  /* dvh（動的）はスマホのアドレスバー開閉で高さが揺れてアニメが崩れるため、
     縮まない lvh（アドレスバーを隠した最大高）を基準にする。JS も同じ基準で動く。 */
  height: 260lvh;
  overflow: clip;
  background: var(--color-white);
}

@supports (height: 100lvh) {
  .p-fv {
    --fv-viewport-height: 100lvh;
  }
}

.p-fv__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-fv__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: var(--fv-viewport-height);
  overflow: hidden;
  background: var(--color-white);
}

.p-fv__lines {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  z-index: 1;
  height: var(--fv-viewport-height);
  pointer-events: none;
}

.p-fv__line {
  z-index: -1;
  position: absolute;
  top: 0;
  width: 1px;
  height: var(--fv-viewport-height);
  background-color: rgba(215, 223, 234, 0.72);
}

.p-fv__line:nth-child(1) { left: 0; }
.p-fv__line:nth-child(2) { left: calc(100% * 1 / 6); }
.p-fv__line:nth-child(3) { left: calc(100% * 2 / 6); }
.p-fv__line:nth-child(4) { left: calc(100% * 3 / 6); }
.p-fv__line:nth-child(5) { left: calc(100% * 4 / 6); }
.p-fv__line:nth-child(6) { left: calc(100% * 5 / 6); }
.p-fv__line:nth-child(7) {
  left: 100%;
  transform: translateX(-100%);
}

.p-fv__lead {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  will-change: transform, opacity;
  margin-bottom: 30px;
}

.p-fv__lead-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  margin-inline: auto;
  padding: 33px 30px 30px;
  gap: 27px;
}

.p-fv__heading {
  flex: 1;
}

.p-fv__heading img {
  width: 100%;
  height: auto;
}

.p-fv__circle-btn {
  flex: 0 0 auto;
}

.p-fv__stage {
  position: absolute;
  top: var(--fv-upper-height);
  right: var(--fv-stage-inset);
  left: var(--fv-stage-inset);
  z-index: 2;
  height: calc(100vh - var(--fv-upper-height));
  height: calc(var(--fv-viewport-height) - var(--fv-upper-height));
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--fv-stage-radius) var(--fv-stage-radius) 0 0;
  background: url(../img/fv/fv-bg.png) no-repeat top center / cover;
  isolation: isolate;
  will-change: top, left, right, height, border-radius;
}

.p-fv__stage::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(4, 27, 48, 0) 0%, #041B30 100%);
  opacity: var(--fv-progress);
  pointer-events: none;
}

.p-fv__visual {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: translate3d(var(--fv-scroll-x), var(--fv-scroll-y), 0) scale(var(--fv-scroll-scale));
  transform-origin: var(--fv-scroll-origin-x) var(--fv-scroll-origin-y);
  will-change: transform;
}

.p-fv__flame {
  position: absolute;
  top: var(--fv-center-y);
  left: var(--fv-center-x);
  z-index: 7;
  width: clamp(280px, 30vw, 480px);
  margin: 0;
  filter: drop-shadow(0 0 36px rgba(0, 200, 255, 0.55));
  pointer-events: none;
  transform: translate(-50%, -70%);
}

.p-fv__flame img {
  width: 100%;
  height: auto;
  opacity: 0.96;
}

.p-fv__orbit {
  position: absolute;
  top: var(--fv-center-y);
  left: var(--fv-center-x);
  z-index: 4;
  width: 0;
  height: 0;
  pointer-events: none;
  transform-origin: center;
  animation: fv-orbit-cw var(--fv-orbit-duration) linear infinite;
  will-change: transform;
}

.p-fv__card {
  --angle: 0deg;
  --distance: var(--fv-orbit-radius);
  --tilt: 0deg;
  --card-w: 220px;
  --card-h: 150px;
  --shade: 0;

  position: absolute;
  top: calc(var(--card-h) / -2);
  left: calc(var(--card-w) / -2);
  z-index: var(--card-z, 3);
  width: var(--card-w);
  height: var(--card-h);
  margin: 0;
  border-radius: 8px;
  background: #071527;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  transform:
    rotate(var(--angle))
    translateX(var(--distance))
    rotate(calc(-1 * var(--angle)));
  transform-origin: center;
}

.p-fv__card-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  transform: rotate(var(--tilt));
  transform-origin: center;
  animation: fv-orbit-ccw var(--fv-orbit-duration) linear infinite;
  will-change: transform;
}

.p-fv__card-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 24, var(--shade));
  pointer-events: none;
}

.p-fv__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06) rotate(calc(-1 * var(--tilt)));
  transform-origin: center;
}

.p-fv__card--01 {
  --angle: 92deg;
  --distance: calc(var(--fv-orbit-radius) * 0.54);
  --tilt: 7deg;
  --card-w: clamp(230px, 27vw, 390px);
  --card-h: clamp(150px, 17.3vw, 250px);
  --card-z: 9;
}

.p-fv__card--01 img { object-position: 48% 50%; }

.p-fv__card--02 {
  --angle: 186deg;
  --distance: calc(var(--fv-orbit-radius) * 1.05);
  --tilt: 11deg;
  --card-w: clamp(130px, 16vw, 220px);
  --card-h: clamp(170px, 19vw, 270px);
  --card-z: 6;
}

.p-fv__card--02 img { object-position: 18% 52%; }

.p-fv__card--03 {
  --angle: 42deg;
  --distance: calc(var(--fv-orbit-radius) * 0.95);
  --tilt: -7deg;
  --card-w: clamp(180px, 21vw, 310px);
  --card-h: clamp(112px, 13.2vw, 190px);
  --card-z: 8;
}

.p-fv__card--03 img { object-position: 47% 52%; }

.p-fv__card--04 {
  --angle: 325deg;
  --distance: calc(var(--fv-orbit-radius) * 1.05);
  --tilt: -4deg;
  --card-w: clamp(150px, 17vw, 245px);
  --card-h: clamp(94px, 10.6vw, 154px);
  --shade: 0.54;
  --card-z: 3;
}

.p-fv__card--04 img { object-position: 38% 48%; }

.p-fv__card--05 {
  --angle: 276deg;
  --distance: calc(var(--fv-orbit-radius) * 0.9);
  --tilt: -11deg;
  --card-w: clamp(130px, 15vw, 220px);
  --card-h: clamp(88px, 9.8vw, 145px);
  --shade: 0.48;
  --card-z: 2;
}

.p-fv__card--05 img { object-position: 72% 55%; }

.p-fv__card--06 {
  --angle: 146deg;
  --distance: calc(var(--fv-orbit-radius) * 0.95);
  --tilt: -8deg;
  --card-w: clamp(150px, 17vw, 250px);
  --card-h: clamp(96px, 10.8vw, 158px);
  --shade: 0.58;
  --card-z: 2;
}

.p-fv__card--06 img { object-position: 50% 45%; }

.p-fv__card--07 {
  --angle: 292deg;
  --distance: calc(var(--fv-orbit-radius) * 1.03);
  --tilt: 8deg;
  --card-w: clamp(112px, 12vw, 180px);
  --card-h: clamp(146px, 15.5vw, 230px);
  --shade: 0.5;
  --card-z: 3;
}

.p-fv__card--07 img { object-position: 56% 48%; }

.p-fv__card--08 {
  --angle: 10deg;
  --distance: calc(var(--fv-orbit-radius) * 1.18);
  --tilt: 12deg;
  --card-w: clamp(140px, 16vw, 230px);
  --card-h: clamp(100px, 11.2vw, 160px);
  --shade: 0.6;
  --card-z: 2;
}

.p-fv__card--08 img { object-position: 45% 50%; }

@keyframes fv-orbit-cw {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fv-orbit-ccw {
  to {
    transform: rotate(calc(var(--tilt) - 360deg));
  }
}

.p-fv__message {
  position: absolute;
  top: 50%;
  right: 90px;
  z-index: 8;
  width: fit-content;
  color: var(--color-white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 24px));
  will-change: opacity, transform;
}

.p-fv__message-title {
  margin: 0 0 30px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px #05182D;
}

.p-fv__message-desc {
  font-size: 20px;
  line-height: 1.7;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 12px #05182D;
}

.p-fv__message-desc--em {
  /*background: #030C18;*/
  background: #F0F4F9;
  color: #030C18;
  text-shadow: none;
  margin-left: 5px;
  padding-right: 3px;
  display: inline-block;
}

.p-fv__message-desc--em::first-letter {
  margin-left: -8px;
}

@keyframes fv-scroll-arrow {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-fv__orbit,
  .p-fv__card-inner,
  .c-entry-btn__ring,
  .scroll-arrow {
    animation: none;
  }
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }

  .u-sp-only {
    display: block !important;
  }

  .p-fv {
    --fv-upper-height: 288px;
    --fv-stage-inset: 15px;
    --fv-stage-radius: 4px;
    --fv-center-x: 50%;
    --fv-center-y: 50%;
    --fv-orbit-radius: min(36vw, 145px);

    height: 245vh;
    height: 245dvh;
  }

  .p-fv__orbit {
    width: var(--fv-circle-diameter);
    height: var(--fv-circle-diameter);
    top: var(--fv-center-y);
    left: var(--fv-center-x);
    transform:
      translate(-50%, -43%)
      translate3d(0, var(--fv-circle-offset-y), 0)
      rotateX(var(--fv-circle-tilt-x))
      rotateY(var(--fv-circle-tilt-y))
      scale3d(var(--fv-ring-scale, 1), var(--fv-ring-scale, 1), var(--fv-ring-scale, 1));
    animation: none;
  }

  .p-fv__lines {
    left: 15px;
    right: 15px;
  }

  .p-fv__line:nth-child(1) { left: 0; }
  .p-fv__line:nth-child(2) { left: 25%; }
  .p-fv__line:nth-child(3) { left: 50%; }
  .p-fv__line:nth-child(4) { left: 75%; }
  .p-fv__line:nth-child(5) {
    left: 100%;
    transform: translateX(-100%);
  }
  .p-fv__line:nth-child(6),
  .p-fv__line:nth-child(7) {
    display: none;
  }

  .p-fv__lead-inner {
    display: block;
    padding: 40px 30px 50px;
  }

  .p-fv__heading {
    width: 285px;
    max-width: calc(100vw - 40px);
  }

  .p-fv__circle-btn {
    position: absolute;
    bottom: -120px;
    right: 26px;
    width: 150px;
    height: 150px;
    margin: 0;
    padding-top: 42px !important;
  }

  .p-fv__circle-btn .c-entry-btn__ring {
    width: 142px;
    height: 143px;
  }

  .p-fv__circle-btn-sub {
    font-size: 10px;
  }

  .p-fv__circle-btn .c-entry-btn__circle-main-row {
    font-size: 16px;
  }

  .p-fv__stage {
    min-height: 420px;
    background: url(../img/fv/sp/fv-bg.png) no-repeat top center / cover;
  }

  .p-fv__stage::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 25% 100%,
      radial-gradient(circle at var(--fv-center-x) var(--fv-center-y), rgba(55, 211, 255, 0.16), transparent 46%);
  }

  .p-fv__stage::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(4, 27, 48, 0) 0%, rgba(4, 27, 48, 1) 100%);
  }

  .p-fv__flame {
    width: clamp(300px, 62vw, 320px);
    transform: translate(-43%, -70%) translateY(var(--fv-flame-rise, 0px));
  }

  .p-fv__card--01 {
    --card-w: clamp(190px, 62vw, 260px);
    --card-h: clamp(122px, 39vw, 164px);
    --distance: calc(var(--fv-orbit-radius) * 0.52);
  }

  .p-fv__card--02 {
    --card-w: clamp(92px, 30vw, 126px);
    --card-h: clamp(124px, 39vw, 170px);
  }

  .p-fv__card--03 {
    --card-w: clamp(134px, 43vw, 190px);
    --card-h: clamp(86px, 28vw, 120px);
  }

  .p-fv__card--04,
  .p-fv__card--06,
  .p-fv__card--08 {
    --shade: 0.52;
  }

  .p-fv__message {
    top: auto;
    right: 15px;
    bottom: max(30px, 7vh);
    bottom: max(30px, 7dvh);
    left: 15px;
    width: auto;
    margin-inline: auto;
    transform: translateY(24px);
  }

  .p-fv__message-title {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .p-fv__message-desc {
    font-size: 18px;
  }

  .p-fv__scroll-hint {
    display: none;
  }
}

@media screen and (max-width: 374px) {
  .p-fv {
    --fv-upper-height: 268px;
  }

  .p-fv__heading {
    width: 255px;
  }

  .p-fv__circle-btn {
    top: 128px;
    right: 20px;
    width: 132px;
    height: 132px;
    padding-top: 36px !important;
  }

  .p-fv__circle-btn .c-entry-btn__circle-main-row {
    font-size: 14px;
  }
}

.p-fv {
  --fv-circle-diameter: clamp(720px, 68vw, 1180px);
  --fv-circle-img-num: 8;
  --fv-circle-img-angle: calc(360deg / var(--fv-circle-img-num));
  --fv-circle-img-width: calc(var(--fv-circle-diameter) * 3.14 / (var(--fv-circle-img-num) * 1.24));
  --fv-circle-img-height: calc(var(--fv-circle-img-width) / 2);
  --fv-circle-tilt-x: -103deg;
  --fv-circle-tilt-y: -12deg;
  --fv-circle-offset-y: 0px;
}

.p-fv__stage {
  perspective: 1900px;
}

.p-fv__visual,
.p-fv__orbit,
.p-fv__orbit-inner,
.p-fv__card,
.p-fv__card-surface,
.p-fv__card-surface div {
  transform-style: preserve-3d;
}

.p-fv__orbit {
  width: var(--fv-circle-diameter);
  height: var(--fv-circle-diameter);
  top: var(--fv-center-y);
  left: var(--fv-center-x);
  transform:
    translate(-50%, -50%)
    translate3d(0, var(--fv-circle-offset-y), 0)
    rotateX(var(--fv-circle-tilt-x))
    rotateY(var(--fv-circle-tilt-y))
    scale3d(var(--fv-ring-scale, 1), var(--fv-ring-scale, 1), var(--fv-ring-scale, 1));
  animation: none;
}

.p-fv__orbit-inner {
  position: absolute;
  inset: 0;
  will-change: transform, rotate;
  animation: fv-ring-rotate var(--fv-orbit-duration) linear infinite;
}

.p-fv__card {
  width: var(--fv-circle-img-width);
  height: var(--fv-circle-diameter);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: rotateZ(var(--fv-item-angle));
}

.p-fv__card-surface {
  position: absolute;
  width: 100%;
  height: var(--fv-circle-img-height);
  top: 100%;
  left: 0;
  translate: 0 -34%;
  transform: rotateX(90deg) rotateY(calc(180deg - var(--fv-circle-img-angle) / 2));
}

.p-fv__card-surface div {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 95%;
  background-image: var(--fv-card-image);
  background-repeat: no-repeat;
  background-position-y: center;
  background-size: 476% auto;
  transform: rotateY(calc(var(--fv-circle-img-angle) / 5.6));
  transform-origin: center left;
}

.p-fv__card-surface > div {
  width: 21%;
  left: 0;
  border-radius: 8px 0 0 8px;
}

.p-fv__card-surface > div > div > div > div > div {
  border-radius: 0 8px 8px 0;
}

.p-fv__card-surface > div { background-position-x: calc(100% / 4 * 0); }
.p-fv__card-surface > div > div { background-position-x: calc(100% / 4 * 1); }
.p-fv__card-surface > div > div > div { background-position-x: calc(100% / 4 * 2); }
.p-fv__card-surface > div > div > div > div { background-position-x: calc(100% / 4 * 3); }
.p-fv__card-surface > div > div > div > div > div { background-position-x: calc(100% / 4 * 4); }

.p-fv__card--01 {
  --fv-item-angle: calc(var(--fv-circle-img-angle) * 0);
  --fv-card-image: url("../img/fv/fv_card_01.webp");
}

.p-fv__card--02 {
  --fv-item-angle: calc(var(--fv-circle-img-angle) * 1);
  --fv-card-image: url("../img/fv/fv_card_02.webp");
}

.p-fv__card--03 {
  --fv-item-angle: calc(var(--fv-circle-img-angle) * 2);
  --fv-card-image: url("../img/fv/fv_card_03.webp");
}

.p-fv__card--04 {
  --fv-item-angle: calc(var(--fv-circle-img-angle) * 3);
  --fv-card-image: url("../img/fv/fv_card_04.webp");
}

.p-fv__card--05 {
  --fv-item-angle: calc(var(--fv-circle-img-angle) * 4);
  --fv-card-image: url("../img/fv/fv_card_05.webp");
}

.p-fv__card--06 {
  --fv-item-angle: calc(var(--fv-circle-img-angle) * 5);
  --fv-card-image: url("../img/fv/fv_card_06.webp");
}

.p-fv__card--07 {
  --fv-item-angle: calc(var(--fv-circle-img-angle) * 6);
  --fv-card-image: url("../img/fv/fv_card_07.webp");
}

.p-fv__card--08 {
  --fv-item-angle: calc(var(--fv-circle-img-angle) * 7);
  --fv-card-image: url("../img/fv/fv_card_08.webp");
}

@keyframes fv-ring-rotate {
  to {
    rotate: -360deg;
  }
}

@media screen and (max-width: 767px) {
  .p-fv {

    --fv-circle-img-width: calc(var(--fv-circle-diameter) * 3.14 / (var(--fv-circle-img-num) * 1.15));
    --fv-circle-diameter: clamp(300px, 160vw, 900px);
    --fv-circle-tilt-x: -103deg;
    --fv-circle-tilt-y: -12deg;
  }

  .p-fv__stage {
    perspective: 1200px;
  }

  .p-fv__card-surface > div {
    border-radius: 5px 0 0 5px;
  }

  .p-fv__card-surface > div > div > div > div > div {
    border-radius: 0 5px 5px 0;
  }
}
