/* PROPERTY LP COMMON BASE
不動産系LPで共通使用するデザイン基準。
https://www.ma-pmi-agent.co.jp/realestate-development/
のデザインと同じ数値・構成を各ページのCSSへ複製して使用する。
外部の共通CSSとして読み込ませない。
*/

/* =========================================================
   CSS RESET
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--text-color);
  background-color: #ffffff;
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: normal;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* =========================================================
   CSS VARIABLES (DESIGN TOKENS)
   既存LPと同じ値を再現するためのカラー・余白設定
========================================================= */
:root {
  /* Colors */
  --main-color: #1e4a6e;
  --sub-color: #2c6384;
  --accent-color: #1e4a6e;
  --cta-color: #b8965c;
  --cta-color-hover: #a07d47;
  --eyebrow-color: #b8965c;
  --text-color: #333333;
  --heading-color: #1e4a6e;
  --light-bg: #f5f7f8;
  --border-color: #e1e5e8;
  --footer-bg: #16334b;
  --footer-text: #ffffff;
  --white: #ffffff;

  /* Typography */
  --font-base: "Noto Sans JP", "Yu Gothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", sans-serif;
  --fz-base: 16px;
  --fz-sm: 14px;
  --fz-xs: 13px;
  --fz-h1: 36px;
  --fz-h2: 30px;
  --fz-h3: 20px;
  --lh-base: 1.75;
  --lh-heading: 1.45;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 880px;
  --header-height: 76px;

  /* CTA */
  --cta-radius: 4px;
  --cta-padding-y: 14px;
  --cta-padding-x: 32px;
  --cta-fz: 16px;
  --cta-fz-header: 14px;
  --cta-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);

  /* Spacing */
  --section-padding: 80px;
  --section-padding-sm: 56px;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  z-index: 50;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-header__logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-header__logo img {
  height: 36px;
  width: auto;
}

/* =========================================================
   CTA BUTTONS (COMMON)
========================================================= */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--cta-color);
  color: #ffffff;
  font-weight: 700;
  border-radius: var(--cta-radius);
  box-shadow: var(--cta-shadow);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
}

