/* ================================================================
   SYNKPORT — j-akiya inspired redesign
   - Card-based sections with very rounded corners
   - Generous whitespace, minimal palette, scroll fades
================================================================ */
:root {
  --primary:      #1B7E3E;
  --primary-deep: #0E5C2C;
  --primary-dark: #0A3F1F;
  --accent:       #38B05E;
  --mint:         #DDF0E2;
  --mint-soft:    #E8F5EC;
  --mint-deep:    #B7E0C2;
  --bg:           #FFFFFF;
  --surface:      #FFFFFF;
  --text:         #11201A;
  --muted:        #5A6B62;
  --border:       #E2EBE5;
  --dark:         #0A2515;

  --font-ja: 'Noto Sans JP', sans-serif;
  --font-en: 'Inter', sans-serif;

  --r-card:   28px;
  --r-card-lg:40px;
  --r-pill:   999px;
  --r-btn:    999px;
  --max-w:    1180px;
  --gutter:   20px;
  --py:       120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.ogp-crawler-image {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0.01;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ja);
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ================================================================
   LAYOUT — outer page padding so cards sit inside a white frame
================================================================ */
main, .page { padding: 0 var(--gutter); }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ================================================================
   TYPE
================================================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 2px;
  font-family: var(--font-en);
  font-size: 10px; font-weight: 550; letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 24px;
  padding: 4px 16px;
}
.section-label::before {
  content: ''; display: block; width: 22px; height: 1.5px;
  background: var(--primary);
  transition: background 0.25s ease 0.1s;
  margin-right: 10px;
  flex-shrink: 0;
}
.section-label .ch {
  display: inline-block;
  opacity: 0;
}
.fade-up.in .section-label {
  animation: section-bar 0.25s ease 0.1s both;
}
.fade-up.in .section-label::before {
  background: rgba(255,255,255,0.65);
}
.fade-up.in .section-label .ch {
  animation: ch-in 0.2s ease calc(0.35s + var(--i) * 0.04s) forwards;
}
@keyframes section-bar {
  from { background: transparent; }
  to   { background: var(--primary); }
}
.section-heading {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800; line-height: 1.4; letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-heading-white { color: #fff; }
.section-sub {
  font-size: 15px; color: var(--muted); line-height: 2;
  max-width: 640px;
}
.mobile-break { display: none; }

/* ================================================================
   BUTTONS — pill
================================================================ */
.btn-primary, .btn-light, a.btn-primary, a.btn-light {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: var(--r-btn);
  font-size: 14px; font-weight: 700; line-height: 1;
  transition: transform .25s, background .25s, color .25s, border-color .25s;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-1px); }
.btn-primary::after { content: '→'; font-weight: 600; }

.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: #f1faf3; transform: translateY(-1px); }
.btn-light::after { content: '→'; font-weight: 600; }

.hero-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--text);
  border-bottom: 1.5px solid var(--text);
  padding-bottom: 4px;
}
.hero-link:hover { color: var(--primary); border-color: var(--primary); }

/* ================================================================
   HEADER — floating pill
================================================================ */
.site-header {
  position: fixed; top: 20px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px); max-width: 1240px;
  z-index: 100;
}
.header-inner {
  height: 60px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 30px;
  padding: 0 24px 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow:
    -6px 8px 10px rgba(0, 104, 48, 0.25),
    0 4px 4px rgba(0, 104, 48, 0.25);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 30px; width: auto; }
.logo-name { font-family: var(--font-en); font-size: 16px; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 36px); }
.site-nav a { font-size: 12px; font-weight: 800; color: rgba(21, 54, 38, 0.78); transition: color .2s; white-space: nowrap; }
.site-nav a:hover { color: var(--primary); }
.nav-cta {
  background: linear-gradient(90deg, rgba(0,104,48,1) 0%, rgba(104,184,40,1) 100%);
  width: 36px; height: 36px;
  padding: 0; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0; line-height: 0; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.nav-cta:hover { background: linear-gradient(90deg, rgba(0,104,48,1) 0%, rgba(27,126,62,1) 100%); }

/* ================================================================
   SECTIONS — every block is a rounded card
================================================================ */
.section-card {
  margin: 12px auto;
  max-width: 1240px;
  border-radius: var(--r-card-lg);
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.section-card.alt-mint    { background: var(--mint); }
.section-card.alt-soft    { background: var(--mint-soft); }
.section-card.alt-white   { background: var(--surface); }
.section-card.alt-green   { background: var(--primary); color: #fff; }
.section-card.alt-dark    { background: var(--primary-dark); color: #fff; }

/* ================================================================
   HERO
================================================================ */
.hero {
  margin: 0 calc(var(--gutter) * -1) 16px;
  width: calc(100% + 2 * var(--gutter));
  max-width: none;
  border-radius: 0;
  background: #fff;
  padding: clamp(150px, 15vw, 220px) clamp(36px, 6vw, 72px) clamp(70px, 7vw, 110px);
  position: relative; overflow: hidden; min-height: 760px;
  display: flex;
  align-items: flex-end;
}
.hero::before,
.hero::after { display: none; }
.hero-bg {
  position: absolute;
  top: 0;
  right: -10%;
  bottom: 0;
  left: auto;
  width: 112%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1.04) contrast(1.02);
  pointer-events: none;
  z-index: 0;
}
.hero-bg-alt {
  opacity: 0;
}
.hero-bg.switching {
  animation: hero-bg-out 0.9s ease forwards;
}
.hero-bg-alt.switching {
  animation: hero-bg-in 0.9s ease forwards;
}
@keyframes hero-bg-out {
  to { opacity: 0; }
}
@keyframes hero-bg-in {
  to { opacity: 1; }
}
.hero-bg-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 24%, rgba(255,255,255,0.52) 40%, rgba(255,255,255,0.08) 66%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0) 30%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
  min-width: 0;
  margin-top: 0;
}
.hero-eyebrow { display: none; }
.hero-title {
  font-size: clamp(33px, 4vw, 57px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--primary);
  margin-bottom: 28px;
  text-shadow: 0 8px 28px rgba(255,255,255,0.88);
}
.hero-title em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}
.hero-title em::after { display: none; }
.hero-catch {
  display: inline-block;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 800;
  color: var(--text);
  background: transparent;
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  text-shadow: none;
}
.hero-catch span {
  display: inline-block;
}
.hero-catch .ch {
  display: inline-block;
  opacity: 0;
}
.hero-catch.in {
  animation: catch-bar 0.3s ease 0.35s both;
}
.hero-catch.in .ch {
  animation: ch-in 0.08s ease calc(0.39s + var(--i) * 0.02s) forwards;
}
@keyframes catch-bar {
  from { background: transparent; }
  to   { background: linear-gradient(90deg, rgba(0,104,48,1) 0%, rgba(104,184,40,1) 100%); }
}
@keyframes ch-in {
  from { opacity: 0; transform: translateY(6px); color: transparent; }
  to   { opacity: 1; transform: translateY(0);   color: #fff; }
}
.hero-desc {
  font-size: 16px;
  line-height: 2;
  color: #173D35;
  margin-bottom: 46px;
  max-width: 520px;
  text-shadow: 0 4px 18px rgba(255,255,255,0.9);
}
.hero-actions {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 16px;
  z-index: 2;
}
.hero .btn-primary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: none;
  font-size: 12px;
}
.hero .btn-primary::after {
  display: none;
}
.hero .btn-primary:hover {
  background: var(--primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
}
.hero .hero-link {
  color: #0B3B30;
  border-color: rgba(0, 104, 48, 0.65);
  text-shadow: 0 4px 18px rgba(255,255,255,0.9);
}
.hero .hero-link:hover { color: var(--primary); border-color: var(--primary); }
.hero-link-left {
  position: absolute;
  bottom: 48px;
  left: clamp(36px, 6vw, 72px);
  z-index: 2;
}

/* ================================================================
   VISION — 3 cards on white
================================================================ */
.vision-head { text-align: center; margin-bottom: 64px; }
.vision-head .section-label { justify-content: center; }
.vision-head .section-sub { margin: 0 auto; text-align: center; }
#vision { background: #fff; }

.vision-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1180px; margin: 0 auto; padding: 0 28px;
  align-items: start;
}
.vision-card {
  background: #F7F8F7;
  border-radius: 16px;
  padding: 0 0 24px;
  display: flex; flex-direction: column; gap: 0;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.vision-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,32,22,0.08); border-color: rgba(27,126,62,0.5); }
