/* キャンピングカー料金表（専用ページ） */

@keyframes wcc-price-hero-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes wcc-price-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

@keyframes wcc-price-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

body.wcc-pricing-page {
  margin: 0;
  background: #f4f6f9;
  color: #1a1d24;
  font-family: "Noto Sans", "Inter", system-ui, sans-serif;
}

.wcc-price-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 10vw, 6rem) 1.5rem clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  background: linear-gradient(
    125deg,
    #1c2433 0%,
    #2d3a52 25%,
    #3d5a6b 50%,
    #4a7a8c 75%,
    #6eafca 100%
  );
  background-size: 200% 200%;
  animation: wcc-price-hero-shift 14s ease infinite;
}

.wcc-price-hero__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(151, 202, 217, 0.35), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(195, 174, 129, 0.25), transparent 40%);
  pointer-events: none;
}

.wcc-price-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.wcc-price-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.wcc-price-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.wcc-price-hero__sub {
  margin: 0 auto 1.75rem;
  max-width: 34em;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.wcc-price-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.wcc-btn-primary,
.wcc-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.wcc-btn-primary {
  background: #fff;
  color: #2d4a5a;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.wcc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.wcc-btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.wcc-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.wcc-price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  max-width: 1180px;
  margin: -2.5rem auto 0;
  padding: 0 1.25rem 4rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .wcc-price-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 2.5rem;
    padding: 0 2rem 5rem;
  }
}

.wcc-price-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 1.25rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.wcc-price-toc h2 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
}

.wcc-price-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wcc-price-toc a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  font-size: 0.88rem;
  color: #2a3140;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wcc-price-toc a:hover {
  background: rgba(110, 175, 200, 0.12);
  color: #1a5f78;
}

.wcc-price-toc a.is-active {
  background: linear-gradient(135deg, rgba(151, 202, 217, 0.35), rgba(110, 175, 200, 0.2));
  color: #124050;
  font-weight: 600;
}

@media (max-width: 1023px) {
  .wcc-price-toc {
    position: relative;
    top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
  }
  .wcc-price-toc h2 {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .wcc-price-toc ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .wcc-price-toc a {
    padding: 0.45rem 0.75rem;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
}

.wcc-price-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wcc-section-card {
  scroll-margin-top: 100px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 16px 40px -16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.wcc-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #97cad9, #c9b896);
  opacity: 0.85;
}

.wcc-section-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.14);
}

.wcc-section-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-left: 0.35rem;
}

.wcc-section-card__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, #6eafca, #4a7a8c);
  animation: wcc-price-float 5s ease-in-out infinite;
  animation-delay: calc(var(--wcc-delay, 0) * 0.4s);
}

.wcc-section-card:nth-child(2) .wcc-section-card__num {
  background: linear-gradient(135deg, #c9b896, #a68f5c);
}
.wcc-section-card:nth-child(3) .wcc-section-card__num {
  background: linear-gradient(135deg, #6c789e, #505a82);
}
.wcc-section-card:nth-child(4) .wcc-section-card__num {
  background: linear-gradient(135deg, #5a8f7a, #3d6b52);
}
.wcc-section-card:nth-child(5) .wcc-section-card__num {
  background: linear-gradient(135deg, #c97b9a, #8f4d68);
}
.wcc-section-card:nth-child(6) .wcc-section-card__num {
  background: linear-gradient(135deg, #7a86b0, #505a82);
}

.wcc-section-card__titles h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: #1a1d24;
}

.wcc-section-card__titles p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}

.wcc-section-card__list {
  margin: 0;
  padding: 0 0 0 0.15rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.wcc-section-card__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(26, 29, 36, 0.88);
}

.wcc-section-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #97cad9, #6eafca);
}

.wcc-section-card__highlight {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(151, 202, 217, 0.12), rgba(195, 174, 129, 0.1));
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(26, 29, 36, 0.78);
}

.wcc-price-footer-cta {
  margin-top: 0.5rem;
  text-align: center;
  padding: 2rem 1rem;
}

.wcc-price-footer-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #97cad9, #6eafca);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px -8px rgba(110, 175, 200, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wcc-price-footer-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -6px rgba(110, 175, 200, 0.65);
}

body.wcc-pricing-page .main-header {
  position: sticky;
  top: 0;
}

body.wcc-pricing-page .main-menues a.wcc-nav-active {
  color: #6eafca;
  font-weight: 600;
}

.wcc-price-simple-footer {
  margin-top: 3rem;
  background: linear-gradient(135deg, #1c2433 0%, #2d3a52 100%);
  color: rgba(255, 255, 255, 0.9);
}

.wcc-price-simple-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wcc-price-simple-footer__copy {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.wcc-price-simple-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.wcc-price-simple-footer__links a {
  color: #97cad9;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.wcc-price-simple-footer__links a:hover {
  color: #fff;
  text-decoration: underline;
}