/* =========================================
   SEO改修2026年5月追加分
   /feature/ ページ新規セクション用スタイル
   ========================================= */


/* =========================================
   WP標準余白の打ち消し
   /css/style.css の .wp-block-group__inner-container > * への margin-top:32px が
   新規セクションに意図せず効くため、スコープ限定で打ち消す
   ========================================= */
.worry .wp-block-group__inner-container > *,
.worry__item .wp-block-group__inner-container > *,
.audience .wp-block-group__inner-container > *,
.audience__item .wp-block-group__inner-container > *,
.cta-main .wp-block-group__inner-container > *,
.next-step .wp-block-group__inner-container > *,
.next-step__branch .wp-block-group__inner-container > * {
  margin-top: 0;
}


/* =========================================
   セクション1：悩みリスト
   ========================================= */
.worry__heading {
  margin-top: 80px;
}

.worry {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 40px;
  background: var(--base-color2);
  border-radius: 8px;
}

.worry__item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-color);
}

.worry__item:last-child {
  border-bottom: none;
}

.worry__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-middle);
  margin: 0 0 8px;
  line-height: 1.5;
}

.worry__desc {
  font-size: 14px;
  color: var(--light-color);
  line-height: 1.7;
  margin: 0;
  padding-left: 1.8em;
}


/* =========================================
   セクション2：親近・解決提示
   ========================================= */
.solution__heading {
  margin-top: 80px;
}

.solution__lead {
  font-size: 16px;
  text-align: center;
  color: var(--light-color);
  margin: 0 0 32px;
}


/* =========================================
   共通CTA枠（CTA①・CTA②）
   ========================================= */
.cta-main {
  max-width: 800px;
  margin: 48px auto;
  padding: 40px;
  background: #f7f7f7;
  border-radius: 8px;
  text-align: center;
}

.cta-main__lead {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-middle);
  margin: 0 0 16px;
}


/* =========================================
   リッチCTAボタン（CTA①・CTA②内）
   ========================================= */
.cta-button {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 16px auto 0;
  padding: 16px 24px;
  background: linear-gradient(90deg, #1b5b5b 0%, #2b5e5e 100%);
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(20, 99, 82, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(20, 99, 82, 0.35);
  color: #fff;
  text-decoration: none;
}

.cta-button__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #fff;
  color: var(--green-middle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.cta-button__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.3;
}

.cta-button__title {
  font-size: 20px;
  font-weight: 700;
}

.cta-button__sub {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 6px;
}

.cta-button__arrow {
  flex-shrink: 0;
  font-size: 28px;
  margin-left: 16px;
  line-height: 1;
}


/* =========================================
   トラストバッジ（CTA①・CTA②下）
   ========================================= */
.cta-trust {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.cta-trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--light-color);
}

.cta-trust__icon {
  display: inline-flex;
  align-items: center;
  color: var(--green-middle);
}


/* =========================================
   セクション6：適合コンテンツ
   ========================================= */
.audience__heading {
  margin-top: 80px;
}

.audience {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.audience > .audience__category {
  flex: 1 1 280px;
}

.audience__category {
  padding: 24px;
  background: var(--white-color);
  border: 1px solid var(--line-color);
  border-radius: 8px;
}

.audience__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-middle);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-middle);
}

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

.audience__list li {
  font-size: 14px;
  line-height: 1.7;
  padding: 8px 0;
  color: var(--text-color);
}


/* =========================================
   セクション7：次のアクション導線（2分岐）
   ========================================= */
.next-step {
  max-width: 1000px;
  margin: 80px auto;
  padding: 48px 32px;
  background: #f7f7f7;
  border-radius: 12px;
}

.next-step__heading {
  margin: 0 0 40px;
}

.next-step__sublead {
  font-size: 14px;
  color: var(--light-color);
  text-align: center;
  margin: -16px 0 40px;
}

