
/* ============================================================ */
/*  section1/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 1 (Hero)                                        */
/* =================================================================== */

/* ============================== */
/* CSS Variables                  */
/* ============================== */
:root {
  /* Brand */
  --color-brand-primary: #18538a;
  --color-brand-primary-hover: #114068;
  --color-brand-deep: #0f3a63;

  /* Text */
  --color-text-primary: #212529;
  --color-text-secondary: #6c757d;
  --color-text-tertiary: #adb5bd;
  --color-text-invert: #ffffff;

  /* Background */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8f9fa;
  --color-hero-bg: #f3f6fa;

  /* Border */
  --color-border: #dee2e6;
  --color-border-strong: #adb5bd;

  /* Gradients */
  --gradient-hero: linear-gradient(165deg, #ffffff 0%, #f1f5fa 60%, #e3ebf3 100%);

  /* Gold CTA */
  --color-gold-base: #c9a063;
  --color-gold-accent: #f6c963;
  --gradient-gold: linear-gradient(180deg, #d4ae6c 0%, #b88a3f 100%);
  --gradient-gold-hover: linear-gradient(180deg, #ecca8d 0%, #d6a559 100%);
  --shadow-gold: 0 6px 16px rgba(184, 137, 63, 0.30);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-cta-hover: 0 12px 32px rgba(24, 83, 138, 0.20);

  /* Typography */
  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.25rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--gradient-hero);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.text-brand {
  color: var(--color-brand-primary);
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
}

/* ============================== */
/* Buttons                        */
/* ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
}

.btn--sm {
  height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.btn--primary {
  background: var(--color-brand-primary);
  color: var(--color-text-invert);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--color-brand-primary-hover);
  box-shadow: var(--shadow-cta-hover);
}

.btn--outline {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  font-weight: 500;
}
.btn--outline:hover {
  background: var(--color-bg-secondary);
  border-color: var(--color-border-strong);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(15, 58, 99, 0.10);
}

/* ゴールドCTA */
.btn--gold {
  background: var(--gradient-gold);
  color: var(--color-text-invert);
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  height: 56px;
  padding: 0 28px;
  position: relative;
}
.btn--gold:hover {
  background: var(--gradient-gold-hover);
  box-shadow: 0 10px 24px rgba(184, 137, 63, 0.40);
  transform: translateY(-1px);
}
.btn--gold .btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-gold-base);
  font-size: 12px;
  margin-left: 4px;
}

/* 白CTA */
.btn--white {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-size: 16px;
  font-weight: 700;
  height: 56px;
  padding: 0 28px;
  border: 1px solid var(--color-border);
}
.btn--white:hover {
  background: var(--color-bg-secondary);
  border-color: var(--color-border-strong);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(15, 58, 99, 0.10);
}

/* ============================== */
/* Header                         */
/* ============================== */
.header {
  position: relative;
  z-index: 100;
  background: transparent;
}

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

.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* メニューラッパー (SP では非表示、開いたときパネル展開) */
.header__menu {
  display: none;
}

/* PC ナビ */
.header__nav {
  display: none;
}
.header__nav ul {
  display: flex;
  gap: 28px;
}
.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: color 0.15s;
}
.header__nav a:hover {
  color: var(--color-brand-primary);
}

/* PC アクション */
.header__actions {
  display: none;
  gap: 12px;
  align-items: center;
}

/* SP ハンバーガー */
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  padding: 0;
}
.header__menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
  transform-origin: center;
}

/* SP: メニュー開状態 — ヘッダー下にパネル展開 */
.header.is-menu-open .header__menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(15, 58, 99, 0.08);
  box-shadow: 0 12px 24px rgba(15, 58, 99, 0.10);
  padding: 8px var(--container-padding) 20px;
  animation: header-menu-slide 0.22s ease-out;
}
.header.is-menu-open .header__nav {
  display: block;
}
.header.is-menu-open .header__nav ul {
  flex-direction: column;
  gap: 0;
}
.header.is-menu-open .header__nav li {
  border-bottom: 1px solid rgba(15, 58, 99, 0.06);
}
.header.is-menu-open .header__nav li:last-child {
  border-bottom: none;
}
.header.is-menu-open .header__nav a {
  display: block;
  padding: 14px 4px;
  font-size: 15px;
}
.header.is-menu-open .header__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}
.header.is-menu-open .header__actions .btn {
  width: 100%;
}

/* ハンバーガー → × アニメーション */
.header__menu-toggle.is-active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.header__menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@keyframes header-menu-slide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================== */
/* Hero                           */
/* ============================== */
.hero {
  position: relative;
  background: transparent;
  overflow: hidden;
  padding: 24px var(--container-padding) 32px;
}

/* 背景装飾 (右上から左下への薄い斜めライン) */
.hero__bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(120deg, transparent 50%, rgba(255, 255, 255, 0.6) 55%, transparent 60%),
    linear-gradient(120deg, transparent 62%, rgba(255, 255, 255, 0.5) 68%, transparent 74%),
    linear-gradient(120deg, transparent 78%, rgba(255, 255, 255, 0.45) 84%, transparent 92%);
  background-size: 100% 100%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* タイトル */
.hero__content {
  width: 100%;
  text-align: left;
}
.hero__title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--color-text-primary);
}
.hero__title-line {
  display: block;
}

/* サブコピー */
.hero__subtitle {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 0;
  color: var(--color-text-primary);
  margin: 16px 0 0;
}

/* PC キャンペーン (今だけバッジ) — SPでは非表示 */
.hero__campaign--desktop {
  display: none;
}
.hero__campaign-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-brand-primary);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero__campaign-line {
  font-size: 20px;
  line-height: 1;
}
.hero__campaign-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--color-bg-primary);
  padding: 8px 28px 8px 8px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 18px rgba(24, 83, 138, 0.14);
}
.hero__campaign-pill-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-primary);
  color: var(--color-text-invert);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.hero__campaign-pill-text {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
}
.hero__campaign-pill-text strong {
  color: var(--color-brand-primary);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin: 0 3px;
}

/* ビジュアル (画像) */
.hero__visual {
  width: 100%;
  position: relative;
  margin: 0 calc(var(--container-padding) * -0.4);
  width: calc(100% + var(--container-padding) * 0.8);
}
.hero__device {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================== */
/* CTA Banner (青背景バナー)       */
/* ============================== */
.cta-banner {
  background: var(--color-brand-primary);
  background-image: linear-gradient(180deg, #18538a 0%, #144674 100%);
  padding: 22px var(--container-padding);
  position: relative;
}
.cta-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta-banner__copy {
  text-align: center;
  color: var(--color-text-invert);
  width: 100%;
}
.cta-banner__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}
.cta-banner__heading-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
}
.cta-banner__heading-main {
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  line-height: 1;
}
.cta-banner__heading-main em {
  font-style: normal;
  color: var(--color-gold-accent);
  font-size: 30px;
  font-weight: 900;
  margin: 0 4px;
  line-height: 1;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 360px;
}
.cta-banner__actions .btn {
  width: 100%;
}

.cta-banner__note {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

/* 月桂冠 (SVG) — 「ベータ版リリース記念」の左右に配置 */
.laurel {
  display: inline-block;
  width: 14px;
  height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 32' fill='none'><g stroke='%23f6c963' stroke-width='1.6' stroke-linecap='round' fill='none'><path d='M14 30 Q7 24 5 16 Q4 8 8 2'/><path d='M7 8 Q2 7 0 11'/><path d='M5 14 Q0 14 -1 18'/><path d='M5 20 Q0 21 0 25'/><path d='M8 26 Q3 27 4 30'/></g></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}
.laurel--right {
  transform: scaleX(-1);
}

/* ============================== */
/* レスポンシブ - md (768px+)     */
/* ============================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  /* ヘッダー */
  .header__inner {
    max-width: none;
    padding: 16px 32px;
    gap: 32px;
  }
  .header__logo img {
    height: 40px;
  }
  .header__menu {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 24px;
  }
  .header__nav {
    display: block;
    flex: 1;
    margin-left: 24px;
  }
  .header__nav ul {
    gap: 28px;
  }
  .header__actions {
    display: flex;
  }
  .header__menu-toggle {
    display: none;
  }

  /* ヒーロー */
  .hero {
    padding: 56px var(--container-padding) 56px;
  }
  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    min-height: 480px;
  }
  .hero__content {
    flex: 0 0 42%;
    text-align: left;
  }
  .hero__title {
    font-size: 56px;
    line-height: 1.35;
  }
  .hero__subtitle {
    font-size: 15px;
    margin-top: 22px;
    line-height: 1.85;
  }
  .hero__campaign--desktop {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
  }
  .hero__visual {
    flex: 1;
    min-width: 0;
    width: auto;
    margin: 0 calc(var(--container-padding) * -0.5) 0 0;
  }

  /* CTAバナー */
  .cta-banner {
    padding: 18px var(--container-padding);
  }
  .cta-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "copy actions"
      "note actions";
    align-items: center;
    column-gap: 24px;
    row-gap: 6px;
  }
  .cta-banner__copy {
    grid-area: copy;
    width: auto;
    text-align: center;
  }
  .cta-banner__heading {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .cta-banner__heading-sub {
    font-size: 14px;
  }
  .cta-banner__heading-main {
    font-size: 22px;
  }
  .cta-banner__heading-main em {
    font-size: 34px;
  }
  .cta-banner__actions {
    grid-area: actions;
    flex-direction: row;
    width: auto;
    max-width: none;
    flex-shrink: 0;
    gap: 12px;
  }
  .cta-banner__actions .btn {
    width: auto;
  }
  .cta-banner__note {
    grid-area: note;
    text-align: center;
    margin: 0;
    font-size: 12px;
  }
  .laurel {
    width: 16px;
    height: 26px;
  }
}

/* ============================== */
/* レスポンシブ - lg (1024px+)    */
/* ============================== */
@media (min-width: 1024px) {
  .hero {
    padding: 72px var(--container-padding) 72px;
  }
  .hero__title {
    font-size: 62px;
  }
  .hero__campaign-pill-text strong {
    font-size: 26px;
  }
}

/* ============================================================ */
/*  section2/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 2 (コンセプト)                                  */
/* =================================================================== */

/* ============================== */
/* CSS Variables                  */
/* ============================== */
:root {
  /* Brand */
  --color-brand-primary: #18538a;
  --color-brand-deep: #0f3a63;

  /* Text */
  --color-text-primary: #212529;
  --color-text-secondary: #6c757d;
  --color-text-invert: #ffffff;

  /* Background — ダイアグラム画像と全体が馴染むように */
  --gradient-section: linear-gradient(135deg, #fcfdfe 0%, #f3f7fc 55%, #e8eff8 100%);

  /* Typography */
  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: var(--gradient-section);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
h2, h3 { margin: 0; font-weight: 700; }

/* ============================== */
/* Section wrapper                */
/* ============================== */
.concept {
  padding: 56px var(--container-padding) 72px;
}
.concept__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================== */
/* Main 2-column layout           */
/* ============================== */
.concept__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

/* ============================== */
/* Left: copy                     */
/* ============================== */
.concept__copy {
  width: 100%;
  max-width: 560px;
}
.concept__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--color-text-primary);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.concept__title-line {
  display: block;
}
.concept__title-line:first-child,
.concept__title-line:nth-child(3) {
  color: var(--color-brand-primary);
}
.concept__title-particle {
  color: var(--color-text-primary);
  font-weight: 700;
}

.concept__description {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-primary);
}
.concept__description strong {
  color: var(--color-brand-primary);
  font-weight: 800;
}

/* ============================== */
/* Right: diagram (heading + img) */
/* ============================== */
.concept__diagram {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.concept__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 16px;
  color: var(--color-brand-primary);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.concept__heading-deco {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-brand-primary);
  line-height: 1;
}
.concept__heading-particle {
  font-weight: 500;
}

