/* ============================================================
  FC Apps Direct Partner Program LP
  Enterprise Corporate Design
   ============================================================ */

:root {
  /* Palette - Enterprise Deep */
  --navy-900: #0A1628;
  --navy-800: #0F2038;
  --navy-700: #15294A;
  --navy-600: #1C365E;
  --navy-500: #2E5C8A;
  --steel-400: #3D6FA3;
  --steel-300: #6B8FB5;
  --gold-500: #B8935A;
  --gold-400: #C9A770;
  --gold-300: #D9BE90;
  --bg-light: #F5F7FA;
  --bg-mist: #EDF1F7;
  --line-200: #E3E8F0;
  --line-300: #CDD5E0;
  --text-900: #0A1628;
  --text-700: #2B3A52;
  --text-500: #5A6A82;
  --text-400: #8A97AD;
  --white: #FFFFFF;

  /* Typography */
  --font-en: 'Inter', sans-serif;
  --font-jp: 'Zen Kaku Gothic Antique', 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --ff-en: var(--font-en);
  --ff-jp: var(--font-jp);
  --ff-serif: var(--font-serif);

  /* Layout */
  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(10, 22, 40, .06);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, .08);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, .12);
  --shadow-xl: 0 24px 60px rgba(10, 22, 40, .18);

  --ease: cubic-bezier(.25, .8, .25, 1);
}

/* ---------- Reset ---------- */
.partner-page *,
.partner-page *::before,
.partner-page *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.partner-page {
  margin: 0;
  font-family: var(--font-jp), var(--font-en), sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
  color: var(--text-900);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.partner-page a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease);
}

.partner-page button {
  font-family: inherit;
  cursor: pointer;
}

.partner-page ul,
.partner-page ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.partner-page .breadcrumb {
  margin: 0;
  padding: 0;
  background: none;
}

.partner-page .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

.partner-page h1,
.partner-page h2,
.partner-page h3,
.partner-page h4,
.partner-page h5 {
  margin: 0;
  line-height: 1.25;
  letter-spacing: .02em;
}

.partner-page p {
  margin: 0;
}

.partner-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.partner-page .pc {
  display: inline;
}

@media (max-width: 768px) {
  .partner-page .pc {
    display: none;
  }
}

/* ---------- Buttons ---------- */
.partner-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: all .3s var(--ease);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}

.partner-page .btn i {
  font-size: 12px;
  transition: transform .3s var(--ease);
}

.partner-page .btn:hover i.fa-arrow-right {
  transform: translateX(4px);
}

.partner-page .btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.partner-page .btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.partner-page .btn-block {
  width: 100%;
}

.partner-page .btn-primary {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.partner-page .btn-primary:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.partner-page .btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}

.partner-page .btn-outline:hover {
  background: var(--navy-900);
  color: var(--white);
}

.partner-page .btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
}

.partner-page .btn-outline-white:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

.partner-page .btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: transparent;
}

.partner-page .btn-ghost:hover {
  color: var(--navy-500);
}

.partner-page .btn-link {
  background: transparent;
  border: none;
  color: var(--text-500);
  padding: 14px 4px;
}

.partner-page .btn-link:hover {
  color: var(--navy-900);
}

/* ============================================================
  HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-200);
  transition: all .3s var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--navy-900);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .05em;
  border-radius: var(--radius-sm);
  position: relative;
}

.brand-mark::after {
  content: '';
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 6px;
  height: 2px;
  background: var(--gold-500);
}

.brand-mark.light {
  background: var(--white);
  color: var(--navy-900);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
}

.brand-sub {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-500);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.global-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.global-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-700);
  position: relative;
  padding: 6px 0;
}

.global-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--navy-900);
  transition: width .3s var(--ease);
}

.global-nav a:hover {
  color: var(--navy-900);
}

.global-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line-200);
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--navy-900);
  transition: all .3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .global-nav {
    display: none;
  }

  .header-actions .btn-ghost {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .brand-sub {
    display: none;
  }

  .global-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line-200);
    padding: 16px;
    gap: 0;
  }

  .global-nav.active a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-200);
  }
}

/* ============================================================
  HERO
   ============================================================ */