.next-step__branches {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.next-step__branch .btn01 a{margin-top: 0;}

.next-step__branches > .next-step__branch {
  flex: 1 1 300px;
}

/* カード本体（aタグでカード全体リンク化） */
.next-step__branch {
  padding: 32px 28px;
  background: var(--white-color);
  border-radius: 12px;
  border: 1px solid var(--line-color);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.next-step__branch:hover {
  transform: translateY(-4px);
  border-color: var(--green-middle);
  box-shadow: 0 10px 28px rgba(20, 99, 82, 0.18);
  text-decoration: none;
  color: inherit;
}

.next-step__branch:hover .next-step__button {
  background: #fff;
  color: var(--green-middle);
  box-shadow: 0 4px 12px rgba(20, 99, 82, 0.25);
}

.next-step__branch--primary {
  border: 2px solid var(--green-middle);
  box-shadow: 0 4px 16px rgba(20, 99, 82, 0.15);
}

.next-step__branch--primary:hover {
  box-shadow: 0 14px 36px rgba(20, 99, 82, 0.28);
}

/* カード内：アイコン+見出し（中央配置） */
.next-step__head {
  text-align: center;
  margin-bottom: 20px;
}

.next-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 14px;
}

.next-step__icon--secondary {
  background: #d8e6e0;
  color: var(--green-middle);
}

.next-step__icon--primary {
  background: var(--green-middle);
  color: #fff;
}

.next-step__title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  color: var(--green-middle);
  line-height: 1.5;
  display: inline-block;
  vertical-align: middle;
}

/* カード内：説明 / 区切り線 / ボタン / 注釈 */
.next-step__desc {
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  color: var(--light-color);
  margin: 0;
}

.next-step__divider {
  border: 0;
  border-top: 1px solid var(--line-color);
  margin: 24px 0;
}

.next-step__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  background: var(--green-middle);
  border: 2px solid var(--green-middle);
  color: #fff;
  transition: all 0.25s ease;
}

.next-step__button:hover {
  background: #fff;
  color: var(--green-middle);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(20, 99, 82, 0.25);
}

.next-step__button-arrow {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.next-step__note {
  font-size: 11px;
  color: var(--light-color);
  text-align: center;
  margin: 12px 0 0;
}


/* =========================================
   Responsive: Mobile (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {
  .worry {
    padding: 24px 16px;
    margin-bottom: 48px;
  }

  .worry__title {
    font-size: 15px;
  }

  .worry__desc {
    font-size: 13px;
    padding-left: 1.5em;
  }

  .solution__lead {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .cta-main {
    padding: 24px 16px;
  }

  .cta-main__lead {
    font-size: 15px;
  }

  .cta-button {
    padding: 12px 16px;
  }

  .cta-button__icon {
    width: 44px;
    height: 44px;
    margin-right: 12px;
  }

  .cta-button__title {
    font-size: 16px;
  }

  .cta-button__sub {
    font-size: 11px;
  }

  .cta-button__arrow {
    font-size: 22px;
    margin-left: 8px;
  }

  .cta-trust {
    gap: 12px;
  }

  .cta-trust__item {
    font-size: 11px;
  }

  .audience__category {
    padding: 16px;
  }

  .audience__title {
    font-size: 16px;
  }

  .audience__list li {
    font-size: 13px;
  }

  .next-step {
    padding: 32px 16px;
    margin: 48px auto;
  }

  .next-step__branch {
    padding: 24px 16px;
  }

  .next-step__title {
    font-size: 16px;
  }

  .next-step__desc {
    font-size: 13px;
  }
}


/* =========================================
   /feature/ LP訴求強化
   ========================================= */
.page-template .h1--block--feature-fv {
  min-height: 0;
  margin-top: clamp(130px, calc(10.8vw + 1px), 236px);
  padding: 100px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, rgba(0, 62, 61, 0.32) 0%, rgba(0, 62, 61, 0.08) 58%, rgba(0, 62, 61, 0.18) 100%), var(--feature-fv-bg, none) center center / cover no-repeat;
  overflow: hidden;
}

.page-template .h1--block--feature-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 55, 54, 0.78) 0%, rgba(0, 82, 80, 1) 42%, rgba(0, 82, 80, 1) 72%);
  opacity: 0.78;
  pointer-events: none;
}

.page-template .h1--block--feature-fv::after {
  display: none;
}

