/* =============================================
   Base / Reset (scoped to .lp-page)
   ============================================= */
body {
  margin: 0;
}

.lp-page,
.lp-page *,
.lp-page *::before,
.lp-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.lp-page {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  color: #353030;
  background: #fff;
  line-height: 1.75;
  overflow-x: hidden;
}

.lp-page img {
  max-width: 100%;
  height: 100%;
  display: block;
}

.lp-page a {
  text-decoration: none;
  color: inherit;
}

@media (hover: hover) and (pointer: fine) {
  .lp-page,
  .lp-page *,
  .lp-page a,
  .lp-page button,
  .lp-page [role="button"],
  .lp-page input,
  .lp-page textarea,
  .lp-page select,
  .lp-page label {
    cursor: none !important;
  }

  .lp-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    border: 2.2px solid rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 0);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    opacity: 0;
    transition:
      opacity 0.24s ease,
      width 0.22s ease,
      height 0.22s ease,
      border-color 0.22s ease,
      background-color 0.22s ease;
    will-change: transform, opacity;
  }

  .lp-cursor.is-active {
    opacity: 1;
  }

  .lp-cursor.is-hover {
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, 0.96);
    background: rgba(255, 255, 255, 0.96);
    mix-blend-mode: difference;
  }
}

/* =============================================
   Utility
   ============================================= */