.concept__diagram-imgwrap {
  position: relative;
  width: 100%;
}
.concept__diagram-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 4つのカード上に重ねる透明リンク */
.concept__diagram-link {
  position: absolute;
  display: block;
  cursor: pointer;
}
.concept__diagram-link:focus-visible {
  outline: 2px solid var(--color-brand-primary);
  outline-offset: 2px;
  border-radius: 14px;
}

/* 各カードの位置 (画像976x870基準でカードぴったり) */
.concept__diagram-link--tl { left: 10.2%; top: 2.9%;  width: 30.7%; height: 37.4%; }
.concept__diagram-link--tr { left: 69.7%; top: 2.9%;  width: 31.3%; height: 37.4%; }
.concept__diagram-link--bl { left: 10.2%; top: 58.6%; width: 30.7%; height: 37.4%; }
.concept__diagram-link--br { left: 69.7%; top: 58.6%; width: 31.3%; height: 37.4%; }

/* ============================== */
/* Responsive - md (768px+)       */
/* ============================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .concept {
    padding: 80px var(--container-padding) 96px;
  }

  .concept__main {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .concept__copy {
    flex: 1;
    max-width: none;
  }
  .concept__title {
    font-size: 52px;
    margin-bottom: 36px;
    line-height: 1.4;
  }
  .concept__description {
    font-size: 15px;
    gap: 18px;
  }

  .concept__diagram {
    flex: 0 0 580px;
    max-width: 580px;
    margin: 0;
  }
  .concept__heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .concept__heading-deco {
    font-size: 26px;
  }
}

/* ============================== */
/* Responsive - lg (1024px+)      */
/* ============================== */
@media (min-width: 1024px) {
  .concept__title {
    font-size: 58px;
  }
  .concept__diagram {
    flex: 0 0 620px;
    max-width: 620px;
  }
}

/* ============================================================ */
/*  section3/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 3 (お悩み)                                       */
/* =================================================================== */

/* ============================== */
/* CSS Variables                  */
/* ============================== */
:root {
  --color-brand-primary: #18538a;
  --color-brand-deep: #0f3a63;
  --color-brand-soft: #e8f1fa;
  --color-text-primary: #212529;
  --color-text-secondary: #6c757d;

  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f4f8fc 60%, #e8f0f8 100%);

  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: var(--gradient-section);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
h2 { margin: 0; }

/* ============================== */
/* Section wrapper                */
/* ============================== */
.trouble {
  padding: 56px var(--container-padding) 80px;
}
.trouble__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================== */
/* Heading + subheading           */
/* ============================== */
.trouble__heading {
  display: inline-block;
  position: relative;
  width: 100%;
  font-size: 30px;
  font-weight: 800;
  color: var(--color-text-primary);
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin: 0 0 12px;
  padding-bottom: 6px;
}
.trouble__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 88%;
  max-width: 800px;
  height: 2px;
  background: var(--color-brand-primary);
  border-radius: 2px;
}
.trouble__heading-accent {
  color: var(--color-brand-primary);
}
.trouble__heading-comma {
  display: none;
}
.trouble__heading-br-sp {
  display: inline;
}
.trouble__subheading {
  font-size: 14px;
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.8;
  margin: 0 0 32px;
  padding-top: 4px;
}

/* ============================== */
/* Cards grid (6 HTML cards)      */
/* ============================== */
.trouble__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.trouble-card {
  display: flex;
  align-items: stretch;
  gap: 6px;
  padding: 18px 0 0 18px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24, 83, 138, 0.06);
  overflow: hidden;
  min-height: 156px;
}

.trouble-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 16px 0;
  min-width: 0;
}

.trouble-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trouble-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f1fa;
  color: var(--color-brand-primary);
}
.trouble-card__icon svg {
  width: 26px;
  height: 26px;
}

.trouble-card__title {
  margin: 0;
  padding-top: 2px;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-brand-primary);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.trouble-card__desc {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.trouble-card__illust {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: 138px;
  align-self: flex-end;
  pointer-events: none;
  user-select: none;
}

/* ============================== */
/* Bottom solution decoration     */
/* ============================== */
.trouble__solution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 32px auto 0;
  font-size: 19px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.4;
  text-align: center;
}
.trouble__solution-text {
  white-space: nowrap;
}
.trouble__solution-br-sp {
  display: inline;
}
.trouble__solution-brand {
  color: var(--color-brand-primary);
  font-weight: 800;
}
.trouble__solution-line {
  display: block;
  flex: 1;
  max-width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(24, 83, 138, 0) 0%, rgba(24, 83, 138, 0.5) 100%);
}
.trouble__solution-line:last-child {
  background: linear-gradient(90deg, rgba(24, 83, 138, 0.4) 0%, rgba(24, 83, 138, 0) 100%);
}

/* ============================== */
/* Responsive - md (768px+)       */
/* ============================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .trouble {
    padding: 80px var(--container-padding) 100px;
  }

  .trouble__heading {
    font-size: 44px;
    margin-bottom: 14px;
    padding-bottom: 8px;
  }
  .trouble__heading-comma {
    display: inline;
  }
  .trouble__heading-br-sp {
    display: none;
  }
  .trouble__heading::after {
    width: 580px;
    height: 3px;
  }
  .trouble__subheading {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .trouble__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
  }

  .trouble-card {
    padding: 22px 0 0 20px;
    gap: 4px;
    min-height: 178px;
  }
  .trouble-card__body {
    padding-bottom: 20px;
    gap: 12px;
  }
  .trouble-card__title {
    font-size: 18px;
  }
  .trouble-card__desc {
    font-size: 13.5px;
  }
  .trouble-card__illust {
    height: 162px;
  }

  .trouble__solution {
    font-size: 28px;
    gap: 24px;
    margin-top: 40px;
  }
  .trouble__solution-br-sp {
    display: none;
  }
  .trouble__solution-line {
    display: block;
    max-width: 180px;
  }
}

/* ============================== */
/* Responsive - lg (1024px+)      */
/* ============================== */
@media (min-width: 1024px) {
  .trouble__heading {
    font-size: 50px;
  }
  .trouble__heading::after {
    width: 660px;
  }
  .trouble-card {
    min-height: 210px;
  }
  .trouble-card__illust {
    height: 196px;
  }
  .trouble__solution-line {
    max-width: 240px;
  }
}

/* ============================================================ */
/*  section4/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 4 (4つの特徴 / 特徴1: 経費・コスト削減)            */
/* =================================================================== */

/* ============================== */
/* CSS Variables                  */
/* ============================== */
:root {
  --color-brand-primary: #18538a;
  --color-brand-deep: #0f3a63;
  --color-brand-soft: #e8f1fa;
  --color-text-primary: #212529;
  --color-text-secondary: #5a6470;
  --color-text-muted: #8892a0;
  --color-accent-gold: #c9a063;

  /* セクション背景 — デバイス画像内の背景と滑らかに繋がるグラデーション */
  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f3f7fc 55%, #e8f0f8 100%);

  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: var(--gradient-section);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
h2, h3 { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================== */
/* Section wrapper                */
/* ============================== */
.features {
  padding: 60px var(--container-padding) 72px;
}
.features__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================== */
/* Heading (Spekanの4つの特徴)     */
/* ============================== */
.features__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 30px;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin: 0 auto 4px;
  text-align: center;
}
.features__heading-text {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  white-space: nowrap;
}
.features__heading-particle {
  font-size: 0.78em;
  font-weight: 700;
}
.features__heading-accent {
  color: var(--color-brand-primary);
  font-size: 1.45em;
  font-weight: 900;
  margin: 0 2px;
  line-height: 1;
}
.features__heading-line {
  flex: 0 0 auto;
  width: 36px;
  height: 2px;
  background: var(--color-brand-primary);
  border-radius: 2px;
  opacity: 0.85;
}

.features__subheading {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.85;
  margin: 0 0 32px;
  padding-top: 0;
}

/* ============================== */
/* Feature row (no card wrapper)  */
/* ============================== */
.feature {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ----- Badge "POINT 01 / 特徴 1" ----- */
.feature__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-brand-deep) 0%, var(--color-brand-primary) 100%);
  box-shadow: 0 4px 14px rgba(15, 58, 99, 0.20);
  position: relative;
  overflow: hidden;
}
.feature__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 3px;
  background: var(--color-accent-gold);
  border-radius: 2px;
}
.feature__badge-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  opacity: 0.78;
  margin-top: -1px;
}
.feature__badge-num {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Helvetica Neue", "Arial", var(--font-family);
}
.feature__badge-divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.4);
}
.feature__badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ----- Title ----- */
.feature__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--color-text-primary);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.feature__title-line {
  display: block;
}
.feature__title-accent {
  color: var(--color-brand-primary);
}

/* ----- Bullet list ----- */
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 83, 138, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  backdrop-filter: blur(2px);
}
.feature__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-deep);
  color: #ffffff;
  border-radius: 8px;
}
.feature__icon svg {
  width: 18px;
  height: 18px;
}
.feature__item-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.feature__item-main {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text-primary);
  line-height: 1.5;
}
.feature__item-sub {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-brand-primary);
  line-height: 1.5;
}

/* ----- Visual (devices image) -----
   画像はエッジをフェザリング処理済みなのでセクション背景と自然に繋がる */
.feature__visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 8px 0 0;
}
.feature__visual-img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 115% 115% at 50% 50%, #000 80%, transparent 100%);
  mask-image: radial-gradient(ellipse 115% 115% at 50% 50%, #000 80%, transparent 100%);
}

/* ============================== */
/* Responsive - md (768px+)       */
/* ============================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .features {
    padding: 88px var(--container-padding) 96px;
  }

  .features__heading {
    font-size: 36px;
    gap: 22px;
    margin-bottom: 16px;
  }
  .features__heading-line {
    width: 60px;
    height: 3px;
  }
  .features__subheading {
    font-size: 15px;
    margin-bottom: 48px;
  }

  .feature {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
  .feature__copy {
    flex: 0 0 44%;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .feature__badge {
    padding: 10px 20px 10px 18px;
    gap: 12px;
  }
  .feature__badge-tag {
    font-size: 11px;
  }
  .feature__badge-num {
    font-size: 30px;
  }
  .feature__badge-divider {
    height: 26px;
  }
  .feature__badge-label {
    font-size: 14px;
  }
  .feature__title {
    font-size: 34px;
    line-height: 1.4;
  }
  .feature__list {
    gap: 12px;
  }
  .feature__list-item {
    padding: 12px 16px;
  }
  .feature__icon {
    width: 38px;
    height: 38px;
  }
  .feature__icon svg {
    width: 20px;
    height: 20px;
  }
  .feature__item-main,
  .feature__item-sub {
    font-size: 14px;
  }

  .feature__visual {
    flex: 1;
    min-width: 0;
    margin: 0;
  }
  .feature__visual-img {
    max-width: 100%;
  }
}

/* ============================== */
/* Responsive - lg (1024px+)      */
/* ============================== */
@media (min-width: 1024px) {
  .features__heading {
    font-size: 40px;
  }
  .features__heading-line {
    width: 80px;
  }
  .feature {
    gap: 48px;
  }
  .feature__title {
    font-size: 38px;
  }
}

/* ============================================================ */
/*  section5/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 5 (特徴2: 集客機能)                                */
/* =================================================================== */