.page-template .h1--block--feature-fv .h1--block--inner {
  width: min(1120px, 100%);
  z-index: 1;
}

.page-template .h1--block--feature-fv .h1--block--inner .btn02{
 justify-content: left;
}

.page-template .h1--block--feature-fv .breadclumb {
  display: none;
}

.page-template .h1--block--feature-fv .h1--span {
  margin-top: 0;
  color: #e5f3f3;
  font-size: 32px;
  letter-spacing: 0;
  line-height: 1.2;
  opacity: 1;
}

.page-template .h1--block--feature-fv h1 {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

.page-template .h1--block--feature-fv h1::before {
  content: "";
  display: block;
  width: 124px;
  height: 1px;
  margin: 0 0 28px;
  background: rgba(229, 243, 243, 0.6);
}

.page-template .h1--block--feature-fv .h1--block--inner > p:not([class]) {
  display: none;
}

.page-template .h1--block--feature-fv .feature-hero {
  width: min(800px, 100%);
  margin-top: 28px;
}

.page-template .h1--block--feature-fv .feature-hero__catch {
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 4.4vw, 55px);
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
}

.page-template .h1--block--feature-fv .feature-hero__catch span {
  color: #e5f3f3;
}

.page-template .h1--block--feature-fv .feature-hero__lead {
  margin: 24px 0 0;
  color: #fff;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.02em;
}

/* =========================================
   /feature/ 専門家CTA（参考画像リデザイン）
   ========================================= */
.feature-consult {
  max-width: 1040px;
  margin: 56px auto 88px;
  display: grid;
  grid-template-columns: minmax(220px, 32%) 1fr;
  background: var(--white-color);
  border: 1px solid var(--line-color2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(7, 56, 55, 0.1);
}

.feature-consult--no-visual {
  grid-template-columns: 1fr;
}

.feature-consult__visual {
  margin: 0;
  align-self: stretch;
  width: 100%;
  height: 100%;
}

.feature-consult__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.feature-consult__content {
  align-self: center;
  padding: 40px 44px;
  color: var(--text-color);
}

/* 小見出し（両脇に点線） */
.feature-consult__eyebrow {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--green-middle);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.feature-consult__eyebrow::before,
.feature-consult__eyebrow::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--green-middle);
  opacity: 0.4;
}

/* 大見出し */
.feature-consult__title,
.page-template .feature-consult__title {
  margin: 0;
  color: var(--green-middle);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.2em;
  text-align: center;
}

.page-template .feature-consult__title span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.feature-consult__title strong,
.page-template .feature-consult__title strong {
  color: inherit;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2em;
}

/* 信頼バッジ（pills） */
.feature-consult__pills {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.feature-consult__pill {
  position: relative;
  padding: 8px 16px 8px 34px;
  background: var(--white-color);
  border: 1px solid var(--line-color);
  border-radius: 100px;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.feature-consult__pill::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: var(--green-middle);
  font-size: 13px;
}

/* アクション行（ボタン＋電話） */
.feature-consult__actions {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* メインボタン */
.feature-consult__button {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: var(--white-color);
  border: 2px solid var(--green-middle);
  border-radius: 12px;
  color: var(--green-middle);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(20, 99, 82, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.feature-consult__button:hover {
  transform: translateY(-2px);
  background: var(--green-middle);
  color: #fff;
  text-decoration: none;
  opacity: 1;
  box-shadow: 0 16px 32px rgba(20, 99, 82, 0.28);
}

.feature-consult__button-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-middle);
  color: #fff;
  border-radius: 50%;
  transition: background 0.25s ease, color 0.25s ease;
}

.feature-consult__button:hover .feature-consult__button-icon {
  background: #fff;
  color: var(--green-middle);
}

.feature-consult__button-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.3;
}

.feature-consult__button-main {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.feature-consult__button-sub {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
}

.feature-consult__button-arrow {
  flex-shrink: 0;
  font-size: 26px;
  line-height: 1;
}

/* 電話ボックス */
.feature-consult__tel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white-color);
  border: 2px solid var(--green-middle);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(20, 99, 82, 0.12);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-consult__tel:hover {
  transform: translateY(-2px);
  background: var(--green-middle);
  border-color: var(--green-middle);
  box-shadow: 0 16px 32px rgba(20, 99, 82, 0.28);
}

.feature-consult__tel:hover .feature-consult__tel-label,
.feature-consult__tel:hover .feature-consult__tel-num,
.feature-consult__tel:hover .feature-consult__tel-hours {
  color: #fff;
}

.feature-consult__tel-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-middle);
  color: #fff;
  border-radius: 50%;
  transition: background 0.25s ease, color 0.25s ease;
}