.lp-breadcrumb-in-mv {
  position: relative;
  z-index: 30;
  pointer-events: auto;
}

.lp-breadcrumb-in-mv .breadcrumb-item,
.lp-breadcrumb-in-mv .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255);
  font-weight: 400;
}

.lp-breadcrumb-in-mv .breadcrumb-item a {
  color: #fff !important;
  font-weight: 400;
  pointer-events: auto;
  transition:
    color .25s ease,
    opacity .25s ease;
}

.lp-breadcrumb-in-mv .breadcrumb-item a:hover {
  color: rgba(0, 146, 215) !important;
}

.hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-600) 100%);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 70% 40%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, black 40%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(201, 167, 112, .4);
  background: rgba(201, 167, 112, .08);
  color: var(--gold-300);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  border-radius: 2px;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 10px var(--gold-400);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.2);
  }
}

.hero-publisher {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .22em;
  text-transform: uppercase;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.hero-title {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.25;
  letter-spacing: .01em;
  margin-bottom: 32px;
}

.hero-title .line {
  display: block;
}

.hero-title em {
  font-style: normal;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.15em;
  color: var(--gold-400);
  letter-spacing: 0;
  padding: 0 .05em;
}

.hero-lead {
  font-size: 20px;
  line-height: 2;
  color: rgba(255, 255, 255, .85);
  margin: 2.5rem 0 !important;
  font-weight: 300;
}

.hero-lead strong {
  color: var(--gold-300);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 72px;
}

.hero-cta .btn-primary {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

.hero-cta .btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
}

.hero-cta .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
}

.hero-cta .btn-outline:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

.hero-cta .btn-link {
  color: rgba(255, 255, 255, .7);
}

.hero-cta .btn-link:hover {
  color: var(--white);
}


.partner-entry-mini {
  position: absolute;
  right: 20px;
  bottom: 132px;
  z-index: 20;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;

  color: rgba(255, 255, 255, .92);
  text-decoration: none;

  background: rgba(255, 255, 255, .08);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 999px;

  transition:
    transform .35s ease,
    background .35s ease,
    opacity .35s ease;
}

.hero-kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 40px;
}

.kpi-item {
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.kpi-item:first-child {
  border-left: none;
  padding-left: 0;
}

.kpi-label {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.kpi-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--white);
}

.kpi-value em {
  font-style: normal;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -.02em;
}

.kpi-value .unit {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .5);
}

.hero-scroll .line-v {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  display: block;
  animation: scrollDown 2s infinite;
}