.h2-gradient {
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 63px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #5380d3, #2b426d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

br.br-sp {
  display: none;
}

br.br-pc {
  display: none;
}

@media (min-width: 768px) {
  br.br-pc {
    display: block;
  }
}

.h2-gradient.reveal-title {
  opacity: 0;
  transform: translateY(8px);
  letter-spacing: 0.08em;
  transition:
    opacity 0.65s ease-out,
    transform 0.65s ease-out,
    letter-spacing 0.65s ease-out;
}

.h2-gradient.reveal-title.is-visible {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: 0.04em;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  filter: blur(8px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    filter 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.scroll-reveal.reveal-left {
  transform: translate3d(-32px, 0, 0);
}

.scroll-reveal.reveal-right {
  transform: translate3d(32px, 0, 0);
}

.scroll-reveal.reveal-soft {
  transform: translate3d(0, 12px, 0) scale(0.98);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.h2-mod {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h2-sub {
  display: flex;
  align-items: center;
  gap: 24px;
}

.h2-icon {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.h2-sub-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: #5380d3;
  letter-spacing: 0.04em;
}

/* =============================================
   Header
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 40px;
  mix-blend-mode: difference;
  color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-logo {
  width: 60px;
  height: auto;
  color: inherit;
}

.header-name {
  font-family: "Futura", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: inherit;
  line-height: 1;
}

.header-nav {
  margin-left: auto;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-link {
  font-family: "Futura", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
}

.header-nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.header-nav-link:hover::after {
  width: 100%;
}

.header-contact-btn {
  padding: 8px 24px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 20px;
  color: #4677c5 !important;
  transition: background-color 0.3s ease;
}

.header-contact-btn::after {
  display: none;
}

.header-contact-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: fixed;
  right: 20px;
  top: 22px;
  z-index: 104;
  transition: transform 0.3s ease;
  mix-blend-mode: difference;
}

.mobile-menu-btn.is-active {
  transform: rotate(0deg);
}

.mobile-menu-icon {
  width: 28px;
  height: 28px;
  color: inherit;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  mix-blend-mode: normal;
  pointer-events: auto;
  isolation: isolate;
}

.mobile-menu-overlay.is-active {
  display: block;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #fff;
  z-index: 100;
  padding: 80px 20px 20px 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  border-radius: 0;
  mix-blend-mode: normal;
  isolation: isolate;
}

.mobile-menu-panel.is-active {
  transform: translateX(0);
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-link {
  font-family: "Futura", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #333;
  text-decoration: none;
  display: block;
  padding: 12px 0;
  transition: opacity 0.3s;
}

.mobile-menu-link:hover {
  opacity: 0.7;
}

/* =============================================
   Main Visual
   ============================================= */
.mv {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20vh 16px 10vh;
  overflow: hidden;
  background: #fff;
}

.mv::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #fff;
  z-index: 4;
  pointer-events: none;
}

.mv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mv-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 46%,
    rgba(255, 255, 255, 0.3) 62%,
    rgba(255, 255, 255, 0.72) 78%,
    rgba(255, 255, 255, 0.94) 90%,
    rgba(255, 255, 255, 1) 100%
  );
}

.mv-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 8vh;
}

.mv-blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.mv-blob {
  position: absolute;
  width: clamp(320px, 46vw, 700px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f0f6ff;
  opacity: 0.66;
  filter: blur(96px);
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  animation: mv-blob-float 31s cubic-bezier(0.35, 0.05, 0.25, 1) infinite;
}

.mv-blob-1 {
  top: 40%;
  left: 50%;
  animation-delay: -6.8s;
}

.mv-title {
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: #fff;
  contain: paint;
}

.mv-title.mask-reveal .mv-title-line {
  display: block;
  overflow: hidden;
}

.mv-title.mask-reveal .mv-title-line-inner {
  display: block;
  transform: translate3d(0, 120%, 0) scale(0.98);
  opacity: 0;
  filter: blur(8px);
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  animation: mv-title-mask-in 1.8s cubic-bezier(0.22, 0.8, 0.22, 1) forwards;
  animation-delay: calc(0.2s + var(--line-index, 0) * 0.24s);
}

@keyframes mv-title-mask-in {
  0% {
    transform: translate3d(0, 120%, 0) scale(0.98);
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes mv-blob-float {
  0% {
    transform: translate3d(calc(-50% - 20vw), calc(-50% - 22vh), 0) scale(1.04);
    opacity: 0.64;
  }
  17% {
    transform: translate3d(calc(-50% + 12vw), calc(-50% - 28vh), 0) scale(1.14);
    opacity: 0.72;
  }
  31% {
    transform: translate3d(calc(-50% + 22vw), calc(-50% - 12vh), 0) scale(0.8);
    opacity: 0.56;
  }
  47% {
    transform: translate3d(calc(-50% + 14vw), calc(-50% + 2vh), 0) scale(1.08);
    opacity: 0.7;
  }
  63% {
    transform: translate3d(calc(-50% - 4vw), calc(-50% + 6vh), 0) scale(0.74);
    opacity: 0.52;
  }
  79% {
    transform: translate3d(calc(-50% - 24vw), calc(-50% - 2vh), 0) scale(1.1);
    opacity: 0.71;
  }
  91% {
    transform: translate3d(calc(-50% - 10vw), calc(-50% - 24vh), 0) scale(0.84);
    opacity: 0.58;
  }
  100% {
    transform: translate3d(calc(-50% - 20vw), calc(-50% - 22vh), 0) scale(1.04);
    opacity: 0.64;
  }
}

.deco {
  position: absolute;
  pointer-events: none;
  z-index: 4;
}

.deco-mv {
  right: -50px;
  top: -34px;
  width: 490px;
  opacity: 0.6;
}

/* =============================================
   CTA Button (shared)
   ============================================= */
.cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 300px;
}

.cta-btn-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.04em;
}

.cta-slash {
  display: inline-block;
  width: 1px;
  height: 25px;
  background: #fff;
}

.cta-slash.left {
  transform: rotate(-30deg);
}

.cta-slash.right {
  transform: rotate(30deg);
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 40px;
  border: 1px solid #fff;
  background: linear-gradient(to top, #c9c88d, #b09253 58.654%);
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.3s;
}

.cta-btn:hover {
  opacity: 0.5;
}

.cta-btn {
  color: #fff !important;
}

/* =============================================
   Main Background Blobs
   ============================================= */
.page-content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.main-blobs {
  position: absolute;
  top: 0;
  right: 3vw;
  width: min(44vw, 520px);
  height: min(50vh, 500px);
  z-index: 1;
  pointer-events: none;
  transform: translate3d(
    var(--main-blob-track-x, 0px),
    var(--main-blob-track-y, 0px),
    0
  );
  opacity: var(--main-blob-visible, 0);
  transition: opacity 0.45s ease;
  will-change: transform, opacity;
}

.main-blob {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 44% 56% 50% 50% / 52% 45% 55% 48%;
  filter: blur(56px);
  opacity: 0.39;
  mix-blend-mode: difference;
  will-change: transform, opacity, border-radius;
}

.main-blob-1 {
  top: 0;
  right: 0;
  background: radial-gradient(
    circle at 34% 32%,
    rgba(101, 138, 236, 0.64) 0%,
    rgba(36, 66, 141, 0.68) 46%,
    rgba(12, 28, 76, 0.72) 100%
  );
  animation:
    main-blob-drift-random 22s ease-in-out infinite,
    main-blob-morph-random 15s ease-in-out infinite;
}

.page-content .section,
.page-content .cta-section {
  position: relative;
  z-index: auto;
}

.page-content .cta-section {
  z-index: 2;
}

.page-content .section-content,
.page-content .cta-section-inner {
  position: relative;
  z-index: 2;
}

@keyframes main-blob-drift-random {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.35;
  }
  21% {
    transform: translate3d(2vw, -6vh, 0) scale(1.1);
    opacity: 0.42;
  }
  46% {
    transform: translate3d(-12vw, 7vh, 0) scale(0.84);
    opacity: 0.3;
  }
  69% {
    transform: translate3d(-6vw, 3vh, 0) scale(1.06);
    opacity: 0.39;
  }
  88% {
    transform: translate3d(-14vw, -5vh, 0) scale(0.9);
    opacity: 0.31;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.35;
  }
}

@keyframes main-blob-morph-random {
  0% {
    border-radius: 44% 56% 50% 50% / 52% 45% 55% 48%;
  }
  26% {
    border-radius: 58% 42% 41% 59% / 43% 63% 37% 57%;
  }
  49% {
    border-radius: 37% 63% 56% 44% / 61% 36% 64% 39%;
  }
  73% {
    border-radius: 62% 38% 48% 52% / 39% 58% 42% 61%;
  }
  100% {
    border-radius: 44% 56% 50% 50% / 52% 45% 55% 48%;
  }
}

/* =============================================
   Sections (common)
   ============================================= */
.section {
  display: flex;
  justify-content: center;
  padding: 64px 16px;
  position: relative;
}

.section-content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-line {
  padding: 24px 16px;
  background: #fff;
}

.section-line .section-content {
  padding: 0 40px;
  gap: 0;
}

.vertical-line {
  width: 2px;
  height: 240px;
  position: relative;
  overflow: hidden;
  background: rgba(71, 109, 179, 0.15);
}

.vertical-line::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #476db3);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    top: -50%;
  }
  100% {
    top: 100%;
  }
}