.feature-consult__tel:hover .feature-consult__tel-icon {
  background: #fff;
  color: var(--green-middle);
}

.feature-consult__tel-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.3;
}

.feature-consult__tel-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--light-color);
}

.feature-consult__tel-num {
  color: var(--green-middle);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.feature-consult__tel-hours {
  font-size: 12px;
  color: var(--light-color);
}

/* 安心テキスト */
.feature-consult__reassurance {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--light-color);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.feature-consult__reassurance-icon {
  flex-shrink: 0;
  display: inline-flex;
  color: var(--green-middle);
}

/* =========================================
   CTA タブレット幅（968〜1200px）の表示崩れ対策
   2カラム横並びは維持したまま、各ボックスのアイコンを
   テキストの上に重ねてテキスト幅を確保し、
   電話番号・見出しの折り返し／潰れを防ぐ
   ========================================= */
@media (min-width: 968px) and (max-width: 1200px) {
  .feature-consult__button,
  .feature-consult__tel {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 16px 14px;
  }

  .feature-consult__button-body {
    flex: none;
  }

  .feature-consult__button-arrow {
    display: none;
  }
}

.page-id-9027 .wrap,
.page-id-9167 .wrap{margin-top: 0;}

.page-id-9027 .worry__heading {
  max-width: 860px;
  margin: 0 auto 40px;
  padding-top: 12px;
}

.page-id-9027 .worry__heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 28px auto 0;
  background: #146352;
}

.page-id-9027 .worry {
  max-width: 960px;
  margin: 0 auto 88px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.page-id-9027 .worry > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  counter-reset: worry;
}

.page-id-9027 .worry__item {
  position: relative;
  min-height: 156px;
  padding: 28px 28px 26px 92px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
  border: 1px solid #dbe3dd;
  border-bottom: 1px solid #dbe3dd;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(27, 91, 91, 0.08);
  overflow: hidden;
}

.page-id-9027 .worry__item::before {
  counter-increment: worry;
  content: counter(worry, decimal-leading-zero);
  position: absolute;
  top: 26px;
  left: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 99, 82, 0.45);
  border-radius: 50%;
  color: #8a6a35;
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 1;
}



.page-id-9027 .worry__item:last-child {
  border-bottom: 1px solid #dbe3dd;
}

.page-id-9027 .worry__title {
  font-size: 18px;
  color: #155d59;
  letter-spacing: 0;
}

.page-id-9027 .worry__desc {
  padding-left: 0;
  font-size: 14px;
  color: #5d6662;
}

.page-id-9027 .solution__heading {
  max-width: 820px;
  margin: 96px auto 24px;
}

.page-id-9027 .solution__lead {
  margin: 8px auto 40px;
  padding: 22px 32px;
  background: #f3f8f6;
  border-left: 4px solid var(--green-middle);
  border-radius: 4px;
  font-size: 19px;
  font-weight: 700;
  color: var(--green-middle);
  line-height: 1.9;
}

.page-id-9027 .cta-main {
  position: relative;
  max-width: 960px;
  margin: 56px auto 96px;
  padding: 42px 48px;
  background: linear-gradient(135deg, #123f3d 0%, #1d6967 56%, #2b8790 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(18, 63, 61, 0.2);
  overflow: hidden;
}

.page-id-9027 .cta-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 76px);
  opacity: 0.35;
  pointer-events: none;
}

.page-id-9027 .cta-main > .wp-block-group__inner-container {
  position: relative;
  z-index: 1;
}

.page-id-9027 .cta-main__lead {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0;
}

