@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); }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30,95,174,0.9), rgba(22,74,136,0.84)), url('images/hero-main.jpg') center/cover no-repeat;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(0,0,0,0.16));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 76px 0 80px;
}
.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.18;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: 17px;
  opacity: 0.98;
  margin: 18px 0 0;
  max-width: 38em;
}
.hero-points {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none;
}
.hero-points li {
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.24);
  padding: 10px 14px; border-radius: 999px; font-size: 14px; font-weight: 700;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-card {
  background: rgba(255,255,255,0.97); color: var(--text); border-radius: 26px; padding: 28px;
  box-shadow: 0 24px 48px rgba(12, 39, 76, 0.18);
}
.hero-card h2 { margin: 0 0 14px; color: var(--blue-dark); font-size: 24px; line-height: 1.35; }
.hero-price { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.hero-price strong { display: block; color: var(--blue-dark); font-size: 38px; line-height: 1.2; margin-top: 4px; }
.hero-note { font-size: 12px; color: var(--muted); margin-top: 14px; }

.section-heading { text-align: center; margin-bottom: 34px; }
.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, 40px); line-height: 1.3; }
.section-heading p { margin: 12px auto 0; max-width: 52em; color: var(--muted); font-size: 15px; }

.cards-3,.cards-4,.license-grid,.campaign-grid,.faq-grid,.payment-grid { display: grid; gap: 20px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3,.campaign-grid,.faq-grid,.payment-grid { grid-template-columns: repeat(2, 1fr); }
.license-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card,.campaign-card,.faq-item,.payment-card,.route-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.card { padding: 24px; }
.card .num {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue-light); color: var(--blue-dark); font-weight: 800; margin-bottom: 14px;
}
.card h3,.campaign-card h3,.faq-item h3,.payment-card h3,.route-card h3 {
  margin: 0 0 10px; font-size: 20px; line-height: 1.4; color: var(--blue-dark);
}
.card p,.campaign-card p,.faq-item p,.payment-card p,.route-card p {
  margin: 0; color: var(--muted); font-size: 14px;
}

.highlight-band { background: var(--sky); }
.feature-panel {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow);
  padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.feature-panel h3 { margin: 0 0 12px; color: var(--blue-dark); font-size: 24px; }
.feature-panel p,.feature-panel li { color: var(--muted); font-size: 14px; margin: 0; }
.feature-panel ul { margin: 0; padding-left: 1.2em; }

.license-item {
  background: linear-gradient(180deg, #fff, #f9fbff); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px; box-shadow: var(--shadow); min-height: 148px; display: flex; flex-direction: column; justify-content: space-between;
}
.license-item h3 { margin: 0 0 12px; font-size: 20px; color: var(--blue-dark); }
.license-item p { margin: 0; color: var(--muted); font-size: 14px; }

.price-section { background: var(--sky); }
.price-box {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table th,.price-table td {
  padding: 18px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 15px;
}
.price-table th { background: #f3f8ff; font-size: 14px; color: var(--blue-dark); white-space: nowrap; }
.price-table td strong { font-size: 20px; color: var(--blue-dark); }
.price-caption { padding: 18px 22px 26px; color: var(--muted); font-size: 13px; }

.campaign-card { padding: 24px; position: relative; overflow: hidden; }
.campaign-card::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--blue), #64a6ff);
}

.flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; align-items: stretch; }
.flow-step {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
  padding: 22px 16px; text-align: center;
}
.flow-step span {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue-dark); font-weight: 800; margin-bottom: 12px;
}
.flow-step h3 { margin: 0; font-size: 18px; line-height: 1.5; color: var(--blue-dark); }

.access-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.map-placeholder,.photo-placeholder {
  min-height: 320px; border-radius: 22px; border: 2px dashed var(--line);
  background: linear-gradient(180deg, #fff, #f8fbff); display: grid; place-items: center;
  text-align: center; color: var(--muted); padding: 20px;
}
.route-list { display: grid; gap: 16px; margin-top: 18px; }
.route-card { padding: 18px; }
.route-card h3 { font-size: 18px; }

.faq-item,.payment-card { padding: 22px; }

.cta-band {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; border-radius: 30px;
  padding: 38px; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  box-shadow: 0 18px 40px rgba(14, 43, 82, 0.18);
}
.cta-band h2 { margin: 0 0 8px; font-size: 32px; line-height: 1.3; }
.cta-band p { margin: 0; opacity: 0.92; color: rgba(255,255,255,0.92); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.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; }
.copyright {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.14); font-size: 12px; color: rgba(255,255,255,0.68);
}

