/* ============================================================
   BASE & VARIABLES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;600;700&family=Share+Tech+Mono&display=swap');

:root {
  --navy: #1E3A8A;
  --navy-d: #152c6b;
  --navy-m: #2a52b0;
  --navy-p: #e8eeff;
  --yel: #F9B81E;
  --yel-d: #d99e08;
  --yel-p: #fff8e1;
  --gray-bg: #f5f7fc;
  --gray-bdr: #dde4f5;
  --text: #1a1a2e;
  --text-m: #44456a;
  --text-l: #6b7280;

  --r-s: 6px;
  --r-m: 10px;
  --r-l: 16px;

  --sh-s: 0 1px 4px rgba(30, 58, 138, .07);
  --sh-m: 0 4px 16px rgba(30, 58, 138, .12);
  --sh-l: 0 8px 32px rgba(30, 58, 138, .18);

  --fz-xs: 1.2rem;
  --fz-sm: 1.4rem;
  --fz-base: 1.6rem;
  --fz-md: 1.8rem;
  --fz-lg: 2.2rem;
  --fz-xl: 2.8rem;
  --fz-xxl: 3.6rem;
  --fz-hero: 4.4rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans JP", sans-serif;
  font-size: var(--fz-base);
  line-height: 1.7;
  color: var(--text);
  background-color: #fcfdfd;
  background-image:
    linear-gradient(rgba(30, 58, 138, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 138, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
}

a:hover {
  color: var(--navy-m);
}

ul, ol {
  list-style: none;
}

/* ============================================================
   LAYOUT & UTILITIES
   ============================================================ */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 80px 0;
}

.section--gray {
  background: rgba(245, 247, 252, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.bg-light {
  background-color: #f9fafb;
}

.mb-12 { margin-bottom: 12px; }
.mb-48 { margin-bottom: 48px; }
.mt-80 { margin-top: 80px; }

.text-yel {
  color: var(--yel-d);
}

.marker-yel {
  background: linear-gradient(transparent 60%, rgba(249, 184, 30, 0.5) 60%);
  font-weight: 700;
  color: var(--navy);
}

.lead-text {
  font-size: var(--fz-base);
  color: #555;
  line-height: 1.9;
  max-width: 100%;
  margin-bottom: 32px;
}

.lead-text--sm-width {
  max-width: 100%;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.heading05 {
  font-family: 'Noto Serif JP', serif;
  font-size: var(--fz-xl);
  font-weight: 700;
  color: var(--navy);
  border-left: 4px solid var(--yel);
  padding-left: 16px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.section-label, .section-label-wrap .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--navy-p);
  border: 1px solid var(--gray-bdr);
  border-radius: 100px;
  padding: 4px 16px;
  margin-bottom: 18px;
}

/* ============================================================
   HEADER & BREADCRUMB
   ============================================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.site-header__logo {
  color: #fff;
  text-decoration: none;
  font-size: var(--fz-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-header__logo strong {
  color: var(--yel);
}

.site-nav {
  display: flex;
  gap: 2px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: var(--fz-sm);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--r-s);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-nav a.active {
  background: var(--yel);
  color: var(--navy);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: 0.3s;
}

.breadcrumb {
  background: #eef1fb;
  border-bottom: 1px solid var(--gray-bdr);
  padding: 10px 0;
}

.breadcrumb__list {
  display: flex;
  gap: 6px;
  font-size: var(--fz-xs);
  color: var(--text-l);
  align-items: center;
}

.breadcrumb__list a {
  color: var(--navy);
  text-decoration: none;
}

.breadcrumb__list a:hover {
  text-decoration: underline;
}

.breadcrumb__list li + li::before {
  content: '›';
  margin-right: 6px;
  color: #aaa;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-yel, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--yel);
  color: var(--navy);
  font-size: var(--fz-base);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-yel:hover, .btn-primary:hover {
  background: var(--yel-d);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.btn-navy, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: var(--fz-base);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(30, 58, 138, 0.2);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-navy:hover, .btn-secondary:hover {
  background: var(--navy-m);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  font-size: var(--fz-base);
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  font-size: var(--fz-base);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-white:hover {
  background: #eef1fb;
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-yel--sm, .btn-primary--sm, .btn-navy--sm, .btn-secondary--sm, .btn-ghost--sm, .btn-white--sm {
  font-size: var(--fz-sm);
  padding: 10px 22px;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

/* ============================================================
   HERO / PAGE HERO
   ============================================================ */
#mainImg {
  position: relative;
  background: linear-gradient(160deg, #1E3A8A 0%, #3B82F6 50%, #93C5FD 100%);
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: 80vh;
}

#mainImg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-svg-wrap, .hero-body {
  grid-area: 1 / 1;
}

.hero-svg-wrap {
  display: block;
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 1;
  height: 100%;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 72%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 72%, transparent 100%);
}

.hero-svg-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.hero-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 10%;
  z-index: 20;
  pointer-events: none;
  height: 100%;
  width: 100%;
}

.hero-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(30, 58, 138, 0.35) 0%, transparent 100%);
  pointer-events: none;
}

.hero-body > * {
  pointer-events: auto;
  position: relative;
}