/* =============================================
   Diagnosis Section
   ============================================= */
.section-diagnosis {
  background: #fff;
  padding-bottom: 164px;
}

.diagnosis-area {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.diagnosis-tabs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.diagnosis-tabs {
  display: flex;
  gap: 40px;
  width: 100%;
}

.diagnosis-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  border-radius: 40px 40px 0 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.4s;
}

.diagnosis-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/lp/mv-bg.jpg") center/cover;
  z-index: 0;
}

.diagnosis-tab.inactive {
  border: 1px solid #496ca0;
  opacity: 0.3;
}

.diagnosis-tab.inactive:hover {
  opacity: 0.5;
}

.diagnosis-tab-label {
  position: relative;
  z-index: 1;
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  letter-spacing: 0.04em;
}

.diagnosis-tab-dot {
  position: relative;
  z-index: 2;
  padding: 10px 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.diagnosis-tab-dot img {
  width: 22px;
  height: 22px;
  display: block;
}

.diagnosis-checks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
}

.diagnosis-checks::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/lp/mv-bg.jpg") center/cover;
  z-index: 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.check-label {
  flex-shrink: 0;
  background: #fff;
  border-radius: 0 40px 40px 0;
  padding: 0 24px 0 16px;
}

.check-label span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #4677c5;
  letter-spacing: 0.04em;
  line-height: 1.75;
}