.vision-card-num {
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; color: #62B91E;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 22px 28px 0;
}
.vision-card-num::before { display: none; }
.vision-thumb {
  width: 100%; aspect-ratio: 16/10; border-radius: 0;
  overflow: hidden; background: #E8EAE5; margin-bottom: 0;
}
.vision-thumb img { width:100%; height:100%; object-fit: cover; }
.vision-card-title {
  font-size: 20px; font-weight: 800; line-height: 1.45; color: var(--primary);
  margin: 16px 28px 14px;
}
.vision-card-body {
  font-size: 14px; line-height: 1.8; color: var(--primary);
  margin: 0 28px;
}

.vision-connector {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.vision-connector-wrap {
  position: relative;
}
.vision-connector-spacer {
  height: 110px;
}
.vision-connector-badge {
  position: relative;
  margin: 0 auto;
  padding: 12px 28px;
  background: var(--primary);
  border-radius: 6px;
  width: fit-content;
  max-width: 100%;
}
.vision-connector-text {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  white-space: normal;
  overflow-wrap: anywhere;
}

.vision-approach {
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 408px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(23, 91, 49, 0.08);
  transition: transform .7s ease, box-shadow .7s ease, border-color .7s ease;
}
.vision-approach:hover {
  transform: translateY(-4px);
  border-color: rgba(27,126,62,0.5);
  box-shadow:
    -6px 8px 10px rgba(0, 104, 48, 0.25),
    0 4px 4px rgba(0, 104, 48, 0.25),
    0 16px 40px rgba(27, 126, 62, 0.18);
}
.vision-approach-copy {
  padding: 52px 36px 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vision-approach-lead {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.vision-approach-title {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 900;
  color: #12221B;
  letter-spacing: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.vision-approach-title span {
  color: var(--primary);
}
.vision-approach-rule {
  width: 44px;
  height: 4px;
  margin: 20px 0 22px;
  background: var(--primary);
}
.vision-approach-body {
  font-size: 15px;
  color: #21332A;
  line-height: 2.05;
  max-width: 480px;
}
.vision-approach-flow {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 34px;
}
.vision-approach-flow-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.88);
  border: 1px solid #DDECE3;
  box-shadow: 0 8px 24px rgba(14, 92, 44, 0.08);
  color: #12221B;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.vision-approach-flow-item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #55B86E;
}
.vision-os-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.vision-os-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================================================================
   BUSINESS DOMAIN — circular map
================================================================ */
.section-card.bizdom { background: #F1F3F1; }
.bizdom,
#value {
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
  max-width: none;
  width: calc(100% + var(--gutter) * 2);
  border-radius: 0;
  padding: clamp(48px, 5vw, 72px) 0;
}
.bizdom .wrap { padding-left: 48px; padding-right: 48px; }
.bizdom-hero {
  display: flex;
  flex-direction: column;
  gap: 46px;
  align-items: center;
  margin-bottom: 56px;
}
.bizdom-copy {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.bizdom-copy .section-label { justify-content: center; }
.bizdom-copy .section-heading {
  font-size: clamp(34px, 4.8vw, 54px);
  margin-bottom: 18px;
}
.bizdom-headline {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.bizdom-headline mark {
  background: linear-gradient(transparent 58%, #C7F0A2 58%);
  padding: 0 4px;
  color: var(--primary);
}
.bizdom-note {
  max-width: 620px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--muted);
  line-height: 2;
}
.bizdom-diagram {
  position: relative;
  min-height: 560px;
  width: min(100%, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bizdom-orbit {
  position: absolute;
  width: min(92%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 104, 48, 0.42);
}
.bizdom-orbit::before,
.bizdom-orbit::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
.bizdom-orbit::before { left: 11%; top: 17%; }
.bizdom-orbit::after { right: 13%; bottom: 16%; background: #087D80; }
.bizdom-wheel {
  position: relative;
  width: min(72vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 46px rgba(11,32,22,0.12);
}
.bizdom-wheel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.78), rgba(255,255,255,0.12)),
    conic-gradient(from -30deg, rgba(0,120,118,0.9) 0 120deg, rgba(115,170,26,0.88) 120deg 240deg, rgba(0,104,48,0.86) 240deg 360deg);
}
.bizdom-wheel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(30deg, transparent 49.4%, #fff 49.7% 50.3%, transparent 50.6%),
    linear-gradient(150deg, transparent 49.4%, #fff 49.7% 50.3%, transparent 50.6%),
    linear-gradient(270deg, transparent 49.4%, #fff 49.7% 50.3%, transparent 50.6%);
  opacity: 0.95;
}
.wheel-slice {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.28);
}
.wheel-region { left: 24%; top: 36%; }
.wheel-education { right: 16%; top: 35%; }
.wheel-digital { left: 43%; bottom: 18%; transform: translateX(-50%); }
.wheel-en { font-family: var(--font-en); font-size: 28px; font-weight: 800; line-height: 1; }
.wheel-ja { font-size: 17px; font-weight: 800; }
.bizdom-center {
  position: absolute;
  z-index: 4;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 154px;
  height: 154px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  border: 1.5px dotted rgba(0,104,48,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(11,32,22,0.1);
  text-align: center;
}
.bizdom-center-brand { font-family: var(--font-en); font-size: 20px; font-weight: 800; color: var(--primary); }
.bizdom-center-sub { font-size: 12px; font-weight: 700; color: var(--muted); }
.bizdom-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  z-index: 5;
}
.bizdom-node span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,104,48,0.3);
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(11,32,22,0.06);
}
.bizdom-node svg { width: 28px; height: 28px; }
.node-left-top { left: 0; top: 22%; flex-direction: row-reverse; }
.node-left-mid { left: -8%; top: 47%; flex-direction: row-reverse; }
.node-left-bottom { left: 0; bottom: 21%; flex-direction: row-reverse; }
.node-right-top { right: 0; top: 22%; }
.node-right-mid { right: -7%; top: 47%; }
.node-right-bottom { right: 0; bottom: 21%; }
.bizdom-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bizdom-domain-card {
  background: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(0,104,48,0.18);
  border-radius: 16px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
}
.bizdom-card-media {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.card-region .bizdom-card-media { background-image: linear-gradient(rgba(115,170,26,0.28), rgba(115,170,26,0.28)), url("../img/sec1-01.png"); }
.card-education .bizdom-card-media { background-image: linear-gradient(rgba(0,104,48,0.28), rgba(0,104,48,0.28)), url("../img/sec1-02.png"); }
.card-digital .bizdom-card-media { background-image: linear-gradient(rgba(0,120,118,0.26), rgba(0,120,118,0.26)), url("../img/fv_top.png"); }
.bizdom-domain-card h3 {
  font-family: var(--font-en);
  font-size: 20px;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 8px;
}
.bizdom-domain-card h3 span {
  font-family: var(--font-ja);
  font-size: 13px;
  margin-left: 6px;
}
.bizdom-domain-card h3::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  margin-top: 12px;
  margin-bottom: 14px;
}
.bizdom-domain-card p {
  font-size: 12px;
  line-height: 1.75;
  color: var(--muted);
}
.bizdom-card-tags {
  grid-column: 1 / -1;
  border-top: 1.5px dotted rgba(0,104,48,0.22);
  margin-top: 12px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 6px;
}
.bizdom-card-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,104,48,0.24);
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

/* ================================================================
   CONCEPT
================================================================ */
.concept-section {
  background:
    radial-gradient(circle at 48% 50%, rgba(232,245,236,0.75) 0%, rgba(255,255,255,0) 42%),
    var(--surface);
  padding: clamp(48px, 5vw, 72px) 0;
}
.concept-inner {
  display: grid; grid-template-columns: minmax(280px, 0.85fr) minmax(400px, 1.35fr) minmax(300px, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  align-items: start;
  min-height: 620px;
}
.concept-copy .section-heading {
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.45;
  margin-bottom: 28px;
  white-space: nowrap;
}
.concept-stack {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.concept-stack-img {
  width: min(128%, 560px);
  max-width: none;
  height: auto;
  transform: translateX(-3%);
  filter: drop-shadow(0 28px 42px rgba(10,63,31,0.08));
}
.concept-layer-notes {
  position: relative;
  min-height: 620px;
}
.concept-layer-note {
  position: absolute;
  left: 0;
  width: 100%;
  padding-left: 24px;
}
.concept-layer-note:nth-child(1) { top: 22%; transform: translateY(-50%); }
.concept-layer-note:nth-child(2) { top: 50%; transform: translateY(-50%); }
.concept-layer-note:nth-child(3) { top: 77%; transform: translateY(-50%); }
.concept-layer-note.fade-up { transform: translateY(calc(-50% + 40px)); }
.concept-layer-note.fade-up.in { transform: translateY(-50%); }
.concept-layer-note.fade-up.delay-1 { transition-delay: 1.0s; }
.concept-layer-note.fade-up.delay-2 { transition-delay: 1.3s; }
.concept-layer-note.fade-up.delay-3 { transition-delay: 1.6s; }
.concept-layer-note::before {
  content: '';
  position: absolute;
  top: 14px;
  right: 100%;
  width: clamp(130px, 18vw, 220px);
  height: 20px;
  border-top: 1px solid var(--primary);
  border-left: 1px solid var(--primary);
}
.concept-layer-note::after {
  content: '';
  position: absolute;
  top: 27px;
  right: calc(100% + clamp(130px, 18vw, 220px) - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,104,48,1) 0%, rgba(104,184,40,1) 100%);
  border: 1.5px solid #fff;
  box-shadow: none;
}
.concept-layer-tag {
  font-family: var(--font-en); font-size: 12px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.concept-layer-title {
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 900;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 8px;
}
.concept-layer-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
}

/* ================================================================
   5 SOLUTIONS
================================================================ */
.solutions5 {
  background:
    radial-gradient(circle at 62% 46%, rgba(35, 160, 75, 0.24) 0%, rgba(0, 0, 0, 0) 36%),
    linear-gradient(135deg, #006830 0%, #007A36 48%, #005929 100%);
  margin-top: 48px;
  margin-bottom: 48px;
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.solutions5-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 0 36px;
  align-items: stretch;
}
.solutions5-left {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.solutions5-left .section-heading { color: #fff; margin-bottom: 18px; }
.solutions5-left .section-label { color: rgba(255,255,255,0.85); justify-content: center; }
.solutions5-left .section-label::before { background: rgba(255,255,255,0.85); }
.solutions5 .fade-up.in .section-label {
  animation: section-bar-white 0.25s ease 0.1s both;
}
@keyframes section-bar-white {
  from { background: transparent; }
  to   { background: rgba(255,255,255,0.18); }
}
.solutions5-lede {
  font-size: 15px; line-height: 2.05;
  color: rgba(255,255,255,0.86);
  max-width: 680px;
  margin: 0 auto;
}
.solutions5-main { min-width: 0; width: 100%; }
.solutions5-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.sol5-card {
  position: relative; background: #fff; border-radius: 22px;
  padding: 26px 24px 24px; color: var(--text);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s;
}
.solutions5 .sol5-card-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}
.solutions5 .sol5-card-stack .sol5-card {
  width: 100%;
}
.sol5-card:hover { transform: translateY(-4px); }
.sol5-card::after {
  content: ''; position: absolute; left: 32px; bottom: -11px;
  width: 24px; height: 19px; background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.sol5-card-row { display: flex; align-items: flex-start; justify-content: space-between; }
.sol5-card-num {
  font-family: var(--font-en); font-size: clamp(36px, 3.2vw, 52px); font-weight: 800;
  line-height: 1; color: var(--primary);
}
.sol5-card-art {
  width: 64px; height: 64px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.sol5-card-art img {
  width: 100%; height: 100%; object-fit: contain; object-position: top center;
}
.sol5-card-title { font-size: 18px; font-weight: 800; color: var(--primary); margin-top: 2px; line-height: 1.4; }
.sol5-card-sub { font-size: 13px; line-height: 1.85; color: #111; }
.solutions5 .sol5-card-labels {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
  width: 100%;
}
.solutions5 .sol5-card-labels span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 10px;
  background: #F0F3B6;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.sol5-foot {
  margin-top: 48px; text-align: center;
  font-size: clamp(24px, 3.2vw, 38px); font-weight: 800; color: #fff;
  line-height: 1.5;
}
.solutions5 .fade-up.delay-1 { transition-delay: 0.2s; }
.solutions5 .fade-up.delay-2 { transition-delay: 0.4s; }
.solutions5 .fade-up.delay-3 { transition-delay: 0.6s; }
.solutions5 .fade-up.delay-4 { transition-delay: 0.8s; }
.solutions5 .fade-up.delay-5 { transition-delay: 1.0s; }

.sol5-foot mark {
  display: inline-block;
  padding: 4px 16px;
  background: transparent;
  color: #fff;
}
.sol5-foot.in mark {
  animation: mark-highlight 0.55s ease 2.1s forwards;
}
@keyframes mark-highlight {
  from { background: transparent; color: #fff; }
  to   { background: #DDF0A2;    color: var(--primary); }
}

/* ================================================================
   SERVICE DETAILS — text-only business list
================================================================ */
.service-details {
  background:
    radial-gradient(circle at 72% 18%, rgba(221,240,226,0.72) 0%, rgba(255,255,255,0) 34%),
    var(--surface);
  padding: clamp(48px, 5vw, 72px) 0;
}
.service-details-head {
  max-width: 1040px;
  margin-bottom: 46px;
}
.service-details-head .section-sub {
  white-space: nowrap;
}
.service-detail-list {
  border-top: 1px solid var(--border);
}
.service-detail-row {
  display: grid;
  grid-template-columns: 54px minmax(260px, 390px) 1fr;
  gap: 22px;
  align-items: start;
  padding: 34px 0 34px 20px;
  min-height: 200px;
  border-bottom: 1px solid var(--border);
  transition: background .25s;
  cursor: default;
}
.service-detail-row:hover {
  background: var(--mint-soft);
}
.service-detail-num {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  padding-top: 8px;
}
.service-detail-title {
  position: relative;
  min-height: 58px;
  font-size: clamp(22px, 2.15vw, 28px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--primary);
}
.service-detail-title span {
  font-size: 0.66em;
  letter-spacing: 0.02em;
}
.service-detail-body p {
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  color: var(--text);
  margin-bottom: 14px;
}
.service-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 16px;
  border: 1px solid var(--primary);
  border-radius: 5px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

/* ================================================================
   STRENGTH — editorial 3 columns
================================================================ */
#strength {
  background: var(--surface);
  color: var(--text);
  padding: clamp(48px, 5vw, 72px) 0;
}
#strength::before {
  display: none;
}
.strength-v2-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(70px, 9vw, 132px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 72px);
}
.strength-v2-left {
  max-width: 360px;
  margin: 36px 0 0;
}
.strength-v2-left .section-label {
  color: var(--primary);
  margin-bottom: 14px;
}
.strength-v2-left .section-label::before { background: var(--primary); }
.strength-v2-left .section-label::after { display: none; }
#strength .fade-up.in .section-label {
  animation: section-bar 0.25s ease 0.1s both;
}
#strength .fade-up.in .section-label::before {
  background: rgba(255,255,255,0.65);
}
.strength-v2-left .section-heading {
  color: var(--text);
  font-family: var(--font-ja);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.strength-v2-left .section-sub {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.01em;
  max-width: 640px;
}
.strength-v2-body {
  max-width: none;
  margin: 0;
  width: 100%;
}
.strength-v2-cards {
  position: relative;
  min-height: clamp(1020px, 85vw, 1100px);
}
.sv2-card {
  position: absolute;
  z-index: 0;
  width: min(340px, 45%);
  min-height: 0;
  padding: 36px 0 42px;
  text-align: left;
}
.sv2-card:nth-child(1) { top: 0; left: 2%; }
.sv2-card:nth-child(2) { top: 300px; right: 0; }
.sv2-card:nth-child(3) { top: 610px; left: 10%; bottom: auto; }
.sv2-card::before {
  content: '';
  position: absolute;
  width: 390px;
  height: 390px;
  aspect-ratio: 1 / 1;
  border: 1.25px solid rgba(0, 153, 84, 0.46);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.sv2-card:nth-child(1)::before {
  top: 0;
  left: calc(36% - 196px);
  transform: rotate(28deg);
}
.sv2-card:nth-child(2)::before {
  top: 0;
  left: calc(36% - 188px);
  border-top-color: rgba(0, 143, 208, 0.46);
  border-right-color: rgba(0, 143, 208, 0.46);
  transform: rotate(6deg);
}
.sv2-card:nth-child(3)::before {
  top: 0;
  left: calc(36% - 226px);
  border-top-color: rgba(118, 84, 216, 0.48);
  border-right-color: rgba(118, 84, 216, 0.48);
  transform: rotate(198deg);
}
.sv2-card::after {
  content: '';
  position: absolute;
  left: 36%;
  top: 42px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,153,84,0.18) 0%, rgba(0,153,84,0.14) 34%, rgba(0,153,84,0.09) 58%, rgba(0,153,84,0.04) 76%, transparent 90%);
  filter: blur(8px);
  z-index: -2;
}
.sv2-card + .sv2-card::before {
  display: block;
}
.sv2-num {
  position: relative;
  display: inline-block;
  font-family: var(--font-en);
  font-size: clamp(42px, 4.3vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 34px;
}
.sv2-num::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 26px;
  height: 2px;
  background: currentColor;
}
.sv2-title {
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 900;
  color: #101816;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin-bottom: 8px;
}
.sv2-en {
  font-family: var(--font-en);
  font-size: clamp(16px, 1.45vw, 23px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.sv2-body {
  max-width: 270px;
  margin: 0;
  font-size: clamp(13px, 1.18vw, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.sv2-card:nth-child(2)::after {
  background: radial-gradient(circle, rgba(0,143,208,0.19) 0%, rgba(0,143,208,0.14) 34%, rgba(0,143,208,0.09) 58%, rgba(0,143,208,0.04) 76%, transparent 90%);
}
.sv2-card:nth-child(3)::after {
  background: radial-gradient(circle, rgba(118,84,216,0.20) 0%, rgba(118,84,216,0.15) 34%, rgba(118,84,216,0.10) 58%, rgba(118,84,216,0.05) 76%, transparent 90%);
  top: -80px;
}
.sv2-card:nth-child(1)::after {
  left: 58%;
  top: -20px;
}
.sv2-card:nth-child(1) .sv2-num,
.sv2-card:nth-child(1) .sv2-en { color: #009954; }
.sv2-card:nth-child(2) .sv2-num,
.sv2-card:nth-child(2) .sv2-en { color: #008fd0; }
.sv2-card:nth-child(3) .sv2-num,
.sv2-card:nth-child(3) .sv2-en { color: #7654d8; }

/* ================================================================
   VALUE
================================================================ */
.value-head { text-align: center; margin-bottom: 72px; }
.value-head .section-label { justify-content: center; }
.value-head .section-sub { margin: 0 auto; }
.stakeholder-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1080px; margin: 0 auto; padding: 0 28px;
}
.sh-card {
  border-radius: 16px; padding: 48px 36px; min-height: 320px;
  box-shadow: 0 4px 28px rgba(11,32,22,0.22);
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.sh-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11,50,26,0.62) 0%, rgba(11,32,22,0.82) 100%);
  z-index: 0;
}
.sh-card > * { position: relative; z-index: 1; }
.sh-card:nth-child(1) { background-image: url(../img/our_value_01.png); }
.sh-card:nth-child(2) { background-image: url(../img/our_value_02.png); }
.sh-card:nth-child(3) { background-image: url(../img/our_value_03.png); }
.sh-icon {
  position: absolute;
  top: 48px;
  left: 36px;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.sh-icon svg { stroke: white; }
.sh-title {
  font-size: 20px; font-weight: 800; color: white; margin-bottom: 14px;
}
.sh-list {
  list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px;
  min-height: 94px;
}
.sh-list li {
  font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.85);
  padding-left: 18px; position: relative;
}
.sh-list li::before {
  content: ''; position: absolute; left: 0; top: 0.65em;
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.65);
}

/* ================================================================
   ROADMAP
================================================================ */
#roadmap,
#topics {
  padding: clamp(48px, 5vw, 72px) 0;
}
.roadmap-f-head { text-align: center; margin-bottom: 56px; }
.roadmap-f-head .section-label { justify-content: center; }
.roadmap-f-head .section-sub { margin: 0 auto; }
.roadmap-f-banners {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-bottom: 24px; max-width: 1100px; padding: 0 28px;
  margin-left: auto; margin-right: auto;
}
.rf-banner {
  height: 120px;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 50%, calc(100% - 32px) 100%, 0 100%, 32px 50%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; position: relative;
}
.rf-banner:first-child { clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 50%, calc(100% - 32px) 100%, 0 100%); }
.rf-banner svg { width: 44px; height: 44px; opacity: 0.95; }
.rf-banner:not(:first-child) svg { transform: translateX(8px); }
.rf-b1 { background: #4FA66E; }
.rf-b2 { background: #2F8E50; }
.rf-b3 { background: #1B7E3E; }
.rf-b4 { background: #0A6232; }
.roadmap-f-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: 1100px; padding: 0 28px; margin: 0 auto;
}
.rf-step { display: flex; flex-direction: column; gap: 6px; }
.rf-num   { font-family: var(--font-en); font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1; }
.rf-label { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--accent); }
.rf-title { font-size: 17px; font-weight: 800; color: var(--text); margin-top: 4px; }
.rf-body  { font-size: 12px; line-height: 1.85; color: var(--muted); margin-top: 4px; }

/* ================================================================
   ABOUT
================================================================ */
.ceo-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 48%;
}
.ceo-quote-heading {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.6;
  color: var(--primary);
  white-space: nowrap;
}
.ceo-body {
  font-size: 15px;
  line-height: 2;
  color: var(--muted);
}
.ceo-cite {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.ceo-message-section,
.about-section {
  padding: clamp(48px, 5vw, 72px) 0;
}
.section-card.ceo-message-section,
.section-card.about-section {
  margin-bottom: 96px !important;
}
.section-card.ceo-message-section {
  overflow: visible;
}
.ceo-message-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ceo-message-photo-layer {
  position: absolute;
  left: 50%;
  right: -20%;
  top: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}
.ceo-message-photo-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.80) 10%,
    rgba(255,255,255,0.30) 22%,
    rgba(255,255,255,0.05) 35%,
    rgba(255,255,255,0) 45%
  );
  z-index: 1;
  pointer-events: none;
}
.ceo-message-photo-layer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.about-simple {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.about-simple > .section-heading {
  margin-bottom: 72px;
}
.ceo-text .section-heading {
  margin-bottom: 16px;
}
.about-simple .section-label,
.topics-head .section-label {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.ceo-message-inner .section-label {
  align-self: flex-start;
}
.ceo-text-photo {
  display: none;
}

.about-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: 0; overflow: hidden;
}
.about-table tr { border-bottom: 1px solid var(--border); }
.about-table tr:last-child { border-bottom: none; }
.about-table th, .about-table td { padding: 14px 10px; text-align: left; vertical-align: top; font-size: 14px; }
.about-table th { width: 30%; color: var(--text); font-weight: 700; background: transparent; }
.about-table td { color: var(--text); line-height: 1.8; }

/* ================================================================
   TOPICS — j-akiya inspired horizontal news rows
================================================================ */
.topics-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 40px; padding: 0 28px;
}
.topics-head > div {
  width: 100%;
  text-align: center;
}
.news-list {
  background: #fff; border-radius: 24px;
  padding: 8px 32px; max-width: 1100px;
  margin: 0 auto;
}
.news-row {
  display: grid; grid-template-columns: 110px 110px 1fr 24px;
  align-items: center; gap: 24px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--border);
  transition: background .25s;
}
.news-row:last-child { border-bottom: none; }
.news-row:hover { background: var(--mint-soft); border-radius: 12px; }
.news-date { font-family: var(--font-en); font-size: 13px; font-weight: 600; color: var(--muted); }
.news-cat {
  display: inline-flex; align-items: center; justify-content: center;
  width: fit-content;
  padding: 4px 12px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; text-align: center;
  background: var(--mint); color: var(--primary);
}
.news-cat.cat-press { background: #ECF2FF; color: #2853A8; }
.news-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.6; }
.news-row svg { color: var(--muted); justify-self: end; }

/* ================================================================
   CONTACT — big green CTA card
================================================================ */
.contact-card {
  background-image: url(../img/contact_01.png);
  background-size: cover; background-position: center;
  color: #fff;
  border-radius: var(--r-card-lg);
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px);
  margin: 12px auto;
  max-width: 1240px;
  text-align: center;
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11,50,26,0.68) 0%, rgba(11,32,22,0.82) 100%);
  z-index: 0;
}
.contact-card::after { display: none; }
.contact-card .section-label {
  color: rgba(255,255,255,0.85);
  position: relative; z-index: 1;
}
.contact-card .section-label::before {
  background: rgba(255,255,255,0.85);
}
.contact-card.fade-up.in .section-label {
  animation: section-bar-white 0.25s ease 0.1s both;
}
.contact-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  line-height: 1.4; color: #fff; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.contact-body {
  font-size: 15px; line-height: 2; color: rgba(255,255,255,0.85);
  margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.contact-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; position: relative; z-index: 1; }

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: #F7F8F7;
  color: var(--muted);
  padding: 40px 0 26px;
  margin-top: 48px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px; padding: 0 28px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 0; }