.hero-bot-bar {
  position: relative;
  z-index: 10;
  background: rgba(5, 13, 40, 0.92);
  border-top: 1px solid rgba(249, 184, 30, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-bot-bar__text {
  font-size: var(--fz-sm);
  font-weight: 700;
  color: #fff;
}

.hero-bot-bar__text strong {
  color: var(--yel);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 184, 30, 0.15);
  border: 1px solid rgba(249, 184, 30, 0.5);
  color: var(--yel);
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
  animation: fadeDown 0.6s ease both;
}

.hero-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yel);
  display: inline-block;
  animation: pulse 2s infinite;
}

#mainImg .title {
  color: var(--yel);
  font-family: 'Noto Serif JP', serif;
  font-size: var(--fz-hero);
  font-weight: 700;
  line-height: 1.3;
  max-width: 640px;
  margin: 0 auto;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  animation: fadeDown 0.7s 0.1s ease both;
}

#mainImg .sub {
  color: #fff;
  font-size: var(--fz-lg);
  font-weight: 700;
  margin-top: 10px;
  max-width: 600px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  animation: fadeDown 0.7s 0.2s ease both;
}

#mainImg .text {
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fz-base);
  line-height: 1.9;
  max-width: 600px;
  margin-top: 12px;
  animation: fadeDown 0.7s 0.3s ease both;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.page-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  height: 480px;
  padding: 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.page-hero--gloobe { background-image: url('../images/gloobe_main.webp'); }
.page-hero--zero { background-image: url('../images/zero_main.webp'); }
.page-hero--useful { background-image: url('../images/useful_main.webp'); background-position: center; }
.page-hero--review { background-image: url('../images/review_main.webp'); background-position: center 30%; }

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0) 100%);
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.page-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  z-index: 1;
}

.page-hero__tag {
  display: inline-block;
  background: var(--yel);
  color: var(--navy);
  font-size: var(--fz-xs);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--r-s);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.page-hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: var(--fz-xxl);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-hero__sub {
  font-size: var(--fz-base);
  color: #fff;
  line-height: 1.9;
  max-width: 100%;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.page-hero__meta {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fz-xs);
}

/* ============================================================
   SPLIT HERO (TOP)
   ============================================================ */
#split-hero {
  position: relative;
  display: flex;
  height: calc(100vh - 56px);
  min-height: 600px;
  overflow: hidden;
  background-color: #0f172a;
}

.split-pane {
  flex: 1;
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.pane-bg {
  position: absolute;
  inset: -10px;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.split-pane--gloobe .pane-bg { background-image: url('../images/src.webp'); }
.split-pane--zero .pane-bg { background-image: url('../images/moku.webp'); }

.split-pane:hover .pane-bg {
  transform: scale(1.05);
}

.split-pane::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  transition: background 0.6s ease;
  z-index: 1;
}

.split-pane:hover::before {
  background: rgba(15, 23, 42, 0.25);
}

#split-hero:hover .split-pane:not(:hover)::before {
  background: rgba(15, 23, 42, 0.85);
}

.split-hero__center-area {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  text-align: center;
  width: 100%;
  max-width: 900px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.5) 0%, transparent 60%);
  padding: 40px 20px;
}

.center-date-label {
  display: inline-block;
  background: var(--yel);
  color: var(--navy);
  font-weight: 700;
  padding: 4px 14px;
  font-size: var(--fz-xs);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  border-radius: 100px;
}

.center-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--fz-xxl);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
}

.center-desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--fz-base);
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.center-question {
  display: inline-block;
  margin-top: 24px;
  color: #fff;
  font-size: var(--fz-base);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  animation: floatUpDown 3s infinite ease-in-out;
}

.pane-content {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 400px;
  z-index: 2;
  text-align: center;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-pane:hover .pane-content {
  transform: translate(-50%, calc(-50% - 8px));
}

.split-pane__logo {
  height: 90px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-pane__logo img {
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.8));
}

.pane-badge {
  display: inline-flex;
  padding: 4px 16px;
  font-weight: 700;
  font-size: var(--fz-xs);
  border-radius: 100px;
  margin-bottom: 12px;
  color: var(--navy);
  background: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}

.split-pane:hover .pane-badge {
  background: var(--yel);
}

.pane-subcopy {
  font-size: var(--fz-base);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.pane-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: var(--fz-lg);
  font-weight: bold;
  transition: transform 0.3s ease, background 0.3s ease;
}

.split-pane:hover .pane-arrow {
  transform: translateX(8px);
  background: var(--yel);
}

/* ============================================================
   UPDATE BADGE
   ============================================================ */
.update-badge-wrap {
  display: flex;
  margin-top: 24px;
}

.page-hero__meta.update-badge-wrap {
  justify-content: flex-start;
}

.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 8px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.3s;
}

.update-badge:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-2px);
}

.update-badge__dot {
  width: 6px;
  height: 6px;
  background: var(--yel);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--yel);
  animation: pulse-update 2s infinite;
}

.update-badge__icon {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

.update-badge__label {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: var(--fz-xs);
  opacity: 0.9;
}

.update-badge__date {
  font-family: 'Share Tech Mono', monospace;
  font-size: var(--fz-sm);
  letter-spacing: 0.05em;
  color: var(--yel);
  position: relative;
  top: 1.8px;
}

/* ============================================================
   HERO TOOLKIT
   ============================================================ */
.hero-toolkit {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-m);
  padding: 16px 32px;
  max-width: 1040px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
}

.hero-toolkit__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.hero-toolkit__label {
  background: var(--yel);
  color: var(--navy);
  font-size: var(--fz-xs);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}

