
/* ════════════════════════════════════════════════════════
   グローバル変数・リセット
   ════════════════════════════════════════════════════════ */
:root {
  --eee-blue: #2B96D4;
  --eee-blue-dk: #1E88C8;
  --orange: #E86E00;
  --orange-dk: #C45C00;
  --ink: #0A0A0A;
  --bg: #fafaf7;
  --font-main: 'Zen Old Mincho', serif;
  --font-jp: 'Zen Kaku Gothic New', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  font-family: var(--font-jp);
  color: var(--ink);
  padding-top: 64px; /* 追尾ヘッダー分の余白 */
  /* 日本語禁則処理：句読点・助詞の泣き別れ防止 */
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}
/* 段落・見出しに明示的に適用（priority保険） */
p, h1, h2, h3, h4, h5, h6, li, dt, dd, span, a {
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}

/* ════════════════════════════════════════════════════════
   追尾ヘッダー（常時表示版・下層ページ用）
   ════════════════════════════════════════════════════════ */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43,150,212,0.08);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sticky-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sticky-header__logo img {
  height: 36px;
  width: auto;
  display: block;
}
.sticky-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.sticky-header__nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.sticky-header__nav a:hover { color: var(--orange); }
.sticky-header__nav a.is-current {
  color: var(--eee-blue);
}
.sticky-header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.sticky-header__nav a:hover::after { transform: scaleX(1); }
.sticky-header__cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-family: var(--font-jp);
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.sticky-header__cta:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
}
.sticky-header__cta::after { display: none !important; }
.sticky-header__hamburger {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(43,150,212,0.3);
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.sticky-header__hamburger span {
  display: block;
  width: 14px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s;
}

@media (max-width: 1000px) {
  .sticky-header { padding: 12px 20px; }
  .sticky-header__nav { display: none; }
  .sticky-header__hamburger { display: flex; }
  .sticky-header__logo img { height: 32px; }
}

/* ════════════════════════════════════════════════════════
   モバイルナビ
   ════════════════════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 200;
  padding: 24px;
  display: none;
  flex-direction: column;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.mobile-nav__logo img { height: 48px; }
.mobile-nav__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(43,150,212,0.3);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ink);
}
.mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav__list a {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(43,150,212,0.15);
}
.mobile-nav__list a .en {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--eee-blue);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════
   下層ヒーロー（共通テンプレート：page-hero）
   ════════════════════════════════════════════════════════ */
.page-hero {
  padding: 80px 64px 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(43,150,212,0.08);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--eee-blue) 0%, transparent 65%);
  opacity: 0.15;
  filter: blur(40px);
  pointer-events: none;
}
.page-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(43,150,212,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(43,150,212,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 90%);
}
.page-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #888;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb__sep { color: #ccc; }
.breadcrumb__current { color: var(--eee-blue); }

.page-hero__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.7em;
  color: var(--eee-blue);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-indent: 0.7em;
}
.page-hero__title {
  font-family: var(--font-main);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}
.page-hero__title em {
  font-style: italic;
  color: var(--eee-blue);
  font-weight: 500;
}
.page-hero__sub {
  font-family: var(--font-jp);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.85;
  color: #444;
  max-width: 640px;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════
   共通：セクション・タイトル
   ════════════════════════════════════════════════════════ */
.section {
  padding: 120px 64px;
  position: relative;
}
.section__bigtitle {
  text-align: center;
  margin-bottom: 80px;
}
.section__bigtitle-en {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.7em;
  color: var(--eee-blue);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-indent: 0.7em;
}
.section__bigtitle-main {
  font-family: var(--font-main);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 16px;
}
.section__bigtitle-main em { font-style: italic; color: var(--eee-blue); font-weight: 500; }
.section__bigtitle-sub {
  font-family: var(--font-jp);
  font-size: clamp(15px, 1.4vw, 20px);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-block;
  position: relative;
  padding: 0 8px;
}
.section__bigtitle-sub::before,
.section__bigtitle-sub::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: var(--eee-blue);
  opacity: 0.4;
}
.section__bigtitle-sub::before { right: 100%; margin-right: 16px; }
.section__bigtitle-sub::after { left: 100%; margin-left: 16px; }
.section__bigtitle-sub em {
  color: var(--eee-blue);
  font-style: normal;
  font-weight: 900;
}

/* ════════════════════════════════════════════════════════
   01 OPENING（冒頭ステートメント・2カラム + 抽象アート）
   ════════════════════════════════════════════════════════ */