/* ============================== */
/* CSS Variables (Section 4 と同一) */
/* ============================== */
:root {
  --color-brand-primary: #18538a;
  --color-brand-deep: #0f3a63;
  --color-brand-soft: #e8f1fa;
  --color-text-primary: #212529;
  --color-text-secondary: #5a6470;
  --color-text-muted: #8892a0;
  --color-accent-gold: #c9a063;

  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f5f3ff 55%, #eae8fd 100%);

  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: var(--gradient-section);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
h2, h3 { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================== */
/* Section wrapper                */
/* ============================== */
.features {
  padding: 56px var(--container-padding) 64px;
}
.features__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================== */
/* Feature (SP: 縦並び / PC: 反転2カラム) */
/* ============================== */
.feature {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ----- Badge "POINT 02 / 特徴 2" ----- */
.feature__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-brand-deep) 0%, var(--color-brand-primary) 100%);
  box-shadow: 0 4px 14px rgba(15, 58, 99, 0.20);
  position: relative;
  overflow: hidden;
}
.feature__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 3px;
  background: var(--color-accent-gold);
  border-radius: 2px;
}
.feature__badge-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  opacity: 0.78;
  margin-top: -1px;
}
.feature__badge-num {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Helvetica Neue", "Arial", var(--font-family);
}
.feature__badge-divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.4);
}
.feature__badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ----- Title ----- */
.feature__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--color-text-primary);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.feature__title-line {
  display: block;
  white-space: nowrap;
}
.feature__title-accent {
  color: var(--color-brand-primary);
}

/* ----- Bullet list ----- */
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 83, 138, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  backdrop-filter: blur(2px);
}
.feature__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-deep);
  color: #ffffff;
  border-radius: 8px;
}
.feature__icon svg {
  width: 18px;
  height: 18px;
}
.feature__item-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.feature__item-main {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text-primary);
  line-height: 1.5;
}
.feature__item-sub {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-brand-primary);
  line-height: 1.5;
}

/* ----- Visual (diagram + logo overlay) ----- */
.feature__visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 8px 0 0;
}
.feature__visual-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}

/* ============================== */
/* Responsive - md (768px+)       */
/* PC: visual-left, text-right    */
/* ============================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .features {
    padding: 88px var(--container-padding) 96px;
  }

  .feature {
    flex-direction: row-reverse;
    gap: 32px;
    align-items: center;
  }
  .feature__copy {
    flex: 0 0 48%;
    gap: 22px;
  }
  .feature__visual {
    flex: 1;
    min-width: 0;
    margin: 0;
  }
  .feature__visual-img {
    max-width: 100%;
  }

  .feature__badge {
    padding: 10px 20px 10px 18px;
    gap: 12px;
  }
  .feature__badge-tag {
    font-size: 11px;
  }
  .feature__badge-num {
    font-size: 30px;
  }
  .feature__badge-divider {
    height: 26px;
  }
  .feature__badge-label {
    font-size: 14px;
  }

  .feature__title {
    font-size: 26px;
    line-height: 1.4;
  }

  .feature__list {
    gap: 12px;
  }
  .feature__list-item {
    padding: 12px 16px;
  }
  .feature__icon {
    width: 38px;
    height: 38px;
  }
  .feature__icon svg {
    width: 20px;
    height: 20px;
  }
  .feature__item-main,
  .feature__item-sub {
    font-size: 14px;
  }
}

/* ============================== */
/* Responsive - lg (1024px+)      */
/* ============================== */
@media (min-width: 1024px) {
  .feature {
    gap: 44px;
  }
  .feature__copy {
    flex: 0 0 46%;
  }
  .feature__title {
    font-size: 30px;
  }
}

@media (min-width: 1280px) {
  .feature__title {
    font-size: 34px;
  }
}

/* ============================================================ */
/*  section6/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 6 (特徴3: 取りこぼし・no-show削減)                  */
/* =================================================================== */

/* ============================== */
/* CSS Variables (Section 4/5 と同一) */
/* ============================== */
:root {
  --color-brand-primary: #18538a;
  --color-brand-deep: #0f3a63;
  --color-brand-soft: #e8f1fa;
  --color-text-primary: #212529;
  --color-text-secondary: #5a6470;
  --color-text-muted: #8892a0;
  --color-accent-gold: #c9a063;

  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f3f7fc 55%, #e8f0f8 100%);

  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: var(--gradient-section);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
h2, h3 { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================== */
/* Section wrapper                */
/* ============================== */
.features {
  padding: 56px var(--container-padding) 64px;
}
.features__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================== */
/* Feature (SP: 縦並び / PC: テキスト左 + ビジュアル右) */
/* ============================== */
.feature {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ----- Badge "POINT 03 / 特徴 3" ----- */
.feature__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-brand-deep) 0%, var(--color-brand-primary) 100%);
  box-shadow: 0 4px 14px rgba(15, 58, 99, 0.20);
  position: relative;
  overflow: hidden;
}
.feature__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 3px;
  background: var(--color-accent-gold);
  border-radius: 2px;
}
.feature__badge-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  opacity: 0.78;
  margin-top: -1px;
}
.feature__badge-num {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Helvetica Neue", "Arial", var(--font-family);
}
.feature__badge-divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.4);
}
.feature__badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ----- Title ----- */
.feature__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--color-text-primary);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.feature__title-line {
  display: block;
  white-space: nowrap;
}
.feature__title-accent {
  color: var(--color-brand-primary);
}

/* ----- Bullet list ----- */
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 83, 138, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  backdrop-filter: blur(2px);
}
.feature__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-deep);
  color: #ffffff;
  border-radius: 8px;
}
.feature__icon svg {
  width: 18px;
  height: 18px;
}
.feature__item-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.feature__item-main {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text-primary);
  line-height: 1.5;
}
.feature__item-sub {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-brand-primary);
  line-height: 1.5;
}

/* ----- Visual (devices image) ----- */
.feature__visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 8px 0 0;
}
.feature__visual-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

/* ============================== */
/* Responsive - md (768px+)       */
/* PC: text-left, visual-right    */
/* ============================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .features {
    padding: 88px var(--container-padding) 96px;
  }

  .feature {
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }
  .feature__copy {
    flex: 0 0 48%;
    gap: 22px;
  }
  .feature__visual {
    flex: 0 1 52%;
    min-width: 0;
    margin: 0;
  }
  .feature__visual-img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .feature__badge {
    padding: 10px 20px 10px 18px;
    gap: 12px;
  }
  .feature__badge-tag {
    font-size: 11px;
  }
  .feature__badge-num {
    font-size: 30px;
  }
  .feature__badge-divider {
    height: 26px;
  }
  .feature__badge-label {
    font-size: 14px;
  }

  .feature__title {
    font-size: 28px;
    line-height: 1.4;
  }

  .feature__list {
    gap: 12px;
  }
  .feature__list-item {
    padding: 12px 16px;
  }
  .feature__icon {
    width: 38px;
    height: 38px;
  }
  .feature__icon svg {
    width: 20px;
    height: 20px;
  }
  .feature__item-main,
  .feature__item-sub {
    font-size: 14px;
  }
}

/* ============================== */
/* Responsive - lg (1024px+)      */
/* ============================== */
@media (min-width: 1024px) {
  .feature {
    gap: 44px;
  }
  .feature__copy {
    flex: 0 0 46%;
  }
  .feature__title {
    font-size: 32px;
  }
}

@media (min-width: 1280px) {
  .feature__title {
    font-size: 36px;
  }
}

/* ============================================================ */
/*  section7/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 7 (特徴4: データドリブン施設経営)                   */
/* =================================================================== */

/* ============================== */
/* CSS Variables (Section 4/5/6 と同一) */
/* ============================== */
:root {
  --color-brand-primary: #18538a;
  --color-brand-deep: #0f3a63;
  --color-brand-soft: #e8f1fa;
  --color-text-primary: #212529;
  --color-text-secondary: #5a6470;
  --color-text-muted: #8892a0;
  --color-accent-gold: #c9a063;

  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f3f7fc 55%, #e8f0f8 100%);

  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: var(--gradient-section);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
h2, h3 { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================== */
/* Section wrapper                */
/* ============================== */
.features {
  padding: 56px var(--container-padding) 56px;
}
.features__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================== */
/* Feature (SP: 縦並び / PC: ビジュアル左 + テキスト右) */
/* ============================== */
.feature {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ----- Badge "POINT 04 / 特徴 4" ----- */
.feature__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-brand-deep) 0%, var(--color-brand-primary) 100%);
  box-shadow: 0 4px 14px rgba(15, 58, 99, 0.20);
  position: relative;
  overflow: hidden;
}
.feature__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 3px;
  background: var(--color-accent-gold);
  border-radius: 2px;
}
.feature__badge-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  opacity: 0.78;
  margin-top: -1px;
}
.feature__badge-num {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Helvetica Neue", "Arial", var(--font-family);
}
.feature__badge-divider {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.4);
}
.feature__badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ----- Title ----- */
.feature__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--color-text-primary);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.feature__title-line {
  display: block;
  white-space: nowrap;
}
.feature__title-accent {
  color: var(--color-brand-primary);
}

/* ----- Bullet list ----- */
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 83, 138, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
  backdrop-filter: blur(2px);
}
.feature__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-deep);
  color: #ffffff;
  border-radius: 8px;
}
.feature__icon svg {
  width: 18px;
  height: 18px;
}
.feature__item-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.feature__item-main {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text-primary);
  line-height: 1.5;
}
.feature__item-sub {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-brand-primary);
  line-height: 1.5;
}

/* ----- Visual (devices image) ----- */
.feature__visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 8px 0 0;
}
.feature__visual-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 72% 78% at 50% 50%, #000 38%, rgba(0, 0, 0, 0.55) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 72% 78% at 50% 50%, #000 38%, rgba(0, 0, 0, 0.55) 72%, transparent 100%);
}

/* ============================== */
/* Trust badges row               */
/* ============================== */
.trust {
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(24, 83, 138, 0.08);
  border-radius: 12px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text-primary);
}
.trust__icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-primary);
  background: var(--color-brand-soft);
  border-radius: 50%;
}
.trust__text {
  line-height: 1.5;
}

/* ============================== */
/* Responsive - md (768px+)       */
/* PC: visual-left, text-right    */
/* ============================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .features {
    padding: 88px var(--container-padding) 80px;
  }

  .feature {
    flex-direction: row-reverse;
    gap: 32px;
    align-items: center;
  }
  .feature__copy {
    flex: 0 0 48%;
    gap: 22px;
  }
  .feature__visual {
    flex: 1;
    min-width: 0;
    margin: 0;
  }
  .feature__visual-img {
    max-width: 100%;
  }

  .feature__badge {
    padding: 10px 20px 10px 18px;
    gap: 12px;
  }
  .feature__badge-tag {
    font-size: 11px;
  }
  .feature__badge-num {
    font-size: 30px;
  }
  .feature__badge-divider {
    height: 26px;
  }
  .feature__badge-label {
    font-size: 14px;
  }

  .feature__title {
    font-size: 28px;
    line-height: 1.4;
  }

  .feature__list {
    gap: 12px;
  }
  .feature__list-item {
    padding: 12px 16px;
  }
  .feature__icon {
    width: 38px;
    height: 38px;
  }
  .feature__icon svg {
    width: 20px;
    height: 20px;
  }
  .feature__item-main,
  .feature__item-sub {
    font-size: 14px;
  }

  /* Trust row → horizontal */
  .trust {
    margin-top: 56px;
    flex-direction: row;
    justify-content: space-around;
    gap: 24px;
    padding: 20px 24px;
  }
  .trust__item {
    flex: 1;
    justify-content: center;
    font-size: 14px;
  }
  .trust__icon {
    width: 36px;
    height: 36px;
  }
}

/* ============================== */
/* Responsive - lg (1024px+)      */
/* ============================== */
@media (min-width: 1024px) {
  .feature {
    gap: 44px;
  }
  .feature__copy {
    flex: 0 0 46%;
  }
  .feature__title {
    font-size: 32px;
  }
  .trust {
    margin-top: 64px;
  }
  .trust__item {
    font-size: 15px;
  }
}

@media (min-width: 1280px) {
  .feature__title {
    font-size: 36px;
  }
}

/* ============================================================ */
/*  section8/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 8 (その他機能一覧)                                 */
/* =================================================================== */