@keyframes scrollDown {
  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 (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-kpi {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
    padding-top: 30px;
  }

  .kpi-item {
    padding: 0 16px;
  }

  .kpi-item:nth-child(3) {
    border-left: none;
    padding-left: 16px;
  }

  .hero-scroll {
    display: none;
  }
}

/* ============================================================
  HERO FLOATING LABEL
============================================================ */

.hero-floating-labels {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
  共通
============================================================ */

.floating-label {
  position: absolute;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-align: center;

  border: 1px solid rgba(201, 167, 112, .35);
  background: rgba(255, 255, 255, .04);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: rgba(255, 255, 255, .9);

  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.45;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .15),
    inset 0 0 0 1px rgba(255, 255, 255, .04);

  animation: floatingY 6s ease-in-out infinite;

  white-space: normal;
}

/* ============================================================
  サイズ
============================================================ */

/* 大 */
.size-lg {
  width: 150px;
  height: 150px;
  padding: 16px;
  font-size: 18px;
}

/* 中 */
.size-md {
  width: 120px;
  height: 120px;
  padding: 12px;
  font-size: 15px;
}

/* 小 */
.size-sm {
  width: 100px;
  height: 100px;
  padding: 8px;
  font-size: 11px;
}

/* ============================================================
  ふわふわアニメーション
============================================================ */

@keyframes floatingY {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ============================================================
  個別配置
============================================================ */

.fl-1 {
  top: 12%;
  left: 4%;
  animation-duration: 7s;
}

.fl-2 {
  top: 38%;
  left: 10%;
  animation-duration: 5.5s;
  animation-delay: .5s;
}

.fl-3 {
  top: 14%;
  right: 12%;
  animation-duration: 8s;
}

.fl-4 {
  top: 50%;
  right: 4%;
  animation-duration: 6.5s;
  animation-delay: .3s;
}

.fl-5 {
  bottom: 30%;
  left: 6%;
}

.fl-6 {
  top: 30%;
  right: 22%;
}

.fl-7 {
  bottom: 25%;
  right: 18%;
  animation-duration: 6s;
  animation-delay: .8s;
}

/* ============================================================
  奥行き感
============================================================ */

.floating-label:nth-child(odd) {
  opacity: .78;
}

.floating-label:nth-child(even) {
  opacity: .58;
}

/* ============================================================
  SP
============================================================ */

@media (max-width: 768px) {

  .hero-floating-labels {
    display: none;
  }

}

/* ============================================================
  CLIENTS STRIP
   ============================================================ */
.clients-strip {
  background: var(--bg-light);
  padding: 32px 0;
  border-bottom: 1px solid var(--line-200);
}

.clients-title {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--text-400);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.clients-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
}

.clients-list li {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-700);
  letter-spacing: .05em;
  position: relative;
}

.clients-list li::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--line-300);
  border-radius: 50%;
}

.clients-list li:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .clients-list {
    gap: 10px 24px;
  }

  .clients-list li {
    font-size: 12px;
  }

  .clients-list li::after {
    right: -14px;
  }
}

/* ============================================================
  COMMON SECTION
   ============================================================ */
.section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
}

.section-num {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold-500);
  margin-bottom: 8px;
}

.section-label {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--text-400);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-jp);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.4;
  margin-bottom: 20px;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold-500);
  margin: 28px auto 28px;
}

.section-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: var(--gold-500);
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  margin: 0 auto;
  text-align: center;
  line-height: 2;
}

.section-lead strong {
  color: var(--navy-900);
  font-weight: 600;
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .section-head {
    margin-bottom: 48px;
  }
}

/* ============================================================
  SECTION: PAIN
   ============================================================ */
.section-pain {
  background: var(--bg-light);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-200);
  border: 1px solid var(--line-200);
  margin-bottom: 48px;
}

.pain-card {
  background: var(--white);
  padding: 48px;
  transition: all .3s var(--ease);
  position: relative;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--navy-900);
  transition: height .4s var(--ease);
}

.pain-card:hover::before {
  height: 100%;
}

.pain-card:hover {
  background: var(--bg-mist);
}

.pain-index {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--text-400);
  margin-bottom: 18px;
}

.pain-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: .02em;
}

.pain-card p {
  font-size: 15px;
  color: var(--text-700);
  line-height: 1.9;
}

.pain-conclude {
  background: var(--navy-900);
  color: var(--white);
  padding: 30px;
  text-align: center;
  position: relative;
}

.pain-conclude::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold-500);
}

.pain-conclude p {
  font-size: 20px;
  line-height: 1.9;
  font-weight: 600;
  margin: 0;
}

.pain-conclude strong {
  color: var(--gold-400);
  font-weight: 700;
}

/* ============================================================
  PAIN INNER
============================================================ */

.pain-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.pain-icon {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDF1F7;
}

.pain-icon i {
  font-size: 72px;
  color: var(--gold-400);
}

.pain-content {
  flex: 1;
  min-width: 0;
}

/* ============================================================
  SP
============================================================ */
@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    padding: 32px 24px;
  }

  .pain-card h3 {
    font-size: 26px;
  }

  .pain-conclude {
    padding: 28px 20px;
  }

  .pain-conclude p {
    font-size: 15px;
  }

  .pain-card-inner {
    flex-direction: column;
    gap: 20px;
  }

  .pain-icon {
    width: 300px;
    height: 100px;
  }

  .pain-icon i {
    font-size: 36px;
  }

}