.opening {
  background: #fff;
  border-top: 1px solid rgba(43,150,212,0.08);
  padding: 140px 64px;
  position: relative;
  overflow: hidden;
}
.opening::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--eee-blue) 0%, transparent 60%);
  opacity: 0.08;
  filter: blur(60px);
  pointer-events: none;
}
.opening__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.opening__text {
  max-width: 520px;
}
.opening__visual {
  aspect-ratio: 1 / 1;
  position: relative;
}
.opening__visual svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.opening__visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--eee-blue) 0%, transparent 70%);
  opacity: 0.18;
  filter: blur(40px);
  pointer-events: none;
}
.opening__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--eee-blue);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.opening__title {
  font-family: var(--font-main);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 36px;
}
.opening__title em {
  font-style: italic;
  color: var(--eee-blue);
  font-weight: 500;
}
.opening__sub-jp {
  font-family: var(--font-main);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
}
.opening__sub-jp .accent {
  color: var(--eee-blue);
  font-style: italic;
  font-weight: 500;
}
.opening__body {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 2;
  color: #333;
}

/* ════════════════════════════════════════════════════════
   02 ESTABLISHMENT（創業ストーリー）
   ════════════════════════════════════════════════════════ */
.establishment {
  background: var(--bg);
  border-top: 1px solid rgba(43,150,212,0.08);
  position: relative;
  overflow: hidden;
}
.establishment__bg {
  position: absolute;
  top: 10%;
  left: -150px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--eee-blue) 0%, transparent 70%);
  opacity: 0.08;
  filter: blur(50px);
  pointer-events: none;
}

.story {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ストーリー本文ブロック */
.story__intro {
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 2.1;
  color: #333;
  margin-bottom: 48px;
}
.story__intro em {
  font-style: italic;
  font-weight: 700;
  color: var(--eee-blue);
}

/* バーシーンビジュアル */
.bar-scene {
  max-width: 1080px;
  margin: 0 auto 64px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10,10,10,0.18);
  position: relative;
  z-index: 2;
}
.bar-scene svg {
  display: block;
  width: 100%;
  height: auto;
}

/* 会話の吹き出し */
.dialogue {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 64px 0;
}
.bubble {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.bubble--right { flex-direction: row-reverse; }
.bubble__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--eee-blue) 0%, var(--eee-blue-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.bubble__content {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(43,150,212,0.15);
  border-radius: 16px;
  padding: 24px 28px;
  position: relative;
}
.bubble--right .bubble__content {
  background: rgba(43,150,212,0.06);
  border-color: rgba(43,150,212,0.25);
}
.bubble__name {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 700;
  color: var(--eee-blue);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.bubble--right .bubble__name {
  text-align: right;
}
.bubble__text {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
}

/* 「実際のところ」リスト */
.reality-block {
  background: #fff;
  border: 1px solid rgba(232,110,0,0.25);
  border-radius: 8px;
  padding: 48px 40px;
  margin: 48px 0;
  position: relative;
}
.reality-block__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.reality-block__label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orange);
}
.reality-block__title {
  font-family: var(--font-main);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.reality-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  list-style: none;
}
.reality-list li {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.85;
  color: #333;
  padding-left: 22px;
  position: relative;
}
.reality-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ひらめき強調ブロック */
.spark-block {
  background: linear-gradient(135deg, rgba(43,150,212,0.06) 0%, rgba(43,150,212,0.14) 100%);
  border-left: 3px solid var(--eee-blue);
  padding: 36px 40px;
  margin: 48px 0;
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.spark-block__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}
.spark-block__icon svg {
  width: 100%;
  height: 100%;
}
.spark-block__text {
  font-family: var(--font-main);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.85;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.spark-block__text em {
  font-style: italic;
  color: var(--eee-blue);
  font-weight: 700;
}

/* 転機のセリフ（大きく目立たせる） */
.punchline {
  text-align: center;
  margin: 64px 0;
  padding: 48px 32px;
  border-top: 1px solid rgba(43,150,212,0.2);
  border-bottom: 1px solid rgba(43,150,212,0.2);
}
.punchline__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--eee-blue);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.punchline__quote {
  font-family: var(--font-main);
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--eee-blue);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.punchline__attr {
  font-family: var(--font-jp);
  font-size: 13px;
  color: #888;
  letter-spacing: 0.08em;
}

/* エンディング */
.story__outro {
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 2.1;
  color: #333;
  margin-top: 48px;
}
.story__outro em {
  font-weight: 700;
  color: var(--eee-blue);
  font-style: normal;
}

/* ════════════════════════════════════════════════════════
   03 NOW IN AI ERA
   ════════════════════════════════════════════════════════ */
