@charset "UTF-8";
/*
 * 料金・進め方（/price/）2026.08
 * 角丸は4px以下、ぼかし影は使わない、区切りは1pxの線と背景色の差で出す
 * （30_ナレッジ/デザイン禁止事項_AIあるある回避.md）
 */

.price-sec {
  padding: 80px 0;
  background: #fff;
}
.price-sec--alt {
  background: #faf6ef;
}
.price-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.price-lead {
  font-size: 15px;
  line-height: 2;
  color: #333333;
}
.price-caution {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid #efe8e0;
  border-radius: 4px;
  background: #faf6ef;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}
.price-caution b {
  font-weight: 700;
  color: #16243f;
}

.price-cate {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: #16243f;
  padding-bottom: 12px;
  border-bottom: 2px solid #f29600;
}
.price-sec .price-lead + .price-cards,
.price-cate + .price-lead {
  margin-top: 20px;
}

.price-block {
  margin-top: 36px;
}
.price-block__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: #16243f;
}
.price-block__title a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease-out;
}
.price-block__title a:hover {
  color: #f29600;
}
.price-block__title span {
  font-size: 13px;
  color: #f29600;
}

.price-table {
  margin-top: 12px;
  border-top: 1px solid #efe8e0;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 4px;
  border-bottom: 1px solid #efe8e0;
}
.price-row__label {
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
}
.price-row__sub {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
}
.price-row__value {
  flex: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #16243f;
  white-space: nowrap;
}

/* 月額プランのカード */
.price-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .price-cards { grid-template-columns: 1fr 1fr; }
}
.price-card {
  display: block;
  border: 1px solid #efe8e0;
  border-radius: 4px;
  background: #fff;
  padding: 24px;
  transition: border-color .2s ease-out;
}
.price-card:hover {
  border-color: #f29600;
}
.price-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #16243f;
}
.price-card__price {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 700;
  color: #f29600;
  line-height: 1.3;
}
.price-card__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}

/* 進め方 */
.price-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}
@media screen and (min-width: 600px) {
  .price-steps { grid-template-columns: 1fr 1fr; }
}
@media screen and (min-width: 900px) {
  .price-steps { grid-template-columns: repeat(3, 1fr); }
}
.price-step {
  border: 1px solid #efe8e0;
  border-radius: 4px;
  background: #fff;
  padding: 20px;
}
.price-step__no {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #f29600;
}
.price-step__name {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #16243f;
  line-height: 1.5;
}
.price-step__text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}

/* CTA */
.price-cta {
  padding: 64px 0;
  background: #16243f;
  color: #fff;
}
.price-cta__title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.price-cta__text {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
  color: #dcdcdc;
}
.price-cta__btns {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 600px) {
  .price-cta__btns { flex-direction: row; justify-content: center; }
}
.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 15px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  transition: all .2s ease-out;
}
.price-btn--primary {
  background: #f29600;
  color: #fff;
  border: 2px solid #f29600;
}
.price-btn--primary:hover {
  background: #d98700;
  border-color: #d98700;
}
.price-btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .6);
}
.price-btn--ghost:hover {
  background: #fff;
  color: #16243f;
}
.price-cta__note {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: #dcdcdc;
}

@media screen and (max-width: 599px) {
  .price-sec { padding: 56px 0; }
  .price-row { flex-direction: column; gap: 6px; }
  .price-row__value { font-size: 16px; }
}

/* ==========================================================================
   料金・進め方ページ 再構成（2026.08）
   価格の決め方・早見表・サービスごとの内訳と進め方・よくある質問。
   ========================================================================== */