.hero-toolkit__title {
  color: #fff;
  font-size: var(--fz-md);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.hero-toolkit__body {
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.hero-toolkit__item {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--r-s);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
}

.hero-toolkit__info {
  flex: 1;
  min-width: 0;
}

.hero-toolkit__name {
  color: var(--navy);
  font-size: var(--fz-base);
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-toolkit__desc {
  color: var(--text-m);
  font-size: var(--fz-xs);
  margin-bottom: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-toolkit__item .btn-yel {
  white-space: nowrap;
  padding: 10px 20px;
  flex-shrink: 0;
  font-size: var(--fz-sm);
}

.hero-toolkit__plus {
  color: #fff;
  font-size: var(--fz-xl);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section {
  padding: 60px 0;
  background: #fff;
}

.news-list {
  border-top: 1px solid var(--gray-bdr);
  margin-top: 24px;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-bdr);
  transition: background 0.2s;
}

.news-item:hover {
  background: var(--navy-p);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  width: 180px;
}

time.news-date {
  font-family: 'Share Tech Mono', monospace;
  font-size: var(--fz-sm);
  color: var(--text-l);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.news-category {
  display: inline-block;
  padding: 2px 10px;
  font-size: var(--fz-xs);
  font-weight: 700;
  border-radius: 3px;
  margin-right: 15px;
  min-width: 80px;
  text-align: center;
}

.category-update { background: var(--yel); color: var(--navy); }
.category-event { background: #e2e8f0; color: var(--text-m); }
.category-info { background: var(--navy); color: #fff; }

.news-title {
  font-size: var(--fz-base);
  color: var(--text);
  text-decoration: none;
  flex: 1;
  line-height: 1.6;
}

.news-title:hover {
  color: var(--navy);
  text-decoration: underline;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}

.news-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.news-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.news-modal__content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: var(--r-l);
  box-shadow: var(--sh-l);
  display: flex;
  flex-direction: column;
  z-index: 1;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-modal.is-open .news-modal__content {
  transform: translateY(0);
}

.news-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--gray-bg);
  font-size: var(--fz-xl);
  color: var(--text-m);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}

.news-modal__close:hover {
  background: var(--navy);
  color: #fff;
}

.news-modal__header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--gray-bdr);
}

.news-modal__body {
  padding: 0 32px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.news-modal__body .news-list {
  border-top: none;
  margin-top: 0;
}

#btn-news-more {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  padding: 10px 32px;
  font-size: var(--fz-sm);
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.2s;
}

#btn-news-more:hover {
  background: var(--navy-p);
}

/* ============================================================
   CARDS & GRIDS
   ============================================================ */
.box-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.box01 {
  background: #fff;
  border: 1px solid var(--gray-bdr);
  border-radius: var(--r-m);
  box-shadow: var(--sh-s);
  padding: 28px;
}

.box01-title {
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.box01-list {
  margin-top: 12px;
  padding: 0;
  list-style: none;
}

.box01-list li {
  padding-left: 18px;
  position: relative;
  font-size: var(--fz-base);
  line-height: 1.8;
  margin-bottom: 10px;
}

.box01-list li:last-child {
  margin-bottom: 0;
}

.box01-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy);
  font-size: 1rem;
}

.box01-text {
  font-size: var(--fz-sm);
  line-height: 1.8;
  color: var(--text-m);
}

.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.card-grid--2col { grid-template-columns: repeat(2, 1fr); }
.card-grid--3col { grid-template-columns: repeat(3, 1fr); }

.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-bdr);
  border-radius: var(--r-m);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  z-index: 1;
}

.fc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.fc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-p);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: background 0.4s, transform 0.4s, color 0.4s;
}

.fc-icon svg {
  width: 26px;
  height: 26px;
  transition: transform 0.4s, stroke 0.4s, fill 0.4s;
}

.feature-card:hover .fc-icon {
  background: var(--navy);
  color: #fff;
  transform: scale(1.05);
}

.feature-card:hover .fc-icon svg {
  stroke: #fff;
}

.feature-card__title {
  font-size: var(--fz-md);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s;
}

.feature-card:hover .feature-card__title {
  color: var(--navy-m);
}

.feature-card__body {
  font-size: var(--fz-sm);
  color: var(--text-m);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.feature-card__action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fz-xs);
  font-weight: 700;
  color: var(--navy);
  margin-top: auto;
  transition: opacity 0.3s;
  opacity: 0.8;
}

.feature-card:hover .feature-card__action {
  opacity: 1;
}

.feature-card__action svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-card__action svg {
  transform: translateX(6px);
}

.audience-card__badge.badge-alert {
  background: var(--yel-p);
  color: var(--navy);
  border: 1px solid var(--yel);
  font-weight: 700;
  text-shadow: none;
}

.audience-card__badge.badge-neutral {
  background: #f1f5f9;
  color: #64748b;
  border: none;
  text-shadow: none;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.audience-card {
  border: 2px solid var(--gray-bdr);
  border-radius: var(--r-l);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  background: #fff;
}

.audience-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--sh-l);
  color: inherit;
}

