:root {
    --bg: #eaf4ff;
    /* 背景 → 明るい青白系 */
    --panel: #ffffff;
    /* パネル背景 → 白 */
    --text: #1a1f2b;
    /* 文字 → 濃いグレー */
    --muted: #546e7a;
    /* 補助文字 → 青みグレー */
    --brand: #2979ff;
    /* メインブルー → 鮮やかな青 */
    --brand-2: #00b8ff;
    /* サブブルー → 明るめ水色 */
    --accent: #ff9800;
    /* アクセント → オレンジ系 */
    --shadow: 0 8px 20px rgba(0, 0, 0, .15);
    /* 影 → 少し軽め */
    --radius: 14px;
    --maxw: 1080px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    line-height: 1.6;
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* process */
    .process {
      text-align: center;
    }
    .process h2 {
      margin-bottom: 40px;
    }
    .process-flow {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }
    .process-step {
      background: var(--panel);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 24px;
      max-width: 600px;
      text-align: center;
      position: relative;
    }
    .process-step img {
      width: 80%;
      max-width: 320px;
      border-radius: var(--radius);
      margin-bottom: 12px;
    }
    .process-step h3 {
      color: var(--brand);
      margin-bottom: 8px;
    }
    .arrow-down {
      width: 2px;
      height: 40px;
      background: var(--brand);
    }
    

    /* FAQ */
    .faq {
      background: #f5faff;
      border-radius: var(--radius);
      padding: 40px;
    }
    .faq h2 { text-align: center; margin-bottom: 30px; }
    .faq-item {
      margin-bottom: 24px;
    }
    .faq-item h3 {
      color: var(--brand);
      margin-bottom: 6px;
    }
    

.hero {
    max-width: var(--maxw);
    margin: 40px auto 24px;
    padding: 0 16px;
    display: grid;
    gap: 18px;
}

.hero h1 {
    font-size: clamp(24px, 3.2vw, 44px);
    line-height: 1.2;
    margin: 0;
}

.hero p {
    color: var(--muted);
    margin: 6px 0 0;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--brand);
    /* ← #2979ff と連動 */
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    /* ← 丸み強めでLP感を出す */
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(41, 121, 255, 0.3);
}

.btn:hover {
    background: #1e63d6;
    /* ← 濃い青にトーンダウン */
    box-shadow: 0 6px 16px rgba(41, 121, 255, 0.45);
    text-decoration: none;
}

.btn.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--muted);
}

.grid {
    max-width: var(--maxw);
    margin: 4px auto 32px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 720px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.card {
    background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
    border: 1px solid rgba(41, 121, 255, 0.15);
    border-radius: var(--radius);
    padding: 0 0 18px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 260px;
    overflow: hidden;
}

.card-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.card h3 {
    margin: 0;
    font-size: 18px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #0b1020;
    background: linear-gradient(45deg, var(--brand), var(--brand-2));
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 700;
    letter-spacing: .02em;
}

.card p {
    color: var(--muted);
    margin: 2px 0 6px;
}

.card .meta {
    font-size: 12px;
    color: #8ea0c2;
}

.card .more {
    margin-top: auto;
}

.card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.aboutus {
    max-width: var(--maxw);
    margin: 8px auto 32px;
    padding: 0 16px;
    color: var(--muted);
    display: grid;
    gap: 8px;
}

.aboutus-logos {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    opacity: .9;
}

.logo-pill {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
}

.contact {
    max-width: var(--maxw);
    margin: 8px auto 48px;
    padding: 0 16px;
}

.panel {
    background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
    /* 白〜淡い青 */
    border: 1px solid rgba(41, 121, 255, 0.15);
    /* ブルー系の枠線 */
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(41, 121, 255, 0.1);
    /* ほんのり青の影 */
    padding: 24px;
}

.panel h2 {
    margin: 0 0 8px;
    font-size: 22px;
    color: var(--text);
    /* ダーク文字 */
}

.panel p {
    color: var(--muted);
    margin-top: 0;
    line-height: 1.7;
}

.form iframe {
    width: 100%;
    max-width: 640px;
    /* 横幅を制限（中央に収まる） */
    height: 500px;
    /* 高さを固定して小さめに */
    border: none;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(41, 121, 255, 0.1);
    display: block;
    margin: 0 auto;
    /* 中央寄せ */
}

.about-cta {
    background: linear-gradient(180deg, #f5faff 0%, #eaf4ff 100%);
    padding: 60px 16px;
    text-align: center;
    border-top: 1px solid rgba(41, 121, 255, 0.15);
}

.about-inner {
    max-width: 720px;
    margin: 0 auto;
}

/* CTA */
.cta {
    text-align: center;
    margin-top: 60px;
}
.cta a {
    display: inline-block;
    padding: 14px 36px;
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(41,121,255,0.3);
    transition: all .25s;
    text-decoration: none;
}
.cta a:hover {
    background: #1e63d6;
    box-shadow: 0 6px 16px rgba(41,121,255,0.45);
}

.about-cta h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text);
}

.about-cta p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-cta .btn {
    font-size: 16px;
    padding: 12px 28px;
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
}


.contact-cta-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}


section {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 60px 16px;
}

.strength {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
}