/* ---------- 価格の決め方 ---------- */
.price-story {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.price-story__block {
  padding-top: 20px;
  border-top: 3px solid #f29600;
}
.price-story__h {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #16243f;
  margin-bottom: 10px;
}
.price-story__block p {
  font-size: 16px;
  line-height: 1.9;
  color: #333333;
}

/* ---------- 3つのお約束 ---------- */
.price-promise {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.price-promise__item {
  padding: 24px;
  background: #fdf7ef;
  border-radius: 8px;
}
.price-promise__name {
  font-size: 17px;
  font-weight: 700;
  color: #16243f;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}
.price-promise__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f29600;
}
.price-promise__text {
  font-size: 15px;
  line-height: 1.85;
  color: #333333;
}

/* ---------- 費用の早見表 ---------- */
.price-quick {
  margin-top: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price-quick__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 15px;
}
.price-quick__table th,
.price-quick__table td {
  border: 1px solid #e0e0e0;
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
  line-height: 1.7;
}
.price-quick__table thead th {
  background: #d9d9d9;
  color: #16243f;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.price-quick__cate th {
  background: #16243f;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
}
.price-quick__table tbody th[scope="row"] {
  font-weight: 700;
  color: #16243f;
  width: 36%;
}
.price-quick__table tbody th[scope="row"] a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #c8cdd6;
}
.price-quick__table tbody th[scope="row"] a:hover {
  color: #f29600;
  border-bottom-color: #f29600;
}
.price-quick__band {
  font-weight: 700;
  color: #16243f;
  white-space: nowrap;
}
.price-quick__term {
  color: #333333;
  white-space: nowrap;
}

/* ---------- カテゴリーへのリンク ---------- */
.price-anchor {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.price-anchor a {
  display: inline-block;
  padding: 9px 20px;
  border: 1px solid #16243f;
  border-radius: 100px;
  background: #ffffff;
  color: #16243f;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s, color .2s;
}
.price-anchor a:hover {
  background: #16243f;
  color: #ffffff;
}

/* ---------- サービスごとのブロック ---------- */
.price-block {
  scroll-margin-top: 140px;
}
.price-sec[id],
.price-inner [id] {
  scroll-margin-top: 140px;
}
.price-block__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 2px solid #16243f;
  margin-bottom: 18px;
}
.price-block__head .price-block__title {
  margin-bottom: 0;
  border: 0;
  padding: 0;
}
.price-block__band {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.price-block__band-label {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: #f29600;
  border-radius: 4px;
  padding: 3px 10px;
}
.price-block__band-value {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #16243f;
}
.price-block__band-term {
  font-size: 14px;
  color: #333333;
}
.price-block__lead {
  font-size: 16px;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 22px;
}

/* ---------- 金額が変わるところ／ご注意 ---------- */
.price-detail {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.price-detail__col {
  padding: 22px 24px;
  border-radius: 8px;
  background: #f6f7f9;
}
.price-detail__col--note {
  background: #fdf3e6;
}
.price-detail__h {
  font-size: 16px;
  font-weight: 700;
  color: #16243f;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 4px solid #f29600;
  line-height: 1.4;
}
.price-detail__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.price-detail__list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.85;
  color: #333333;
}
.price-detail__list li + li {
  margin-top: 8px;
}
.price-detail__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16243f;
}

/* ---------- 進め方 ---------- */
.price-how {
  margin-top: 28px;
}
.price-how__list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.price-how__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.price-how__no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #16243f;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.price-how__name {
  font-size: 16px;
  font-weight: 700;
  color: #16243f;
  line-height: 1.5;
}
.price-how__text {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}
.price-how__term {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 12px;
  border-radius: 100px;
  background: #fdf3e6;
  color: #b96f00;
  font-size: 13px;
  font-weight: 700;
}

/* ---------- 詳細ページへのボタン ---------- */
.price-block__more {
  margin-top: 26px;
}
.price-block__more .link-btn {
  margin-left: auto;
  margin-right: auto;
  /* サービス名が入るぶん文字数が多いので、幅を固定せず矢印の手前で折り返さないようにする */
  width: auto;
  min-width: 320px;
  max-width: 100%;
  padding: 0 62px 0 32px;
  text-align: center;
  line-height: 1.4;
}
/* ネイビー版のボタンは top.css にしか無いため、このページ用にも用意する */
.price-inner .link-btn--navy {
  background-color: #16243f;
}