/* ============================================================
  SECTION: ABOUT
   ============================================================ */
.section-about {
  background: var(--white);
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.about-description p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--text-700);
  margin-bottom: 24px;
}

.about-description strong {
  color: var(--navy-900);
  font-weight: 700;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stats-block {
  background: var(--bg-light);
  border-left: 3px solid var(--navy-900);
  padding: 32px 36px;
}

.stats-heading {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stats-heading-en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--gold-500);
  padding: 4px 10px;
  border: 1px solid var(--gold-500);
  border-radius: 2px;
  text-transform: uppercase;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stats-item {
  display: flex;
  flex-direction: column;
}

.stats-num {
  font-family: var(--font-en);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stats-num span {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-700);
  margin-left: 4px;
}

.stats-cap {
  font-size: 13px;
  color: var(--text-500);
  line-height: 1.7;
}

.stats-cap small {
  color: var(--text-400);
  font-size: 11px;
}

.fs-8 {
  font-weight: 400;
  font-size: 12px;
}

@media (max-width: 900px) {
  .about-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .stats-block {
    padding: 24px;
  }

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

/* =========================================================
  02 About (CORE)
   ========================================================= */
.section-about {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

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

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

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 41, 88, 0.85) 0%, rgba(10, 22, 40, 0.75) 50%, rgba(10, 22, 40, 0.95) 100%);
}

.about-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.about-inner {
  position: relative;
  z-index: 2;
}

.about-headline {
  max-width: 880px;
  margin-bottom: 60px;
}

.about-kicker {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--gold-400);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about-title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 24px!important;
  letter-spacing: 0.02em;
}

.about-title em {
  color: var(--gold-400); 
  position: relative;
  white-space: nowrap;
}

.about-desc {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.82);
}

.about-desc strong {
  color: var(--white);
  font-weight: 700;
}

/* CORE KPI */
.core-kpi {
  background: linear-gradient(135deg, rgba(184, 147, 90, 0.08) 0%, rgba(46, 92, 138, 0.08) 100%);
  border: 1px solid rgba(184, 147, 90, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.core-kpi::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-500), var(--steel-500));
}

.core-kpi-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.core-kpi-en {
  font-family: var(--ff-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold-400);
  font-weight: 600;
}

.core-kpi-ja {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}

.core-kpi-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 36px;
}

.core-kpi-figure {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}

.core-kpi-unit-pre {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.core-kpi-num {
  font-family: var(--ff-en);
  font-weight: 800;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.core-kpi-unit {
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.core-kpi-headline .core-kpi-title {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.5;
}

.core-kpi-headline .core-kpi-sub {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}

.core-kpi-headline strong {
  color: var(--gold-400);
  font-weight: 700;
}

.core-kpi-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;  
  padding-top: 28px!important;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.core-kpi-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.core-kpi-bullets i {
  font-size: 22px;
  color: var(--gold-400);
  padding-top: 4px;
}

.core-kpi-bullets strong {
  display: block;
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2px;
}

.core-kpi-bullets span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Narrative */
.about-narrative {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  margin-bottom: 56px;
  backdrop-filter: blur(8px);
}

.narrative-title {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 36px!important;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.narrative-pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-family: var(--ff-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 3px;
  width: fit-content;
}

.narrative-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 40px;
}

.narrative-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 22px;
}

.narrative-col-good {
  background: linear-gradient(135deg, rgba(184, 147, 90, 0.12) 0%, rgba(74, 144, 217, 0.1) 100%);
  border-color: rgba(184, 147, 90, 0.4);
}

.narrative-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px!important;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.narrative-col-good .narrative-heading i {
  color: var(--gold-400);
}

.narrative-col:not(.narrative-col-good) .narrative-heading i {
  color: #E88866;
}

.narrative-list li {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 0 8px 22px;
  position: relative;
}

.narrative-list-bad li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 12px;
  height: 1px;
  background: rgba(255, 100, 80, 0.6);
}

.narrative-list-good li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold-400);
  font-size: 16px;
}