.audience-card__header {
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audience-card__header--zero { background-image: url('../images/zero_main.webp'); background-size: cover; background-position: center; }
.audience-card__header--gloobe { background-image: url('../images/gloobe_main.webp'); background-size: cover; background-position: center; }

.audience-card__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.audience-card__header > * {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.audience-card__badge {
  text-shadow: none;
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: var(--fz-base);
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--r-s);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.audience-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: var(--fz-xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}

.audience-card__sub {
  font-size: var(--fz-sm);
  color: #fff;
  line-height: 1.7;
}

.audience-card__links {
  padding: 18px 28px;
  border-bottom: 1px solid var(--gray-bdr);
  flex: 1;
}

.audience-card__link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: var(--fz-sm);
  color: var(--text);
}

.audience-card__link-item:last-child {
  border-bottom: none;
}

.audience-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
}

.audience-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 28px;
  background: var(--gray-bg);
  font-size: var(--fz-sm);
  color: var(--navy);
  font-weight: 700;
}

.audience-card__cta-arrow {
  font-size: var(--fz-base);
}

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-intro {
  display: grid;
  width: 100%;
}

.section-label-wrap {
  margin-bottom: 12px;
}

.sol-arrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fz-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 24px;
}

.sol-arrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--navy);
}

.features-list {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}

.feature-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--gray-bdr);
  transition: background 0.2s;
}

.feature-row:last-child {
  border-bottom: 1px solid var(--gray-bdr);
}

.feature-row:hover {
  background: #fafbfc;
}

.feat-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: var(--fz-xxl);
  color: var(--gray-bdr);
  font-weight: 700;
  padding-top: 48px;
  text-align: center;
}

.feat-content {
  padding: 48px 40px 48px 0;
}

.feat-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--navy);
  color: #fff;
  font-size: var(--fz-xs);
  font-weight: 700;
  border-radius: 3px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.feat-badge--alert {
  background: var(--yel);
  color: var(--navy);
}

.feat-badge--structure {
  background: #64748b;
  margin-top: 4px;
}
.feat-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feat-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feat-check-icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
  margin-top: 0.15em;
}

.feat-title {
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.5;
}

.feat-body {
  font-size: var(--fz-sm);
  line-height: 1.8;
  color: var(--text-m);
}

.feat-highlight {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--navy-p);
  border-left: 4px solid var(--navy);
  font-size: var(--fz-sm);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.6;
  border-radius: 0 4px 4px 0;
}

.feat-highlight--alert {
  background: var(--yel-p);
  border-left-color: var(--yel);
  color: var(--navy);
}

.feat-img-col {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--gray-bdr);
}

.feat-img-col video,
.feat-img-col img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-m);
  box-shadow: var(--sh-m);
  background: #000;
}

/* ============================================================
   FLOW STEPS
   ============================================================ */
.flow-steps {
  margin: 32px 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--gray-bdr);
  border-radius: var(--r-m);
  padding: 20px 22px;
  margin-bottom: 14px;
  box-shadow: var(--sh-s);
  transition: box-shadow 0.2s;
}

.step-item:hover {
  box-shadow: var(--sh-m);
}

.step-number {
  background: var(--yel);
  color: var(--navy);
  font-size: var(--fz-md);
  font-weight: 700;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 18px;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: var(--fz-md);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-list {
  list-style: none;
  padding: 0;
}

.step-list li {
  font-size: var(--fz-sm);
  line-height: 1.7;
  color: var(--text-m);
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}

.step-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy);
}

.step-list li:last-child {
  margin-bottom: 0;
}

.step-arrow {
  display: flex;
  justify-content: center;
  margin: 2px 0;
}

.step-arrow svg {
  width: 22px;
  height: 22px;
}

/* ============================================================
   IMAGES / PLACEHOLDERS
   ============================================================ */