/* ============================== */
/* CSS Variables (Section 4-7 と同一) */
/* ============================== */
:root {
  --color-brand-primary: #18538a;
  --color-brand-deep: #0f3a63;
  --color-brand-soft: #e8f1fa;
  --color-text-primary: #212529;
  --color-text-secondary: #5a6470;
  --color-text-muted: #8892a0;
  --color-accent-gold: #c9a063;

  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f3f7fc 55%, #e8f0f8 100%);

  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: var(--gradient-section);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
h2, h3 { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================== */
/* Section wrapper                */
/* ============================== */
.more {
  padding: 56px var(--container-padding) 72px;
}
.more__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================== */
/* Header (SP: 縦並び / PC: 2カラム) */
/* ============================== */
.more__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.more__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ----- Badge "その他機能一覧" ----- */
.more__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px 8px 16px;
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-brand-deep) 0%, var(--color-brand-primary) 100%);
  box-shadow: 0 4px 14px rgba(15, 58, 99, 0.20);
  position: relative;
  overflow: hidden;
}
.more__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--color-accent-gold);
  border-radius: 2px;
}
.more__badge-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ----- Title ----- */
.more__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-text-primary);
  letter-spacing: -0.005em;
}
.more__title-accent {
  color: var(--color-brand-primary);
}
.more__subheading {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin: 4px 0 0;
}

/* ----- Visual ----- */
.more__visual {
  width: 100%;
  display: flex;
  justify-content: center;
}
.more__visual-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse 100% 90% at 50% 50%, #000 50%, transparent 95%);
  mask-image: radial-gradient(ellipse 100% 90% at 50% 50%, #000 50%, transparent 95%);
}

/* ============================== */
/* Feature grid                   */
/* ============================== */
.more__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.more__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(24, 83, 138, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24, 83, 138, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.more__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-brand-soft);
  color: var(--color-brand-primary);
}
.more__card-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.4;
}
.more__card-desc {
  font-size: 11.5px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================== */
/* Extra "他にも多数" (補足情報)   */
/* ============================== */
.more__extra {
  margin: 20px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.6;
  text-align: center;
}
.more__extra-accent {
  color: var(--color-brand-primary);
  font-weight: 700;
}

.more__actions {
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  max-width: 360px;
}
.more__actions .flow-btn {
  min-width: 0;
  padding: 18px 20px;
  font-size: 16px;
  border-radius: 10px;
}
.more__actions .flow-btn__icon svg {
  width: 20px;
  height: 20px;
}
.more__actions .flow-btn__chevron svg {
  width: 16px;
  height: 16px;
}

/* ============================== */
/* Responsive - md (768px+)       */
/* ============================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .more {
    padding: 88px var(--container-padding) 96px;
  }

  /* Header: 2カラム化 (左: テキスト / 右: ビジュアル) */
  .more__header {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
  }
  .more__copy {
    flex: 0 0 46%;
    gap: 16px;
  }
  .more__badge {
    padding: 10px 22px 10px 20px;
  }
  .more__badge-label {
    font-size: 15px;
  }

  .more__title {
    font-size: 34px;
    line-height: 1.4;
  }
  .more__subheading {
    font-size: 15px;
    margin-top: 8px;
  }

  .more__visual {
    flex: 1;
    min-width: 0;
  }
  .more__visual-img {
    max-width: 100%;
  }

  /* Grid: 5カラムに */
  .more__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .more__card {
    padding: 22px 18px;
    gap: 12px;
  }
  .more__card-icon {
    width: 48px;
    height: 48px;
  }
  .more__card-icon svg {
    width: 26px;
    height: 26px;
  }
  .more__card-title {
    font-size: 14px;
  }
  .more__card-desc {
    font-size: 12px;
  }
  .more__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 83, 138, 0.10);
  }

  .more__extra {
    margin-top: 28px;
    font-size: 13px;
  }
  .more__actions {
    margin-top: 36px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: none;
  }
  .more__actions .flow-btn {
    min-width: 300px;
    padding: 20px 28px;
    font-size: 17px;
  }
}

/* ============================== */
/* Responsive - lg (1024px+)      */
/* ============================== */
@media (min-width: 1024px) {
  .more__title {
    font-size: 38px;
  }
  .more__card {
    padding: 24px 20px;
  }
  .more__card-title {
    font-size: 15px;
  }
  .more__card-desc {
    font-size: 12.5px;
  }
}

/* ============================================================ */
/*  section9/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 9 (料金プラン)                                    */
/* =================================================================== */

/* ============================== */
/* CSS Variables                  */
/* ============================== */
:root {
  --color-brand-primary: #18538a;
  --color-brand-deep: #0f3a63;
  --color-brand-soft: #e8f1fa;
  --color-brand-paler: #f0f5fb;
  --color-text-primary: #212529;
  --color-text-secondary: #5a6470;
  --color-text-muted: #8892a0;
  --color-accent-gold: #c9a063;
  --color-cta-gold: #f6c963;
  --color-cta-gold-deep: #e2a93a;
  --color-beta-bg: #eaf2fc;
  --color-cta-bg: #f4f7fb;

  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f3f7fc 55%, #e8f0f8 100%);
  --gradient-gold: linear-gradient(180deg, #f6c963 0%, #e2a93a 100%);

  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-num: "Helvetica Neue", "Arial", var(--font-family);

  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: var(--gradient-section);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
h2, h3 { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none; color: inherit; }

/* ============================== */
/* Section wrapper                */
/* ============================== */
.pricing {
  padding: 56px var(--container-padding) 64px;
}
.pricing__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================== */
/* Top (intro + beta banner)      */
/* ============================== */
.pricing__top {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 28px;
}

/* ----- 左: タイトル ----- */
.pricing__intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}
.pricing__title-text {
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}
.pricing__title-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--color-brand-primary);
  border-radius: 2px;
}
.pricing__title-note {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
}
.pricing__lead {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.85;
}

/* ============================== */
/* Beta release banner            */
/* ============================== */
.beta-banner {
  position: relative;
  background: var(--color-beta-bg);
  border-radius: 14px;
  padding: 28px 18px 16px;
  border: 1px solid rgba(24, 83, 138, 0.08);
}
.beta-banner__eyebrow {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  filter: drop-shadow(0 4px 8px rgba(15, 58, 99, 0.18));
}
/* リボン本体: 両端にV字ノッチが入った旗のような形 */
.beta-banner__eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 26px;
  background: linear-gradient(180deg, var(--color-brand-primary) 0%, var(--color-brand-deep) 100%);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    calc(100% - 14px) 50%,
    100% 100%,
    0% 100%,
    14px 50%
  );
  position: relative;
}
.beta-banner__eyebrow-sparkle {
  color: var(--color-cta-gold);
  font-size: 12px;
  line-height: 1;
}
/* 両側に小さく旗のしっぽ (リボンの余韻) */
.beta-banner__eyebrow-wing {
  display: inline-block;
  width: 14px;
  height: 22px;
  background: var(--color-brand-deep);
  z-index: -1;
}
.beta-banner__eyebrow-wing--l {
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 30% 50%);
  margin-right: -10px;
}
.beta-banner__eyebrow-wing--r {
  clip-path: polygon(100% 0%, 0% 50%, 100% 100%, 70% 50%);
  margin-left: -10px;
}
.beta-banner__crown {
  color: var(--color-cta-gold);
  flex: 0 0 auto;
}

.beta-banner__body {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 6px 0 14px;
  position: relative;
  min-height: 100px;
}

/* 円形 "今だけ特別提供" バッジ (ゴールド) */
.beta-banner__chance {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-brand-deep);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 4px 12px rgba(217, 169, 48, 0.32);
  overflow: visible;
  z-index: 1;
}
.beta-banner__chance-text { display: block; }
.beta-banner__sparkle {
  position: absolute;
  color: #d4a017;
  font-size: 14px;
  line-height: 1;
  z-index: 3;
}
.beta-banner__sparkle--tl { top: -4px; left: -4px; font-size: 14px; }
.beta-banner__sparkle--br { bottom: -4px; right: -4px; font-size: 14px; }

/* メインコピー */
.beta-banner__copy {
  flex: 1;
  min-width: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--color-text-primary);
  text-align: center;
}
.beta-banner__line1 {
  display: block;
}
.beta-banner__line2 {
  display: block;
  margin-top: 4px;
}
.beta-banner__br-sp {
  display: inline;
}
.beta-banner__hl {
  color: var(--color-brand-primary);
  font-weight: 900;
  letter-spacing: 0.01em;
}

/* バナー右端のデバイス画像 (PCのみ) */
.beta-banner__device {
  display: none;
}

/* チェック3項目 (シンプルなチェックリスト) */
.beta-banner__checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
}
.beta-banner__checks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.beta-banner__check {
  color: var(--color-brand-primary);
  flex: 0 0 auto;
}
.beta-banner__note {
  font-size: 10.5px;
  color: var(--color-text-muted);
  text-align: left;
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================== */
/* Plans                          */
/* ============================== */
.plans {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 10px;
}

/* accessibility helper */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ----- 無料プラン ----- */
.plan-free {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 38px 18px 20px;
  box-shadow: 0 2px 12px rgba(24, 83, 138, 0.06);
  text-align: center;
  overflow: visible;
}
/* リボン型ヘッダー */
.plan-free__ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 28px;
  background: linear-gradient(180deg, var(--color-brand-primary) 0%, var(--color-brand-deep) 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    calc(100% - 14px) 50%,
    100% 100%,
    0% 100%,
    14px 50%
  );
  filter: drop-shadow(0 3px 8px rgba(15, 58, 99, 0.20));
  white-space: nowrap;
}
.plan-free__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 12px 0 12px;
}
.plan-free__num {
  font-family: var(--font-num);
  font-size: 64px;
  font-weight: 900;
  color: var(--color-brand-primary);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.plan-free__unit {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-brand-primary);
}
.plan-free__quota {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
  background: var(--color-brand-soft);
  padding: 7px 16px;
  border-radius: 999px;
  margin: 0 auto 14px;
  color: var(--color-brand-primary);
}
.plan-free__quota strong {
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 900;
}
.plan-free__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--color-text-primary);
  line-height: 1.55;
  font-weight: 600;
  text-align: left;
  max-width: 320px;
  margin: 0 auto;
  padding-left: 0;
}
.plan-free__list li {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}
.plan-free__list svg {
  color: var(--color-brand-primary);
  flex: 0 0 auto;
  margin-top: 3px;
}

/* ----- 連結 (大きな円 + 矢印) ----- */
.plans__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px 0;
}
.plans__connector-line {
  position: relative;
}
/* SP: --in / --out ともに矢印付き縦ラインを表示 */
.plans__connector-line--in,
.plans__connector-line--out {
  display: block;
  width: 0;
  height: 36px;
  border-left: 2px dashed rgba(24, 83, 138, 0.55);
}
.plans__connector-line--in { margin-bottom: 12px; }
.plans__connector-line--out { margin-top: 12px; }
/* SP: --in / --out 両側の線末端に下向き V 字シェブロンを CSS で描画 */
.plans__connector-line--in::after,
.plans__connector-line--out::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border-right: 3px solid #18538a;
  border-bottom: 3px solid #18538a;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 1px;
  z-index: 2;
}
.plans__connector-arrow-img {
  position: absolute;
  pointer-events: none;
}
/* SP: img の矢印は使わず CSS シェブロンで描画 */
.plans__connector-arrow-img--right,
.plans__connector-arrow-img--down { display: none; }
.plans__connector-circle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--color-brand-primary);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 4px 14px rgba(24, 83, 138, 0.22);
}

