.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--rose);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 10px;
}

.site-nav {
  flex-wrap: wrap;
  justify-content: center;
  overflow: visible;
}

.site-nav a {
  padding: 8px 11px;
  font-size: 14px;
}

.mega-toggle {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.mega-toggle:hover,
.mega-toggle[aria-expanded="true"] {
  color: var(--blue);
  background: #eaf5f9;
}

.mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(920px, calc(100vw - 32px));
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 50px rgba(19, 32, 51, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-column {
  display: grid;
  gap: 8px;
}

.mega-column p {
  margin-bottom: 4px;
  color: var(--rose);
  font-weight: 900;
}

.mega-column a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff7fb;
  font-weight: 800;
}

.mega-column a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), #8f2858);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.lineup-card {
  overflow: hidden;
  padding: 0;
}

.lineup-card img {
  height: 230px;
  object-fit: cover;
}

.lineup-card h2,
.lineup-card p,
.lineup-card .lineup-button {
  margin-right: 28px;
  margin-left: 28px;
}

.lineup-card h2 {
  margin-top: 24px;
}

.lineup-card p {
  margin-bottom: 18px;
}

.lineup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 28px;
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), #8f2858);
  box-shadow: 0 12px 24px rgba(199, 55, 114, 0.22);
  font-weight: 900;
}

.lineup-button::after {
  content: "→";
  margin-left: 8px;
}

.lineup-button:hover {
  color: #fff;
  background: var(--navy);
}

.fleet-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.fleet-card img {
  height: 170px;
  object-fit: cover;
}

.fleet-card h2,
.fleet-card p,
.fleet-card .vehicle-icon,
.fleet-card .detail-button {
  margin-right: 22px;
  margin-left: 22px;
}

.fleet-card .vehicle-icon {
  margin-top: 22px;
}

.fleet-card h2 {
  margin-top: 20px;
}

.fleet-card .detail-button {
  width: calc(100% - 44px);
  margin-top: auto;
  margin-bottom: 24px;
}

.vehicle-detail-image {
  height: 360px;
  margin-bottom: 26px;
  border-radius: 8px;
  object-fit: cover;
}

.flow-page {
  background: #fff;
}

.flow-title {
  max-width: 900px;
  margin: 0 auto 54px;
  text-align: center;
}

.flow-title::after {
  display: block;
  width: 90px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: #8ccfd1;
  content: "";
}

.flow-title .eyebrow {
  color: #0a918d;
}

.flow-steps {
  display: grid;
  gap: 58px;
  max-width: 920px;
  margin: 0 auto;
}

