@charset "utf-8";
    :root {
      --blue: #1e5fae;
      --blue-dark: #164a88;
      --blue-light: #edf5ff;
      --sky: #f7fbff;
      --text: #1f2a37;
      --muted: #5b6573;
      --line: #d9e4f2;
      --accent: #ffb300;
      --shadow: 0 12px 32px rgba(25, 62, 113, 0.08);
      --radius: 18px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
      color: var(--text);
      line-height: 1.75;
      background: #fff;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(217,228,242,0.8);
    }

    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: nowrap;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
      flex: 1 1 auto;
    }

    .logo-placeholder {
      width: 62px;
      height: 62px;
      display: grid;
      place-items: center;
      background: var(--sky);
      color: var(--muted);
      font-size: 12px;
      flex-shrink: 0;
    }

    .logo-text {
      min-width: 0;
    }

    .site-title {
      font-size: 21px;
      font-weight: 700;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }

    .site-sub {
      font-size: 11px;
      color: var(--muted);
      margin-top: 2px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 320px;
    }

    .global-nav {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: nowrap;
    white-space: nowrap;
      font-size: 13px;
      font-weight: 700;
      color: var(--blue-dark);
      margin-left: auto;
      margin-right: 4px;
      flex: 0 1 auto;
    }

    .header-contact {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: nowrap;
      justify-content: flex-end;
      flex: 0 0 auto;
    }

    .phone-box {
      text-align: right;
      flex: 0 0 auto;
    }

    .phone-box small {
      display: block;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.4;
      white-space: nowrap;
    }

    .phone-box strong {
      color: var(--blue-dark);
      font-size: 22px;
      line-height: 1.2;
      white-space: nowrap;
    }

    @media (max-width: 1200px) {
      .site-sub {
        max-width: 220px;
      }
    }

    @media (max-width: 1180px) {
      .header-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
          "logo contact"
          "nav nav";
        align-items: center;
        gap: 12px 16px;
        padding: 12px 0;
      }

      .logo-wrap {
        grid-area: logo;
        min-width: 0;
      }

      .header-contact {
        grid-area: contact;
        justify-content: flex-end;
      }

      .global-nav {
        grid-area: nav;
        margin: 0;
        padding-top: 4px;
        justify-content: flex-start;
        overflow-x: auto;
      }

      .site-sub {
        display: none;
      }

      .phone-box strong {
        font-size: 20px;
      }
    }

    @media (max-width: 768px) {
      .header-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 0;
      }

      .global-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
      }

      .header-contact {
        width: 100%;
        justify-content: space-between;
      }

      .phone-box {
        text-align: left;
      }

      .phone-box small,
      .phone-box strong {
        white-space: normal;
      }
    }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 700;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      border: 1px solid transparent; cursor: pointer;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow); }
    .btn-secondary { background: #fff; color: var(--blue-dark); border-color: var(--line); }
    .btn-accent { background: var(--accent); color: #222; box-shadow: var(--shadow); }

    .page-hero {
      background: linear-gradient(135deg, rgba(30,95,174,0.93), rgba(22,74,136,0.9));
      color: #fff; padding: 0 0 58px;
    }
    .breadcrumb { font-size: 13px; opacity: 0.9; margin-bottom: 18px; }
    .page-hero h1 { margin: 0; font-size: clamp(34px, 4vw, 50px); line-height: 1.2; }
    .page-hero p { max-width: 48em; margin: 16px 0 0; font-size: 16px; opacity: 0.96; }
    .quick-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
    .quick-links a {
      display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px;
      border-radius: 999px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.24);
      color: #fff; font-size: 14px; font-weight: 700;
    }

    section { padding: 0 0; }
    .section-heading { margin-bottom: 28px; }
    .section-heading .sub {
      color: var(--blue); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px;
    }
    .section-heading h2 { margin: 0; font-size: clamp(28px, 3vw, 38px); line-height: 1.3; }
    .section-heading p { margin: 12px 0 0; color: var(--muted); max-width: 58em; font-size: 15px; }

    .lead-box,.info-box,.route-box,.faq-box,.cta-box,.feature-box {
      background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); padding: 26px;
    }
    .lead-box,.feature-box {
      display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 20px; align-items: stretch;
    }
    .lead-box h3,.info-box h3,.route-box h3,.faq-box h3,.cta-box h3,.feature-box h3 { margin: 0 0 12px; color: var(--blue-dark); font-size: 24px; }
    .lead-box p,.info-box p,.route-box p,.faq-box p,.cta-box p,.feature-box p,.feature-box li { margin: 0; color: var(--muted); font-size: 15px; }
    .feature-box ul { margin: 0; padding-left: 1.2em; }
    .summary-card {
      background: var(--sky); border: 1px solid var(--line); border-radius: 18px; padding: 22px;
    }
    .summary-card h4 { margin: 0 0 12px; color: var(--blue-dark); font-size: 18px; }
    .summary-card ul { margin: 0; padding-left: 1.2em; color: var(--muted); font-size: 14px; }

    .access-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch;
    }
    .map-box {
      min-height: 360px; border: 2px dashed var(--line); border-radius: 22px; background: linear-gradient(180deg, #fff, #f8fbff);
      display: grid; place-items: center; text-align: center; color: var(--muted); padding: 20px;
    }
    .access-list { display: grid; gap: 12px; margin-top: 16px; }
    .access-item {
      display: grid; grid-template-columns: 120px 1fr; gap: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
    }
    .access-item:last-child { border-bottom: none; padding-bottom: 0; }
    .access-item strong { color: var(--blue-dark); font-size: 14px; }
    .access-item span { color: var(--muted); font-size: 14px; }

    .route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .route-card {
      background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
    }
    .route-head {
      padding: 24px 24px 20px; background: linear-gradient(180deg, #fff, #f8fbff); border-bottom: 1px solid var(--line);
    }
    .route-label {
      display: inline-flex; align-items: center; justify-content: center; min-height: 30px; padding: 0 12px;
      border-radius: 999px; background: var(--blue-light); color: var(--blue-dark); font-size: 12px; font-weight: 700; margin-bottom: 12px;
    }
    .route-head h3 { margin: 0; font-size: 27px; color: var(--blue-dark); line-height: 1.35; }
    .route-head p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
    .route-body { padding: 22px 24px 24px; display: grid; gap: 18px; flex: 1; }
    .stop-flow { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
    .stop {
      display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 0 12px;
      border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--blue-dark); font-size: 13px; font-weight: 700;
    }
    .arrow { color: var(--muted); font-size: 14px; font-weight: 700; }
    .note {
      background: var(--sky); border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; color: var(--muted); font-size: 13px;
    }
    .route-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }

    .mini-grid,.faq-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    }
    .mini-card,.faq-item {
      background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 22px;
    }
    .mini-card h3,.faq-item h4 { margin: 0 0 12px; color: var(--blue-dark); font-size: 22px; line-height: 1.4; }
    .mini-card p,.mini-card li,.faq-item p { color: var(--muted); font-size: 14px; margin: 0; }
    .mini-card ul { margin: 0; padding-left: 1.2em; }

    .cta-box {
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
      background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; border: none;
      box-shadow: 0 18px 40px rgba(14, 43, 82, 0.18);
    }
    .cta-box h3,.cta-box p { color: #fff; }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

    .copyright {
      margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.14); font-size: 12px; color: rgba(255,255,255,0.68);
    }

    @media (max-width: 1024px) {
      .lead-box,.feature-box,.access-grid,.route-grid,.mini-grid,.faq-grid,.footer-grid,.cta-box { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .header-inner { min-height: auto; padding: 14px 0; flex-direction: column; align-items: flex-start; }
      .header-contact { width: 100%; justify-content: space-between; }
      .phone-box { text-align: left; }
      .section { padding: 0 0; }
      .access-item { grid-template-columns: 1fr; gap: 6px; }
      .cta-box { flex-direction: column; align-items: flex-start; }
      .route-head h3 { font-size: 24px; }
    }
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  display: block;
}

.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5); /* 見やすくする */
}

.site-footer {
  margin-top: 70px; background: #0f2747; color: rgba(255,255,255,0.92); padding: 52px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start; }
.footer-grid h2,.footer-grid h3 { margin-top: 0; margin-bottom: 12px; }
.footer-grid p,.footer-grid li { color: rgba(255,255,255,0.8); font-size: 14px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }

     .btn2 {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 0 13px;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
@media (max-width: 768px) {
  .btn2{
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  #main-actions.top-actions {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  #main-actions .action-card {
    padding: 20px;
  }

  #main-actions .action-card .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    white-space: normal;
    text-align: center;
  }
  .phone-box small{
    font-size: 10px;
  }
}