.footer-logo img { height: 26px; width: auto; opacity: 0.9; }
.footer-nav { min-width: 0; }
.footer-links { list-style: none; display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px 22px; align-items: center; justify-content: flex-start; }
.footer-links a { font-size: 12px; font-weight: 700; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  max-width: 1180px;
  margin: 20px auto 0; padding: 14px 28px 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: center;
  text-align: center;
  font-size: 11px; color: var(--muted);
}

/* ================================================================
   SCROLL ANIMATIONS
================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* 課題・事業領域・共創価値カードは1枚表示完了ごとに次を開始 */
#vision .vision-card.fade-up.delay-2,
#domain .bizdom-domain-card.fade-up.delay-2,
#value .sh-card.fade-up.delay-2 { transition-delay: 0.45s; }

#vision .vision-card.fade-up.delay-3,
#domain .bizdom-domain-card.fade-up.delay-3,
#value .sh-card.fade-up.delay-3 { transition-delay: 0.9s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ================================================================
   HAMBURGER / DRAWER NAV
================================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 999;
  pointer-events: none;
}
.nav-drawer.is-open { pointer-events: auto; }
.nav-drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(11,32,22,0.28);
  opacity: 0; transition: opacity 0.3s ease;
}
.nav-drawer.is-open .nav-drawer-overlay { opacity: 1; }
.nav-drawer-inner {
  position: absolute; top: 0; right: 0;
  width: min(300px, 80vw); height: 100%;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 88px 24px 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform 0.3s ease;
  box-shadow: -8px 0 32px rgba(11,32,22,0.12);
  overflow-y: auto;
}
.nav-drawer.is-open .nav-drawer-inner { transform: translateX(0); }
.nav-drawer-link {
  display: block; padding: 14px 18px;
  font-size: 15px; font-weight: 700; color: var(--text);
  border-radius: 10px; transition: background 0.2s;
}
.nav-drawer-link:hover { background: var(--mint-soft); color: var(--primary); }
.nav-drawer-cta {
  width: 50%;
  min-width: 132px;
  margin-top: 12px;
  text-align: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(0,104,48,1) 0%, rgba(104,184,40,1) 100%);
  color: #fff !important; border-radius: 10px;
  padding: 11px 14px; font-size: 13px;
}
.nav-drawer-cta:hover { background: linear-gradient(90deg, rgba(0,104,48,1) 0%, rgba(27,126,62,1) 100%); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 980px) {
  body::after {
    content: '';
    position: fixed;
    top: 16px;
    left: calc(100vw - 64px);
    left: calc(100dvw - 64px);
    right: auto;
    z-index: 1002;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background:
      linear-gradient(#fff, #fff) center 15px / 22px 2px no-repeat,
      linear-gradient(#fff, #fff) center 23px / 22px 2px no-repeat,
      linear-gradient(#fff, #fff) center 31px / 22px 2px no-repeat,
      linear-gradient(135deg, rgba(0,104,48,1) 0%, rgba(104,184,40,1) 100%);
    box-shadow: -4px 7px 12px rgba(0, 104, 48, 0.18);
    pointer-events: none;
  }
  .site-nav { display: none; }
  .site-header {
    top: 16px;
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
  }
  .site-header::after {
    display: none;
  }
  .header-inner {
    height: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .logo {
    min-height: 48px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .logo img { height: 27px; }
  .hamburger {
    display: flex !important;
    position: fixed;
    top: 16px;
    left: calc(100vw - 64px);
    left: calc(100dvw - 64px);
    right: auto;
    z-index: 1001;
    opacity: 1;
    visibility: visible;
    width: 48px;
    height: 48px;
    padding: 14px 12px;
    margin-left: auto;
    background: linear-gradient(135deg, rgba(0,104,48,1) 0%, rgba(104,184,40,1) 100%);
    border-radius: 999px;
    box-shadow: -4px 7px 12px rgba(0, 104, 48, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .hamburger span { background: #fff; }
  .hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .section-label {
    justify-content: center;
    align-self: center;
    text-align: center;
  }
  .section-heading {
    text-align: center;
  }
  .hero {
    margin: 0 calc(var(--gutter) * -1) 16px;
    min-height: 540px;
    padding: 78px 28px 28px;
    border-radius: 0;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .hero-bg {
    inset: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
  }
  .hero-bg-fade {
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 36%, rgba(255,255,255,0.52) 62%, rgba(255,255,255,0.16) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.08) 42%, rgba(255,255,255,0.8) 100%);
  }
  .hero-title {
    font-size: clamp(27px, 7.3vw, 36px);
    line-height: 1.25;
    overflow-wrap: anywhere;
    margin-bottom: 18px;
  }
  .hero-catch {
    font-size: clamp(10px, 3vw, 12px);
    margin-bottom: 10px;
    padding: 4px 10px;
  }
  .hero-catch,
  .hero-desc {
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  .hero-desc {
    font-size: 12px;
    line-height: 1.85;
    margin-bottom: 22px;
    max-width: 330px;
  }
  .hero-desc br { display: none; }
  .hero-actions {
    position: static;
    margin-top: 0;
    align-self: flex-start;
  }
  .hero-link-left { bottom: 28px; right: 28px; left: auto; font-size: 12px; }
  .hero .btn-primary {
    padding: 12px 16px 12px 20px;
    font-size: 12px;
  }
  .mobile-break { display: block; }
  .vision-grid { grid-template-columns: 1fr; }
  .vision-card,
  .vision-card-title,
  .vision-card-body,
  .bizdom-domain-card,
  .bizdom-domain-card p {
    min-width: 0;
    overflow-wrap: anywhere;
    line-break: strict;
  }
  .vision-approach {
    grid-template-columns: 1fr;
    margin: 0 28px;
  }
  .vision-approach-copy {
    padding: 40px 28px 26px;
  }
  .vision-approach-title {
    font-size: 30px;
  }
  .vision-approach-body br {
    display: none;
  }
  .vision-approach-flow {
    gap: 8px;
    margin-top: 26px;
    flex-wrap: wrap;
  }
  .vision-approach-flow-item {
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
    white-space: normal;
  }
  .concept-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-row {
    grid-template-columns: 54px 1fr;
    gap: 18px 18px;
  }
  .service-detail-body {
    grid-column: 2;
  }
  .concept-inner { min-height: 0; }
  .concept-copy {
    text-align: center;
  }
  .concept-copy .section-heading {
    white-space: normal;
    margin-left: auto;
    margin-right: auto;
  }
  .concept-copy .section-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .concept-stack {
    min-height: 520px;
    width: min(100%, 520px);
    margin: 0 auto;
  }
  .concept-stack-img {
    width: min(100%, 480px);
    transform: none;
  }
  .concept-layer-notes {
    position: static;
    min-height: 0;
    display: grid;
    gap: 18px;
    width: 100%;
    overflow: visible;
  }
  .concept-layer-note {
    position: relative;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    width: 100%;
    padding: 22px 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.78);
    border-radius: 18px;
    overflow-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
  }
  .concept-layer-note::before,
  .concept-layer-note::after {
    display: none;
  }
  .strength-v2-inner {
    display: block;
  }
  .strength-v2-left {
    max-width: 640px;
    margin: 0 auto 72px;
    text-align: center;
  }
  .strength-v2-cards {
    min-height: 880px;
  }
  .sv2-card:nth-child(1) { top: 0; left: 0; }
  .sv2-card:nth-child(2) { top: 310px; right: 0; }
  .sv2-card:nth-child(3) { top: 620px; left: 6%; }
  .sv2-card::before {
    width: 320px;
    height: 320px;
    aspect-ratio: 1 / 1;
  }
  .sv2-card {
    padding: 0 8px;
  }
  .sv2-card::after {
    width: 360px;
    height: 360px;
    top: 54px;
  }
  .sv2-body {
    max-width: 250px;
    line-height: 2;
  }
  .solutions5-inner { gap: 48px; }
  .bizdom .wrap { padding-left: 28px; padding-right: 28px; }
  .bizdom-hero { gap: 36px; }
  .bizdom-diagram { min-height: 520px; width: 100%; }
  .bizdom-node b { display: none; }
  .node-left-mid { left: 0; }
  .node-right-mid { right: 0; }
  .bizdom-cards { grid-template-columns: 1fr; }
  .solutions5-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-f-banners { display: none; }
  .roadmap-f-steps { grid-template-columns: 1fr; gap: 0; }
  .rf-step {
    background: #fff; border: 1.5px solid var(--border);
    border-radius: 16px; padding: 20px 20px 24px;
    position: relative;
  }
  .rf-step + .rf-step { margin-top: 32px; }
  .rf-step:not(:last-child)::after {
    content: '';
    position: absolute; left: 50%; bottom: -19px;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 11px solid rgba(27,126,62,0.45);
  }
  .footer-inner { grid-template-columns: minmax(160px, 1fr) auto; gap: 32px; }
  .stakeholder-cards { grid-template-columns: 1fr; }
  .sh-list { min-height: 0; }
  .about-table th { width: 40%; }
}

@media (max-width: 768px) {
  .ceo-message-inner .section-label {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .ceo-message-section {
    display: flex;
    flex-direction: column;
  }
  .section-card.ceo-message-section {
    margin-bottom: 32px !important;
  }
  .ceo-message-photo-layer {
    display: none;
  }
  .ceo-text-photo {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 12px;
  }
  .ceo-text {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .vision-grid {
    max-width: 100%;
    padding: 0 20px;
  }
  .vision-card-num {
    padding-left: 22px;
    padding-right: 22px;
  }
  .vision-card-title,
  .vision-card-body {
    margin-left: 22px;
    margin-right: 22px;
    max-width: 280px;
  }
  .vision-connector {
    padding: 0 20px;
  }
  .vision-connector-badge {
    padding: 11px 18px;
    width: 100%;
    max-width: 270px;
  }
  .vision-connector-text {
    font-size: 12px;
  }
  .vision-approach {
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 20px;
  }
  .vision-approach-copy {
    padding: 34px 22px 22px;
    overflow: hidden;
  }
  .vision-approach-title {
    font-size: 27px;
  }
  .vision-approach-body {
    max-width: 280px;
    font-size: 13px;
    overflow-wrap: anywhere;
  }
  #strength {
    padding: 76px 0 86px;
  }
  .strength-v2-inner {
    padding: 0 24px;
  }
  .strength-v2-left {
    margin-bottom: 48px;
  }
  .strength-v2-left .section-label {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .strength-v2-left .section-heading {
    font-size: clamp(28px, 8vw, 36px);
    letter-spacing: -0.01em;
  }
  .strength-v2-left .section-sub {
    font-size: 13px;
    letter-spacing: 0.01em;
  }
  .strength-v2-left .section-sub br {
    display: none;
  }
  .strength-v2-cards {
    min-height: 0;
  }
  .sv2-card {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    margin-bottom: 52px;
  }
  .sv2-card::before,
  .sv2-card + .sv2-card::before {
    display: none;
  }
  .sv2-card::after {
    left: 50%;
    top: -60px;
    width: 360px;
    height: 360px;
  }
  .sv2-card:nth-child(1)::after {
    left: 50%;
    top: -60px;
  }
  .sv2-card:nth-child(3)::after {
    top: -60px;
  }
  .sv2-num {
    font-size: clamp(42px, 11vw, 52px);
    margin-bottom: 36px;
  }
  .sv2-num::after {
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
  }
  .sv2-title {
    white-space: normal;
  }
  .sv2-body {
    max-width: 310px;
    margin: 0 auto;
    letter-spacing: 0.01em;
  }
  .concept-copy .section-heading {
    font-size: clamp(24px, 6.7vw, 29px);
    line-height: 1.45;
  }
  .concept-copy .section-sub {
    margin-bottom: 28px !important;
  }
  .concept-stack {
    min-height: 380px;
  }
  .concept-stack-img {
    width: min(112%, 390px);
  }
  .concept-layer-title {
    font-size: 18px;
  }
  .concept-layer-desc {
    font-size: 13px;
    line-height: 1.85;
  }
  /* H2: Topics news-row — 2段構成 */
  .news-row {
    grid-template-columns: minmax(76px, auto) auto 24px;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    padding: 16px 2px;
  }
  .news-date  { grid-column: 1; grid-row: 1; font-size: 12px; }
  .news-cat {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    width: auto;
    min-width: 82px;
    padding: 3px 8px;
    font-size: 10px;
    line-height: 1.4;
    white-space: nowrap;
  }
  .news-row:hover {
    background: transparent;
    border-radius: 0;
  }
  .news-title {
    grid-column: 1 / 3;
    grid-row: 2;
    min-width: 0;
    font-size: 13px;
  }
  .news-row svg {
    grid-column: 3;
    grid-row: 2;
    align-self: center;
    justify-self: end;
  }
  .topics-head { flex-direction: column; align-items: center; gap: 14px; }

  /* H4: Solutions5 — 1カラム */
  .solutions5-grid { grid-template-columns: 1fr; }
  .solutions5-lede {
    font-size: 13px;
    line-height: 1.9;
  }
  .solutions5-lede br {
    display: none;
  }
  .sol5-foot {
    max-width: 330px;
    margin: 34px auto 0;
    font-size: clamp(20px, 6.2vw, 25px);
    line-height: 1.5;
  }
  .sol5-foot mark {
    padding: 2px 8px;
  }
  .service-details-head {
    text-align: center;
  }
  .service-details-head .section-sub {
    white-space: normal;
  }
  .service-details-head .section-label {
    justify-content: center;
  }
  .service-detail-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 0;
    min-height: 0;
  }
  .service-detail-body {
    grid-column: auto;
  }
  .service-detail-title {
    min-height: 0;
    font-size: clamp(25px, 7vw, 32px);
  }
  .service-detail-body p {
    font-size: 13px;
  }
  .ceo-message-section,
  .about-section {
    padding: 52px 0;
    margin-bottom: 92px !important;
  }
  .ceo-text {
    max-width: 100%;
  }
  #about {
    padding: 56px 0;
  }
  #about .wrap {
    padding: 0 22px;
  }
  .ceo-text {
    gap: 14px;
  }
  .ceo-quote-heading {
    font-size: 18px;
    line-height: 1.55;
    white-space: normal;
  }
  .ceo-body {
    font-size: 13px;
    line-height: 1.85;
  }
  .about-table th,
  .about-table td {
    padding: 11px 6px;
    font-size: 12px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-logo {
    margin-bottom: 0;
  }
  .footer-nav {
    min-width: 0;
  }
  .footer-links {
    justify-content: flex-start;
    gap: 7px 16px;
  }

}

/* ================================================================
   INNER PAGES — page-hero
================================================================ */
.page-hero {
  background: var(--primary-dark);
  padding: 140px var(--gutter) 72px;
  margin: 0 0 16px;
}
.page-hero .section-label {
  color: rgba(255,255,255,0.65);
  padding-left: 0;
}
.page-hero .section-label::before {
  background: rgba(255,255,255,0.45);
}
.page-hero .section-label .ch { color: rgba(255,255,255,0.65); }
.page-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.page-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 2;
  max-width: 600px;
}

/* ================================================================
   CONTACT FORM
================================================================ */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 28px;
}
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.form-label-req {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.form-label-opt {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  background: var(--border);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-ja);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,126,62,0.12);
}
.form-input.is-error,
.form-textarea.is-error,
.form-select.is-error {
  border-color: #d63031;
  box-shadow: 0 0 0 3px rgba(214,48,49,0.10);
}
.form-check-input.is-error {
  outline: 2px solid #d63031;
  outline-offset: 2px;
}
.form-error-msg {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #d63031;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #b5c2ba; }
.form-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.8;
}
.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-check-input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
}
.form-check-input:checked {
  background: var(--primary);
  border-color: var(--primary);
}
.form-check-input:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.form-check-label {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}
.form-check-label a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
.form-submit {
  margin-top: 40px;
  text-align: center;
}
.form-submit .btn-primary {
  min-width: 240px;
  justify-content: center;
  font-size: 15px;
  padding: 18px 40px;
}

/* ================================================================
   CONTACT MODAL
================================================================ */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.contact-modal-overlay[hidden] { display: none; }
.contact-modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.contact-modal-icon {
  margin-bottom: 24px;
}
.contact-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.contact-modal-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 32px;
}
.contact-modal-box .btn-primary {
  min-width: 160px;
  justify-content: center;
}
@media (max-width: 540px) {
  .contact-modal-box { padding: 36px 24px 28px; }
}

/* ================================================================
   PRIVACY POLICY
================================================================ */
.privacy-body {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 48px;
}
.privacy-section {
  margin-bottom: 44px;
}
.privacy-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--primary);
  line-height: 1.5;
}
.privacy-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 2;
}
.privacy-text + .privacy-text { margin-top: 10px; }
.privacy-list {
  font-size: 14px;
  color: var(--muted);
  line-height: 2;
  padding-left: 24px;
  margin-top: 8px;
}
.privacy-list li { margin-bottom: 2px; }