.ai-era {
  background: #fff;
  border-top: 1px solid rgba(43,150,212,0.08);
  position: relative;
  overflow: hidden;
}
.ai-era::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.06;
  filter: blur(60px);
  pointer-events: none;
}
.ai-era__inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* 時間軸：2018 → 2026 */
.timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.timeline__node {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid rgba(43,150,212,0.2);
  border-radius: 8px;
}
.timeline__year {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 48px;
  font-weight: 400;
  color: var(--eee-blue);
  line-height: 1;
  margin-bottom: 12px;
}
.timeline__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline__caption {
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
}
.timeline__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline__arrow svg {
  width: 64px;
  height: 32px;
  fill: none;
  stroke: var(--eee-blue);
  stroke-width: 1;
}

/* AI時代の本文 */
.ai-era__body {
  max-width: 720px;
  margin: 0 auto;
}
.ai-era__statement {
  font-family: var(--font-main);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.55;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
  text-align: center;
}
.ai-era__statement em {
  font-style: italic;
  color: var(--eee-blue);
  font-weight: 500;
}
.ai-era__text {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 2.1;
  color: #333;
}
.ai-era__text + .ai-era__text { margin-top: 20px; }
.ai-era__text strong {
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(transparent 60%, rgba(232,110,0,0.22) 60%);
}

/* 結論ブロック */
.ai-era__conclusion {
  margin-top: 56px;
  padding: 40px;
  background: var(--bg);
  border: 1px solid rgba(43,150,212,0.2);
  border-radius: 8px;
  text-align: center;
}
.ai-era__conclusion-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--eee-blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ai-era__conclusion-text {
  font-family: var(--font-main);
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ai-era__conclusion-text em {
  font-style: italic;
  color: var(--eee-blue);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════
   04 PHILOSOPHY（思想）
   ════════════════════════════════════════════════════════ */
.philosophy {
  background: var(--bg);
  border-top: 1px solid rgba(43,150,212,0.08);
}
.philo__verbs {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.philo-card {
  background: #fff;
  border: 1px solid rgba(43,150,212,0.15);
  border-radius: 8px;
  padding: 48px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.4s;
}
.philo-card:hover {
  border-color: var(--eee-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(43,150,212,0.08);
}
.philo-card__icon {
  width: 72px;
  height: 72px;
}
.philo-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--eee-blue);
  fill: none;
  stroke-width: 1.2;
}
.philo-card__en {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #999;
  text-transform: uppercase;
}
.philo-card__jp {
  font-family: var(--font-main);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.philo-card__desc {
  font-family: var(--font-jp);
  font-size: 13.5px;
  line-height: 2;
  color: #444;
  text-align: left;
}

/* ════════════════════════════════════════════════════════
   05 COMPANY（会社概要）
   ════════════════════════════════════════════════════════ */
.company {
  background: #fff;
  border-top: 1px solid rgba(43,150,212,0.08);
}
.company__table {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid rgba(43,150,212,0.15);
}
.company__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(43,150,212,0.15);
  align-items: start;
}
.company__row dt {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--eee-blue);
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.company__row dt::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--eee-blue);
}
.company__row dd {
  font-family: var(--font-jp);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink);
}
.company__row dd strong {
  font-weight: 700;
}
.company__row dd ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.company__row dd > ul > li {
  padding-left: 18px;
  position: relative;
}
.company__row dd > ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 1.5px;
  background: var(--eee-blue);
}
/* Founders役職表記 */
.founder-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--eee-blue);
  font-weight: 600;
  text-transform: lowercase;
  margin-right: 4px;
}
/* Business サブリスト（BBB-Labo） */
.company__row-sublist {
  margin-top: 8px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.company__row-sublist li {
  padding-left: 18px;
  position: relative;
  font-size: 13px;
  color: #555;
}
.company__row-sublist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background: #aaa;
}