/* ----- 有料プラン ----- */
.plan-paid {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 42px 16px 18px;
  box-shadow: 0 2px 12px rgba(24, 83, 138, 0.06);
}
.plan-paid__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-brand-deep);
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 14px 14px 0 0;
}
.plan-paid__tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
  position: relative;
}
.tier + .tier {
  border-top: 1px solid rgba(24, 83, 138, 0.10);
}
.tier__cal {
  color: var(--color-brand-primary);
  margin-bottom: 6px;
}
.tier__quota {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}
.tier__quota strong {
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 900;
  color: var(--color-brand-primary);
}
.tier__price {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 12px;
}
.tier__num {
  font-family: var(--font-num);
  font-size: 32px;
  font-weight: 900;
  color: var(--color-brand-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tier__unit {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-brand-deep);
}
.tier__features {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  max-width: 220px;
  margin: 0 auto;
}
.tier__features li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tier__features svg {
  color: var(--color-brand-primary);
  flex: 0 0 auto;
}

/* 注釈 */
.pricing__overage-note {
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: left;
  margin: 14px 0 24px;
  line-height: 1.6;
}

/* ============================== */
/* CTA Banner                     */
/* ============================== */
.cta-banner {
  background: var(--color-cta-bg);
  border-radius: 14px;
  padding: 18px 16px;
  border: 1px solid rgba(24, 83, 138, 0.08);
  margin-bottom: 24px;
}
.cta-banner__lead {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cta-banner__chance {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-brand-deep);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 3px 10px rgba(15, 58, 99, 0.22);
}
.cta-banner__chance-text { display: block; }
.cta-banner__sparkle {
  position: absolute;
  color: var(--color-cta-gold);
  font-size: 12px;
  line-height: 1;
}
.cta-banner__sparkle--tl { top: -2px; left: -2px; }
.cta-banner__sparkle--br { bottom: -2px; right: -2px; }

.cta-banner__gift {
  flex: 0 0 auto;
  display: inline-flex;
}
.cta-banner__text {
  flex: 1;
  min-width: 0;
}
.cta-banner__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 3px;
}
.cta-banner__sub {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  position: relative;
}
.btn--gold {
  background: var(--gradient-gold);
  color: #1a1a1a;
  box-shadow: 0 5px 16px rgba(217, 169, 48, 0.32);
}
.btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(217, 169, 48, 0.40);
}
.btn--outline {
  background: #ffffff;
  color: var(--color-text-primary);
  border: 1px solid rgba(24, 83, 138, 0.22);
  font-weight: 700;
}
.btn--outline:hover {
  background: var(--color-brand-soft);
  border-color: var(--color-brand-primary);
}
.btn__icon {
  display: inline-flex;
  align-items: center;
  color: inherit;
  flex: 0 0 auto;
}
.btn--outline .btn__icon {
  color: var(--color-brand-primary);
}
.btn__arrow {
  margin-left: auto;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

/* ============================== */
/* Trust badges                   */
/* ============================== */
.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
}
.trust__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-brand-soft);
  color: var(--color-brand-primary);
}

/* ============================== */
/* Responsive - md (768px+)       */
/* ============================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .pricing {
    padding: 80px var(--container-padding) 88px;
  }

  /* Top: 2-column (intro-left, banner-right) */
  .pricing__top {
    flex-direction: row;
    align-items: stretch;
    gap: 28px;
    margin-bottom: 36px;
  }
  .pricing__intro {
    flex: 0 0 38%;
  }
  .pricing__title {
    font-size: 42px;
  }
  .pricing__title-note {
    font-size: 13px;
  }
  .pricing__lead {
    font-size: 13px;
    white-space: nowrap;
  }

  .beta-banner {
    flex: 1;
    min-width: 0;
    padding: 30px 24px 18px;
    position: relative;
  }
  .beta-banner__eyebrow-pill {
    font-size: 13.5px;
    padding: 10px 30px;
  }
  .beta-banner__eyebrow-wing {
    width: 18px;
    height: 26px;
  }
  .beta-banner__body {
    align-items: center;
    margin: 0 0 16px;
    padding-right: 230px;
    min-height: 160px;
  }
  .beta-banner__chance {
    width: 116px;
    height: 116px;
    font-size: 15px;
  }
  .beta-banner__copy {
    font-size: 26px;
    text-align: left;
  }
  .beta-banner__line2 {
    margin-top: 6px;
  }
  .beta-banner__br-sp {
    display: none;
  }
  .beta-banner__device {
    display: block;
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 230px;
    height: auto;
    pointer-events: none;
  }
  .beta-banner__checks {
    column-gap: 14px;
    font-size: 12.5px;
    justify-content: flex-start;
  }
  .beta-banner__note {
    font-size: 11px;
    text-align: left;
    margin-top: 14px;
  }

  /* Plans: 3-column (free | arrow | paid) */
  .plans {
    flex-direction: row;
    align-items: stretch;
    gap: 14px;
  }
  .plan-free {
    flex: 0 0 24%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 42px 16px 24px;
  }
  .plan-free__ribbon {
    top: -14px;
    font-size: 15px;
    padding: 11px 32px;
  }
  .plan-free__num {
    font-size: 90px;
  }
  .plan-free__unit {
    font-size: 30px;
  }
  .plan-free__quota {
    font-size: 13px;
  }
  .plan-free__quota strong {
    font-size: 16px;
  }
  .plan-free__list {
    font-size: 12px;
    text-align: left;
    align-items: stretch;
    max-width: 260px;
  }
  .plan-free__list li {
    display: flex;
  }

  /* 連結部 (PC: 円 + 入出力ライン) */
  .plans__connector {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    width: 170px;
    padding: 0;
    gap: 10px;
  }
  .plans__connector-line {
    display: block;
  }
  .plans__connector-circle {
    width: 92px;
    height: 92px;
    font-size: 11.5px;
  }
  .plans__connector-line--in,
  .plans__connector-line--out {
    flex: 1;
    min-width: 24px;
    width: auto;
    height: 0;
    border-left: none;
    border-top: 1.5px dashed rgba(24, 83, 138, 0.30);
    margin: 0;
  }
  /* PC: 右向き矢印を表示、下向きシェブロンと下向き矢印画像は非表示 */
  .plans__connector-line--in::after,
  .plans__connector-line--out::after { display: none; }
  .plans__connector-arrow-img--down { display: none; }
  .plans__connector-arrow-img--right {
    display: block;
    right: -14px;
    left: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
  }

  /* 有料プラン PC */
  .plan-paid {
    flex: 1;
    min-width: 0;
    padding: 50px 14px 20px;
  }
  .plan-paid__header {
    font-size: 17px;
    padding: 12px 16px;
  }
  .plan-paid__tiers {
    flex-direction: row;
    gap: 0;
  }
  .plan-paid__tiers > .tier {
    flex: 1 1 0;
    min-width: 0;
    padding: 14px 12px;
  }
  .tier + .tier {
    border-top: none;
    border-left: 1px solid rgba(24, 83, 138, 0.12);
  }
  .tier__cal {
    width: 36px;
    height: 36px;
  }
  .tier__quota {
    font-size: 12.5px;
  }
  .tier__quota strong {
    font-size: 20px;
  }
  .tier__num {
    font-size: 38px;
  }
  .tier__unit {
    font-size: 16px;
  }
  .tier__features {
    font-size: 12.5px;
    gap: 6px;
  }

  .pricing__overage-note {
    font-size: 12px;
    margin-bottom: 28px;
    margin-left: 40px;
    /* 有料プラン (free 24% + gap 14 + connector 130 + gap 14) の開始位置に揃える */
    padding-left: calc(24% + 158px);
  }

  /* CTA banner horizontal */
  .cta-banner {
    padding: 20px 26px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
  }
  .cta-banner__lead {
    flex: 1;
    margin-bottom: 0;
  }
  .cta-banner__chance {
    width: 72px;
    height: 72px;
    font-size: 11px;
  }
  .cta-banner__title {
    font-size: 17px;
  }
  .cta-banner__sub {
    font-size: 13px;
  }
  .cta-banner__actions {
    flex-direction: row;
    gap: 12px;
    flex-shrink: 0;
  }
  .btn {
    padding: 14px 22px;
  }

  /* Trust: 4 in a row */
  .trust {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .trust li {
    font-size: 12.5px;
    justify-content: center;
  }
  .trust__icon {
    width: 30px;
    height: 30px;
  }
}

/* ============================== */
/* Responsive - lg (1024px+)      */
/* ============================== */
@media (min-width: 1024px) {
  .pricing__title {
    font-size: 64px;
  }
  .pricing__intro {
    flex: 0 0 34%;
  }
  .beta-banner__copy {
    font-size: 28px;
  }
  .beta-banner__device {
    width: 300px;
    margin-top: 30px;
  }
  .beta-banner__body {
    padding-right: 230px;
  }
  .plan-free__num {
    font-size: 100px;
  }
  .tier__num {
    font-size: 34px;
  }
  .cta-banner__title {
    font-size: 18px;
  }
}

/* ============================================================ */
/*  section10/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 10 (よくあるご質問)                                */
/* =================================================================== */

/* ============================== */
/* CSS Variables (共通)            */
/* ============================== */
:root {
  --color-brand-primary: #18538a;
  --color-brand-deep: #0f3a63;
  --color-brand-soft: #e8f1fa;
  --color-text-primary: #212529;
  --color-text-secondary: #5a6470;
  --color-text-muted: #8892a0;
  --color-accent-gold: #c9a063;

  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f3f7fc 55%, #e8f0f8 100%);

  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-num: "Helvetica Neue", "Arial", var(--font-family);

  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: var(--gradient-section);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
h2 { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }

/* ============================== */
/* Section wrapper                */
/* ============================== */
.faq {
  padding: 56px var(--container-padding) 64px;
}
.faq__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================== */
/* Top (intro + illustration)     */
/* ============================== */
.faq__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}

.faq__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__title {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.faq__title > span {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.faq__title > span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--color-brand-primary);
  border-radius: 2px;
}
.faq__lead {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.85;
}

/* ----- ビジュアル (イラスト + 3タグ) ----- */
.faq__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.faq__illust-wrap {
  width: 100%;
  max-width: 280px;
  display: flex;
  justify-content: center;
}
.faq__illust {
  width: 100%;
  height: auto;
  display: block;
}
.faq__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.faq__tags li {
  flex: 1 1 0;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  background: #ffffff;
  border: 1px solid rgba(24, 83, 138, 0.10);
  border-radius: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(24, 83, 138, 0.04);
}
.faq__tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-brand-soft);
  color: var(--color-brand-primary);
  margin-bottom: 2px;
}

/* ============================== */
/* FAQ List                       */
/* ============================== */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.faq__item {
  background: #ffffff;
  border: 1px solid rgba(24, 83, 138, 0.10);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24, 83, 138, 0.04);
  overflow: hidden;
}
.faq__item details > summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
}
.faq__q {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-brand-primary);
  color: #ffffff;
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 900;
}
.faq__question {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.5;
}
.faq__chevron {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--color-brand-primary);
  transition: transform 0.25s ease;
}
.faq__item details[open] .faq__chevron {
  transform: rotate(180deg);
}
.faq__answer {
  font-size: 12.5px;
  color: var(--color-text-secondary);
  line-height: 1.75;
  padding: 0 14px 16px 56px;
}

/* ============================== */
/* Contact CTA                    */
/* ============================== */
.faq__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin-top: 16px;
  background: linear-gradient(135deg, #d4e4f5 0%, #b6cde7 100%);
  border: 1px solid rgba(24, 83, 138, 0.28);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(24, 83, 138, 0.12);
}
.faq__contact-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-brand-primary);
  box-shadow: 0 2px 6px rgba(24, 83, 138, 0.08);
}
.faq__contact-text {
  flex: 1;
  min-width: 0;
}
.faq__contact-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.5;
}
.faq__contact-sub {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: 3px;
}