.narrative-list strong {
  color: var(--white);
  font-weight: 700;
}

.narrative-list-good strong {
  color: var(--gold-400);
}

.narrative-list span {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.narrative-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.narrative-arrow {
  display: grid;
  place-items: center;
}

.narrative-arrow i {
  font-size: 32px;
  color: var(--gold-500);
}

.narrative-conclusion {
  display: flex;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(184, 147, 90, 0.15) 0%, rgba(10, 22, 40, 0.3) 100%);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius);
  position: relative;
}

.narrative-conclusion i {
  font-size: 28px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.narrative-conclusion p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}

.narrative-conclusion strong {
  font-size: 26px;
  color: var(--gold-400);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 6px;
}

/* Supporting Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-stat {
  padding: 36px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.about-stat:last-child {
  border-right: none;
}

.stat-label {
  display: block;
  font-family: var(--ff-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.stat-num {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--ff-en);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 54px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.stat-num em {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-400);
}

.stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

/* ============================================================
  SECTION: VALUE
   ============================================================ */
.section-value {
  background: var(--bg-light);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-900) 0%, var(--steel-400) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-900);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-200);
  margin-bottom: 24px;
}

.value-no {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
  letter-spacing: -.03em;
}

.value-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--gold-500);
  text-transform: uppercase;
}

.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
  letter-spacing: .02em;
}

.value-card p {
  font-size: 16px;
  color: var(--text-700);
  line-height: 1.9;
  margin-bottom: 24px;
}

.value-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-700);
  border-top: 1px dashed var(--line-200);
}

.value-list li:first-child {
  border-top: none;
}

.value-list i {
  color: var(--navy-900);
  font-size: 11px;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 36px 28px;
  }

  .value-no {
    font-size: 36px;
  }
}

/* ============================================================
  SECTION: COMPARE
   ============================================================ */
.section-compare {
  background: var(--white);
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  min-width: 720px;
}

.compare-table thead th {
  background: var(--bg-light);
  padding: 28px 24px;
  text-align: center;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 18px;
  border-bottom: 2px solid var(--line-200);
}

.compare-table thead th small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-500);
  margin-top: 4px;
  letter-spacing: .05em;
}

.compare-table thead .th-label {
  text-align: left;
  width: 22%;
}

.compare-table thead .th-fad {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
}

.compare-table thead .th-fad small {
  color: rgba(255, 255, 255, .7);
}

.th-fad-badge {
  position: absolute;
  top: -1px;
  right: 12px;
  background: var(--gold-500);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 4px 10px;
  border-radius: 0 0 2px 2px;
}

.compare-table tbody th {
  text-align: left;
  padding: 24px;
  font-weight: 600;
  color: var(--navy-900);
  background: var(--bg-light);
  border-bottom: 1px solid var(--line-200);
  font-size: 18px;
  width: 22%;
}

.compare-table tbody td {
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid var(--line-200);
  vertical-align: middle;
}

.compare-table tbody td small {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-500);
}

.td-conv {
  color: var(--text-700);
}

.td-fad {
  background: rgba(46, 92, 138, .04);
  color: var(--navy-900);
  font-weight: 600;
}

.td-fad i {
  color: var(--gold-500);
  margin-right: 6px;
}

.td-fad small {
  color: var(--text-500);
  font-weight: 400;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .compare-table {
    font-size: 13px;
  }

  .compare-table thead th {
    padding: 20px 12px;
    font-size: 13px;
  }

  .compare-table tbody th,
  .compare-table tbody td {
    padding: 18px 12px;
  }
}

/* ============================================================
   SECTION: PLAN
   ============================================================ */
.section-plan {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  position: relative;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .3s var(--ease);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-featured {
  background: var(--navy-900);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-xl);
  transform: scale(1.03);
}