/* Googleマップ */
.company__location {
  max-width: 880px;
  margin: 80px auto 0;
}
.company__location-card {
  background: var(--bg);
  border: 1px solid rgba(43,150,212,0.15);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.company__location-label {
  padding: 24px 28px 16px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid rgba(43,150,212,0.1);
}
.company__location-label-en {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--eee-blue);
  font-weight: 700;
  text-transform: uppercase;
}
.company__location-label-jp {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.company__office-visual {
  flex: 1;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.company__office-visual svg {
  display: block;
  width: 100%;
  height: auto;
}
.company__office-caption {
  padding: 20px 28px;
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.85;
  color: #555;
  border-top: 1px solid rgba(43,150,212,0.1);
}

.company__map {
  width: 100%;
  height: 380px;
  background: var(--ink);
  position: relative;
}
.company__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}
.company__access {
  padding: 20px 28px;
  border-top: 1px solid rgba(43,150,212,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.company__access-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.7;
  color: #444;
}
.company__access-row strong {
  font-weight: 700;
  color: var(--ink);
}
.company__access-icon {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════════
   06 GROUP（3社）
   ════════════════════════════════════════════════════════ */
.group {
  background: var(--bg);
  border-top: 1px solid rgba(43,150,212,0.08);
}
.group__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.group-card {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid rgba(43,150,212,0.15);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.group-card--lead {
  background: linear-gradient(135deg, rgba(43,150,212,0.06) 0%, rgba(43,150,212,0.12) 100%);
  border-color: rgba(43,150,212,0.3);
  cursor: default;
  margin-top: -32px;
}
.group-card--lead .group-card__role { color: var(--eee-blue); font-weight: 700; }
.group-card:not(.group-card--lead):hover {
  border-color: var(--eee-blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(43,150,212,0.08);
}
.group-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(43,150,212,0.15);
}
.group-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.group-card__jp {
  font-family: var(--font-jp);
  font-size: 11px;
  color: #888;
  margin-top: 4px;
  display: block;
}
.group-card__role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--eee-blue);
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.group-card__role::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--eee-blue);
}
.group-card__title {
  font-family: var(--font-main);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.group-card__title em { font-style: italic; color: var(--eee-blue); font-weight: 500; }
.group-card__body {
  font-family: var(--font-jp);
  font-size: 13.5px;
  line-height: 1.95;
  color: #444;
}
.group-card__cta {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  margin-top: auto;
}
.group-card__cta-arrow {
  font-size: 14px;
  transition: all 0.3s;
}

/* ════════════════════════════════════════════════════════
   CONTACT CTA（共通）
   ════════════════════════════════════════════════════════ */
.contact-cta {
  padding: 88px 64px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--eee-blue) 0%, transparent 60%);
  opacity: 0.3;
  filter: blur(60px);
  pointer-events: none;
}
.contact-cta::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(70px);
  pointer-events: none;
}
.contact-cta__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.contact-cta__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--eee-blue);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.contact-cta__title {
  font-family: var(--font-main);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.contact-cta__title em {
  font-style: italic;
  color: var(--eee-blue);
  font-weight: 500;
}
.contact-cta__body {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 32px;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}
.contact-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-cta__btn {
  background: var(--orange);
  color: #fff;
  padding: 18px 40px;
  border-radius: 100px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}
.contact-cta__btn:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
}
.contact-cta__btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.contact-cta__btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════
   FOOTER（共通）
   ════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  color: var(--ink);
  border-top: 1px solid rgba(43,150,212,0.15);
  padding: 56px 64px 32px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(43,150,212,0.15);
}
.footer__brand-logo img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer__brand-tagline {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.footer__brand-address {
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1.85;
  color: #777;
}
.footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.footer__nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #555;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.footer__nav a:hover { color: var(--orange); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copyright {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #999;
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--orange); }

/* ════════════════════════════════════════════════════════
   レスポンシブ
   ════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .section { padding: 80px 32px; }
  .page-hero { padding: 60px 32px 48px; }
  .opening { padding: 80px 32px; }
  .opening__inner { grid-template-columns: 1fr; gap: 48px; }
  .opening__visual { max-width: 480px; margin: 0 auto; }
  .reality-list { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .timeline__arrow { transform: rotate(90deg); }
  .philo__verbs { grid-template-columns: 1fr; }
  .company__row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .company__location { grid-template-columns: 1fr; gap: 24px; margin-top: 56px; }
  .spark-block { flex-direction: column; gap: 20px; }
  .spark-block__icon { width: 48px; height: 48px; }
  .group__cards { grid-template-columns: 1fr 1fr; }
  .group-card--lead { margin-top: 0; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; align-items: flex-start; }
}
@media (max-width: 700px) {
  body { padding-top: 56px; }
  .section { padding: 64px 20px; }
  .page-hero { padding: 48px 20px 40px; }
  .opening { padding: 64px 20px; }
  .opening__inner { gap: 36px; }
  .bar-scene { margin-bottom: 48px; border-radius: 8px; }
  .bubble__avatar { width: 44px; height: 44px; font-size: 16px; }
  .bubble__content { padding: 18px 20px; }
  .reality-block { padding: 32px 24px; }
  .spark-block { padding: 28px 24px; }
  .punchline { padding: 32px 20px; }
  .company__office-visual { min-height: 220px; }
  .company__map { min-height: 240px; }
  .company__location-label { padding: 20px 20px 14px; }
  .company__office-caption,
  .company__access { padding: 16px 20px; }
  .contact-cta { padding: 64px 20px; }
  .contact-cta__buttons { flex-direction: column; gap: 12px; }
  .contact-cta__btn { width: 100%; justify-content: center; }
  .group__cards { grid-template-columns: 1fr; }
  .footer { padding: 40px 20px 24px; }
  .footer__nav { gap: 16px 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