/* ============================== */
/* Responsive - md (768px+)       */
/* ============================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .faq {
    padding: 80px var(--container-padding) 88px;
  }

  /* Top: 2-column (intro-left, visual-right) */
  .faq__top {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
  }
  .faq__intro {
    flex: 1 1 auto;
    gap: 14px;
  }
  .faq__title {
    font-size: 40px;
    line-height: 1.4;
  }
  .faq__title > span {
    padding-bottom: 10px;
  }
  .faq__title > span::after {
    height: 4px;
  }
  .faq__lead {
    font-size: 14px;
  }
  .faq__lead br {
    display: none;
  }

  .faq__visual {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .faq__illust-wrap {
    flex: 0 0 240px;
    max-width: 240px;
  }
  .faq__illust {
    max-width: 100%;
  }
  .faq__tags {
    flex: 0 0 auto;
    flex-direction: row;
    gap: 10px;
    width: auto;
  }
  .faq__tags li {
    flex: 0 0 auto;
    width: 110px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 14px 10px;
    font-size: 12px;
    line-height: 1.45;
  }
  .faq__tag-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 2px;
  }
  .faq__tag-icon svg {
    width: 22px;
    height: 22px;
  }

  /* FAQ list */
  .faq__list {
    gap: 12px;
    margin-bottom: 36px;
  }
  .faq__item details > summary {
    padding: 18px 22px;
    gap: 16px;
  }
  .faq__q {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .faq__question {
    font-size: 15.5px;
  }
  .faq__chevron {
    width: 32px;
    height: 32px;
  }
  .faq__answer {
    font-size: 13.5px;
    padding: 0 22px 20px 74px;
  }

  /* Contact */
  .faq__contact {
    padding: 18px 24px;
    gap: 18px;
  }
  .faq__contact-icon {
    width: 56px;
    height: 56px;
  }
  .faq__contact-title {
    font-size: 16px;
  }
  .faq__contact-sub {
    font-size: 13px;
  }
}

/* ============================== */
/* Responsive - lg (1024px+)      */
/* ============================== */
@media (min-width: 1024px) {
  .faq__title {
    font-size: 46px;
  }
  .faq__illust-wrap {
    flex: 0 0 280px;
    max-width: 280px;
  }
  .faq__tags li {
    width: 124px;
    padding: 16px 10px;
    font-size: 12.5px;
  }
  .faq__tag-icon {
    width: 48px;
    height: 48px;
  }
  .faq__tag-icon svg {
    width: 24px;
    height: 24px;
  }
  .faq__question {
    font-size: 16px;
  }
}

/* ============================================================ */
/*  section11/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 11 (対応業種)                                      */
/* =================================================================== */

/* ============================== */
/* CSS Variables (共通)            */
/* ============================== */
:root {
  --color-brand-primary: #18538a;
  --color-brand-deep: #0f3a63;
  --color-brand-soft: #e8f1fa;
  --color-brand-softer: #f3f7fc;
  --color-text-primary: #212529;
  --color-text-secondary: #5a6470;
  --color-text-muted: #8892a0;
  --color-accent-gold: #c9a063;

  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f3f7fc 55%, #e8f0f8 100%);
  --gradient-icon: linear-gradient(135deg, #18538a 0%, #0f3a63 100%);
  /* 画像の左端 (テキストとの繋ぎ目) を白くフェードさせるグラデーション */
  --gradient-media-overlay: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.85) 6%, rgba(255,255,255,0) 22%);

  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-num: "Helvetica Neue", "Arial", var(--font-family);

  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: var(--gradient-section);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
h2, h3 { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================== */
/* Section wrapper                */
/* ============================== */
.industries {
  padding: 56px var(--container-padding) 64px;
}
.industries__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================== */
/* Top (intro + chips)            */
/* ============================== */
.industries__top {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}

.industries__intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.industries__title {
  display: inline-block;
  align-self: flex-start;
  font-size: 28px;
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 10px;
}
.industries__title-br-sp {
  display: inline;
}
.industries__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--color-brand-primary);
  border-radius: 2px;
}
.industries__lead {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.85;
}

/* ----- アイコンチップ一覧 ----- */
.industries__chips {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.industries__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.industries__chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-brand-soft);
  color: var(--color-brand-primary);
}
.industries__chip-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-secondary);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* ============================== */
/* Industry cards                 */
/* ============================== */
.industries__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

/* SP: 横並び (icon | text | thumbnail) */
.industry-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(24, 83, 138, 0.10);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(24, 83, 138, 0.05);
  overflow: hidden;
}

.industry-card__head {
  display: contents;
}
.industry-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gradient-icon);
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(15, 58, 99, 0.18);
  flex: 0 0 auto;
}
.industry-card__textbox {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.industry-card__title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.4;
}
.industry-card__title br {
  display: none;
}
.industry-card__desc {
  font-size: 11.5px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* メディア (画像) */
.industry-card__media {
  width: 92px;
  height: 60px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-brand-soft);
  flex: 0 0 auto;
}

/* 各カードの背景画像 + ブランドカラーの薄グラデーション */
.industry-card__media--fitness {
  background-image: var(--gradient-media-overlay),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=800&q=70&auto=format&fit=crop");
}
.industry-card__media--studio {
  background-image: var(--gradient-media-overlay),
    url("https://images.unsplash.com/photo-1518611012118-696072aa579a?w=800&q=70&auto=format&fit=crop");
}
.industry-card__media--coworking {
  background-image: var(--gradient-media-overlay),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=800&q=70&auto=format&fit=crop");
}
.industry-card__media--meeting {
  background-image: var(--gradient-media-overlay),
    url("https://images.unsplash.com/photo-1517502884422-41eaead166d4?w=800&q=70&auto=format&fit=crop");
}
.industry-card__media--sports {
  background-image: var(--gradient-media-overlay),
    url("https://images.unsplash.com/photo-1505666287802-931dc83948e9?w=800&q=70&auto=format&fit=crop");
}
.industry-card__media--others {
  background-image: var(--gradient-media-overlay),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=800&q=70&auto=format&fit=crop");
}

/* ============================== */
/* CTA panels (box-in-box)        */
/* ============================== */
.industries__ctas-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(135deg, #d4e4f5 0%, #b6cde7 100%);
  border-radius: 18px;
  border: 1px solid rgba(24, 83, 138, 0.28);
  box-shadow: 0 4px 14px rgba(24, 83, 138, 0.12);
}

.industries__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* 左: 丸バッジ + テキスト (背景に直接) */
.industries__cta--lead {
  padding: 4px 4px 4px 0;
}
.industries__cta-badge {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-icon);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(15, 58, 99, 0.22);
}

/* 右: 白ボックス (リンク) */
.industries__cta--link {
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid rgba(24, 83, 138, 0.10);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(24, 83, 138, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.industries__cta--link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(24, 83, 138, 0.10);
}

.industries__cta-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-brand-soft);
  color: var(--color-brand-primary);
}
.industries__cta-text {
  flex: 1;
  min-width: 0;
}
.industries__cta-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.5;
}
.industries__cta-sub {
  font-size: 11.5px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: 3px;
}
.industries__cta-chevron {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--color-brand-primary);
}

/* ============================== */
/* Responsive - md (768px+)       */
/* ============================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .industries {
    padding: 80px var(--container-padding) 88px;
  }

  /* Top: 2-column (intro-left, chips-right) */
  .industries__top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 36px;
  }
  .industries__intro {
    flex: 1;
    gap: 16px;
  }
  .industries__title {
    font-size: 38px;
    padding-bottom: 12px;
  }
  .industries__title-br-sp {
    display: none;
  }
  .industries__title::after {
    height: 5px;
  }
  .industries__lead {
    font-size: 14px;
  }
  /* PC でも改行を残す (見本通り) */

  /* chips: 横一列 (PC では右上に固定) */
  .industries__chips {
    flex: 0 0 auto;
    grid-template-columns: repeat(6, auto);
    gap: 14px;
    margin-bottom: 4px;
  }
  .industries__chip-icon {
    width: 46px;
    height: 46px;
  }
  .industries__chip-label {
    font-size: 11px;
  }

  /* cards: 3-column grid, カード内は左テキスト / 右イメージ */
  .industries__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
  }
  .industry-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    padding: 0;
    min-height: 160px;
  }
  .industry-card__head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 16px;
    justify-content: flex-start;
  }
  .industry-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }
  .industry-card__title {
    font-size: 14.5px;
  }
  .industry-card__title br {
    display: inline;
  }
  .industry-card__desc {
    font-size: 12px;
    line-height: 1.7;
  }
  .industry-card__media {
    width: 100%;
    height: 100%;
    border-radius: 0;
    align-self: stretch;
  }

  /* CTA: 外側ボックスを横並びに */
  .industries__ctas-wrap {
    flex-direction: row;
    align-items: center;
    gap: 22px;
    padding: 18px 22px;
    border-radius: 22px;
  }
  .industries__cta--lead {
    flex: 1 1 auto;
    gap: 18px;
    padding: 0;
  }
  .industries__cta-badge {
    width: 84px;
    height: 84px;
    font-size: 12px;
  }
  .industries__cta--link {
    flex: 0 0 auto;
    min-width: 380px;
    padding: 16px 18px;
    gap: 14px;
  }
  .industries__cta-icon {
    width: 44px;
    height: 44px;
  }
  .industries__cta-title {
    font-size: 13.5px;
  }
  .industries__cta-sub {
    font-size: 12px;
  }
}

/* ============================== */
/* Responsive - lg (1024px+)      */
/* ============================== */
@media (min-width: 1024px) {
  .industries__title {
    font-size: 44px;
    letter-spacing: -0.015em;
  }
  .industries__chips {
    gap: 22px;
  }
  .industries__chip-icon {
    width: 52px;
    height: 52px;
  }
  .industries__chip-label {
    font-size: 11.5px;
  }
  .industry-card {
    min-height: 180px;
  }
  .industry-card__head {
    padding: 22px 20px;
    gap: 12px;
  }
  .industry-card__icon {
    width: 42px;
    height: 42px;
  }
  .industry-card__title {
    font-size: 15.5px;
  }
  .industry-card__desc {
    font-size: 12.5px;
  }
  .industries__ctas-wrap {
    padding: 20px;
  }
  .industries__cta-title {
    font-size: 14px;
  }
}

/* ============================================================ */
/*  section12/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 12 (導入の流れ・サポート)                          */
/* =================================================================== */

/* ============================== */
/* CSS Variables (共通)           */
/* ============================== */
:root {
  --color-brand-primary: #18538a;
  --color-brand-deep: #0f3a63;
  --color-brand-soft: #e8f1fa;
  --color-brand-softer: #f3f7fc;
  --color-text-primary: #212529;
  --color-text-secondary: #5a6470;
  --color-text-muted: #8892a0;
  --color-accent-gold: #f5b73a;
  --color-accent-gold-deep: #e2a623;

  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f3f7fc 55%, #e8f0f8 100%);

  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-num: "Helvetica Neue", "Arial", var(--font-family);

  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: var(--gradient-section);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
h2, h3 { margin: 0; }
ol, ul { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none; color: inherit; }

/* ============================== */
/* Section wrapper                */
/* ============================== */
.flow {
  padding: 56px var(--container-padding) 64px;
}
.flow__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================== */
/* Header                         */
/* ============================== */
.flow__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}

.flow__badge {
  display: inline-flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(15, 58, 99, 0.18);
}
.flow__badge-num {
  background: var(--color-brand-deep);
  color: #ffffff;
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 900;
  padding: 7px 11px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.flow__badge-label {
  background: var(--color-brand-primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.flow__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  font-size: 28px;
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
  width: 100%;
}
.flow__title-text {
  display: inline-block;
  flex: 0 1 auto;
  min-width: 0;
}
.flow__title-deco {
  display: inline-block;
  width: 2px;
  height: 30px;
  background: var(--color-brand-deep);
  flex: 0 0 auto;
}
.flow__title-deco--left { transform: rotate(-22deg); }
.flow__title-deco--right { transform: rotate(22deg); }

.flow__lead {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ============================== */
/* Step cards (SP: vertical list) */
/* ============================== */
.flow__steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 28px;
  position: relative;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  row-gap: 6px;
  padding: 14px 14px;
  background: #ffffff;
  border: 1px solid rgba(24, 83, 138, 0.10);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 58, 99, 0.05);
}

/* SP: 下向き矢印コネクタ */
.flow-step + .flow-step::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(24, 83, 138, 0.45);
  border-bottom: 2px solid rgba(24, 83, 138, 0.45);
  transform: translateX(-50%) rotate(45deg);
}