.plan-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  padding: 6px 16px;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(184, 147, 90, .4);
}

.plan-head {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-200);
  margin-bottom: 28px;
}

.plan-featured .plan-head {
  border-bottom-color: rgba(255, 255, 255, .15);
}

.plan-tier {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold-500);
  margin-bottom: 10px;
}

.plan-featured .plan-tier {
  color: var(--gold-400);
}

.plan-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
  letter-spacing: .03em;
}

.plan-featured h3 {
  color: var(--white);
}

.plan-desc {
  font-size: 13px;
  color: var(--text-500);
  line-height: 1.8;
}

.plan-featured .plan-desc {
  color: rgba(255, 255, 255, .7);
}

.plan-price {
  margin-bottom: 28px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-200);
}

.plan-featured .price-row {
  border-bottom-color: rgba(255, 255, 255, .1);
}

.price-row.main {
  padding-top: 14px;
}

.price-row.main.single {
  border-bottom: none;
}

.price-label {
  font-size: 13px;
  color: var(--text-500);
  font-weight: 500;
}

.plan-featured .price-label {
  color: rgba(255, 255, 255, .7);
}

.price-val {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  text-align: right;
}

.plan-featured .price-val {
  color: var(--white);
}

.price-val em {
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  color: var(--navy-900);
  letter-spacing: -.02em;
  margin-right: 4px;
}

.plan-featured .price-val em {
  color: var(--gold-400);
}

.price-val small {
  display: block;
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-500);
  margin-top: 2px;
}

.plan-featured .price-val small {
  color: rgba(255, 255, 255, .6);
}

.plan-features {
  flex: 1;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 11px 0;
  font-size: 14px;
  color: var(--text-700);
  border-top: 1px solid var(--line-200);
}

.plan-features li:first-child {
  border-top: none;
}

.plan-featured .plan-features li {
  color: rgba(255, 255, 255, .85);
  border-top-color: rgba(255, 255, 255, .08);
}

.plan-features small {
  color: var(--text-500);
  font-size: 11px;
  margin-left: 4px;
}

.plan-featured .plan-features small {
  color: rgba(255, 255, 255, .55);
}

.plan-features i {
  font-size: 12px;
  margin-top: 5px;
  flex-shrink: 0;
}

.plan-features i.ok {
  color: var(--navy-900);
}

.plan-features i.ng {
  color: var(--text-400);
}

.plan-featured .plan-features i.ok {
  color: var(--gold-400);
}

.plan-featured .plan-features i.ng {
  color: rgba(255, 255, 255, .3);
}

.plan-featured .btn-primary {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--white);
}

.plan-featured .btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
}

.plan-note {
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-500);
  text-align: center;
  line-height: 2;
}

@media (max-width: 900px) {
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan-featured {
    transform: none;
  }

  .plan-featured:hover {
    transform: translateY(-4px);
  }
}

/* ============================================================
SECTION: FLOW
============================================================ */

.section-flow {
  background: var(--navy-900);
  color: var(--white);
}

.section-flow .section-num {
  color: var(--gold-400);
}

.section-flow .section-label {
  color: rgba(255, 255, 255, .5);
}

.section-flow .section-title {
  color: var(--white);
}

.section-flow .section-title::after {
  background: var(--gold-500);
}

.section-flow .section-lead {
  color: rgba(255, 255, 255, .8);
}

.section-flow .section-lead strong {
  color: var(--gold-400);
}

/* =========================
FLOW LIST
========================= */

.flow-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.flow-list::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background:
    linear-gradient(90deg,
      transparent,
      rgba(184, 147, 90, .5),
      rgba(184, 147, 90, .5),
      transparent);
}

.flow-item {
  position: relative;
  padding: 0 12px;
  text-align: center;
}

/* ブラウザ自動番号無効 */
.flow-item::marker {
  content: none !important;
}

.flow-item::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow:
    0 0 0 6px var(--navy-900),
    0 0 0 7px rgba(184, 147, 90, .3);
}

