/* =========================================================
   音改堂 ONKAIDO
   修理・調整料金表 専用スタイル
   ※既存の style.css と併用
========================================================= */

.price-hero {
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 85% 20%, rgba(216,183,133,.24), transparent 34%),
    linear-gradient(135deg, var(--cream) 0%, #fff 72%);
  border-bottom: 1px solid var(--line);
}

.price-hero-inner {
  max-width: 980px;
  text-align: center;
}

.price-hero h1 {
  margin: 10px 0 16px;
  color: var(--green);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .07em;
}

.price-hero p {
  margin: 0 auto;
  max-width: 820px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 2;
}

.price-hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}


/* Intro --------------------------------------------------- */

.price-intro {
  padding: 58px 0 62px;
  background: var(--white);
}

.price-intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.price-intro-grid h2 {
  margin: 6px 0 0;
  color: var(--green);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: .04em;
}

.price-intro-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 2.15;
}

.price-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.price-points > div {
  padding: 19px 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-points strong,
.price-points span {
  display: block;
}

.price-points strong {
  color: var(--green);
  font-size: .92rem;
  letter-spacing: .03em;
}

.price-points span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .72rem;
}


/* Price sections ----------------------------------------- */

.price-section {
  padding: 88px 0;
  background: var(--white);
}

.price-section.section-cream {
  background: var(--cream);
}

.price-table-card {
  overflow: hidden;
  max-width: 1120px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-table-head,
.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(145px, .55fr) minmax(180px, .8fr);
  align-items: center;
}

.price-table-head {
  min-height: 48px;
  padding: 0 26px;
  color: var(--white);
  background: var(--green);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.price-category {
  padding: 17px 26px 13px;
  color: var(--green);
  background: var(--green-soft);
  border-top: 1px solid #d7e1da;
  border-bottom: 1px solid #d7e1da;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.price-table-head + .price-category {
  border-top: 0;
}

.price-row {
  min-height: 59px;
  padding: 10px 26px;
  border-bottom: 1px solid #ebe7de;
  transition: background .15s ease;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row:hover {
  background: #fbfaf6;
}

.price-row .item {
  padding-right: 24px;
  color: var(--text);
  font-size: .86rem;
  font-weight: 600;
}

.price-row strong {
  color: var(--green);
  font-family: Georgia, "Yu Mincho", serif;
  font-size: .94rem;
  white-space: nowrap;
}

.price-row .note {
  color: var(--muted);
  font-size: .73rem;
}


/* Notice -------------------------------------------------- */

.notice-section {
  padding: 82px 0;
  color: var(--white);
  background:
    linear-gradient(rgba(18,63,42,.96), rgba(18,63,42,.96)),
    linear-gradient(135deg, #123f2a, #185036);
}

.notice-card {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 74px;
  max-width: 1120px;
  margin-inline: auto;
}

.notice-title h2 {
  margin: 7px 0 0;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .06em;
}

.notice-body p {
  margin: 0 0 17px;
  color: #e5eee8;
  font-size: .84rem;
  line-height: 2.05;
}

.notice-body strong {
  color: var(--white);
  font-weight: 700;
}

.notice-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.notice-phone {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
}


/* Bottom CTA --------------------------------------------- */

.price-cta {
  padding: 68px 0;
  background: var(--soft);
}

.price-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 54px;
}

.price-cta h2 {
  margin: 6px 0 8px;
  color: var(--green);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 500;
}

.price-cta p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.price-cta .btn {
  flex-shrink: 0;
}


/* Current navigation ------------------------------------- */

.main-nav a[aria-current="page"] {
  color: var(--green);
  font-weight: 700;
}

.main-nav a[aria-current="page"]::after {
  width: 100%;
}


/* Tablet -------------------------------------------------- */

@media (max-width: 960px) {

  .price-hero {
    padding: 72px 0 64px;
  }

  .price-intro-grid,
  .notice-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .price-points {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .price-section {
    padding: 70px 0;
  }

  .price-table-head,
  .price-row {
    grid-template-columns: minmax(0, 1.4fr) 140px minmax(140px, .75fr);
  }

  .notice-section {
    padding: 68px 0;
  }

  .price-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
}


/* Smartphone --------------------------------------------- */

@media (max-width: 680px) {

  .price-hero {
    padding: 54px 0 50px;
  }

  .price-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .price-hero p {
    font-size: .82rem;
    text-align: left;
  }

  .price-hero-actions {
    flex-direction: column;
  }

  .price-hero-actions .btn {
    width: 100%;
  }

  .price-intro {
    padding: 46px 0;
  }

  .price-intro-grid {
    gap: 18px;
  }

  .price-intro-grid > p {
    font-size: .8rem;
  }

  .price-points {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 24px;
  }

  .price-section {
    padding: 56px 0;
  }

  .price-table-card {
    border-radius: 8px;
  }

  .price-table-head {
    display: none;
  }

  .price-category {
    padding: 15px 17px 11px;
    font-size: .75rem;
  }

  .price-row {
    position: relative;
    grid-template-columns: 1fr auto;
    gap: 4px 18px;
    min-height: 0;
    padding: 15px 17px;
  }

  .price-row .item {
    grid-column: 1 / -1;
    padding-right: 0;
    font-size: .82rem;
  }

  .price-row strong {
    font-size: .92rem;
  }

  .price-row .note {
    justify-self: end;
    align-self: center;
    text-align: right;
    font-size: .67rem;
  }

  .notice-section {
    padding: 54px 0;
  }

  .notice-body p {
    font-size: .78rem;
  }

  .notice-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .notice-actions .btn {
    width: 100%;
  }

  .notice-phone {
    text-align: center;
  }

  .price-cta {
    padding: 50px 0;
  }

  .price-cta-inner {
    gap: 22px;
  }

  .price-cta .btn {
    width: 100%;
  }
}


/* Print --------------------------------------------------- */

@media print {

  .site-header,
  .price-hero-actions,
  .notice-actions,
  .price-cta,
  .site-footer {
    display: none !important;
  }

  .price-hero,
  .price-intro,
  .price-section,
  .notice-section {
    padding: 24px 0;
    background: #fff !important;
    color: #000 !important;
  }

  .price-hero h1,
  .price-intro-grid h2,
  .section-heading h2,
  .notice-title h2,
  .price-row strong,
  .price-category {
    color: #000 !important;
  }

  .price-table-card {
    box-shadow: none;
  }

  .price-table-head {
    color: #fff !important;
    background: #222 !important;
  }

  .notice-body p {
    color: #000 !important;
  }

  .notice-card {
    gap: 22px;
  }
}