.cta-button:hover {
  background-color: var(--cta-color-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.cta-button:focus-visible {
  outline: 3px solid var(--main-color);
  outline-offset: 2px;
}

.cta-button--header {
  font-size: var(--cta-fz-header);
  padding: 9px 18px;
  height: 40px;
  min-height: 40px;
}

.cta-button--header::after {
  content: "›";
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.cta-button--large {
  font-size: var(--cta-fz);
  padding: var(--cta-padding-y) 36px;
  min-height: 54px;
  letter-spacing: 0.02em;
}

.cta-button--large::after {
  content: "›";
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.cta-button--short {
  font-size: 15px;
  padding: 10px 22px;
  min-height: 44px;
}

/* =========================================================
   MAIN LAYOUT
========================================================= */
main {
  display: block;
}

.section {
  padding: var(--section-padding) 0;
}

.section--light {
  background-color: var(--light-bg);
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading--left {
  text-align: left;
}

.section-heading h2 {
  font-size: var(--fz-h2);
  font-weight: 700;
  color: var(--heading-color);
  line-height: var(--lh-heading);
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.section-heading p {
  margin-top: 20px;
  color: var(--text-color);
  line-height: var(--lh-base);
}

.section-closing {
  margin-top: 32px;
  text-align: center;
  color: var(--text-color);
  font-weight: 500;
}

.section-cta {
  margin-top: 40px;
  text-align: center;
}

/* =========================================================
   EYEBROW (small label)
========================================================= */
.eyebrow {
  display: inline-block;
  background-color: rgba(184, 150, 92, 0.08);
  color: var(--eyebrow-color);
  border: 1px solid rgba(184, 150, 92, 0.4);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

/* =========================================================
   HERO (FIRST VIEW)
========================================================= */
.hero {
  padding: 56px 0 80px;
  background-color: #ffffff;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__content h1 {
  font-size: var(--fz-h1);
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-wrap: balance;
  margin-bottom: 24px;
}

.hero__lead {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.65;
  margin-bottom: 16px;
}

.hero__text {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.85;
  margin-bottom: 24px;
}

.hero__conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero__conditions li {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.hero__conditions li::before {
  content: "•";
  color: var(--cta-color);
  margin-right: 8px;
  font-size: 18px;
  line-height: 1;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.cta-note {
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
}

.page-meta {
  font-size: 13px;
  color: #777777;
  margin-top: 8px;
}

.hero__media {
  display: flex;
  height: 100%;
  min-height: 480px;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* =========================================================
   CARD GRIDS
========================================================= */
.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid--issues {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 22px 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.2s ease;
}

.info-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
  font-size: var(--fz-h3);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: var(--lh-heading);
}

.info-card p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.8;
  position: relative;
  padding-left: 14px;
}

.info-card p::before {
  content: "•";
  color: var(--cta-color);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 1.8;
}

/* =========================================================
   IMAGE + CONTENT SPLIT (L/R)
========================================================= */
.image-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.image-split--reverse {
  grid-template-columns: 1fr 1fr;
}

.image-split--reverse .image-split__media {
  order: -1;
}

.image-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-split__media {
  display: flex;
  height: 100%;
  min-height: 420px;
}

.image-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

/* =========================================================
   PROFILE CARD
========================================================= */
.profile-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 4px 0;
  margin-top: 28px;
}

.data-list {
  display: grid;
}

.data-list > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
  align-items: start;
}

.data-list > div:last-child {
  border-bottom: none;
}

.data-list dt {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 15px;
}

.data-list dd {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.7;
}

.annotation {
  margin-top: 20px;
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  text-align: center;
}

/* =========================================================
   CONDITIONS TABLE
========================================================= */
.table-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 12px;
}

.conditions-table th,
.conditions-table td {
  padding: 20px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
  line-height: 1.7;
}

.conditions-table tr:last-child th,
.conditions-table tr:last-child td {
  border-bottom: none;
}

.conditions-table th {
  background-color: var(--light-bg);
  color: var(--heading-color);
  font-weight: 700;
  white-space: nowrap;
  width: 200px;
}

.conditions-table td {
  color: var(--text-color);
}

/* =========================================================
   CHECK LIST (Section 5/6 etc.)
========================================================= */
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.check-list li {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-color);
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 16px;
  color: var(--cta-color);
  font-weight: 700;
}

/* =========================================================
   POINT CARDS (DD points)
========================================================= */
.point-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.point-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.point-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.point-card p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.8;
}

/* =========================================================
   BULLET LIST
========================================================= */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.bullet-list li {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-color);
  position: relative;
  padding-left: 30px;
}

.bullet-list li::before {
  content: "・";
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--cta-color);
  font-weight: 700;
}

/* =========================================================
   SCHEME / TWO COLUMN
========================================================= */
.scheme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.scheme-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 28px;
}

.scheme-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.scheme-card p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 16px;
}

.scheme-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 6px;
  margin-bottom: 10px;
}

.scheme-card ul li {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.7;
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.scheme-card ul li::before {
  content: "・";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--cta-color);
}

/* =========================================================
   STEPS (6-Step Flow)
========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.step {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 24px 24px;
  position: relative;
  counter-increment: step;
}

.steps {
  counter-reset: step;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}

.step__num::before {
  content: counter(step);
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.8;
}

/* =========================================================
   FAQ ACCORDION
========================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.6;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(245, 247, 248, 0.8);
}

.faq-question:focus-visible {
  outline: 3px solid var(--main-color);
  outline-offset: -2px;
}

.faq-question__q {
  flex: 1;
}

.faq-question__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
  color: var(--cta-color);
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  transition: transform 0.25s ease;
}

.faq-question__icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question__icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-answer__inner {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.85;
}

/* =========================================================
   HIGHLIGHT NOTICE
========================================================= */
.notice-bar {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
  text-align: center;
  margin-top: 32px;
}

.notice-bar strong {
  color: var(--heading-color);
  font-weight: 700;
}

/* =========================================================
   SUPPORT LIST
========================================================= */
.support-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.support-list li {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-color);
  position: relative;
  padding-left: 28px;
}