.check-text {
  flex: 1;
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.04em;
}

.check-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  width: 170px;
}

.check-btn {
  width: 80px;
  background: #fff;
  border: none;
  border-radius: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #4677c5;
  letter-spacing: 0.04em;
  line-height: 1.75;
  cursor: pointer;
  transition: all 0.3s;
}

.check-btn:hover {
  background: #4677c5;
  color: #fff;
}

.check-btn.selected {
  background: #4677c5;
  color: #fff;
}

.diagnosis-result {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 104px;
}

.result-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.result-badge {
  background: #4677c5;
  color: #fff;
  border-radius: 40px;
  padding: 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.result-score {
  font-weight: 900;
  font-size: 40px;
  background: linear-gradient(90deg, #5380d3, #2b426d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
}

.result-text {
  font-weight: 900;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.75;
  background: linear-gradient(90deg, #5380d3, #2b426d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
}

.deco-diag-right {
  right: -100px;
  top: 50%;
  width: 490px;
  opacity: 0.5;
}

/* =============================================
   Approach Section
   ============================================= */
.section-approach {
  position: relative;
  background: none;
}

.section-approach-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.section-approach-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scaleY(-1);
}

.section-approach .section-content {
  position: relative;
  z-index: 1;
}

.section-approach .h2-mod-approach .h2-gradient {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.section-approach .h2-mod-approach .h2-sub-text {
  color: #fff;
}

.approach-card {
  background: #fff;
  border-radius: 12px;
  display: flex;
  gap: 40px;
  padding: 64px 70px;
  align-items: stretch;
}

.approach-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 659px;
  flex-shrink: 0;
}

.approach-item {
  display: flex;
  gap: 32px;
  border-left: 3px solid #4677c5;
  padding-left: 16px;
}

.approach-num {
  font-weight: 900;
  font-size: 26px;
  color: #4677c5;
  letter-spacing: 0.04em;
  line-height: 1.75;
  flex-shrink: 0;
}

.approach-item-title {
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.75;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #5380d3, #2b426d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.approach-item-desc {
  font-weight: 400;
  font-size: 16px;
  color: #353030;
  letter-spacing: 0.04em;
  margin-top: 16px;
}

.approach-image {
  flex: 1;
  align-self: stretch;
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* =============================================
   Values Section
   ============================================= */
.section-values {
  background: #fff;
}

.values-intro {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #353030;
}

.values-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.value-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  pointer-events: none;
}

.value-card-circle {
  position: relative;
  z-index: 1;
  width: 290px;
  height: 290px;
  flex-shrink: 0;
  border-radius: 50%;
}

.value-card-body {
  position: relative;
  z-index: 1;
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card-title {
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #5380d3, #2b426d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.75;
}

.value-card-desc {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #353030;
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
  position: relative;
  padding: 40px 80px;
  overflow: hidden;
}

.cta-section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center calc(100% - -380px);
  pointer-events: none;
  filter: brightness(0.85);
}

.cta-section-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.cta-title-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.cta-star {
  width: 64px;
  height: 64px;
  animation: cta-star-float 14s ease-in-out infinite;
  will-change: transform, opacity;
}

.cta-title-wrap .cta-star:first-child {
  animation-delay: -2.4s;
}

.cta-title-wrap .cta-star:last-child {
  animation-name: cta-star-float-alt;
  animation-duration: 16s;
  animation-delay: -6.2s;
}

@keyframes cta-star-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.96;
  }
  20% {
    transform: translate3d(10px, -12px, 0) scale(1.08);
    opacity: 1;
  }
  45% {
    transform: translate3d(-12px, -6px, 0) scale(0.95);
    opacity: 0.95;
  }
  70% {
    transform: translate3d(6px, 10px, 0) scale(1.07);
    opacity: 0.98;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.96;
  }
}