@media (max-width: 1024px) {
  .hero-inner,.access-wrap,.footer-grid,.cta-band,.feature-panel,.cards-4,.cards-3,.license-grid,.flow,.campaign-grid,.faq-grid,.payment-grid {
    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; }
  .hero-inner { padding: 52px 0 58px; }
  .hero-card { padding: 22px; }
  .cta-band { padding: 28px 24px; }
  .cta-band h2 { font-size: 27px; }
  section { padding: 0 0; }
  .price-table,.price-table tbody,.price-table tr,.price-table th,.price-table td { display: block; width: 100%; }
  .price-table thead { display: none; }
  .price-table tr { border-bottom: 1px solid var(--line); }
  .price-table td { border-bottom: none; padding: 10px 16px; }
  .price-table td::before {
    content: attr(data-label); display: block; color: var(--muted); font-size: 12px; margin-bottom: 4px;
  }
}
/* スライダー */
.slider{
  width:100%;
  height:420px;
  overflow:hidden;
  position:relative;
}

.slider{
  width:100%;
  height:420px;
  overflow:hidden;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}
.slide{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  max-width:100%;
  max-height:100%;
  opacity:0;
  transition:opacity 1s;
}

.slide.active{
  opacity:1;
}
.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); /* 見やすくする */
}
.info-section {
  padding: 70px 0;
  background: #f7fbff;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.info-label {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  color: #1e5fae;
  margin-bottom: 6px;
}

.info-header h2 {
  margin: 0;
  font-size: 32px;
}

.info-more {
  font-size: 14px;
  color: #1e5fae;
  font-weight: bold;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-item {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 110px 90px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid #d9e4f2;
  transition: all 0.2s ease;
}

.info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.info-item time {
  font-size: 14px;
  color: #666;
}

.info-item p {
  margin: 0;
  font-size: 15px;
}

.info-tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ff4d4d;
  color: #fff;
  text-align: center;
}

.info-tag.normal {
  background: #1e5fae;
}

.info-tag.campaign {
  background: #ff9800;
}

/* スマホ */
@media (max-width: 768px) {
  .info-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

  .group-footer {
    margin-top: 80px;
    background: linear-gradient(180deg, #102744 0%, #0b1d33 100%);
    color: rgba(255,255,255,0.92);
  }

  .group-footer a {
    color: inherit;
    text-decoration: none;
  }

  .group-footer-inner {
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
    padding: 56px 0 26px;
  }

  .group-footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px;
    align-items: start;
  }

  .group-footer-brand {
    padding-right: 12px;
  }

  .group-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .group-footer-logo-text strong {
    display: block;
    font-size: 22px;
    line-height: 1.35;
    letter-spacing: 0.02em;
  }

  .group-footer-logo-text span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255,255,255,0.62);
  }

  .group-footer-brand p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.74);
  }

  .group-footer-heading {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.96);
  }

  .group-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
  }

  .group-footer-links li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.76);
    transition: color .2s ease, transform .2s ease;
  }

  .group-footer-links li a::before {
    content: "›";
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    line-height: 1;
  }

  .group-footer-links li a:hover {
    color: #ffffff;
    transform: translateX(2px);
  }

  .group-footer-contact {
    display: grid;
    gap: 10px;
  }

  .group-footer-contact-item {
    font-size: 14px;
    color: rgba(255,255,255,0.76);
    line-height: 1.8;
  }

  .group-footer-contact-item strong {
    display: block;
    color: rgba(255,255,255,0.96);
    font-size: 13px;
    margin-bottom: 2px;
  }

  .group-footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }

  .group-footer-bottom small {
    font-size: 12px;
    color: rgba(255,255,255,0.56);
  }

  .group-footer-bottom-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .group-footer-bottom-nav a {
    font-size: 12px;
    color: rgba(255,255,255,0.60);
  }

  .group-footer-bottom-nav a:hover {
    color: rgba(255,255,255,0.92);
  }

  @media (max-width: 1024px) {
    .group-footer-top {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 680px) {
    .group-footer-inner {
      padding: 46px 0 24px;
    }

    .group-footer-top {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .group-footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }
    @media (max-width: 768px) {
      .cta-band { flex-direction: column; align-items: flex-start; }
    }
    .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;
  }
}