.flow-step {
  display: block;
  margin-top: 60px;
  margin-bottom: 12px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold-400);
}

.flow-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}

/* ← リードのみ左揃え */
.flow-item p {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  color: rgba(255, 255, 255, .7);
}

/* =========================
SP
========================= */

@media (max-width: 900px) {

  .flow-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flow-list::before {
    display: none;
  }

  .flow-item {
    padding: 20px 24px 20px 60px;

    text-align: left;

    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-md);
  }

  .flow-item::before {
    top: 28px;
    left: 20px;

    transform: none;

    box-shadow:
      0 0 0 4px rgba(184, 147, 90, .15);
  }

  .flow-step {
    margin-top: 0;
  }

}

/* ============================================================
  SECTION: VOICE
   ============================================================ */
.section-voice {
  background: var(--bg-light);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  position: relative;
  transition: all .3s var(--ease);
}

.voice-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--navy-500);
}

.voice-company {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-200);
}

.voice-logo-placeholder {
  width: 72px;
  height: 72px;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.2;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.voice-industry {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--gold-500);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.voice-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: .02em;
}

.voice-quote {
  font-size: 14px;
  color: var(--text-700);
  line-height: 1.9;
  font-style: italic;
  min-height: 54px;
}

.voice-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 10px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--text-400);
  border: 1px solid var(--line-300);
  border-radius: 2px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .voice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.section-faq {
  background: var(--white);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line-200);
  transition: all .3s var(--ease);
}

.faq-item[open] {
  background: var(--bg-light);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  cursor: pointer;
  list-style: none;
  transition: all .3s var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover .q-text {
  color: var(--navy-900);
}

.faq-item .q {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-500);
  flex-shrink: 0;
  letter-spacing: .02em;
}

.faq-item .q-text {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: .02em;
  transition: color .3s var(--ease);
}

.faq-item summary i {
  color: var(--navy-900);
  font-size: 14px;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-answer {
  display: flex;
  gap: 20px;
  padding: 0 24px 28px 24px;
}

.faq-answer .a {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-500);
  flex-shrink: 0;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-700);
  line-height: 2;
}

@media (max-width: 768px) {
  .faq-item summary {
    padding: 22px 16px;
    gap: 14px;
  }

  .faq-item .q-text {
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 16px 22px 16px;
    gap: 14px;
  }
}

/* ============================================================
   SECTION: CLOSING
   ============================================================ */
.section-closing {
  padding: 120px 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.section-closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.closing-box {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
}

.closing-en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--gold-400);
  padding: 8px 20px;
  border: 1px solid rgba(201, 167, 112, .4);
  border-radius: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.closing-box h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: .03em;
}

.closing-box p {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 40px;
}

.closing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.closing-cta .btn-primary {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

.closing-cta .btn-primary:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  border-color: var(--gold-400);
}

/* ============================================================
   SECTION: CONTACT
   ============================================================ */
.section-contact {
  background: var(--bg-light);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background: var(--navy-900);
  color: var(--white);
  padding: 48px 36px;
  border-radius: var(--radius-md);
  position: sticky;
  top: 100px;
}

.info-block {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.info-block:first-child {
  padding-top: 0;
}

.info-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-block h4 {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.info-tel {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.info-note {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

.info-block p {
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.9;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
}

.info-list i {
  color: var(--gold-400);
  width: 16px;
  font-size: 13px;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-200);
}

.form-tabs {
  display: flex;
  border-bottom: 1px solid var(--line-200);
  margin-bottom: 36px;
  gap: 4px;
}

.form-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 12px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-500);
  letter-spacing: .03em;
  cursor: pointer;
  position: relative;
  transition: color .3s var(--ease);
}

.form-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--navy-900);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

.form-tab:hover {
  color: var(--navy-900);
}

.form-tab.active {
  color: var(--navy-900);
}

.form-tab.active::after {
  transform: scaleX(1);
}