@media (max-width: 980px) {
  .page-hero { padding: 120px 28px 56px; }
  .form-group-row { grid-template-columns: 1fr; }
}


/* BUSINESS DOMAIN IMAGE OVERRIDE */
#domain.bizdom {
  background: linear-gradient(180deg, #F7FAF8 0%, #F1F5F2 100%);
}
#domain .wrap {
  max-width: 1180px;
}
#domain .bizdom-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: 44px;
}
#domain .bizdom-copy {
  max-width: 420px;
  margin: 0;
  text-align: left;
}
#domain .bizdom-copy .section-label {
  justify-content: flex-start;
}
#domain .bizdom-copy .section-heading {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
#domain .bizdom-headline {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.75;
  margin-bottom: 22px;
}
#domain .bizdom-note {
  margin: 0;
  max-width: 390px;
  font-size: 14px;
  line-height: 2.05;
}
#domain .bizdom-diagram {
  width: min(100%, 325px);
  min-height: auto;
  aspect-ratio: 1;
  justify-self: center;
  display: block;
}
#domain .bizdom-diagram > :not(.bizdom-diagram-image) {
  display: none !important;
}
#domain .bizdom-diagram-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
#domain .bizdom-cards {
  gap: 24px;
}
#domain .bizdom-domain-card {
  padding: 24px 28px;
  border-radius: 12px;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 16px 42px rgba(16, 64, 38, 0.05);
}
#domain .bizdom-card-media { display: none; }
#domain .bizdom-domain-card h3 {
  font-size: 24px;
  margin-bottom: 0;
}
#domain .bizdom-domain-card h3 span {
  font-size: 15px;
  margin-left: 10px;
}
#domain .bizdom-domain-card p {
  font-size: 13px;
  line-height: 1.9;
}
#domain .bizdom-card-tags {
  margin-top: 16px;
  padding-top: 16px;
}
#domain .bizdom-card-tags span {
  min-height: 34px;
  padding: 5px 12px;
  font-size: 12px;
}