.page-id-9027 .cta-button {
  min-height: 74px;
  max-width: 660px;
  padding: 16px 28px;
  background: linear-gradient(90deg, #1f7a66 0%, #146352 100%);
  box-shadow: 0 10px 24px rgba(20, 99, 82, 0.28);
}

.page-id-9027 .cta-button:hover {
  box-shadow: 0 14px 30px rgba(20, 99, 82, 0.34);
}

.page-id-9027 .cta-button__icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.page-id-9027 .cta-button__title {
  font-size: 21px;
  letter-spacing: 0;
}

.page-id-9027 .cta-trust__item {
  color: rgba(255, 255, 255, 0.82);
}

.page-id-9027 .cta-trust__icon {
  color: #e5f3f3;
}

/* =========================================
   セクション6：このような方が（worry とデザイン統一・カード型2カラム）
   ========================================= */
.page-id-9027 .audience__heading {
  max-width: 860px;
  margin: 104px auto 40px;
  padding-top: 12px;
}

.page-id-9027 .audience__heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 28px auto 0;
  background: #146352;
}

.page-id-9027 .audience {
  max-width: 960px;
  margin: 0 auto 88px;
}

.page-id-9027 .audience > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page-id-9027 .audience__item {
  position: relative;
  padding: 22px 24px 22px 58px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
  border: 1px solid #dbe3dd;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(27, 91, 91, 0.08);
}

.page-id-9027 .audience__item::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 22px;
  width: 22px;
  height: 22px;
  background: #146352;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.page-id-9027 .audience__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4a5854;
}

/* =========================================
   /service/ 中間CTA
   ========================================= */
.page-id-9167 .service-cta {
  max-width: 960px;
  margin: 72px auto;
  padding: 0 24px;
}

.page-id-9167 .service-cta__inner {
  padding: 42px 40px;
  background: #f7f7f7;
  border-radius: 12px;
  text-align: center;
}