@keyframes cta-star-float-alt {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.95;
  }
  25% {
    transform: translate3d(-10px, 9px, 0) scale(1.07);
    opacity: 1;
  }
  50% {
    transform: translate3d(12px, -8px, 0) scale(0.96);
    opacity: 0.94;
  }
  75% {
    transform: translate3d(-8px, -16px, 0) scale(1.08);
    opacity: 0.98;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.95;
  }
}

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

  .mv-blob {
    animation: none;
  }

  .main-blobs {
    transform: none;
  }

  .main-blob {
    animation: none;
  }

  .mv-title.mask-reveal .mv-title-line-inner {
    transform: none;
    opacity: 1;
    filter: none;
    animation: none;
  }

  .h2-gradient.reveal-title {
    opacity: 1;
    transform: none;
    letter-spacing: 0.04em;
    transition: none;
  }

  .scroll-reveal,
  .scroll-reveal.reveal-left,
  .scroll-reveal.reveal-right,
  .scroll-reveal.reveal-soft {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.cta-title {
  text-align: center;
  color: #fff;
  letter-spacing: 0.04em;
}

.cta-title-small {
  font-weight: 900;
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1.45;
}

.cta-title-large {
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.45;
}

/* =============================================
   About Section
   ============================================= */
.section-about {
  background: #fff;
}

.about-block {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 40px 0;
}

.about-image {
  width: 400px;
  flex-shrink: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-title {
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.04em;
  line-height: 1.75;
  background: linear-gradient(90deg, #5380d3, #2b426d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-body {
  font-weight: 500;
  font-size: 20px;
  color: #1c2c52;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* Service Map */
.service-map {
  position: relative;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
}

.service-map-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px;
}

.service-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-map-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(90deg) scale(1.65);
  transform-origin: center;
}

.service-map-top {
  width: 100%;
}

.service-map-label {
  background: #fff;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  font-weight: 900;
  font-size: 24px;
  color: #4677c5;
  letter-spacing: 0.04em;
}

.service-map-arrow img {
  height: 26px;
}

.service-map-grid {
  width: 100%;
}

.service-map-main {
  width: 100%;
  background: #e1ebff;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-map-grid {
  display: flex;
  gap: 16px;
}

.service-col {
  flex: 1;
}

.service-col-inner {
  border: 1px solid #4292bf;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.service-item {
  background: #fff;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(14px, 1.7vw, 24px);
  color: #4677c5;
  letter-spacing: 0.04em;
  width: 100%;
}

.service-col-arrow {
  height: 62px;
  width: 14px;
}

.service-map-bottom {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 10px;
  width: 100%;
}

.service-item.full {
  width: 100%;
}

/* =============================================
   Support Section
   ============================================= */
.section-support {
  background: #fff;
}

.support-flow {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.step-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  padding: 2px 0 1px;
  border-radius: 2px 20px 20px 2px;
  background: #fff;
  font-family: "Futura", sans-serif;
  font-style: italic;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.35;
  flex-shrink: 0;
}

.step-label-green1 {
  color: #92d7a5;
}

.step-label-green2 {
  color: #7dcfc7;
}

.step-label-blue {
  color: #9fd6ee;
}

.support-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 40px 24px 24px;
  border-radius: 6px 600px 600px 6px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.step-green1 {
  background: #92d7a5;
}

.step-green2 {
  background: #7dcfc7;
}

.support-step-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.75;
}

.support-step-title {
  font-size: 24px;
  letter-spacing: 0.04em;
}

.support-step-sub {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
}

.support-step-price {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.support-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.support-main-top {
  display: flex;
  align-items: stretch;
}

.support-director {
  background: #c7eeff;
  border-radius: 6px 0 0 6px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  color: #4c75c1;
  flex-shrink: 0;
}

.support-director-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.75;
}

.support-director-title {
  font-size: 24px;
  letter-spacing: 0.04em;
}

.support-director-sub {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
}

.support-gradient {
  flex: 1;
  background: linear-gradient(to right, #c7eeff, #ffe6e6);
  min-width: 40px;
}

.support-options {
  background: #ffe6e6;
  border-radius: 0 6px 6px 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.support-option {
  background: #fff;
  border: 1px solid #e05e5e;
  border-radius: 6px;
  padding: 10px 24px;
  text-align: center;
  font-weight: 900;
  color: #e05e5e;
}

.support-option-title {
  font-size: 24px;
  letter-spacing: 0.04em;
}

.support-option-sub {
  font-size: 14px;
  letter-spacing: 0.04em;
}

.support-main-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-team {
  background: #4677c5;
  border-radius: 0 60px 60px 0;
  padding: 10px 24px;
  text-align: center;
  color: #fff;
  font-weight: 900;
}

.support-team-title {
  font-size: 24px;
  letter-spacing: 0.04em;
}

.support-team-title.poppins {
  font-family: "Poppins", sans-serif;
}

.support-team-sub {
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  position: relative;
  padding: 40px 80px;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  width: 60px;
  height: auto;
  color: #fff;
}

.footer-name {
  font-family: "Futura", "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.footer-link {
  font-family: "Futura", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.lp-page a.footer-link {
  color: #fff;
}

.footer-link:hover {
  opacity: 0.7;
}

.footer-copy {
  font-weight: 300;
  font-size: 14px;
  color: #fff;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  .mv {
    height: 90vh;
    padding: 100px 16px 80px;
  }

  .mv-title {
    font-size: clamp(32px, 6vw, 60px);
  }

  .approach-card {
    flex-direction: column;
    padding: 40px 30px;
  }

  .approach-details {
    width: 100%;
  }

  .approach-image {
    width: 100%;
    height: 300px;
  }

  .about-block {
    flex-direction: column;
    align-items: center;
  }

  .about-image {
    width: 100%;
    max-width: 400px;
  }

  .value-card-circle {
    width: 200px;
    height: 200px;
  }

  .cta-section {
    padding: 40px 30px;
  }

  .footer {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
  }

  .header-name {
    font-size: 18px;
  }

  .header-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu-panel {
    width: 50%;
    max-width: 300px;
  }

  .mv {
    height: 90svh;
    padding: calc(64px + env(safe-area-inset-top)) 16px
      calc(56px + env(safe-area-inset-bottom));
  }

  .mv-content {
    max-width: 420px;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 32px;
    transform: translateY(-2.5vh);
  }

  .mv-bg-img {
    object-position: 62% center;
  }

  .mv-title {
    font-size: clamp(28px, 7.2vw, 42px);
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-wrap: pretty;
    word-break: keep-all;
  }

  .mv-title br {
    display: block;
  }

  .mv-title br:nth-of-type(2) {
    display: none;
  }

  .cta-btn-wrap {
    width: min(100%, 320px);
    align-self: center;
    margin-inline: auto;
  }

  .deco-mv {
    width: 250px;
    right: -50px;
    top: -20px;
  }

  .section {
    padding: 40px 16px;
  }

  .h2-gradient {
    font-size: clamp(26px, 5.6vw, 42px);
  }

  br.br-sp {
    display: block;
  }

  .h2-sub-text {
    font-size: 18px;
  }

  .h2-icon {
    width: 32px;
    height: 32px;
  }

  .h2-sub {
    gap: 12px;
  }

  .vertical-line {
    height: 120px;
    margin-inline: auto;
  }

  .section-line .section-content {
    padding: 0;
    align-items: center;
  }

  .section-diagnosis {
    padding-bottom: 80px;
  }

  .diagnosis-tabs {
    gap: 12px;
  }

  .diagnosis-tab {
    border-radius: 20px 20px 0 0;
    padding: 20px 8px;
  }

  .diagnosis-tab-label {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .diagnosis-tab-label-suffix {
    display: block;
  }

  .diagnosis-checks {
    border-radius: 0 0 20px 20px;
    padding: 24px 16px;
    gap: 40px;
  }

  .check-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .check-text {
    font-size: 16px;
  }

  .check-buttons {
    width: auto;
    align-self: flex-end;
  }

  .result-text {
    font-size: clamp(18px, 4vw, 28px);
  }

  .result-score {
    font-size: 28px;
  }

  .values-intro {
    font-size: 16px;
  }

  .value-card {
    flex-direction: column !important;
    align-items: stretch;
    padding: 16px;
  }

  .value-card.reverse {
    flex-direction: column !important;
  }

  .lp-page .value-card-circle {
    order: 2;
    width: min(180px, 52vw);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    align-self: center;
  }

  .value-card-body {
    order: 1;
    flex: none;
    width: 100%;
    padding: 20px;
  }

  .value-card-title {
    font-size: clamp(18px, 1.8vw, 26px);
  }

  .cta-title-wrap {
    gap: 12px;
  }

  .cta-star {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .cta-title {
    flex: 1;
    min-width: 80%;
    order: 2;
  }

  .cta-title-wrap > .cta-star:first-child {
    order: 1;
  }

  .cta-title-wrap > .cta-star:last-child {
    order: 3;
  }

  .cta-title-small {
    font-size: clamp(11px, 2.8vw, 16px);
  }

  .cta-title-large {
    font-size: clamp(14px, 3.2vw, 20px);
  }

  .cta-section {
    padding: 30px 20px;
  }

  .cta-section-bg {
    object-position: center calc(100% - -260px);
  }

  .about-body {
    font-size: 16px;
  }

  .service-map {
    padding: 0;
  }

  .service-map-content {
    padding: 12px 8px;
    gap: 6px;
  }

  .service-map-label {
    padding: 12px;
    font-size: 18px;
  }

  .service-map-arrow img {
    height: 10px;
  }

  .service-map-main {
    padding: 12px;
    gap: 6px;
  }

  .service-map-grid {
    gap: 8px;
  }

  .service-col-inner {
    padding: 4px;
    gap: 6px;
  }

  .service-item {
    padding: 4px;
    font-size: 10px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-col-arrow {
    height: 10px !important;
  }

  .service-map-bottom {
    margin-top: 8px;
    gap: 6px;
  }

  .support-flow {
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .step-label {
    width: 100px;
    font-size: 16px;
  }

  .support-step {
    gap: 10px;
    padding: 10px 20px 10px 10px;
  }

  .support-step-title {
    font-size: 20px;
  }

  .support-main {
    gap: 10px;
  }

  .support-director {
    padding: 16px;
    gap: 10px;
  }

  .support-director-title {
    font-size: 20px;
  }

  .support-director-sub {
    line-height: 1.35;
  }

  .support-options {
    gap: 4px;
    padding: 8px 10px;
  }

  .support-option {
    padding: 4px 10px;
  }

  .support-option-title {
    font-size: 20px;
    line-height: 1.45;
  }

  .support-main-bottom {
    width: 682px;
    gap: 8px;
  }

  .support-team {
    padding: 6px 24px;
  }

  .support-team-title {
    font-size: 20px;
    line-height: 1.45;
  }

  .footer {
    padding: 30px 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-col {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .mv {
    height: 90svh;
    padding: calc(56px + env(safe-area-inset-top)) 16px
      calc(40px + env(safe-area-inset-bottom));
  }

  .mobile-menu-panel {
    width: 70%;
  }

  .mv-content {
    max-width: 340px;
    gap: 72px;
    transform: translateY(-2vh);
  }

  .mv-title {
    font-size: clamp(24px, 7.6vw, 30px);
  }

  .h2-sub-text {
    font-size: 15px;
  }

  .h2-icon {
    width: 26px;
    height: 26px;
  }

  .h2-sub {
    gap: 10px;
  }

  .cta-btn {
    height: 56px;
  }

  .cta-btn-wrap {
    width: 100%;
    max-width: 280px;
  }

  .approach-card {
    padding: 24px 16px;
  }

  .approach-item {
    flex-direction: column;
    gap: 8px;
  }

  .approach-item-desc {
    font-size: 14px;
  }

  .check-label span {
    font-size: 18px;
  }

  .lp-page .value-card-circle {
    width: min(140px, 44vw);
    height: auto;
  }
}