.support-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 14px;
  color: var(--cta-color);
  font-weight: 700;
}

/* =========================================================
   FINAL CTA SECTION
========================================================= */
.final-cta {
  background-color: var(--main-color);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.55;
  color: #ffffff;
  text-wrap: balance;
}

.final-cta p {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.final-cta .cta-button--large {
  background-color: var(--cta-color);
}

.final-cta .cta-note {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 32px;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.site-footer__logo {
  display: block;
}

.site-footer__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* =========================================================
   RESPONSIVE - TABLET
========================================================= */
@media (max-width: 1024px) {
  :root {
    --fz-h1: 30px;
    --fz-h2: 26px;
    --section-padding: 64px;
  }

  .hero__grid {
    gap: 32px;
  }

  .image-split {
    gap: 32px;
  }

  .data-list > div {
    grid-template-columns: 140px 1fr;
  }

  .conditions-table th {
    width: 160px;
  }
}

/* =========================================================
   RESPONSIVE - TABLET (BREAKPOINT)
========================================================= */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    order: 2;
    min-height: 360px;
  }

  .image-split,
  .image-split--reverse {
    grid-template-columns: 1fr;
  }

  .image-split--reverse .image-split__media {
    order: 0;
  }

  .image-split__media,
  .hero__media {
    min-height: 320px;
  }

  .card-grid--issues,
  .card-grid--three,
  .check-list,
  .point-grid,
  .scheme-grid,
  .support-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .data-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 20px;
  }

  .data-list dt {
    font-size: 14px;
  }

  .conditions-table th {
    display: block;
    width: auto;
    padding: 14px 20px 6px;
    background-color: var(--light-bg);
    border-bottom: none;
  }

  .conditions-table td {
    display: block;
    padding: 6px 20px 18px;
    border-bottom: 1px solid var(--border-color);
  }

  .conditions-table tr {
    display: block;
    border-bottom: 1px solid var(--border-color);
  }

  .conditions-table tr:last-child {
    border-bottom: none;
  }
}

/* =========================================================
   RESPONSIVE - MOBILE 768px
========================================================= */
@media (max-width: 768px) {
  :root {
    --fz-h1: 26px;
    --fz-h2: 22px;
    --fz-h3: 18px;
    --section-padding: 56px;
    --header-height: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .site-header__logo img {
    height: 28px;
  }

  .cta-button--header {
    font-size: 13px;
    padding: 7px 14px;
    height: 36px;
    min-height: 36px;
  }

  .hero {
    padding: 32px 0 56px;
  }

  .hero__content h1 {
    font-size: 24px;
    line-height: 1.55;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__text {
    font-size: 14px;
  }

  .hero__conditions li {
    font-size: 13px;
    padding: 6px 12px;
  }

  .cta-button--large {
    font-size: 15px;
    padding: 12px 20px;
    min-height: 50px;
    width: 100%;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .final-cta {
    padding: 56px 0;
  }

  .final-cta h2 {
    font-size: 22px;
  }

  .info-card {
    padding: 18px 16px;
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 15px;
  }

  .faq-answer__inner {
    padding: 0 18px 18px;
    font-size: 14px;
  }
}

/* =========================================================
   RESPONSIVE - SMALL MOBILE 360px
========================================================= */
@media (max-width: 360px) {
  :root {
    --fz-h1: 22px;
  }

  .container {
    padding: 0 16px;
  }

  .hero__content h1 {
    font-size: 22px;
  }

  .cta-button--large {
    font-size: 14px;
    padding: 11px 16px;
  }

  .hero__conditions {
    gap: 6px;
  }

  .hero__conditions li {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* PAGE SPECIFIC: REAL ESTATE PURCHASE AND RESALE */
.page-notice {
  background-color: #f0ece2;
  border: 1px solid rgba(184, 150, 92, 0.35);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 14px;
  color: #5a4a30;
  line-height: 1.7;
  text-align: left;
  margin: 12px auto 56px;
  max-width: 880px;
}

.target-section h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.target-section p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 24px;
}

.price-range-note {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  line-height: 1.7;
}

.price-range-value {
  display: block;
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--heading-color);
}

.price-range-description {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-color);
}