.form-row {
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: .05em;
  margin-bottom: 8px;
}

.form-label.required::after {
  content: '必須';
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  border-radius: 2px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line-300);
  border-radius: var(--radius-sm);
  transition: all .25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--navy-900);
  box-shadow: 0 0 0 3px rgba(10, 22, 40, .08);
}

.form-input::placeholder {
  color: var(--text-400);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A1628' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-agree {
  margin: 28px 0;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-700);
  cursor: pointer;
  user-select: none;
}

.checkbox input {
  display: none;
}

.check-box {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--line-300);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s var(--ease);
}

.checkbox input:checked+.check-box {
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.checkbox input:checked+.check-box::after {
  content: '';
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translate(1px, -1px);
}

.check-text a {
  color: var(--navy-900);
  text-decoration: underline;
}

.check-text .req {
  color: #D9534F;
  margin-left: 4px;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.btn-submit {
  min-width: 280px;
}

.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.form-message {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  min-height: 20px;
}

.form-message.error {
  color: #D9534F;
}

.form-message.success {
  color: #5CB85C;
}

.form-success {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  font-size: 64px;
  color: var(--navy-900);
  margin-bottom: 24px;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.form-success p {
  font-size: 15px;
  color: var(--text-700);
  line-height: 1.9;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-form-wrap {
    padding: 28px 20px;
  }

  .contact-info {
    padding: 32px 24px;
  }

  .form-row.split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-tabs {
    flex-direction: column;
    gap: 0;
    border-bottom: none;
  }

  .form-tab {
    border: 1px solid var(--line-200);
    margin-bottom: -1px;
    text-align: left;
    padding: 14px 16px;
  }

  .form-tab.active {
    background: var(--bg-light);
  }

  .form-tab::after {
    display: none;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .7);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-desc {
  margin-top: 20px;
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .6);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h5 {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li {
  padding: 5px 0;
  font-size: 13px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .7);
  transition: color .25s var(--ease);
}

.footer-col ul li a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-family: var(--font-en);
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .03em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal li a {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  transition: color .25s var(--ease);
}

.footer-legal li a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-legal {
    gap: 16px;
  }
}

/* ============================================================
  FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 76px;
  z-index: 80;
  background: #0092d6;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 8px 24px rgba(10, 22, 40, .25);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all .4s var(--ease);
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 22, 40, .35);
}

@media (max-width: 768px) {
  .floating-cta {
    padding: 12px 18px;
    font-size: 13px;
    bottom: 16px;
    right: 16px;
  }

  .floating-cta span {
    display: none;
  }

  .floating-cta {
    padding: 14px;
    width: 48px;
    height: 48px;
    justify-content: center;
  }
}

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .section {
    padding: 96px 0;
  }

  .challenge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .plan-featured {
    transform: none;
  }

  .plan-featured:hover {
    transform: translateY(-6px);
  }

  .voice-grid {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .flow-steps::before {
    display: none;
  }

  .core-kpi-main {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .core-kpi-figure {
    justify-content: center;
  }

  .core-kpi-bullets {
    grid-template-columns: 1fr;
  }

  .narrative-grid {
    grid-template-columns: 1fr;
  }

  .narrative-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-stat:last-child {
    border-bottom: none;
  }

  .gnav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .gnav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
  }

  .gnav.open a {
    color: var(--navy-900);
  }
}

@media (max-width: 768px) {
  .partner-container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: 90vh;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-cta {
    display: grid;
    gap: 14px;
    margin-bottom: 36px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .core-kpi {
    padding: 32px 24px;
  }

  .core-kpi-num {
    font-size: 80px;
  }

  .about-narrative {
    padding: 32px 24px;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 16px 18px;
    font-size: 14px;
  }

  .contact-tabs {
    grid-template-columns: 1fr;
  }

  .tab {
    justify-content: flex-start;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .back-to-top.show {
    display: none;
  }

  .floating-cta span {
    display: none;
  }

  .trusted-list {
    gap: 20px 24px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}