.flow-step__figure {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--color-brand-softer);
  border-radius: 10px;
  overflow: hidden;
}
.flow-step__figure img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.flow-step__header {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.flow-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 6px;
  border-radius: 50%;
  background: var(--color-brand-deep);
  color: #ffffff;
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
}
.flow-step__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.4;
  min-width: 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.flow-step__desc {
  grid-column: 2;
  grid-row: 2;
  font-size: 12.5px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  min-width: 0;
  overflow-wrap: anywhere;
}
.flow-step__desc br { display: none; }

/* ============================== */
/* Support card                   */
/* ============================== */
.flow__support {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  row-gap: 14px;
  padding: 18px 16px 20px;
  background: linear-gradient(135deg, #d4e4f5 0%, #b6cde7 100%);
  border-radius: 14px;
  border: 1px solid rgba(24, 83, 138, 0.28);
  box-shadow: 0 4px 14px rgba(24, 83, 138, 0.12);
}

.flow__support-figure {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow__support-figure img {
  width: 100%;
  max-width: 110px;
  border-radius: 8px;
}

.flow__support-text {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.flow__support-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.5;
}
.flow__support-desc {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: 4px;
}

.flow__support-actions {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================== */
/* Buttons                        */
/* ============================== */
.flow-btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.flow-btn__icon {
  display: inline-flex;
  align-items: center;
}
.flow-btn__label {
  text-align: left;
}
.flow-btn__chevron {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
}

.flow-btn--primary {
  background: var(--color-accent-gold);
  color: var(--color-text-primary);
  border-color: var(--color-accent-gold);
  box-shadow: 0 3px 10px rgba(229, 168, 36, 0.25);
}
.flow-btn--primary:hover {
  box-shadow: 0 5px 14px rgba(229, 168, 36, 0.35);
  transform: translateY(-1px);
}

.flow-btn--ghost {
  background: #ffffff;
  color: var(--color-brand-primary);
  border-color: rgba(24, 83, 138, 0.30);
}
.flow-btn--ghost:hover {
  border-color: var(--color-brand-primary);
  box-shadow: 0 3px 10px rgba(24, 83, 138, 0.10);
  transform: translateY(-1px);
}

/* ============================== */
/* Responsive - md (768px+)       */
/* ============================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }
  .flow {
    padding: 80px var(--container-padding) 88px;
  }

  /* Header centered */
  .flow__head {
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
  }
  .flow__title {
    justify-content: center;
    font-size: 30px;
    gap: 18px;
  }
  .flow__title-deco {
    width: 2px;
    height: 36px;
  }
  .flow__lead {
    font-size: 14px;
  }

  /* Steps: 3 columns × 2 rows for tablet */
  .flow__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
  }
  .flow-step {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
    padding: 22px 16px 22px;
    row-gap: 10px;
  }
  /* Hide SP down-arrow on tablet+ */
  .flow-step + .flow-step::before {
    display: none;
  }
  .flow-step__header {
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .flow-step__num {
    min-width: 36px;
    height: 36px;
    font-size: 13.5px;
  }
  .flow-step__title {
    text-align: center;
    font-size: 15.5px;
  }
  .flow-step__figure {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 160px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
  }
  .flow-step__desc {
    grid-column: 1;
    grid-row: 3;
    font-size: 12.5px;
    text-align: center;
  }

  /* Support card: figure | text | actions */
  .flow__support {
    grid-template-columns: 140px 1fr auto;
    grid-template-rows: auto;
    column-gap: 20px;
    padding: 22px 24px;
  }
  .flow__support-figure {
    grid-row: 1;
  }
  .flow__support-figure img {
    max-width: 140px;
  }
  .flow__support-text {
    grid-row: 1;
  }
  .flow__support-title {
    font-size: 16.5px;
  }
  .flow__support-desc {
    font-size: 13px;
  }
  .flow__support-actions {
    grid-column: 3;
    grid-row: 1;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .flow-btn {
    padding: 13px 18px;
    font-size: 14px;
    min-width: 220px;
  }
}

/* ============================== */
/* Responsive - lg (1024px+)      */
/* ============================== */
@media (min-width: 1024px) {
  .flow {
    padding: 96px var(--container-padding) 96px;
  }

  .flow__title {
    font-size: 34px;
    gap: 22px;
  }
  .flow__title-deco {
    height: 42px;
  }

  /* Steps: 6 columns connected by chevron */
  .flow__steps {
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-bottom: 36px;
  }
  .flow-step {
    padding: 20px 12px 22px;
  }
  /* Right-pointing chevron between cards */
  .flow-step + .flow-step::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: -3px;
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(24, 83, 138, 0.40);
    border-top: 2px solid rgba(24, 83, 138, 0.40);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .flow-step__num {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }
  .flow-step__title {
    font-size: 13.5px;
  }
  .flow-step__figure {
    max-width: 140px;
  }
  .flow-step__desc {
    font-size: 11.5px;
    line-height: 1.7;
  }

  .flow__support {
    grid-template-columns: 160px 1fr auto;
    padding: 24px 28px;
    column-gap: 24px;
  }
  .flow__support-figure img {
    max-width: 160px;
  }
  .flow__support-title {
    font-size: 18px;
  }
  .flow__support-desc {
    font-size: 13.5px;
  }
  .flow-btn {
    font-size: 14px;
    min-width: 240px;
  }
}

/* ============================== */
/* Extra tweaks for narrow SP     */
/* ============================== */
@media (max-width: 480px) {
  .flow-step {
    grid-template-columns: 92px 1fr;
    padding: 12px 14px;
  }
  .flow-step__figure {
    width: 92px;
    height: 92px;
  }
  .flow-step__title {
    font-size: 14.5px;
  }
}

/* ============================================================ */
/*  section13/styles.css
 * ============================================================ */
/* =================================================================== */
/* Spekan LP — Section 13 (お問い合わせ・資料請求)                       */
/* =================================================================== */

:root {
  --color-brand-primary: #18538a;
  --color-brand-deep: #0f3a63;
  --color-brand-soft: #e8f1fa;
  --color-text-primary: #212529;
  --color-text-secondary: #5a6470;
  --color-text-muted: #8892a0;
  --color-accent-gold: #c9a063;
  --color-required: #c84a4a;
  --color-border: #d8e1ec;

  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f3f7fc 55%, #e8f0f8 100%);

  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-num: "Helvetica Neue", "Arial", var(--font-family);

  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ============================== */
/* Reset / Base                   */
/* ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background: var(--gradient-section);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
p { margin: 0; }
h2, h3 { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; }
[hidden] { display: none !important; }

/* ============================== */
/* Section wrapper                */
/* ============================== */
.contact {
  padding: 56px var(--container-padding) 64px;
}
.contact__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================== */
/* Layout                         */
/* ============================== */
.contact__layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ============================== */
/* Left: intro                    */
/* ============================== */
.contact__intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* タイトル */
.contact__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.contact__title-line {
  display: block;
}
.contact__lead {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.85;
}
.contact__lead-br-pc {
  display: none;
}

/* イラスト */
.contact__illust {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.contact__illust-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 「ご相談中の方」カード */
.contact__needs {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(24, 83, 138, 0.10);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(24, 83, 138, 0.04);
}
.contact__needs-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}
.contact__needs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__needs-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.55;
}
.contact__needs-check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-brand-primary);
  color: #ffffff;
  margin-top: 2px;
}

/* 専任スタッフ帯 */
.contact__staff {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(24, 83, 138, 0.10);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24, 83, 138, 0.04);
}
.contact__staff-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-brand-soft);
  color: var(--color-brand-primary);
}
.contact__staff-text { flex: 1; min-width: 0; }
.contact__staff-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.45;
}
.contact__staff-sub {
  font-size: 11.5px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: 2px;
}

/* ============================== */
/* Right: form card               */
/* ============================== */
.contact__form-card {
  background: #ffffff;
  border: 1px solid rgba(24, 83, 138, 0.10);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(24, 83, 138, 0.06);
  padding: 22px 18px;
}

.contact__form-header {
  text-align: center;
  margin-bottom: 16px;
}
.contact__form-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1.3;
}
.contact__form-title-icon {
  color: var(--color-brand-primary);
  display: inline-flex;
}
.contact__form-sub {
  font-size: 11.5px;
  color: var(--color-text-secondary);
  margin-top: 6px;
  line-height: 1.6;
}

/* ============================== */
/* タブ (繋がったセグメント)        */
/* ============================== */
.contact__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--color-brand-primary);
  margin-bottom: 20px;
}
.contact__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border: none;
  border-radius: 0;
  background: #ffffff;
  color: var(--color-brand-primary);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}
.contact__tab + .contact__tab {
  border-left: 1.5px solid var(--color-brand-primary);
}
.contact__tab--active {
  background: var(--color-brand-primary);
  color: #ffffff;
}
.contact__tab-icon {
  display: inline-flex;
}

/* ============================== */
/* フォーム                       */
/* ============================== */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.contact__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact__required {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-required);
}
.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-primary);
  background: #f7faff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px 12px;
  line-height: 1.5;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--color-text-muted);
  font-weight: 400;
}
.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--color-brand-primary);
  background: #ffffff;
}
.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__select-wrap {
  position: relative;
}
.contact__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
  color: var(--color-text-muted);
}
.contact__select-arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: var(--color-brand-primary);
  pointer-events: none;
  display: inline-flex;
}

.contact__notice {
  font-size: 10.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: 2px;
}

/* 送信ボタン */
.contact__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  background: var(--color-brand-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(24, 83, 138, 0.25);
  transition: background 0.18s ease, transform 0.12s ease;
  margin-top: 4px;
}
.contact__submit:hover {
  background: var(--color-brand-deep);
}
.contact__submit:active { transform: translateY(1px); }
.contact__submit:disabled,
.contact__submit[aria-busy="true"] {
  background: #b6c4d3;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.contact__submit:disabled:hover {
  background: #b6c4d3;
}
.contact__submit-icon { display: inline-flex; }
.contact__submit-arrow {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

/* ============================== */
/* バリデーションエラー            */
/* ============================== */
.contact__input.is-invalid,
.contact__textarea.is-invalid,
.contact__select.is-invalid {
  border-color: var(--color-required);
  background: #fff7f7;
}
.contact__error {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-required);
  line-height: 1.5;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.contact__error::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-required);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.contact__submit-error {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-required);
  background: #fff7f7;
  border: 1px solid rgba(200, 74, 74, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  line-height: 1.5;
}

/* ============================== */
/* 送信完了画面                   */
/* ============================== */
.contact__complete {
  text-align: center;
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: contactCompleteFadeIn 0.5s ease both;
}
@keyframes contactCompleteFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.contact__complete-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(24, 83, 138, 0.10), rgba(24, 83, 138, 0.04));
  color: var(--color-brand-primary);
  box-shadow: 0 4px 14px rgba(24, 83, 138, 0.12);
}
.contact__complete-icon--document {
  background: linear-gradient(135deg, rgba(201, 160, 99, 0.16), rgba(246, 201, 99, 0.10));
  color: var(--color-gold-base);
  box-shadow: 0 4px 14px rgba(201, 160, 99, 0.18);
}
.contact__complete-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.contact__complete-lead {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-brand-primary);
  line-height: 1.7;
}
.contact__complete-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}
.contact__complete-desc strong {
  font-weight: 800;
  color: var(--color-text-primary);
}
.contact__complete-note {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: 4px;
}

/* ============================== */
/* Trust badges                    */
/* ============================== */
.contact__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.contact__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  background: #ffffff;
  border: 1px solid rgba(24, 83, 138, 0.10);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24, 83, 138, 0.04);
  text-align: center;
}
.contact__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-brand-soft);
  color: var(--color-brand-primary);
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 900;
}
.contact__trust-icon--yen {
  font-size: 14px;
  letter-spacing: -0.02em;
}
.contact__trust-text {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.45;
}