.page-id-9167 .service-cta__eyebrow {
  margin: 0 0 14px;
  color: var(--green-middle);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.page-id-9167 .service-cta__title {
  margin: 0;
  color: var(--text-color);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}

.page-id-9167 .service-cta__lead {
  margin: 18px auto 0;
  max-width: 680px;
  color: var(--light-color);
  font-size: 14px;
  line-height: 1.9;
}

.page-id-9167 .service-cta__button {
  width: min(560px, 80%);
  min-height: 64px;
  margin: 30px auto 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--green-middle);
  border-radius: 100px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(20, 99, 82, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.page-id-9167 .service-cta__button:hover {
  transform: translateY(-2px);
  background: #155d59;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(20, 99, 82, 0.3);
}

.page-id-9167 .service-cta__button-arrow {
  font-size: 22px;
  line-height: 1;
}

.page-id-9167 .service-cta__sub-links {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.page-id-9167 .service-cta__sub-link {
  color: #6b7471;
  font-size: 13px;
  line-height: 1.7;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-id-9167 .service-cta__sub-link:hover {
  color: var(--green-middle);
}

.page-id-9167 .service-cta__sub-arrow {
  margin-left: 4px;
}

.page-id-9167 .service-cta__sub-links--cards {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

.page-id-9167 .service-cta__sub-links--cards .service-cta__sub-link {
  flex: 1 1 0;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: 6px;
  text-decoration: none;
}


/* =========================================
   /feature/ LP訴求強化 Responsive: Tablet
   ========================================= */
@media (max-width: 967px) {
  /* margin-topでヘッダー高さ分だけ緑を下げ、上下対称paddingで余白を常に等しくする */
  .page-template .h1--block--feature-fv {
    min-height: 0;
    margin-top: calc(17.9vw + 7px);
    padding: 44px 25px;
    justify-content: center;
    background-position: 62% center;
    overflow-x: hidden;
  }

  .page-template .h1--block--feature-fv .h1--block--inner {
    width: 100%;
  }

  .page-template .h1--block--feature-fv .h1--span {
    margin-top: 0;
    font-size: 26px;
  }

  .page-template .h1--block--feature-fv h1 {
    font-size: 14px;
    margin-top: 8px;
  }

  .page-template .h1--block--feature-fv .feature-hero {
    margin-top: 28px;
  }

  .page-template .h1--block--feature-fv .feature-hero__catch {
    font-size: 48px;
  }

  .page-template .h1--block--feature-fv .feature-hero__lead {
    font-size: 16px;
  }

  .feature-consult {
    grid-template-columns: 1fr;
    max-height: none;
    height: auto;
    margin: 56px auto 80px;
  }

  .feature-consult__visual {
    aspect-ratio: auto;
    max-height: 260px;
    overflow: hidden;
  }

  .feature-consult__visual img {
    object-position: center 18%;
  }

  .feature-consult__content {
    padding: 36px 28px;
  }

  .feature-consult__title,
  .page-template .feature-consult__title {
    font-size: 28px;
  }

  .feature-consult__actions {
    grid-template-columns: 1fr;
  }

  .page-id-9027 .worry > .wp-block-group__inner-container,
  .page-id-9027 .audience > .wp-block-group__inner-container {
    grid-template-columns: 1fr;
  }

  .page-id-9027 .worry__item:last-child {
    grid-column: auto;
  }

  .page-id-9027 .audience__heading,
  .page-id-9027 .solution__heading {
    margin-top: 72px;
  }

}


/* =========================================
   /feature/ LP訴求強化 Responsive: Mobile
   ========================================= */
@media (max-width: 768px) {
  .page-template .h1--block--feature-fv {
    min-height: 0;
    margin-top: calc(17.9vw + 7px);
    padding: 70px 18px !important;
    justify-content: center;
    background-position: 64% top;
  }

  .page-template .h1--block--feature-fv .breadclumb {
    display: none;
  }

  .page-template .h1--block--feature-fv .h1--span {
    display: block;
    margin-top: 0;
    font-size: 22px;
  }

  .page-template .h1--block--feature-fv h1 {
    display: block;
    margin-top: 12px;
    font-size: 13px;
  }

  .page-template .h1--block--feature-fv h1::before {
    display: block;
    width: 88px;
    margin: 0 0 14px;
  }

  .page-template .h1--block--feature-fv .feature-hero {
    padding-top: 0;
    margin-top: 18px;
  }

  .page-template .h1--block--feature-fv .feature-hero__catch {
    font-size: 32px;
    line-height: 1.44;
  }

  .page-template .h1--block--feature-fv .feature-hero__lead {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.95;
  }

  .page-id-9167 .h1--block--feature-fv {
    min-height: 0;
    padding: 70px 18px !important;
    background-position: 58% top;
  }

  .page-id-9167 .h1--block--feature-fv .feature-hero {
    width: 100%;
    max-width: 360px;
  }

  .page-id-9167 .h1--block--feature-fv .feature-hero__catch {
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.5;
  }

  .page-id-9167 .h1--block--feature-fv .feature-hero__lead {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.85;
  }

  .feature-consult {
    margin: 44px auto 64px;
    border-radius: 12px;
  }

  .feature-consult__visual {
    display: none;
  }

  .feature-consult__content {
    padding: 28px 20px 32px;
  }

  .feature-consult__eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .feature-consult__title,
  .page-template .feature-consult__title {
    font-size: 24px;
    line-height: 1.5;
  }

  .feature-consult__pills {
    margin-top: 16px;
    gap: 8px;
  }

  .feature-consult__pill {
    padding: 7px 13px 7px 30px;
    font-size: 13px;
  }

  .feature-consult__pill::before {
    left: 12px;
  }

  .feature-consult__actions {
    margin-top: 20px;
    gap: 14px;
  }

  .feature-consult__button {
    padding: 16px 18px;
    gap: 14px;
  }

  .feature-consult__button-icon {
    width: 42px;
    height: 42px;
  }

  .feature-consult__button-main {
    font-size: 17px;
  }

  .feature-consult__tel {
    padding: 14px 18px;
    gap: 12px;
  }

  .feature-consult__tel-icon {
    width: 42px;
    height: 42px;
  }

  .feature-consult__tel-num {
    font-size: 23px;
  }

  .feature-consult__reassurance {
    font-size: 13px;
  }

  .page-id-9027 .worry__heading {
    margin-bottom: 28px;
    padding: 0 8px;
  }

  .page-id-9027 .solution__lead {
    padding: 18px 18px;
    font-size: 16px;
  }

  .page-id-9027 .worry {
    padding: 0;
    margin-bottom: 64px;
  }

  .page-id-9027 .worry__item {
    min-height: 0;
    padding: 24px 20px 22px 74px;
  }

  .page-id-9027 .worry__item::before {
    top: 22px;
    left: 18px;
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .page-id-9027 .worry__title {
    font-size: 16px;
  }

  .page-id-9027 .cta-main {
    margin: 42px auto 72px;
    padding: 30px 18px;
  }

  .page-id-9027 .cta-main__lead {
    font-size: 16px;
  }

  .page-id-9027 .cta-button {
    min-height: 64px;
    padding: 12px 14px;
  }

  .page-id-9027 .cta-button__title {
    font-size: 16px;
  }

  .page-id-9027 .audience__category {
    padding: 0;
  }

  .page-id-9027 .audience__list {
    padding: 20px 20px 22px;
  }

  .page-id-9167 .service-cta {
    margin: 52px auto;
    padding: 0 12px;
  }

  .page-id-9167 .service-cta__inner {
    padding: 32px 18px;
  }

  .page-id-9167 .service-cta__title {
    font-size: 20px;
  }

  .page-id-9167 .service-cta__lead {
    font-size: 13px;
  }

  .page-id-9167 .service-cta__button {
    width: 100%;
    min-height: 60px;
    padding: 0 18px;
    font-size: 16px;
  }

  .page-id-9167 .service-cta__sub-links {
    flex-direction: column;
    gap: 12px;
  }

  .page-id-9167 .service-cta__sub-links--cards .service-cta__sub-link {
    flex: auto;
  }

}


/* =========================================
   /service/ ご利用料金テーブル
   TOPページ「類似サービスとの比較」表にトンマナを合わせる
   （緑グラデのヘッダー＋白文字／ベージュ枠線の白セル）
   対象: .pricing--table（基本料金 .pricing--basic／オプション .pricing--option）
   ========================================= */
.page-id-9167 .pricing--table {
  width: 100%;
  margin: 24px auto 0;
  overflow-x: auto;
}

.page-id-9167 .pricing--table table {
  width: 100%;
  border-collapse: collapse;
}

/* オプション表（3カラム）は狭幅で潰さず、min-width で溢れさせて
   figure の overflow-x: auto により横スクロールさせる（TOPの表に合わせる）。
   基本表（.pricing--basic）は2カラムなので対象外。 */
.page-id-9167 .pricing--option table {
  min-width: 680px;
}

.page-id-9167 .pricing--table thead th {
  padding: 18px 16px;
  border: 1px solid var(--base-color2);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  background: var(--green_gradation, linear-gradient(90deg, #1b5b5b 0%, #2b5e5e 100%));
}

.page-id-9167 .pricing--table tbody td {
  padding: 16px 20px;
  border: 1px solid var(--base-color2);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  vertical-align: middle;
  background: var(--white-color);
}

.page-id-9167 .pricing--table tbody tr td:first-child {
  background: var(--white-color);
}

.page-id-9167 .pricing--table figcaption {
  margin-top: 20px;
  padding: 16px 20px;
  border-left: 4px solid var(--green-middle);
  border-radius: 4px;
  background: var(--base-color2);
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  text-align: left;
}

/* =========================================
   Responsive: Mobile（/service/ 料金テーブル）
   ========================================= */
@media (max-width: 768px) {
  .page-id-9167 .pricing--table thead th {
    padding: 14px 10px;
    font-size: 14px;
  }

  .page-id-9167 .pricing--table tbody td {
    padding: 12px 14px;
    font-size: 14px;
  }
}


/* =========================================
   /service/ 料金の注意書き（※注記）
   行間をつめ・小さめ・薄いグレーで控えめに見せる
   ========================================= */
.page-id-9167 .pricing--notes p {
  margin-top: 8px;
  color: #888888;
  font-size: 12px;
  line-height: 1.6;
}

.page-id-9167 .pricing--notes p:first-child {
  margin-top: 0;
}


/* =========================================
   /service/ 「ご利用料金」見出し直下の余白を詰める
   h3--block の margin-top:96px は、セクション見出し(h2)直後では
   大きすぎるため、最初のh3（基本利用料金表）だけ詰める
   ========================================= */
.page-id-9167 .pricing--section .h2--block + .h3--block {
  margin-top: 24px;
}


/* =========================================
   /feature/ 見出しを画面幅に追従（vw流動）
   手動<br>の行が狭幅で1文字こぼれる現象を防ぐため、
   font-size を clamp(最小, vw, 最大) にして幅に応じて縮小する。
   デスクトップ(>967px)は元のまま(rem=ルートvwで既に追従)なので
   モバイル/タブレット幅のみに限定する。
   ========================================= */
@media (max-width: 967px) {
  .page-id-9027 .worry__heading,
  .page-id-9027 .solution__heading {
    font-size: clamp(16px, 3.4vw, 28px);
  }

  .page-id-9027 .feature-consult .feature-consult__title,
  .page-id-9167 .feature-consult .feature-consult__title {
    font-size: clamp(17px, 3.4vw, 26px);
  }

  .page-id-9027 .solution__lead {
    font-size: clamp(13px, 3vw, 18px);
  }

  .page-id-9027 .worry__title {
    font-size: clamp(14px, 3.5vw, 18px);
  }
}


/* =========================================
   WordPress管理バー(ログイン時のみ表示)対応
   管理バーは画面上部に固定表示され html に margin-top を付与して
   ページを下げるが、position:fixed のヘッダーは下がらず管理バーに隠れる。
   その結果ログイン時のみFV上部に管理バー高さ分の余分な余白が生じ、
   上下の余白が不均一に見える。管理バー分ヘッダーを下げて補正する。
   ※未ログインの一般訪問者には管理バーが無いため一切影響しない。
   ========================================= */
body.admin-bar header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar header {
    top: 46px;
  }
}


/* =========================================
   FVキャッチ：PC(>967px)は手動改行を無効化して1行表示
   （/feature/・/service/ 共通。スマホ/タブレットは <br> を残して2行のまま）
   ========================================= */
@media (min-width: 968px) {
  .page-template .h1--block--feature-fv .feature-hero {
    width: min(1200px, 100%);
  }

  /* 手動改行を無効化し、フォントを画面幅に追従させて常に1行に収める（折り返し禁止） */
  .page-template .h1--block--feature-fv .feature-hero__catch {
    font-size: clamp(34px, calc(4.9vw - 10px), 58px);
    white-space: nowrap;
  }

  .page-template .h1--block--feature-fv .feature-hero__catch br {
    display: none;
  }

  /* 英字見出し(Service/Feature)・小見出し・リードも画面幅に追従（vw） */
  .page-template .h1--block--feature-fv .h1--span {
    font-size: clamp(26px, 2.2vw, 40px);
  }

  .page-template .h1--block--feature-fv h1 {
    font-size: clamp(14px, 1.1vw, 19px);
  }

  .page-template .h1--block--feature-fv .feature-hero__lead {
    font-size: clamp(16px, 1.25vw, 24px);
  }
}


/* =========================================
   /feature/ FVボタン：タブレット幅(768〜967px)での肥大化を抑制
   theme標準のvw変数(--v64-px=17vw等)がタブレットでキャップされず巨大化するため、
   固定値で上限を設ける
   ========================================= */
@media (min-width: 768px) and (max-width: 967px) {
  .page-template .h1--block--feature-fv .btn02 a,
  .page-template .h1--block--feature-fv .btn02 p {
    font-size: 17px;
    padding: 16px 62px 16px 40px;
    margin-top: 32px;
  }

  .page-template .h1--block--feature-fv .btn02 a::before,
  .page-template .h1--block--feature-fv .btn02 p::before {
    width: 40px;
    height: 40px;
    right: 14px;
  }

  .page-template .h1--block--feature-fv .btn02 a::after,
  .page-template .h1--block--feature-fv .btn02 p::after {
    width: 14px;
    height: 12px;
    right: 27px;
  }
}