.img-block {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.img-block img {
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.img-real {
  border-radius: var(--r-m);
  box-shadow: var(--sh-m);
  display: inline-block;
}

.img-placeholder {
  background: linear-gradient(135deg, var(--navy-p), #d8e3ff);
  border: 2px dashed var(--gray-bdr);
  border-radius: var(--r-m);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  min-height: 180px;
  margin: 20px 0;
  text-align: center;
}

.ph-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-m);
  background: rgba(30, 58, 138, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-icon svg {
  width: 32px;
  height: 32px;
}

.img-placeholder__text {
  font-size: var(--fz-sm);
  color: var(--text-l);
  line-height: 1.6;
}

/* ============================================================
   LINK CARDS
   ============================================================ */
.link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 22px;
  border: 1px solid var(--gray-bdr);
  border-radius: var(--r-m);
  background: #fff;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--sh-s);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.link-card:hover {
  border-color: var(--navy);
  box-shadow: var(--sh-m);
  transform: translateX(4px);
  text-decoration: none;
  color: var(--text);
}

.link-card__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.link-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-s);
  background: var(--navy-p);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.link-card__icon svg {
  width: 22px;
  height: 22px;
}

.link-card__title {
  font-size: var(--fz-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.link-card__desc {
  font-size: var(--fz-xs);
  color: var(--text-l);
}

.link-card__arrow {
  font-size: var(--fz-base);
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

/* ============================================================
   TABLE
   ============================================================ */
.custom-table-wrapper {
  margin: 24px 0;
  overflow-x: auto;
  border-radius: var(--r-m);
  box-shadow: var(--sh-s);
  border: 1px solid var(--gray-bdr);
  -webkit-overflow-scrolling: touch;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 900px;
}

.custom-table th:nth-child(1) { width: 120px; text-align: center; }
.custom-table th:nth-child(2) { width: 200px; text-align: center; }
.custom-table th:nth-child(3) { width: auto; text-align: left; }
.custom-table th:nth-child(4) { width: auto; text-align: left; }

.custom-table th {
  background: var(--navy);
  color: #fff;
  padding: 16px;
  font-size: var(--fz-sm);
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.custom-table th:last-child {
  border-right: none;
}

.custom-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--gray-bdr);
  border-right: 1px solid var(--gray-bdr);
  font-size: var(--fz-sm);
  line-height: 1.7;
  color: var(--text);
  vertical-align: middle;
}

.custom-table td:last-child {
  border-right: none;
}

.custom-table td:not(.list-cell):not(.category-cell) {
  text-align: center;
  white-space: nowrap;
}

.custom-table td.category-cell {
  font-weight: 700;
  font-size: var(--fz-base);
  letter-spacing: 0.1em;
  padding: 14px 24px;
  cursor: pointer;
  user-select: none;
  transition: filter 0.2s;
  border-right: none;
}

.custom-table td.category-cell:hover { filter: brightness(1.15); }
.custom-table td.cat-common { background: var(--navy); color: #fff; }
.custom-table td.cat-axis { background: var(--yel); color: var(--navy); }
.custom-table td.cat-frame { background: #64748b; color: #fff; }

.custom-table tr.bg-common td { background-color: rgba(30, 58, 138, 0.02); }
.custom-table tr.bg-axis td { background-color: rgba(249, 184, 30, 0.05); }
.custom-table tr.bg-frame td { background-color: rgba(100, 116, 139, 0.03); }

.custom-table tr.bg-common:hover td { background-color: rgba(30, 58, 138, 0.06); }
.custom-table tr.bg-axis:hover td { background-color: rgba(249, 184, 30, 0.12); }
.custom-table tr.bg-frame:hover td { background-color: rgba(100, 116, 139, 0.07); }

.custom-table td.list-cell {
  white-space: normal;
  text-align: left;
  vertical-align: top;
}

.custom-table .list-cell ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-table .list-cell li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.6;
  color: var(--text-m);
}

.custom-table .list-cell strong {
  display: inline-block;
  text-align: center;
  background: #fff;
  color: var(--navy);
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(30, 58, 138, 0.25);
}

#scope.bg-light {
  background-color: #f9fafb;
  padding: 100px 0;
}

#scope .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

#scope .custom-table {
  width: 100%;
  margin: 0;
}

#scope .custom-table th:nth-child(1), #scope .custom-table td:nth-child(1) { width: 25%; }
#scope .custom-table th:nth-child(2), #scope .custom-table td:nth-child(2) { width: 20%; }
#scope .custom-table td.list-cell { text-align: left; padding-left: 30px; }

.scope-table__product {
  font-weight: 700;
  color: var(--navy);
  vertical-align: top;
}

.scope-table__badge-cell {
  vertical-align: top;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-container {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 10px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--gray-bdr), var(--gray-bdr) 10px, transparent 10px, transparent 20px);
  z-index: 1;
}

.timeline::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  width: 15%;
  height: 4px;
  background: var(--navy);
  z-index: 2;
}

.timeline__item {
  cursor: none;
  position: relative;
  z-index: 3;
  width: 31%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline__item.is-visible { transform: translateY(0); }
.timeline__item--current.is-visible { opacity: 1; }
.timeline__item--future.is-visible { opacity: 0.65; transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.timeline__item--future.is-visible:hover { opacity: 1; transition: opacity 0.3s ease; }

.timeline__item--future:hover .timeline__content {
  box-shadow: var(--sh-m);
  border-color: rgba(30, 58, 138, 0.3);
  transition: all 0.3s ease;
}

.timeline__marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--gray-bdr);
  margin: 12px auto 24px;
  transition: all 0.3s;
}

.timeline__item--current .timeline__marker {
  border-color: var(--navy);
  background: var(--yel);
  box-shadow: 0 0 0 6px rgba(249, 184, 30, 0.2);
  animation: pulse-timeline 2s infinite;
}

@keyframes pulse-timeline {
  0% { box-shadow: 0 0 0 0 rgba(249, 184, 30, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(249, 184, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 184, 30, 0); }
}

.timeline__content {
  background: #fff;
  border: 1px solid var(--gray-bdr);
  border-radius: var(--r-m);
  padding: 20px 16px;
  box-shadow: var(--sh-s);
  position: relative;
}

.timeline__content::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid var(--gray-bdr);
  border-top: 1px solid var(--gray-bdr);
}

.timeline__item--current .timeline__content {
  border: 2px solid var(--navy);
  box-shadow: var(--sh-m);
}

.timeline__item--current .timeline__content::before {
  border-left: 2px solid var(--navy);
  border-top: 2px solid var(--navy);
  top: -10px;
}

.timeline__year {
  font-family: 'Noto Serif JP', serif;
  font-size: var(--fz-lg);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.timeline__badge {
  font-size: var(--fz-xs);
  background: var(--yel);
  color: var(--navy);
  padding: 3px 8px;
  border-radius: 100px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.timeline__label {
  font-size: var(--fz-base);
  font-weight: 700;
  margin-top: 10px;
  color: var(--navy);
}

.timeline__desc {
  font-size: var(--fz-sm);
  color: var(--text-m);
  margin-top: 6px;
  line-height: 1.6;
}

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: -40px;
  right: -40px;
}

.scroll-indicator:hover {
  opacity: 0.8;
}

.scroll-indicator:hover .scroll-text {
  color: var(--yel);
}

.scroll-indicator:hover .scroll-arrow {
  border-color: var(--yel);
}

.scroll-text {
  color: #fff;
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  transition: color 0.3s;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border: none;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 0;
  background: transparent;
  transform: rotate(45deg);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
  animation: arrowBounce 2s infinite;
  transition: border-color 0.3s;
  box-shadow: none;
}

@keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
  40% { transform: translateY(10px) rotate(45deg); }
  60% { transform: translateY(5px) rotate(45deg); }
}