/* =================================================================== */
/* Responsive — md (768px+)                                              */
/* =================================================================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .contact {
    padding: 80px var(--container-padding) 88px;
  }

  /* 2 カラム */
  .contact__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
  .contact__intro {
    flex: 0 0 40%;
    max-width: 40%;
    gap: 20px;
  }
  .contact__title {
    font-size: 28px;
    line-height: 1.35;
  }
  .contact__lead {
    font-size: 13.5px;
  }
  .contact__lead-br-pc {
    display: inline;
  }
  .contact__illust {
    max-width: 360px;
  }

  /* フォームカード */
  .contact__form-card {
    flex: 1;
    padding: 28px 28px;
  }
  .contact__form-title {
    font-size: 22px;
  }
  .contact__form-sub {
    font-size: 12.5px;
  }

  .contact__tabs {
    margin-bottom: 22px;
  }
  .contact__tab {
    padding: 14px 12px;
    font-size: 14px;
  }

  .contact__form { gap: 16px; }
  .contact__row { gap: 14px; }
  .contact__label { font-size: 12.5px; }
  .contact__input,
  .contact__select,
  .contact__textarea {
    font-size: 13.5px;
    padding: 11px 14px;
  }
  .contact__submit {
    font-size: 15px;
    padding: 16px 18px;
  }

  .contact__complete {
    padding: 48px 28px;
    gap: 18px;
  }
  .contact__complete-icon {
    width: 84px;
    height: 84px;
  }
  .contact__complete-title {
    font-size: 24px;
  }
  .contact__complete-lead {
    font-size: 15px;
  }
  .contact__complete-desc {
    font-size: 13.5px;
  }
  .contact__complete-br {
    display: none;
  }

  /* 信頼バッジ 4 カラム */
  .contact__trust {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 36px;
  }
  .contact__trust-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 14px 16px;
    gap: 12px;
  }
  .contact__trust-text {
    font-size: 12px;
  }
}

/* =================================================================== */
/* Responsive — lg (1024px+)                                             */
/* =================================================================== */
@media (min-width: 1024px) {
  .contact__layout {
    gap: 40px;
  }
  .contact__title {
    font-size: 30px;
  }
  .contact__form-card {
    padding: 32px 32px;
  }
  .contact__form-title {
    font-size: 24px;
  }
  .contact__trust-text {
    font-size: 12.5px;
  }
}

/* ============================================================ */
/*  Overrides (formerly inline <style> in index.html)
 * ============================================================ */
    /* ページ全体の背景をフラット白に。各セクションが自分の背景を持つので親はフラット */
    body { background: #ffffff; }

    /* ヘッダーを画面上部に固定。スクロール時も常時可視 */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.96);
      -webkit-backdrop-filter: saturate(180%) blur(8px);
      backdrop-filter: saturate(180%) blur(8px);
      border-bottom: 1px solid rgba(15, 58, 99, 0.06);
    }
    /* 固定ヘッダー分のコンテンツ余白 + アンカースクロール時のオフセット */
    body { padding-top: 64px; }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 72px;
    }
    @media (min-width: 768px) {
      body { padding-top: 72px; }
      html { scroll-padding-top: 80px; }
    }

    /* セクション1のヒーローは body の hero グラデーションを前提にしていたため、
       他セクションの body 背景に上書きされても保つよう明示的に指定 */
    .hero { background: var(--gradient-hero); }

    /* ── セクション境界を出すための交互配色 (白 ↔ #e8f1fa) ── */
    .trouble,
    .features:has(#feature-sales),
    .features:has(#feature-viz),
    .pricing,
    .industries,
    .contact {
      background: var(--color-brand-soft);
    }
    .concept,
    .features:has(#feature-cost),
    .features:has(#feature-loss),
    .more,
    .faq,
    .flow {
      /* セクション1 (--gradient-hero) と同じトーンの微妙な青みグラデ。
         エンドポイントは #e8f1fa のタイル背景より明確に薄く保ち、コントラストを維持 */
      background: linear-gradient(165deg, #ffffff 0%, #f7fafc 60%, #eef3f9 100%);
    }

    /* 料金プランの背景(#e8f1fa)とベータバナーの元背景(#eaf2fc)がほぼ同色のため、
       バナーを白カード化して浮かび上がらせる */
    .beta-banner {
      background: #ffffff;
      box-shadow: 0 6px 20px rgba(15, 58, 99, 0.08);
    }

    /* 特徴1〜4の左右交互レイアウトを復元
       各セクションCSSが個別に .feature の flex-direction を指定するため、
       最後に読み込まれる section7 の row-reverse が全特徴に効いてしまう問題への対処。
       HTML側の .feature--reverse 修飾子に従って明示的に分岐させる */
    @media (min-width: 768px) {
      .feature { flex-direction: row; }
      .feature--reverse { flex-direction: row-reverse; }
    }

    /* 導入の流れセクションのタイトル:
       左右の \\ // 装飾を削除し、タイトル下にブランドプライマリのアンダーバー。
       font-size の拡大はデスクトップのみ */
    .flow__title {
      gap: 0;
    }
    .flow__title-deco { display: none; }
    .flow__title-text {
      position: relative;
      padding-bottom: 12px;
    }
    .flow__title-text::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 4px;
      background: var(--color-brand-primary);
      border-radius: 2px;
    }
    @media (min-width: 1024px) {
      .flow__title {
        font-size: 44px;
      }
    }

    /* 導入の流れセクション末尾のサポートカード。
       元の濃い水色グラデを、FAQ/対応業種CTAと同系の白カード+淡い影に統一。
       ゴーストボタンは白背景に溶けないよう極淡グレーに微調整 */
    .flow__support {
      background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 100%);
      border: 1px solid rgba(24, 83, 138, 0.08);
      border-radius: 18px;
      box-shadow: 0 12px 32px rgba(15, 58, 99, 0.08);
    }
    /* お問い合わせボタン: セクション1の .btn--gold と同じゴールドグラデに統一
       (元の --color-accent-gold #c9a063 はフラットで暗く見えていたため) */
    .flow-btn--primary {
      background: var(--gradient-gold);
      color: var(--color-text-invert);
      border-color: transparent;
      box-shadow: var(--shadow-gold);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .flow-btn--primary:hover {
      background: var(--gradient-gold-hover);
      box-shadow: 0 12px 26px rgba(184, 137, 63, 0.38);
      transform: translateY(-3px);
    }
    /* 資料請求ボタン: セクション1の .btn--white と同じ純白+細ボーダーに統一 */
    .flow-btn--ghost {
      background: var(--color-bg-primary);
      color: var(--color-text-primary);
      border-color: var(--color-border);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }
    .flow-btn--ghost:hover {
      background: var(--color-bg-secondary);
      border-color: var(--color-border-strong);
      transform: translateY(-3px);
      box-shadow: 0 8px 18px rgba(15, 58, 99, 0.10);
    }

    /* 対応業種セクション上部の業種チップアイコン背景を白に。
       元: --color-brand-soft (#e8f1fa) でセクション背景と同色になり丸が消えていた */
    .industries__chip-icon {
      background: #ffffff;
      box-shadow: 0 2px 8px rgba(15, 58, 99, 0.08);
    }

    /* 対応業種セクション末尾のCTAボックス。
       旧: 大きめ水色グラデコンテナ + 中に navy丸バッジ + 白カード で二重構造が野暮ったかったため、
       外箱を白カード化、右側を navy グラデの一次ボタンに昇格させてメリハリを出す */
    .industries__ctas-wrap {
      background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
      border: 1px solid rgba(24, 83, 138, 0.08);
      box-shadow: 0 10px 30px rgba(15, 58, 99, 0.06);
    }
    .industries__cta-badge {
      width: 64px;
      height: 64px;
      font-size: 10.5px;
      box-shadow: 0 4px 14px rgba(15, 58, 99, 0.18);
    }
    @media (min-width: 768px) {
      .industries__cta-badge {
        width: 76px;
        height: 76px;
        font-size: 11.5px;
      }
    }
    .industries__cta--link {
      /* セクション1の .btn--gold と同じゴールドグラデに統一 */
      background: var(--gradient-gold);
      border: none;
      box-shadow: var(--shadow-gold);
    }
    .industries__cta--link:hover {
      background: var(--gradient-gold-hover);
      box-shadow: 0 10px 24px rgba(184, 137, 63, 0.40);
      transform: translateY(-1px);
    }
    .industries__cta--link .industries__cta-icon {
      background: rgba(0, 0, 0, 0.06);
      color: var(--color-text-primary);
    }
    .industries__cta--link .industries__cta-title,
    .industries__cta--link .industries__cta-chevron {
      color: var(--color-text-primary);
    }
    .industries__cta--link .industries__cta-sub {
      color: rgba(33, 37, 41, 0.7);
    }

    /* ゴールド系CTAボタンの文字色を黒に統一(セクション1ヒーローCTAバナー含む) */
    .btn--gold,
    .flow-btn--primary,
    .contact__submit {
      color: var(--color-text-primary);
    }

    /* セクション13お問い合わせフォームの送信ボタンも .btn--gold と同じゴールドグラデに統一 */
    .contact__submit {
      background: var(--gradient-gold);
      box-shadow: var(--shadow-gold);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .contact__submit:hover {
      background: var(--gradient-gold-hover);
      box-shadow: 0 12px 26px rgba(184, 137, 63, 0.38);
      transform: translateY(-3px);
    }

    /* ヘッダー「お問い合わせ」ボタン (.btn--primary) を他CTAと同じゴールド系に統一 */
    .header .btn--primary {
      background: var(--gradient-gold);
      color: var(--color-text-primary);
      box-shadow: var(--shadow-gold);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .header .btn--primary:hover {
      background: var(--gradient-gold-hover);
      box-shadow: 0 12px 26px rgba(184, 137, 63, 0.38);
      transform: translateY(-3px);
    }

    /* FAQセクション末尾のサポート訴求カードを上品に。
       元の濃いめ水色グラデから、白カード+ネイビー丸アイコン+右矢印のCTA調へ */
    .faq__contact {
      position: relative;
      background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
      border: 1px solid rgba(24, 83, 138, 0.08);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(15, 58, 99, 0.06);
      padding: 22px 56px 22px 24px;
      margin-top: 36px;
    }
    .faq__contact-icon {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-deep) 100%);
      color: #ffffff;
      box-shadow: 0 6px 18px rgba(24, 83, 138, 0.28);
    }
    .faq__contact::after {
      content: "";
      position: absolute;
      right: 22px;
      top: 50%;
      width: 10px;
      height: 10px;
      border-right: 2px solid var(--color-brand-primary);
      border-top: 2px solid var(--color-brand-primary);
      transform: translateY(-50%) rotate(45deg);
      opacity: 0.55;
    }
    @media (min-width: 768px) {
      .faq__contact {
        padding: 24px 64px 24px 28px;
      }
      .faq__contact-icon {
        width: 56px;
        height: 56px;
      }
      .faq__contact::after {
        right: 28px;
        width: 12px;
        height: 12px;
      }
    }

    /* 特徴1〜4の画像エッジのフェザリング(CSS radial-gradient mask)を解除 */
    .feature__visual-img {
      -webkit-mask-image: none;
      mask-image: none;
    }

    #feature-sales .feature__visual-img {
      width: 100%;
      max-width: 460px;
      margin: 0 auto;
    }
    @media (min-width: 768px) {
      #feature-sales .feature__visual-img {
        width: 100%;
        max-width: 100%;
      }
    }

    /* セクション9のCSSが .cta-banner を別用途で再定義してしまい、
       セクション1のヒーロー下CTAバナーの青背景が消えてしまうため復元 */
    .cta-banner {
      background: var(--color-brand-primary);
      background-image: linear-gradient(180deg, #18538a 0%, #144674 100%);
      padding: 22px var(--container-padding);
      border: none;
      border-radius: 0;
      margin-bottom: 0;
    }