@media (max-width: 980px) {
  #domain .bizdom-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  #domain .bizdom-copy {
    max-width: 680px;
    text-align: center;
    margin: 0 auto;
  }
  #domain .bizdom-copy .section-label {
    justify-content: center;
  }
  #domain .bizdom-note {
    margin: 0 auto;
  }
  #domain .bizdom-diagram {
    width: min(100%, 560px);
    height: auto;
  }
  #domain .bizdom-cards {
    grid-template-columns: 1fr;
    align-items: stretch;
    max-width: 560px;
    margin: 0 auto;
  }
  #domain .bizdom-domain-card {
    grid-template-columns: 1fr;
    height: 100%;
    box-sizing: border-box;
  }
  #domain .bizdom-domain-card h3 { font-size: 18px; }
  #domain .bizdom-domain-card p  { font-size: 12px; }
  #domain .bizdom-card-tags span { font-size: 11px; padding: 4px 8px; }
}

@media (max-width: 560px) {
  #domain .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  #domain .bizdom-headline {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }
  #domain .bizdom-headline mark {
    display: inline-block;
  }
  #domain .bizdom-note {
    max-width: 310px;
    font-size: 13px;
  }
  #domain .bizdom-diagram {
    width: min(100%, 360px);
  }
  #domain .bizdom-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  #domain .bizdom-domain-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px;
    overflow: hidden;
  }
  #domain .bizdom-domain-card h3 {
    font-size: 20px;
  }
  #domain .bizdom-card-tags {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #domain .bizdom-domain-card p {
    max-width: 280px;
    font-size: 12px;
  }
}


/* BUSINESS DOMAIN FINAL TUNING */
@media (min-width: 981px) {
  #domain .wrap {
    max-width: 1260px;
  }
  #domain .bizdom-hero {
    grid-template-columns: minmax(420px, 0.82fr) minmax(620px, 1.18fr);
    gap: 56px;
  }
  #domain .bizdom-copy .section-heading {
    white-space: nowrap;
  }
  #domain .bizdom-diagram {
    width: min(100%, 350px);
  }
  #domain .bizdom-cards {
    gap: 28px;
  }
}