/* ============================================================
   SUBSIDY / JOURNAL
   ============================================================ */
.hojokin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.hj-card {
  background: #fff;
  border: 1px solid var(--gray-bdr);
  border-radius: var(--r-m);
  padding: 26px 24px;
  box-shadow: var(--sh-s);
}

.hj-tag {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: var(--fz-xs);
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--r-s);
  margin-bottom: 12px;
}

.hj-title {
  font-size: var(--fz-md);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.hj-body {
  font-size: var(--fz-sm);
  color: var(--text-m);
  line-height: 1.8;
  margin-bottom: 16px;
}

.hj-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hj-link {
  font-size: var(--fz-sm);
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  padding: 5px 16px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.hj-link:hover {
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.journal-card {
  background: #fff;
  border: 1px solid var(--gray-bdr);
  border-radius: var(--r-m);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-l);
  text-decoration: none;
  color: inherit;
}

.journal-image {
  width: 100%;
  aspect-ratio: 830 / 470;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-p), #cfdaff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.journal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-content {
  padding: 16px 18px;
}

.journal-title {
  font-size: var(--fz-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.5;
}

.journal-description {
  font-size: var(--fz-sm);
  color: var(--text-l);
  line-height: 1.7;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 700;
  font-size: var(--fz-sm);
  text-decoration: none;
}

.read-more::after {
  content: '→';
  transition: margin-left 0.2s;
}

.journal-card:hover .read-more::after {
  margin-left: 5px;
}

/* ============================================================
   CHECKLIST DEMO UI
   ============================================================ */
.checklist-demo {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sh-l);
  border: 1px solid #c5c5c5;
  max-width: 860px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
}

.demo-titlebar {
  background: #ffffff;
  padding: 0 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
  height: 36px;
}

.demo-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-title-icon-img {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  object-fit: cover;
}

.demo-title {
  color: #333;
  font-size: var(--fz-sm);
  letter-spacing: 0.05em;
  margin: 0;
  font-weight: 500;
}

.demo-window-controls {
  display: flex;
  height: 100%;
}

.demo-win-btn {
  width: 52px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-base);
  color: #aaa;
  cursor: default;
}

.demo-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.demo-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: var(--fz-sm);
  color: #333;
}

.demo-table th {
  padding: 16px 12px;
  text-align: center;
  font-weight: 500;
  color: #444;
  border-bottom: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  white-space: nowrap;
}

.demo-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  white-space: nowrap;
}

.demo-table td:first-child {
  text-align: left;
  padding-left: 20px;
  font-weight: 500;
}

.demo-table td.gray-cell {
  background: #e9ecef;
}

.demo-table tr:hover td:not(.gray-cell) {
  background: #f0f4ff;
}

.cell-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--navy);
  font-weight: 500;
  font-size: var(--fz-base);
  cursor: pointer;
  transition: all 0.2s;
}

.cell-o:hover {
  background: var(--navy-p);
  border-color: var(--navy);
  transform: scale(1.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.demo-footer {
  padding: 12px 20px;
  background: #f8f9fa;
  border-top: 1px solid #d9d9d9;
  font-size: var(--fz-sm);
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.checklist-highlight {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.checklist-highlight::before {
  content: 'CHECKLIST';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Share Tech Mono', monospace;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 50px;
  align-items: center;
}

.checklist-grid > div {
  min-width: 0;
}

.cl-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--yel);
  border-radius: var(--r-m);
}

.cl-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(249, 184, 30, 0.15);
  border: 1px solid rgba(249, 184, 30, 0.5);
  border-radius: var(--r-s);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz-lg);
}

.cl-big {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--fz-xl);
  color: var(--yel);
  font-weight: 700;
  line-height: 1;
}

.cl-desc {
  font-size: var(--fz-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 8px;
}

.checklist-highlight .heading05 {
  color: #fff;
  border-left-color: var(--yel);
}

/* ============================================================
   IMAGE POPUP DEMO
   ============================================================ */
.img-demo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.img-demo-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.img-demo-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 95%;
  max-width: 1000px;
}

.img-demo-popup.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.img-demo-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px 12px;
  border-bottom: 1px solid var(--gray-bdr);
  margin-bottom: 12px;
}

.img-demo-popup__title {
  font-size: var(--fz-sm);
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.img-demo-popup__close {
  background: none;
  border: none;
  font-size: var(--fz-xl);
  line-height: 1;
  color: var(--text-l);
  cursor: pointer;
  padding: 0 8px;
  transition: 0.2s;
}

.img-demo-popup__close:hover {
  color: #ef4444;
  transform: scale(1.1);
}

.img-demo-popup__body img {
  width: 100%;
  height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--gray-bdr);
  display: block;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.custom-cursor {
  display: none;
  z-index: 999998 !important;
}

@media (hover: hover) and (pointer: fine) {
  body, a, button { cursor: none; }
  .custom-cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 1;
  }
}

.custom-cursor.is-outside { opacity: 0; }

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  z-index: 1000000 !important;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-radius 0.2s ease, background 0.2s ease;
}