.flow-steps article {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.flow-steps span {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  background: transparent;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.flow-steps h2 {
  margin-bottom: 18px;
  color: #0a918d;
  font-size: clamp(24px, 3vw, 31px);
}

.flow-steps p {
  margin-bottom: 0;
  font-weight: 700;
}

.flow-steps img {
  height: 170px;
  border-radius: 8px;
  object-fit: cover;
}

.flow-contact-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  min-height: 56px;
  margin-top: 28px;
  padding: 12px 58px 12px 30px;
  border: 2px solid #17aaa5;
  border-radius: 999px;
  color: #0a918d;
  background: #fff;
  font-size: 17px;
  font-weight: 900;
}

.flow-contact-button::after {
  position: absolute;
  right: 26px;
  content: ">";
  font-size: 24px;
}

.flow-contact-button:hover {
  color: #fff;
  background: #17aaa5;
}

.flow-notes .cards-2 article {
  box-shadow: none;
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #cfcfcf;
  background: #fff;
  font-size: 22px;
  text-align: center;
}

.price-table th,
.price-table td {
  border: 1px solid #cfcfcf;
  padding: 20px 24px;
}

.price-table th {
  color: #005e9f;
  background: #d8f7ff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}

.price-table td {
  color: #555;
  font-weight: 800;
}

.price-table td:last-child {
  color: #555;
  font-size: 26px;
  font-weight: 900;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.showcase-panel {
  border: 1px solid #f0d4e1;
  border-radius: 18px;
  padding: clamp(26px, 4vw, 46px);
  background: #fff;
  box-shadow: var(--shadow);
}

.showcase-panel.dark {
  color: #fff;
  background: linear-gradient(145deg, #151d33, #8f2858);
}

.luxury-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.luxury-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 800;
}

.luxury-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
}

.premium-price-box {
  border: 2px solid #f2c7d9;
  border-radius: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
}

.premium-price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #f4dce7;
  font-size: 20px;
  font-weight: 900;
}

.premium-price-row span:last-child {
  color: var(--rose);
}

.faq-page {
  background: linear-gradient(180deg, #fff 0, #fff7fb 100%);
}

.faq-intro {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  max-width: 1080px;
  margin: 0 auto 28px;
}

.faq-intro > div {
  max-width: 720px;
}

.faq-category-nav {
  max-width: 1080px;
  margin: 0 auto 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid #f0c7d8;
  border-radius: 999px;
  color: var(--rose);
  background: #fff;
  font-weight: 900;
}

.faq-category {
  max-width: 1080px;
  margin: 0 auto 34px;
  scroll-margin-top: 120px;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.faq-category-title span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), #8f2858);
  font-weight: 900;
}

.faq-category-title h2 {
  margin: 0;
}

.premium-faq-list {
  display: grid;
  gap: 12px;
}

.premium-faq-list details {
  border: 1px solid #f0c7d8;
  border-radius: 16px;
  padding: 0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(79, 33, 61, 0.08);
  overflow: hidden;
}

.premium-faq-list summary {
  position: relative;
  padding: 20px 56px 20px 24px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.premium-faq-list summary::-webkit-details-marker {
  display: none;
}

.premium-faq-list summary::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  font-size: 15px;
}

.premium-faq-list summary::after {
  position: absolute;
  right: 22px;
  top: 50%;
  content: "+";
  color: var(--rose);
  font-size: 28px;
  transform: translateY(-50%);
}

.premium-faq-list details[open] summary::after {
  content: "−";
}

.premium-faq-list p {
  margin: 0;
  padding: 0 24px 22px 66px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    justify-items: stretch;
  }

  .site-nav {
    flex-wrap: nowrap;
  }

  .mega-toggle {
    width: 100%;
    border-radius: 8px;
    padding: 9px 12px;
    text-align: left;
  }

  .mega-menu {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    border-radius: 8px;
    opacity: 1;
    display: none;
    pointer-events: auto;
    transform: none;
  }

  .mega-menu.is-open {
    display: grid;
    transform: none;
  }

  .faq-intro {
    display: grid;
    align-items: start;
  }

  .premium-faq-list summary {
    padding: 17px 48px 17px 16px;
    font-size: 16px;
  }

  .premium-faq-list p {
    padding: 0 16px 18px 16px;
  }
}

/* =============================
   ニュースリスト
   ============================= */
.news-card {
  max-width: 860px;
  margin: 0 auto;
  border: 1.5px solid #c8d8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.news-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-bottom: 1.5px dotted #c8d8e8;
  flex-wrap: wrap;
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  font-size: 13px;
  font-weight: 600;
  color: #1a5276;
  white-space: nowrap;
  letter-spacing: 0.02em;
  min-width: 78px;
}

.news-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.badge--info {
  background: #1a5276;
  color: #fff;
}

.badge--safety {
  background: #1e8449;
  color: #fff;
}

.badge--recruit {
  background: #7d3c98;
  color: #fff;
}

.badge--event {
  background: #d35400;
  color: #fff;
}

.news-title {
  font-size: 14.5px;
  color: #1a2533;
  line-height: 1.5;
  flex: 1;
}

.news-more {
  display: flex;
  justify-content: center;
  padding: 16px;
  background: #f4f8fc;
}

.news-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a5276;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s;
}

.news-more-btn:hover {
  background: #154360;
}

.news-more-btn span {
  font-size: 18px;
  line-height: 1;
}

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

  .flow-steps span {
    width: auto;
  }

  .flow-steps img {
    height: 190px;
  }

  .flow-contact-button {
    min-height: 58px;
    font-size: 16px;
  }

  .news-item {
    padding: 14px 16px;
    gap: 8px;
  }

  .news-date {
    font-size: 12px;
    min-width: auto;
  }

  .news-title {
    font-size: 13.5px;
    width: 100%;
    flex: none;
  }
}
