:root {
    --primary: #0d589e;
    --primary-dark: #0a4478;
    --accent: #167cda;
    --bg: #f5f9fc;
    --bg-soft: #eef6fd;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #5b6778;
    --line: #d8e2ee;
    --shadow: 0 10px 30px rgba(13, 48, 87, 0.12);
    --shadow-strong: 0 20px 40px rgba(13, 48, 87, 0.18);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.7;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

main { overflow: hidden; }

.hero {
    position: relative;
    min-height: 720px;
    padding: 34px 20px 64px;
    background: url('../img/sora_RESQIS.png') center center / cover no-repeat;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 74%,
        rgba(255, 255, 255, 0.60) 100%
    );
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    margin: 60px 0 0;
    font-size: clamp(3.4rem, 5.8vw, 5rem);
    line-height: 1.12;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subcopy {
    margin: 22px 0 0;
    max-width: 860px;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.55;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.section {
    padding: 84px 24px;
}

.section:nth-child(even) {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.section-title {
    position: relative;
    max-width: 960px;
    margin: 0 auto 18px;
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.35;
    color: var(--primary);
    font-weight: 700;
}

.section-title::after {
    content: "";
    display: block;
    width: 200px;
    height: 4px;
    margin: 12px auto 0;
    background: var(--accent);
    border-radius: 999px;
}

.section-lead {
    max-width: 860px;
    margin: 0 auto 36px;
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-background {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.background-inner,
.solution-inner,
.flow-grid,
.intro-grid,
.category-grid,
.future-items,
.contact-grid {
    max-width: 1120px;
    margin: 0 auto;
}

.background-copy p,
.background-note {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 1.08rem;
}

.background-list {
    margin: 18px 0 18px 0;
    padding-left: 1.2em;
    color: var(--text);
}

.background-list li + li {
    margin-top: 10px;
}

.background-bridge-wrap {
    border-top: 1px solid #d8e2ee;
    padding-top: 15px;
}

.background-bridge {
    margin: 0 0 5px;
    font-size: 1.08rem;
    line-height: 1.9;
    font-weight: 500;
    color: var(--primary-dark);
}

.background-bridge-emphasis {
    font-weight: 700;
}

.value-intro-label {
    display: inline-block;
    margin: 0 auto 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #e9f3fc;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.section-solution {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.solution-flow {
    display: flex;
    flex-direction: column;
    gap: 56px;
    margin-top: 40px;
}

.solution-feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 32px 28px;
}

.solution-feature-primary {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.solution-feature-head {
    max-width: 860px;
    margin-bottom: 24px;
}

.solution-feature-head h3 {
    margin: 0 0 14px;
    color: var(--primary-dark);
    font-size: 1.75rem;
    line-height: 1.4;
}

.solution-feature-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.solution-feature-body {
    display: grid;
    gap: 24px;
    align-items: center;
}

.solution-feature-body-reception,
.solution-feature-body-confirm {
    grid-template-columns: minmax(0, 420px) 1fr;
}

.solution-visual-card,
.solution-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
}

.solution-visual-card img,
.solution-card img {
    width: 100%;
    border-radius: 12px;
}

.solution-point-list {
    display: grid;
    gap: 16px;
}

.solution-point {
    background: #f8fbff;
    border: 1px solid #dfeaf5;
    border-radius: 16px;
    padding: 18px;
}

.solution-point h4,
.solution-caption h4 {
    margin: 0 0 8px;
    color: var(--primary-dark);
    font-size: 1.02rem;
    line-height: 1.5;
}

.solution-point p,
.solution-caption p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 980px;
}

.solution-card-compact {
    padding: 16px;
}

.solution-image {
    height: 170px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

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

.solution-caption {
    padding-top: 14px;
}

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

.flow-card,
.intro-card,
.category-card,
.future-item,
.contact-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.flow-card,
.intro-card,
.category-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flow-card:hover,
.intro-card:hover,
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.flow-card {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}

.flow-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
}

.flow-card > p {
    margin: 0 0 16px;
    color: var(--muted);
}

.flow-card > img {
    width: 100%;
    max-width: 340px;
    margin-top: auto;
    border-radius: 14px;
}

.flow-card-dashboard > img {
    max-width: 420px;
}

.flow-card-usage {
    justify-content: space-between;
}

.flow-usage-main {
    width: 100%;
    margin-top: auto;
}

.flow-usage-main img {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    border-radius: 14px;
}

.flow-caption {
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #64748b;
}

.issues-wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 26px;
}

.issue-group {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.issue-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.issue-head img { width: 74px; }

.issue-head span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

.issue-list { display: grid; gap: 16px; }

.issue-row {
    display: grid;
    grid-template-columns: 1.05fr 40px 1.1fr;
    gap: 14px;
    align-items: stretch;
}

.issue-problem,
.issue-solution {
    padding: 20px;
    border-radius: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 88px;
}

.issue-problem { background: #eef3f8; }
.issue-solution {
    background: #ffffff;
    border: 1px solid var(--line);
}

.issue-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

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

.intro-card {
    padding: 26px 22px;
    text-align: center;
}

.intro-problem {
    min-height: 72px;
    padding: 16px;
    border-radius: 16px;
    background: #eef3f8;
    font-weight: 700;
}

.intro-arrow {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 10px 0;
}

.intro-solution {
    min-height: 72px;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 700;
    margin-bottom: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}

.category-card {
    padding: 22px;
    border: 1px solid var(--line);
}

.category-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.category-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

.table-wrap {
    max-width: 1120px;
    margin: 0 auto;
    overflow-x: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.function-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 920px;
}

.function-table thead th {
    background: #eaf3fb;
    color: var(--primary-dark);
    font-size: 0.96rem;
    text-align: center;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
}

.function-table td {
    padding: 15px 18px;
    border-bottom: 1px solid #edf2f7;
    vertical-align: top;
    font-size: 0.94rem;
}

.function-table tbody tr:nth-child(even) {
    background: #fbfdff;
}

.function-table td:nth-child(1),
.function-table td:nth-child(2) {
    text-align: center;
    white-space: nowrap;
}

.future-note {
    max-width: 1120px;
    margin: 28px auto 0;
}

.note-title,
.future-heading,
.contact-label {
    font-weight: 700;
    color: var(--primary-dark);
}

.note-title {
    margin: 0 0 16px;
    text-align: center;
    font-size: 1.1rem;
}

.future-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.future-item {
    padding: 18px 16px;
    text-align: center;
    font-weight: 700;
}

.future-wrap {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.future-text {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
}

.future-text ul {
    margin: 16px 0 0;
    padding-left: 20px;
}

.future-text li + li { margin-top: 10px; }

.section-contact {
    background: linear-gradient(180deg, #f7fbff 0%, #eef6fd 100%);
}

.contact-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 32px;
    background: #ffffff;
    border: 2px solid var(--accent);
}

.contact-card h2 {
    margin: 0 0 20px;
    text-align: center;
    color: var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-grid > div {
    padding: 20px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid var(--line);
}

.footer {
    padding: 24px 16px 40px;
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
}

@media (max-width: 1024px) {
    .hero {
        min-height: 560px;
        padding-top: 28px;
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 4.2rem);
    }

    .solution-feature-body-reception,
    .solution-feature-body-confirm,
    .flow-grid,
    .intro-grid,
    .category-grid,
    .future-items,
    .contact-grid,
    .future-wrap {
        grid-template-columns: 1fr 1fr;
    }

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

    .future-wrap { align-items: start; }

    .flow-card-dashboard {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 460px;
        padding: 24px 16px 36px;
        background-position: center center;
    }

    .hero h1 {
        margin-top: 28px;
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .hero-subcopy {
        margin-top: 14px;
        font-size: 0.92rem;
        line-height: 1.55;
        max-width: 94%;
    }

    .background-bridge-wrap {
        padding: 20px 0 0;
    }

    .background-bridge {
        font-size: 1rem;
    }

    .solution-feature {
        padding: 24px 18px;
    }

    .solution-feature-head h3 {
        font-size: 1.45rem;
    }

    .solution-feature-body-reception,
    .solution-feature-body-confirm,
    .decision-grid,
    .flow-grid,
    .intro-grid,
    .category-grid,
    .future-items,
    .contact-grid,
    .future-wrap {
        grid-template-columns: 1fr;
    }

    .section { padding: 64px 16px; }

    .issue-group { padding: 20px 16px; }

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

    .issue-arrow {
        transform: rotate(90deg);
        min-height: 20px;
    }

    .issue-problem,
    .issue-solution,
    .intro-problem,
    .intro-solution {
        min-height: auto;
    }

    .function-table { min-width: 760px; }

    .contact-card { padding: 24px 18px; }

    .flow-card-dashboard {
        grid-column: auto;
    }
}

/* =========================================================
   index.html から移動したCSS
   ========================================================= */

:root {
    --bg: #f7f9fc;
    --panel: #ffffff;
    --line: #dbe4f0;
    --text: #243447;
    --muted: #5c6f82;
    --primary: #1f5fae;
    --accent: #edf4fb;
    --max: 1080px;
    --shadow: 0 12px 28px rgba(22, 48, 82, 0.08);
  }

  * { box-sizing: border-box; }
  body {
    margin: 0;
    font-family: "Yu Gothic", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.9;
  }

  section {
    padding: 72px 20px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
  }

  h1, h2, h3, p, ul {
    margin-top: 0;
  }

  h1 {
    font-size: clamp(34px, 5vw, 46px);
    line-height: 1.35;
    margin-bottom: 18px;
  }

  h2 {
    font-size: clamp(26px, 3.5vw, 34px);
    margin-bottom: 22px;
    color: var(--primary);
  }

  h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
  }

  p {
    margin-bottom: 16px;
  }

  ul {
    padding-left: 1.3em;
    margin-bottom: 16px;
  }

  .hero-copy {
    max-width: 860px;
    margin: 0 auto;
  }

  .hero-sub {
    font-size: 20px;
    color: var(--muted);
  }

  .lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 860px;
  }

  .panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
  }

  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
  }

  .value-card h3,
  .trust-card h3,
  .cta h2 {
    margin-bottom: 10px;
  }

  .muted {
    color: var(--muted);
  }

  .cta {
    background: linear-gradient(135deg, #0f315d 0%, #1f6ed4 60%, #0aa8a1 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 24px 56px rgba(18, 53, 98, 0.18);
  }

  .cta h2,
  .cta h3,
  .cta p {
    color: #ffffff;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    margin-top: 22px;
  }

  .contact-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    padding: 22px;
  }

  .contact-card strong {
    display: block;
    font-size: 20px;
    margin-top: 6px;
  }

  footer {
    padding: 28px 20px 40px;
    color: var(--muted);
    text-align: center;
    font-size: 14px;
  }

  @media (max-width: 820px) {
    .grid-2,
    .grid-3,
    .contact-grid {
      grid-template-columns: 1fr;
    }

    section {
      padding: 56px 16px;
    }

    .hero-sub,
    .lead {
      font-size: 16px;
    }
  }
  .image-panel {
    margin-top: 22px;
    text-align: center;
  }
  .image-panel img {
    display: block;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #fff;
  }
  .image-panel.small img {
    max-width: 460px;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .screen-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
  }
  .screen-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .screen-card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
  }
  .screen-card h3 { margin-top: 14px; }
  .future-visual {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 28px;
    align-items: center;
  }
  .future-visual img {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
  }
  @media (max-width: 820px) {
    .screen-grid,
    .future-visual { grid-template-columns: 1fr; }
    .hero-visual-bg { min-height: 460px; }
  }


  .confirm-layout {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 28px;
    align-items: center;
    margin-top: 24px;
  }

  .confirm-layout .confirm-image {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .confirm-layout .confirm-image img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: none;
    border: none;
  }

  .confirm-points {
    display: grid;
    gap: 18px;
  }

  .confirm-point {
    background: #f8fbff;
    border: 1px solid #dfeaf5;
    border-radius: 16px;
    padding: 20px;
  }

  .confirm-point h3 {
    margin-bottom: 8px;
  }

  @media (max-width: 820px) {
    .confirm-layout {
      grid-template-columns: 1fr;
    }
  }


  .function-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .function-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
  }

  .function-table th,
  .function-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #edf2f7;
    text-align: left;
    vertical-align: top;
    font-size: 14px;
  }

  .function-table th {
    background: #eaf3fb;
    color: var(--primary);
    font-weight: 700;
    text-align: center;
  }

  .function-table td:nth-child(1),
  .function-table td:nth-child(2) {
    text-align: center;
    white-space: nowrap;
  }

  .function-table tr:last-child td {
    border-bottom: none;
  }

  .function-table tbody tr:nth-child(even) {
    background: #fbfdff;
  }


  .operation-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
  }

  .operation-step {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
    min-height: 260px;
  }

  .operation-step::after {
    content: "→";
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow);
    z-index: 2;
  }

  .operation-step:last-child::after {
    display: none;
  }

  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 42px;
    padding: 0 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1f5fae 0%, #0aa8a1 100%);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .step-visual {
    height: 76px;
    border-radius: 16px;
    background: linear-gradient(180deg, #eef7ff 0%, #e5f3f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 14px 0;
    border: 1px solid #dbeaf5;
  }

  .operation-step h3 {
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 10px;
  }

  .operation-step p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 0;
  }

  @media (max-width: 980px) {
    .operation-flow {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .operation-step::after {
      display: none;
    }
  }

  @media (max-width: 600px) {
    .operation-flow {
      grid-template-columns: 1fr;
    }
  }




  /* 導入後の運用イメージ：番号なし・絵あり */
  .operation-step .step-number {
    display: none !important;
  }

  .operation-step .step-visual {
    display: flex !important;
    height: 76px;
    border-radius: 16px;
    background: linear-gradient(180deg, #eef7ff 0%, #e5f3f8 100%);
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 14px 0;
    border: 1px solid #dbeaf5;
  }

  .operation-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
  }

  .section-image {
    margin-top: 24px;
    text-align: center;
  }

  .section-image img {
    display: block;
    width: 100%;
    max-width: 520px;
    max-height: 280px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 18px;
  }

  .section-image.card-like {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
  }

  .section-image.logo img {
    max-width: 320px;
  }

  .inline-visual {
    display: grid;
    grid-template-columns: minmax(220px, 360px) 1fr;
    gap: 28px;
    align-items: center;
    margin-top: 24px;
  }

  @media (max-width: 820px) {
    .inline-visual {
      grid-template-columns: 1fr;
    }
  }

  /* 文章中心セクション用の小さなビジュアル */
  .text-visual {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(180deg, #eef7ff 0%, #e5f3f8 100%);
    border: 1px solid #dbeaf5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 14px;
  }

  .panel > .text-visual,
  .card > .text-visual {
    margin-top: 0;
  }


  /* 柔軟な拡張性：円形ビジュアル */
  .resqis-orbit-wrap {
    display: grid;
    grid-template-columns: minmax(320px, 520px) 1fr;
    gap: 36px;
    align-items: center;
  }

  .resqis-orbit {
    position: relative;
    width: min(520px, 100%);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle at center, #f8fcff 0%, #eef7ff 58%, #e4f1fb 100%);
    box-shadow: inset 0 0 0 1px #dbeaf5, 0 18px 40px rgba(22, 48, 82, 0.08);
  }

  .resqis-orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 154px;
    height: 154px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(135deg, #5aa0e6 0%, #6dd6cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(20, 95, 150, 0.18);
  }

  .resqis-orbit-center img {
    width: 188px;
    max-width: none;
    max-height: 118px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255,255,255,0.25));
  }

  .orbit-node {
    position: absolute;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e1ebf5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f315d;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 14px 26px rgba(22, 48, 82, 0.08);
  }

  .orbit-node.node-top { left: 50%; top: 7%; transform: translateX(-50%); }
  .orbit-node.node-right-top { right: 7%; top: 25%; }
  .orbit-node.node-right-bottom { right: 7%; bottom: 25%; }
  .orbit-node.node-bottom { left: 50%; bottom: 7%; transform: translateX(-50%); }
  .orbit-node.node-left-bottom { left: 7%; bottom: 25%; }
  .orbit-node.node-left-top { left: 7%; top: 25%; }

  .future-list-panel {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
  }

  @media (max-width: 820px) {
    .resqis-orbit-wrap {
      grid-template-columns: 1fr;
    }

    .orbit-node {
      width: 92px;
      height: 92px;
      font-size: 14px;
    }

    .resqis-orbit-center {
      width: 124px;
      height: 124px;
    }

    .resqis-orbit-center img {
      width: 120px;
    }
  }


  .note {
    font-size: 10px;
    line-height: 1.2;
    margin: 2px 0;
    color: #6b7c8f;
  }


  .text-visual img,
  .step-visual img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
  }

  .step-visual img {
    width: 84px;
    height: 84px;
  }