/* ---------- よくある質問 ---------- */
.price-faq {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.price-faq__item {
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.price-faq__q {
  position: relative;
  padding-left: 34px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: #16243f;
  margin-bottom: 10px;
}
.price-faq__q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #16243f;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
.price-faq__a {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
}
.price-faq__a::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f29600;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

/* ---------- PC ---------- */
@media screen and (min-width: 768px) {
  .price-story { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
  .price-promise { grid-template-columns: repeat(3, 1fr); }
  .price-detail { grid-template-columns: 1fr 1fr; }
  .price-how__list { grid-template-columns: 1fr 1fr; }
  .price-faq { grid-template-columns: 1fr 1fr; }
  .price-block__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
  .price-block__band { justify-content: flex-end; }
  .price-block__band-value { font-size: 28px; }
}

/* ---------- スマホ ---------- */
@media screen and (max-width: 599px) {
  .price-story__h { font-size: 18px; }
  .price-block__band-value { font-size: 21px; }
  .price-block__band-label { font-size: 12px; }
  .price-quick__table { font-size: 14px; }
  .price-quick__table th,
  .price-quick__table td { padding: 12px 14px; }
  .price-anchor a { font-size: 13px; padding: 8px 16px; }
  .price-faq__q { font-size: 16px; }
  /* ボタンは横幅いっぱいに。min-width を残すと画面から はみ出す */
  .price-block__more .link-btn {
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
    height: auto;
    min-height: 60px;
    padding: 14px 52px 14px 20px;
    font-size: 15px;
  }
  .price-how__item { padding: 14px 16px; gap: 12px; grid-template-columns: 40px 1fr; }
  .price-how__no { width: 40px; height: 40px; font-size: 14px; }
  .price-detail__col { padding: 18px 18px; }
  .price-promise__item { padding: 20px; }
}

/* 早見表の下など、補足として小さく出す注意書き（2026.08） */
.price-caution--sm {
  margin-top: 18px;
  font-size: 14px;
  padding: 14px 18px;
}

/* ==========================================================================
   料金ページ 第2版（2026.08）
   ・金額は下限を大きく、その先を小さく。入口の価格が先に目に入るようにする
   ・金額の前に「含まれるもの」と「無料で試せること」を置く
   ・他社との違いを言葉で比べられるようにする
   ========================================================================== */

/* ---------- 費用をかけずに試せること ---------- */
.price-free {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.price-free__item {
  display: block;
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}
.price-free__item:hover {
  border-color: #f29600;
  box-shadow: 0 4px 16px rgba(22, 36, 63, .08);
}
.price-free__tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  background: #f29600;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.price-free__name {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #16243f;
  line-height: 1.5;
}
.price-free__text {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.85;
  color: #333333;
}

/* ---------- 他社との違い ---------- */
.price-compare {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-compare__row {
  border-top: 1px solid #e0e0e0;
  padding-top: 18px;
}
.price-compare__row:first-child { border-top: 0; padding-top: 0; }
.price-compare__point {
  font-size: 16px;
  font-weight: 700;
  color: #16243f;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 4px solid #f29600;
  line-height: 1.4;
}
.price-compare__cells {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.price-compare__cell {
  padding: 18px 20px;
  border-radius: 8px;
}
.price-compare__cell--other { background: #f2f2f2; }
.price-compare__cell--kbd   { background: #16243f; }
.price-compare__who {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.price-compare__cell--other .price-compare__who { color: #666666; }
.price-compare__cell--kbd   .price-compare__who { color: #f9b64d; }
.price-compare__cell p {
  font-size: 15px;
  line-height: 1.85;
}
.price-compare__cell--other p { color: #333333; }
.price-compare__cell--kbd   p { color: #ffffff; font-weight: 500; }

/* ---------- 数字で見る ---------- */
.price-facts {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.price-facts__item {
  padding: 20px 18px;
  background: #fdf7ef;
  border-radius: 8px;
  text-align: center;
}
.price-facts__item b {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  line-height: 1.2;
  color: #f29600;
}
.price-facts__item span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: #333333;
}

/* ---------- 早見表：下限を大きく ---------- */
.price-quick__band b {
  font-size: 17px;
  font-weight: 700;
  color: #16243f;
}
.price-quick__band span {
  font-size: 13px;
  font-weight: 400;
  color: #555555;
  margin-left: 2px;
}

/* ---------- 月あたりに換算すると ---------- */
.price-permonth {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.price-permonth__item {
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
}
.price-permonth__name {
  font-size: 15px;
  font-weight: 700;
  color: #16243f;
  line-height: 1.5;
}
.price-permonth__total {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #555555;
}
.price-permonth__arrow {
  margin: 6px 0;
  font-size: 12px;
  color: #555555;
  position: relative;
}
.price-permonth__arrow::before {
  content: "▼";
  display: block;
  color: #f29600;
  font-size: 11px;
  margin-bottom: 2px;
}
.price-permonth__month {
  font-size: 13px;
  color: #333333;
  font-weight: 700;
}
.price-permonth__amount {
  margin-top: 2px;
  font-family: "Outfit", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  color: #f29600;
  white-space: nowrap;
}
.price-permonth__amount span {
  font-family: inherit;
  font-size: 15px;
  margin-left: 2px;
}

/* ---------- 価格帯：下限を大きく ---------- */
.price-block__band-from {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #16243f;
}
.price-block__band-rest {
  font-size: 16px;
  font-weight: 400;
  color: #555555;
  margin-left: 2px;
}
.price-block__band-value { display: inline-flex; align-items: baseline; flex-wrap: wrap; }

/* ---------- この金額に含まれるもの ---------- */
.price-incl {
  margin-top: 22px;
  padding: 22px 24px;
  background: #f6f7f9;
  border-radius: 8px;
  border-left: 4px solid #16243f;
}
.price-incl__h {
  font-size: 16px;
  font-weight: 700;
  color: #16243f;
  margin-bottom: 12px;
  line-height: 1.4;
}
.price-incl__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px;
}
.price-incl__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}
.price-incl__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .42em;
  width: 12px;
  height: 7px;
  border-left: 2px solid #f29600;
  border-bottom: 2px solid #f29600;
  transform: rotate(-45deg);
}

/* ---------- 月額プランのバッジ ---------- */
.price-card { position: relative; }
.price-card__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 14px;
  border-radius: 100px;
  background: #f29600;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}

/* ---------- PC ---------- */
@media screen and (min-width: 768px) {
  .price-free { grid-template-columns: 1fr 1fr; }
  .price-compare__cells { grid-template-columns: 1fr 1fr; }
  .price-facts { grid-template-columns: repeat(4, 1fr); }
  .price-permonth { grid-template-columns: repeat(4, 1fr); }
  .price-incl__list { grid-template-columns: 1fr 1fr; }
  .price-block__band-from { font-size: 34px; }
}
@media screen and (max-width: 599px) {
  .price-block__band-from { font-size: 26px; }
  .price-block__band-rest { font-size: 14px; }
  .price-facts__item b { font-size: 26px; }
  .price-permonth__amount { font-size: 24px; }
  .price-free__name { font-size: 17px; }
  .price-incl { padding: 18px 18px; }
}

/* ---------- お支払いについて（2026.08） ---------- */
.price-sub {
  margin-top: 44px;
  font-size: 20px;
  font-weight: 700;
  color: #16243f;
  line-height: 1.5;
  padding-left: 14px;
  border-left: 4px solid #f29600;
}
.price-pay {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.price-pay__item {
  padding: 22px 24px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.price-pay__item--ex {
  background: #16243f;
  border-color: #16243f;
}
.price-pay__name {
  font-size: 16px;
  font-weight: 700;
  color: #16243f;
  margin-bottom: 8px;
  line-height: 1.5;
}
.price-pay__item--ex .price-pay__name { color: #f9b64d; }
.price-pay__text {
  font-size: 15px;
  line-height: 1.85;
  color: #333333;
}
.price-pay__text b { color: #16243f; font-weight: 700; }
.price-pay__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.price-pay__steps li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.price-pay__steps li:last-child { border-bottom: 0; }
.price-pay__steps span { font-size: 14px; color: #ffffff; line-height: 1.6; }
.price-pay__steps b {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  color: #f9b64d;
  white-space: nowrap;
}
.price-pay__note {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: #d6dae2;
}
@media screen and (min-width: 768px) {
  /* お約束は4つ。余白ぶんを見込んで最小幅を下げ、1行に収める */
  .price-promise { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .price-promise__item { padding: 20px 18px; }
  .price-pay { grid-template-columns: 1fr 1fr 1.2fr; align-items: start; }
}

/* ==========================================================================
   料金・進め方 第3版（2026.08）
   参考サイトの構成に合わせて、読み取りやすさを優先した整理。
   ・見出しは左のオレンジ帯＋下の細線
   ・セクションは 白／薄いグレー／ネイビー の3種で役割を分ける
   ・サービスごとの内容は白いカードにまとめ、金額はネイビーの枠で右上に固定
   ・角丸は4px以下、ぼかし影は使わない（既存の方針どおり）
   ========================================================================== */

/* ---------- セクションの地色 ---------- */
.price-sec--alt   { background: #f4f6f8; }
.price-sec--white { background: #ffffff; }
.price-sec--navy  { background: #16243f; }
.price-inner { max-width: 1080px; }

/* ---------- 見出し ---------- */
.price-cate {
  position: relative;
  padding: 0 0 20px 20px;
  border-bottom: 1px solid #dfe3e8;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: .01em;
}
.price-cate::before {
  content: "";
  position: absolute;
  left: 0;
  top: .12em;
  width: 5px;
  height: 1.05em;
  background: #f29600;
}
.price-cate + .price-lead { margin-top: 22px; }
.price-lead { font-size: 16px; max-width: 900px; }
.price-sec--navy .price-cate { color: #ffffff; border-bottom-color: rgba(255,255,255,.22); }
.price-sec--navy .price-lead { color: #d6dae2; }
.price-sec--navy .price-caution {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  color: #d6dae2;
}
.price-sec--navy .price-caution b { color: #ffffff; }
.price-sec--navy .price-anchor a {
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: #ffffff;
}
.price-sec--navy .price-anchor a:hover { background: #ffffff; color: #16243f; }

/* ---------- 価格の決め方：区切り線だけの2×2 ---------- */
.price-story {
  margin-top: 36px;
  gap: 0;
  border-top: 1px solid #dfe3e8;
}
.price-story__block {
  padding: 30px 0 30px;
  border-top: 0;
  border-bottom: 1px solid #dfe3e8;
}
.price-story__no {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #f29600;
  margin-bottom: 8px;
}
.price-story__h { font-size: 21px; margin-bottom: 12px; }

/* ---------- お約束：ネイビーの帯を4分割 ---------- */
.price-promise {
  margin-top: 44px;
  gap: 0;
  background: #16243f;
  border-radius: 4px;
  overflow: hidden;
}
.price-promise__item {
  background: transparent;
  border-radius: 0;
  padding: 28px 26px;
}
.price-promise__name {
  color: #f9b64d;
  font-size: 16px;
  padding-left: 0;
  margin-bottom: 12px;
}
.price-promise__name::before { display: none; }
.price-promise__text { color: #d6dae2; font-size: 14px; }

/* ---------- 費用をかけずに試せること：枠を共有した2×2 ---------- */
.price-free {
  gap: 0;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
}
.price-free__item {
  border: 0;
  border-radius: 0;
  border-right: 1px solid #dfe3e8;
  border-bottom: 1px solid #dfe3e8;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  align-content: start;
}
.price-free__item:hover { border-color: #dfe3e8; box-shadow: none; background: #fdf7ef; }
.price-free__tag { grid-row: 1; align-self: center; }
.price-free__name { grid-row: 1; margin-top: 0; font-size: 18px; align-self: center; }
.price-free__text { grid-column: 2; margin-top: 2px; }

/* ---------- 他社との違い：3列で読み比べる ---------- */
.price-compare {
  margin-top: 32px;
  gap: 0;
  border-top: 1px solid #dfe3e8;
}
.price-compare__row {
  border-top: 0;
  border-bottom: 1px solid #dfe3e8;
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr;
}
.price-compare__point {
  margin: 0;
  padding: 24px 20px 8px;
  border-left: 0;
  font-size: 15px;
}
.price-compare__cells { display: contents; }
.price-compare__cell {
  border-radius: 0;
  padding: 22px 26px;
}
.price-compare__cell--other { background: #f4f6f8; }
.price-compare__cell--kbd   { background: #fdf5ea; }
.price-compare__cell--kbd .price-compare__who { color: #b96f00; }
.price-compare__cell--kbd p { color: #16243f; font-weight: 500; }

/* ---------- 数字の帯 ---------- */
.price-facts__item { background: #ffffff; border: 1px solid #dfe3e8; border-radius: 4px; }

/* ---------- 早見表 ---------- */
.price-quick__table { border-color: #dfe3e8; }
.price-quick__table th,
.price-quick__table td { border-color: #dfe3e8; }
.price-quick__table thead th { background: #0f1a2e; color: #ffffff; }
.price-quick__cate th { background: #f29600; color: #ffffff; letter-spacing: .06em; }
.price-quick__band b { font-size: 18px; }
.price-quick__band span { color: #6a7280; }
.price-quick__term { color: #444444; }

/* ---------- 月あたりに換算すると ---------- */
.price-permonth {
  gap: 0;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}
.price-permonth__item {
  border: 0;
  border-right: 1px solid #dfe3e8;
  border-bottom: 1px solid #dfe3e8;
  border-radius: 0;
  text-align: left;
  padding: 26px 24px;
}
.price-permonth__total { color: #16243f; font-size: 22px; }
.price-permonth__arrow { color: #6a7280; }
.price-permonth__arrow::before { content: "↓"; font-size: 13px; }

/* ---------- お支払い ---------- */
.price-sub { padding-left: 18px; font-size: 21px; }
.price-pay__item { border-radius: 4px; }
.price-pay__item--ex { border-radius: 4px; }

/* ---------- サービスごとのカード ---------- */
.price-block {
  margin-top: 0;
  background: #ffffff;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  padding: 40px 44px;
}
.price-block + .price-block { margin-top: 24px; }
.price-cate + .price-block,
.price-lead + .price-block { margin-top: 32px; }

.price-block__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 24px;
}
.price-block__title { font-size: 26px; line-height: 1.4; }
.price-block__title a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 0;
}
.price-block__title a span[aria-hidden] {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid #dfe3e8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #16243f;
  transition: background-color .2s, border-color .2s, color .2s;
}
.price-block__title a:hover span[aria-hidden] {
  background: #f29600;
  border-color: #f29600;
  color: #ffffff;
}

/* 金額はネイビーの枠にまとめて、視線が最初に届く位置に置く */
.price-block__band {
  display: block;
  background: #16243f;
  border-radius: 4px;
  padding: 18px 26px;
  min-width: 290px;
}
.price-block__band-label {
  display: block;
  background: transparent;
  color: #f9b64d;
  padding: 0;
  font-size: 12px;
  letter-spacing: .06em;
}
.price-block__band-value { display: flex; align-items: baseline; margin-top: 6px; }
.price-block__band-from { color: #ffffff; font-size: 30px; }
.price-block__band-rest { color: #b9c0cc; font-size: 15px; }
.price-block__band-term {
  display: block;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: #b9c0cc;
  font-size: 13px;
}
.price-block__lead { margin-bottom: 0; }

/* 含まれるもの */
.price-incl {
  margin-top: 26px;
  border-left: 0;
  border-radius: 4px;
  background: #eef2f6;
  padding: 26px 30px;
}
.price-incl__h { font-size: 15px; font-weight: 500; color: #445061; margin-bottom: 14px; }
.price-incl__list li { font-size: 14px; }

/* 内訳：線だけで区切る */
.price-table { margin-top: 26px; border-top: 1px solid #dfe3e8; }
.price-row {
  padding: 18px 0;
  border-bottom: 1px solid #dfe3e8;
  border-top: 0;
}
.price-row__label { font-size: 16px; font-weight: 700; color: #16243f; }
.price-row__sub { font-weight: 400; }
.price-row__value { font-size: 18px; color: #16243f; }

/* 金額が変わるところ／ご注意 */
.price-detail {
  margin-top: 26px;
  gap: 0;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  overflow: hidden;
}
.price-detail__col { border-radius: 0; padding: 24px 26px; }
.price-detail__col:first-child { border-right: 1px solid #dfe3e8; }
.price-detail__h {
  border-left: 0;
  padding-left: 0;
  font-size: 15px;
  font-weight: 500;
  color: #445061;
  margin-bottom: 14px;
}
.price-detail__col--note .price-detail__h { color: #b96f00; }
.price-detail__list li { font-size: 14px; }
.price-detail__list li::before { background: #b9c0cc; }
.price-detail__col--note .price-detail__list li::before { background: #f29600; }

/* 進め方：横に並べて全体の流れを1画面で見せる */
.price-how { margin-top: 26px; }
.price-how__list {
  margin-top: 14px;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border-top: 1px solid #dfe3e8;
  border-left: 1px solid #dfe3e8;
  border-radius: 4px;
  overflow: hidden;
}
.price-how__item {
  border: 0;
  border-right: 1px solid #dfe3e8;
  border-bottom: 1px solid #dfe3e8;
  border-radius: 0;
  background: transparent;
  padding: 22px 20px;
  grid-template-columns: 26px 1fr;
  gap: 0 10px;
}
.price-how__no {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  color: #b9c0cc;
  font-size: 13px;
  justify-content: flex-start;
  padding-top: 2px;
}
.price-how__name { font-size: 15px; }
.price-how__text { font-size: 13.5px; }

/* 詳細ページへのボタンは右下に */
.price-block__more { margin-top: 28px; text-align: right; }
.price-block__more .link-btn {
  /* .link-btn は display:flex のため、幅を内容に合わせるには inline-flex にする */
  display: inline-flex;
  margin-left: auto;
  margin-right: 0;
  border-radius: 4px;
  width: auto;
  min-width: 0;
  padding: 0 62px 0 28px;
  font-size: 15px;
}

/* ---------- 月額プラン ---------- */
.price-card { border-radius: 4px; }
.price-card__badge { border-radius: 4px; }

/* ---------- よくある質問：1列で読ませる ---------- */
.price-faq {
  margin-top: 32px;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid #dfe3e8;
}
.price-faq__item {
  border: 0;
  border-bottom: 1px solid #dfe3e8;
  border-radius: 0;
  background: transparent;
  padding: 26px 0;
}
.price-faq__q { padding-left: 30px; font-size: 18px; margin-bottom: 8px; }
.price-faq__q::before {
  content: "Q";
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  color: #f29600;
  font-size: 18px;
  font-weight: 700;
  line-height: inherit;
  text-align: left;
}
.price-faq__a { padding-left: 30px; font-size: 15px; }
.price-faq__a::before { display: none; }

/* ---------- PC ---------- */
@media screen and (min-width: 768px) {
  .price-story { grid-template-columns: 1fr 1fr; column-gap: 0; }
  .price-story__block { padding-right: 44px; }
  .price-story__block:nth-child(even) { padding-left: 44px; border-left: 1px solid #dfe3e8; padding-right: 0; }
  .price-compare__row { grid-template-columns: 210px 1fr 1fr; align-items: stretch; }
  .price-compare__point { padding: 24px 20px; align-self: center; }
  .price-free__item:nth-child(even) { border-right: 0; }
  .price-free__item:nth-last-child(-n+2) { border-bottom: 0; }
  .price-permonth__item:nth-child(4n) { border-right: 0; }
  .price-permonth { }
}
@media screen and (max-width: 767px) {
  .price-block { padding: 26px 20px; }
  .price-block__head { grid-template-columns: 1fr; gap: 18px; }
  .price-block__title { font-size: 21px; }
  .price-block__title a { gap: 12px; }
  .price-block__title a span[aria-hidden] { width: 34px; height: 34px; font-size: 13px; }
  .price-block__band { min-width: 0; padding: 16px 20px; }
  .price-block__band-from { font-size: 26px; }
  .price-detail__col:first-child { border-right: 0; border-bottom: 1px solid #dfe3e8; }
  .price-free__item { border-right: 0; padding: 22px 20px; }
  .price-free__item:last-child { border-bottom: 0; }
  .price-permonth__item { border-right: 0; }
  .price-permonth__item:last-child { border-bottom: 0; }
  .price-cate { padding-left: 14px; }
  .price-cate::before { width: 4px; }
}

/* ==========================================================================
   ページ内リンク（2026.08）
   サービスページと同じ見た目・同じ動き。追従の処理は js/service-lp.js が行う。
   ========================================================================== */
.svlp-nav {
  background: #16243f;
  border-bottom: 0;
}
.svlp-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 4px 28px;
}
.svlp-nav__label {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #c9ced8;
  letter-spacing: .08em;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 4px;
  margin-right: 8px;
}
.svlp-nav__link {
  display: block;
  padding: 16px 0;
  font-size: 13px;
  font-weight: 700;
  color: #c9ced8;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.svlp-nav__link:hover {
  color: #ffffff;
  border-bottom-color: #f29600;
}
.svlp-nav.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 120px;
  z-index: 9;
}
@media screen and (max-width: 1199px) {
  .svlp-nav.is-fixed { top: 81px; } /* 固定ヘッダー（26px＋55px）の下 */
}
@media screen and (max-width: 758px) {
  .svlp-nav__inner { flex-wrap: nowrap; overflow-x: auto; padding: 0 18px; gap: 4px 20px; }
  .svlp-nav__link { white-space: nowrap; }
  .svlp-nav__label { padding: 3px 6px; margin-right: 4px; white-space: nowrap; }
}

/* 追従メニューのぶん、アンカーの着地位置を下げる */
.price-block,
.price-sec[id],
.price-inner [id] { scroll-margin-top: 186px; }
@media screen and (max-width: 1199px) {
  .price-block,
  .price-sec[id],
  .price-inner [id] { scroll-margin-top: 140px; }
}