.cursor-group {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 999999 !important;
}

.cursor-cross-h {
  position: absolute;
  width: 100px;
  height: 4px;
  left: -50px;
  top: -2px;
  background: rgba(249, 184, 30, 0.5);
}

.cursor-cross-v {
  position: absolute;
  width: 4px;
  height: 100px;
  left: -2px;
  top: -50px;
  background: rgba(249, 184, 30, 0.5);
}

.cursor-coords {
  position: absolute;
  left: 12px;
  top: 12px;
  font-family: 'Share Tech Mono', monospace;
  font-size: var(--fz-xs);
  color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.6);
  padding: 2px 4px;
  border-radius: 2px;
}

.custom-cursor.is-text .cursor-dot {
  width: 2px;
  height: 24px;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.5);
}

.custom-cursor.is-text .cursor-group {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.custom-cursor.is-hover .cursor-dot {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.15);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.custom-cursor.is-hover .cursor-group {
  opacity: 0.5;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.floating-action-buttons {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  pointer-events: none;
}

.fab-item {
  pointer-events: auto;
  display: flex;
  align-items: center;
  background: var(--gray-bg);
  border: 3px solid var(--navy);
  border-radius: 100px;
  padding: 8px 20px 8px 8px;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.fab-item:hover {
  background: var(--yel);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(30, 58, 138, 0.25);
  border-color: var(--yel);
}

.fab-icon {
  width: 40px;
  height: 40px;
  background: var(--yel);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 12px;
  transition: transform 0.3s, background 0.3s;
}

.fab-item:hover .fab-icon {
  transform: scale(1.05);
  background: var(--yel);
}

.fab-icon svg {
  width: 20px;
  height: 20px;
}

.fab-text {
  font-size: var(--fz-sm);
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

/* ============================================================
   CTA SECTION & FOOTER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #0b1a46 0%, var(--navy) 100%);
  padding: 72px 28px;
  text-align: center;
}

.cta-section__title {
  font-family: 'Noto Serif JP', serif;
  font-size: var(--fz-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-section__sub {
  font-size: var(--fz-base);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.site-footer {
  background: #0c1a3f;
  color: rgba(255, 255, 255, 0.6);
  padding: 30px 28px;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__logo {
  font-size: var(--fz-sm);
  font-weight: 500;
}

.site-footer__copy {
  font-size: var(--fz-xs);
  color: rgba(255, 255, 255, 0.38);
}
.site-footer__logo a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s, text-decoration 0.2s;
}

.site-footer__logo a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.4); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE (MEDIA QUERIES)
   ============================================================ */
@media (min-width: 1025px) {
  .feat-img-col {
    padding: 40px;
    min-width: 480px;
  }
}

@media (max-width: 1024px) {
  .solution-intro__img {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
  }

  .feature-row {
    grid-template-columns: 60px 1fr;
  }

  .feat-img-col {
    display: flex !important;
    grid-column: 2;
    padding: 0 0 40px 0;
    border-left: none;
    justify-content: flex-start;
  }

  .feat-img-col img,
  .feat-img-col video,
  .feat-img-col .img-placeholder {
    width: 100%;
    max-width: 480px;
    height: auto;
  }

  .feat-content {
    padding: 32px 0 32px 0;
  }

  .feat-num {
    padding-top: 32px;
    font-size: var(--fz-xl);
  }
}

@media (max-width: 960px) {
  html {
    font-size: 58%;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 12px 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 100;
  }

  .site-nav.open a {
    padding: 12px 16px;
  }

  .hero-toolkit {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
  }

  .hero-toolkit__header {
    flex-direction: row;
    align-items: center;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .checklist-highlight::before {
    display: none;
  }

  .audience-grid, .hojokin-grid {
    grid-template-columns: 1fr;
  }

  .card-grid--3col {
    grid-template-columns: 1fr 1fr;
  }

  .hero-svg-wrap img {
    max-height: 380px;
  }

  .hero-body {
    padding: 28px 8%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .page-hero {
    height: auto !important;
    min-height: 540px;
    padding: 40px 16px !important;
    align-items: center !important; 
  }

  .page-hero__inner {
    text-align: center;
    width: 100%;
  }

  .page-hero::after {
    left: 0;
    width: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  }

  .page-hero__meta.update-badge-wrap, .page-hero__meta {
    justify-content: center;
  }

  .hero-body {
    padding: 40px 16px;
  }

  .hero-toolkit__body {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .hero-toolkit {
    padding: 16px;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-toolkit__header {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

  .hero-toolkit__plus {
    margin: 0 auto;
    text-align: center;
  }

  .hero-toolkit__item {
    flex-direction: column;
    text-align: center;
    padding: 12px 16px;
    gap: 8px;
  }

  .hero-toolkit__info {
    margin-bottom: 0;
  }

  .hero-toolkit__name {
    font-size: 1.4rem;
  }

  .hero-toolkit__item .btn-yel {
    width: 100%;
    padding: 10px 16px;
    font-size: 1.3rem;
  }

  .hero-toolkit__desc {
    font-size: 1.15rem;
    white-space: normal;
  }

  .hero-toolkit__plus {
    margin: -4px auto;
    font-size: 2rem;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .news-meta {
    width: 100%;
  }

  .feature-row {
    grid-template-columns: 40px 1fr;
    gap: 8px;
  }

  .feat-num {
    padding-top: 24px;
    text-align: left;
    line-height: 1.4;
  }

  .feat-content {
    padding: 24px 0 24px 0;
  }

  .feat-img-col {
    grid-column: 1 / -1;
    padding: 0 16px 32px 16px;
    justify-content: center;
  }

  .feat-title,
  .feat-body,
  .feat-highlight {
    margin-left: -32px;
    margin-right: 16px;
  }

  .feat-title {
    margin-top: 8px;
  }
  .timeline {
    flex-direction: column;
    gap: 30px;
    padding-left: 20px;
  }

  .timeline::before {
    top: 0;
    left: 8px;
    width: 4px;
    height: 100%;
    background: repeating-linear-gradient(180deg, var(--gray-bdr), var(--gray-bdr) 10px, transparent 10px, transparent 20px);
  }

  .timeline::after {
    top: 0;
    left: 8px;
    width: 4px;
    height: 15%;
  }

  .timeline__item {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: flex-start;
  }

  .timeline__marker {
    position: absolute;
    left: -22px;
    top: 14px;
    margin: 0;
  }

  .timeline__content {
    width: 100%;
  }

  .timeline__content::before {
    left: -8px;
    top: 26px;
    transform: translateY(-50%) rotate(-45deg);
    border-top: 1px solid var(--gray-bdr);
    border-left: 1px solid var(--gray-bdr);
  }

  .timeline__item--current .timeline__content::before {
    left: -10px;
    top: 26px;
  }

  .timeline__year {
    justify-content: flex-start;
  }

  .section {
    padding: 56px 0;
  }

  .inner {
    padding: 0 16px;
  }

  .card-grid--2col, .card-grid--3col {
    grid-template-columns: 1fr;
  }

  .hero-cta, .btn-group, .site-footer__inner, .hero-bot-bar {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-bot-bar {
    padding: 12px 16px;
  }

  .hero-svg-wrap {
    display: none;
  }

  .demo-table th { padding: 12px 8px; }
  .demo-table td { padding: 10px 8px; }
  .demo-table td:first-child { padding-left: 12px; }
  .demo-titlebar { padding: 8px; height: auto; min-height: 36px; }
  .demo-title { line-height: 1.4; }
  .demo-footer { line-height: 1.5; padding: 10px 12px; }

  #split-hero {
    flex-direction: column;
    height: auto;
    min-height: calc(100dvh - 56px);
    padding-bottom: 0;
    background-color: var(--navy);
    background-image: none;
  }

  #split-hero::before { display: none; }

  .split-hero__center-area {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    background: transparent;
    padding: 32px 16px 24px;
    flex: 0 0 auto;
    z-index: 10;
  }

  .center-title {
    font-size: min(2.6rem, 7vw);
    margin-bottom: 8px;
    text-shadow: none;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .center-desc {
    line-height: 1.5;
    margin-bottom: 0;
  }

  .center-question {
    font-size: 0 !important;
    color: transparent !important;
    line-height: 0 !important;
    margin-top: 16px;
    padding: 0;
    display: block;
    text-align: center;
  }

  .center-question::after {
    content: '▼ あなたの設計対象は？ ▼';
    font-size: var(--fz-md);
    color: #fff;
    line-height: 1.5;
    display: block;
  }

  .split-pane {
    flex: 1 1 0% !important;
    width: 100%;
    min-height: 200px !important;
    padding: 32px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pane-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 90%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .split-pane:hover .pane-content { transform: none; }

  .pane-badge {
    margin-bottom: 8px;
    padding: 2px 14px;
  }

  .split-pane__logo {
    height: auto;
    margin-bottom: 8px;
  }

  .split-pane__logo img { max-height: 44px; }
  .pane-subcopy { margin-bottom: 16px; line-height: 1.4; }
  .pane-arrow { width: 32px; height: 32px; }
  .split-pane__arrow { display: none; }
  .split-pane--zero { padding-bottom: 120px !important; z-index: 10; }
  .split-pane--zero .pane-content { transform: translateY(-16px); }

  .split-pane--gloobe .pane-bg, .split-pane--gloobe::before { display: block; }
  .split-pane::before, #split-hero:hover .split-pane:not(:hover)::before, .split-pane:hover::before {
    background: rgba(15, 23, 42, 0.4) !important;
  }

  .pane-bg, .split-pane:hover .pane-bg { transform: none !important; }
  .scroll-indicator { bottom: 76px; }
  .data-flow-img-wrap { padding: 20px 16px; }

  .floating-action-buttons {
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    gap: 0;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(30, 58, 138, 0.12);
    padding: 8px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }

  .fab-item {
    flex: 1;
    border: none;
    border-radius: var(--r-s);
    padding: 6px 2px;
    box-shadow: none;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .fab-item:hover {
    transform: none;
    background: rgba(30, 58, 138, 0.03);
    box-shadow: none;
    border-color: transparent;
  }

  .fab-item + .fab-item {
    border-left: 1px solid var(--gray-bdr);
    border-radius: 0;
  }

  .fab-icon {
    margin-right: 0;
    width: 28px;
    height: 28px;
    background: var(--yel);
    color: var(--navy);
  }

  .fab-icon svg { width: 14px; height: 14px; }
  .fab-text { font-size: 1.05rem; text-align: center; line-height: 1.25; }
  body:has(.floating-action-buttons) { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  html { font-size: 50%; }
  #mainImg .title {
    line-height: 1.3;
    word-break: break-all;
  }
}