@charset "UTF-8";
/* ============================================================
   performance.css
   パフォーマンス外来ページ専用追加スタイル（最小限）
   ※ 既存テーマの common.css / internal.css を前提とし、
      不足する要素のみ定義する。
   ============================================================ */

/* ----------------------------------------
   FAQ アコーディオン
   .pf-faq-item / .pf-faq-q / .pf-faq-a
---------------------------------------- */
.pf-faq-list {
  margin: 0 auto 40px;
  max-width: 880px;
}

.pf-faq-item {
  border-bottom: 1px solid #e6e6e6;
}

.pf-faq-item:first-child {
  border-top: 1px solid #e6e6e6;
}

.pf-faq-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 40px 18px 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.pf-faq-q .pf-q-label {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background-color: #53a4a9;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pf-faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.0rem;
  font-weight: 300;
  color: #53a4a9;
  transition: transform 0.2s ease;
}

.pf-faq-q[aria-expanded="true"]::after {
  content: '−';
}

.pf-faq-a {
  display: none;
  padding: 0 0 18px 38px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  color: #444;
}

.pf-faq-a.is-open {
  display: block;
}

/* ----------------------------------------
   保険適用 / 自費 バッジ
   既存テーマに同等クラスがないため定義
---------------------------------------- */
.pf-badge {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 2px;
  padding: 2px 8px;
  vertical-align: middle;
  line-height: 1.6;
}

.pf-badge-insurance {
  background-color: #53a4a9;
  color: #fff;
}

.pf-badge-self {
  background-color: #888;
  color: #fff;
}

/* ----------------------------------------
   受診の流れ ステップ（Step 1 → 2 → 3）
   sub_internal_main_topic の補完用
---------------------------------------- */
.pf-flow-list {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  border: 1px solid #e6e6e6;
}

.pf-flow-item {
  flex: 1;
  padding: 24px 20px;
  border-right: 1px solid #e6e6e6;
  text-align: center;
}

.pf-flow-item:last-child {
  border-right: none;
}

.pf-flow-step {
  font-size: 1.1rem;
  font-weight: 700;
  color: #53a4a9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pf-flow-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pf-flow-desc {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

/* ----------------------------------------
   担当医カード
   sub_internal_main_col2_doctor の補完
---------------------------------------- */
.pf-doctor-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #f5f5f5;
  border: 1px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #aaa;
  text-align: center;
  line-height: 1.6;
}

/* ----------------------------------------
   ▼▼▼ 既存スタイル（FAQ / Badge / Flow / Doctor）の SP レスポンシブ ▼▼▼
---------------------------------------- */
@media screen and (max-width: 767px) {
  .pf-faq-q {
    padding: 14px 32px 14px 0;
    font-size: 1.5rem;
  }

  .pf-faq-a {
    padding: 0 0 14px 32px;
    font-size: 1.5rem;
  }

  .pf-flow-list {
    flex-direction: column;
  }

  .pf-flow-item {
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
  }

  .pf-flow-item:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   .pf-* モジュール群（パフォーマンス外来 4ページ共通）
   配色ルール: 白ベース + アクセント #53a4a9
   ============================================================ */

/* ----------------------------------------
   セクション共通：ラベル / タイトル / リード
---------------------------------------- */
.pf-section {
  padding: 80px 0;
}

.pf-section.is-bg-light {
  background: #f7f9fa;
}

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

.pf-section-header.is-left {
  text-align: left;
}

.pf-section-label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #53a4a9;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pf-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.45;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.pf-section-title .pf-accent {
  color: #53a4a9;
}

.pf-section-lead {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #555;
  max-width: 760px;
  margin: 0 auto;
}

.pf-section-header.is-left .pf-section-lead {
  margin: 0;
}

/* ----------------------------------------
   .pf-hero  ヒーロー（既存 sub_mv とは別の白基調ブロック）
---------------------------------------- */
.pf-hero {
  background: linear-gradient(135deg, #f0f7f7 0%, #fff 60%);
  padding: 70px 0 60px;
  border-bottom: 1px solid #e6e6e6;
}

.pf-hero-eyecatch {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #53a4a9;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.pf-hero-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.pf-hero-title .pf-accent {
  color: #53a4a9;
}

.pf-hero-subtitle {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 28px;
}

.pf-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

/* ----------------------------------------
   .pf-btn  ボタン（pf 専用、既存テーマ sub_link_btn と並存）
---------------------------------------- */
.pf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 220px;
  padding: 14px 28px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  border-radius: 4px;
  transition: opacity 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.pf-btn-primary {
  background: #53a4a9;
  color: #fff;
}

.pf-btn-primary:hover {
  background: #468a8e;
  color: #fff;
  opacity: 1;
}

.pf-btn-outline {
  background: #fff;
  color: #53a4a9;
  border: 2px solid #53a4a9;
}

.pf-btn-outline:hover {
  background: #53a4a9;
  color: #fff;
}

.pf-btn-tel {
  background: #fff;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.pf-btn-tel:hover {
  background: #1a1a1a;
  color: #fff;
}

.pf-btn-sm {
  min-width: auto;
  padding: 8px 18px;
  font-size: 1.3rem;
}

/* ----------------------------------------
   .pf-target-grid  対象者 4 ペルソナ（index S2）
---------------------------------------- */
.pf-target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pf-target-item {
  background: #fff;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pf-target-item:hover {
  box-shadow: 0 8px 24px rgba(83, 164, 169, 0.16);
  transform: translateY(-3px);
}

.pf-target-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #53a4a9;
  background: #f0f7f7;
  border-radius: 50%;
}

.pf-target-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.pf-target-desc {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #555;
}

/* ----------------------------------------
   .pf-pillar-list  4本柱（index S3）
---------------------------------------- */
.pf-pillar-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  margin: 24px auto 0;
  max-width: 800px;
}

.pf-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #e6e6e6;
}

.pf-pillar-num {
  flex-shrink: 0;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  color: #53a4a9;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-top: 2px;
}

.pf-pillar-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  color: #222;
}

/* ----------------------------------------
   .pf-concern-grid  お悩みから選ぶ（index S4）
---------------------------------------- */
.pf-concern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pf-concern-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e8e4;
  border-left: 3px solid #53a4a9;
  border-radius: 8px;
  padding: 24px 22px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  color: #1a1a1a;
}

.pf-concern-card:hover {
  box-shadow: 0 8px 24px rgba(83, 164, 169, 0.16);
  transform: translateY(-3px);
  color: #1a1a1a;
}

.pf-concern-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.55;
}

.pf-concern-card-desc {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
  flex-grow: 1;
}

.pf-concern-card-link {
  font-size: 1.3rem;
  font-weight: 700;
  color: #53a4a9;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pf-concern-card-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.pf-concern-card:hover .pf-concern-card-link::after {
  transform: translateX(4px);
}

/* ----------------------------------------
   .pf-service-grid / .pf-service-card  サービス一覧（index S5）
---------------------------------------- */
.pf-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pf-service-card {
  background: #fff;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pf-service-card:hover {
  box-shadow: 0 10px 28px rgba(83, 164, 169, 0.16);
  transform: translateY(-3px);
}

.pf-service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e6e6e6;
}

.pf-service-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #53a4a9;
  background: #f0f7f7;
  border-radius: 50%;
}

.pf-service-card-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.pf-service-card-desc {
  font-size: 1.4rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 16px;
}

.pf-service-card-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.pf-service-card-points li {
  position: relative;
  padding-left: 20px;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 6px;
}

.pf-service-card-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: #53a4a9;
  border-radius: 50%;
}

.pf-service-card-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ----------------------------------------
   準備中（パフォーマンス点滴 一時休止）
---------------------------------------- */
.pf-concern-card.is-coming-soon,
.pf-service-card.is-coming-soon {
  background: #f6f7f7;
  cursor: default;
  position: relative;
  opacity: 0.85;
}

.pf-concern-card.is-coming-soon:hover,
.pf-service-card.is-coming-soon:hover {
  box-shadow: none;
  transform: none;
}

.pf-concern-card.is-coming-soon .pf-target-icon,
.pf-service-card.is-coming-soon .pf-service-card-icon {
  background: #e9ecec;
  color: #8a9694;
}

.pf-concern-card.is-coming-soon::after,
.pf-service-card.is-coming-soon::after {
  content: '現在準備中';
  position: absolute;
  top: 14px;
  right: 14px;
  background: #8a9694;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.pf-coming-soon-label {
  color: #8a9694 !important;
}

.pf-coming-soon-label::after {
  content: '' !important;
}

.pf-coming-soon-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #8a9694;
  background: #e9ecec;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

/* ----------------------------------------
   .pf-strength-grid  強み 4 項目（index S6）
---------------------------------------- */
.pf-strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pf-strength-item {
  text-align: center;
  padding: 20px 16px;
}

.pf-strength-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #53a4a9;
  background: #f0f7f7;
  border-radius: 50%;
}

.pf-strength-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.pf-strength-desc {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #555;
  text-align: left;
}

/* ----------------------------------------
   .pf-symptom-grid  症状チェック（nemuri S2 等）
---------------------------------------- */
.pf-symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pf-symptom-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #e0e8e4;
  border-radius: 8px;
  padding: 18px 20px;
}

.pf-symptom-card-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7f7;
  border-radius: 50%;
  color: #53a4a9;
  font-size: 1.4rem;
}

.pf-symptom-card-text {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #222;
}

/* ----------------------------------------
   .pf-reason-grid  理由カード（nemuri なぜ内科？）
---------------------------------------- */
.pf-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.pf-reason-card {
  background: #fff;
  border: 1px solid #e0e8e4;
  border-radius: 8px;
  padding: 24px 22px;
  text-align: left;
}

.pf-reason-num {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  color: #53a4a9;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.pf-reason-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.pf-reason-desc {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #555;
}

/* ----------------------------------------
   .pf-compare-table  比較テーブル（nemuri / supplement）
---------------------------------------- */
.pf-compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e0e8e4;
  background: #fff;
  font-size: 1.4rem;
}

.pf-compare-table th,
.pf-compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e6e6e6;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.pf-compare-table thead th {
  background: #f0f7f7;
  font-weight: 700;
  color: #1a1a1a;
  border-bottom: 2px solid #53a4a9;
}

.pf-compare-table thead th.is-primary {
  background: #53a4a9;
  color: #fff;
  border-bottom-color: #53a4a9;
}

.pf-compare-table tbody th {
  width: 26%;
  background: #fafafa;
  font-weight: 700;
}

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

.pf-compare-table .is-good {
  color: #53a4a9;
  font-weight: 700;
}

.pf-compare-table .is-bad {
  color: #888;
}

/* ----------------------------------------
   .pf-treatment-list  診療内容リスト（nemuri S5）
---------------------------------------- */
.pf-treatment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.pf-treatment-item {
  background: #fff;
  border: 1px solid #e0e8e4;
  border-left: 3px solid #53a4a9;
  border-radius: 6px;
  padding: 18px 22px;
}

.pf-treatment-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pf-treatment-desc {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #555;
}

/* ----------------------------------------
   .pf-flow-vertical  受診の流れ 5 ステップ縦並び（nemuri S6）
   既存 .pf-flow-list は横並び。これは縦並びバージョン
---------------------------------------- */
.pf-flow-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.pf-flow-v-item {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 0 0 30px 0;
}

.pf-flow-v-item:last-child {
  padding-bottom: 0;
}

.pf-flow-v-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 50px;
  bottom: 0;
  width: 2px;
  background: #d4e6e8;
}

.pf-flow-v-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #53a4a9;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.pf-flow-v-body {
  flex: 1;
  padding-top: 8px;
}

.pf-flow-v-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.pf-flow-v-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
}

/* ----------------------------------------
   .pf-doctor-card  担当医カード（index / nemuri）
---------------------------------------- */
.pf-doctor-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
  background: #fff;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  padding: 32px;
  max-width: 920px;
  margin: 0 auto;
}

.pf-doctor-card-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: #f5f5f5;
  border-radius: 8px;
  object-fit: cover;
  overflow: hidden;
}

.pf-doctor-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-doctor-card-name {
  font-size: 1.4rem;
  color: #53a4a9;
  font-weight: 700;
  margin-bottom: 4px;
}

.pf-doctor-card-name-main {
  display: block;
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-top: 2px;
}

.pf-doctor-card-title {
  font-size: 1.3rem;
  color: #777;
  margin-bottom: 16px;
}

.pf-doctor-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.pf-doctor-card-tag {
  display: inline-block;
  background: #f0f7f7;
  color: #53a4a9;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}

.pf-doctor-card-message {
  font-size: 1.4rem;
  line-height: 1.85;
  color: #444;
}

/* ----------------------------------------
   .pf-menu-grid / .pf-menu-card  注射・点滴・商品メニュー
---------------------------------------- */
.pf-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.pf-menu-card {
  background: #fff;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pf-menu-card:hover {
  box-shadow: 0 10px 28px rgba(83, 164, 169, 0.16);
  transform: translateY(-3px);
}

.pf-menu-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  background: #f7fafa;
  border-bottom: 1px solid #e6e6e6;
}

.pf-menu-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d4e6e8;
  color: #53a4a9;
  font-size: 1.8rem;
  border-radius: 50%;
}

.pf-menu-tag {
  display: inline-block;
  background: #f0f7f7;
  color: #53a4a9;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 6px;
}

.pf-menu-name {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.45;
  color: #1a1a1a;
}

.pf-menu-name small {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #777;
  margin-top: 4px;
}

.pf-menu-card-body {
  padding: 22px 24px;
}

.pf-menu-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e6e6e6;
}

.pf-menu-info-label {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 4px;
  display: block;
}

.pf-menu-info-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
}

.pf-menu-price {
  font-size: 1.8rem;
  color: #53a4a9;
}

.pf-menu-target-label {
  font-size: 1.2rem;
  color: #53a4a9;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.pf-menu-target-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-menu-target-list li {
  position: relative;
  padding-left: 20px;
  font-size: 1.3rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 4px;
}

.pf-menu-target-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: #53a4a9;
  border-radius: 50%;
}

/* ----------------------------------------
   .pf-option-grid  オプション（drip S5）
---------------------------------------- */
.pf-option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pf-option-item {
  background: #fff;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pf-option-item:hover {
  box-shadow: 0 8px 24px rgba(83, 164, 169, 0.16);
  transform: translateY(-3px);
}

.pf-option-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7f7;
  color: #53a4a9;
  font-size: 1.6rem;
  border-radius: 50%;
}

.pf-option-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
}

.pf-option-desc {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  flex-grow: 1;
}

.pf-option-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #53a4a9;
  padding-top: 8px;
  border-top: 1px dashed #d4e6e8;
}

/* ----------------------------------------
   .pf-category-image  カテゴリ代表画像（supplement）
---------------------------------------- */
.pf-category-image {
  text-align: center;
  margin-bottom: 28px;
}

.pf-category-image img {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.pf-category-image-caption {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #53a4a9;
  letter-spacing: 0.03em;
}

.pf-category-image-double {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.pf-category-image-double figure {
  margin: 0;
  max-width: 220px;
  flex: 0 1 220px;
}

.pf-category-image-double figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.pf-category-image-double figcaption {
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #53a4a9;
  text-align: center;
  letter-spacing: 0.03em;
}

/* ----------------------------------------
   .pf-product-grid / .pf-product-card  商品（supplement）
---------------------------------------- */
.pf-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pf-product-card {
  background: #fff;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pf-product-card:hover {
  box-shadow: 0 8px 24px rgba(83, 164, 169, 0.16);
  transform: translateY(-3px);
}

.pf-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: #f0f7f7;
  color: #53a4a9;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  width: max-content;
}

.pf-product-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.55;
  margin-bottom: 10px;
}

.pf-product-desc {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 14px;
  flex-grow: 1;
}

.pf-product-ingredients {
  font-size: 1.2rem;
  color: #777;
  line-height: 1.6;
  padding-top: 10px;
  border-top: 1px dashed #d4e6e8;
}

.pf-product-ingredients dt {
  font-weight: 700;
  color: #53a4a9;
  margin-bottom: 4px;
}

/* ----------------------------------------
   .pf-tab  タブ切替（drip S7 受診の流れ / supplement S4 商品）
---------------------------------------- */
.pf-tab {
  margin-bottom: 30px;
}

.pf-tab-list {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.pf-tab-button {
  flex: 1;
  min-width: 120px;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #777;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  text-align: center;
}

.pf-tab-button:hover {
  color: #53a4a9;
}

.pf-tab-button[aria-selected="true"] {
  color: #53a4a9;
  border-bottom-color: #53a4a9;
}

/* タップ/クリックでは青枠を出さず、キーボード操作時のみ teal のフォーカスリング */
.pf-tab-button:focus {
  outline: none;
}

.pf-tab-button:focus-visible {
  outline: 2px solid #53a4a9;
  outline-offset: -2px;
}

.pf-tab-panel {
  display: none;
}

.pf-tab-panel.is-active {
  display: block;
  animation: pfFadeIn 0.25s ease;
}

@keyframes pfFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------
   .pf-step-3  3 ステップ横並び（supplement S5 利用の流れ）
---------------------------------------- */
.pf-step-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.pf-step-3-item {
  background: #fff;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  padding: 28px 22px 22px;
  text-align: center;
  position: relative;
}

.pf-step-3-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #53a4a9;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  border-radius: 50%;
}

.pf-step-3-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7f7;
  color: #53a4a9;
  font-size: 2.2rem;
  border-radius: 50%;
}

.pf-step-3-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.pf-step-3-desc {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #555;
}

/* ----------------------------------------
   .pf-info-list  リード前の問題/解決リスト（drip S2 / supplement S2 等）
---------------------------------------- */
.pf-lead-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  background: #f7fafa;
  border-radius: 12px;
  padding: 36px;
  max-width: 920px;
  margin: 0 auto;
}

/* 左右とも短いリスト同士を中央へ密集させる版（drip 等）。
   左カラムが 1fr で広がってテキスト右に余白が出るのを防ぐ */
.pf-lead-block.is-compact {
  grid-template-columns: auto auto auto;
  justify-content: center;
  gap: 56px;
}

.pf-lead-block-arrow {
  font-size: 2.4rem;
  color: #53a4a9;
}

.pf-lead-block-col h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #53a4a9;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.pf-lead-block-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-lead-block-col li {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 6px;
}

.pf-lead-block-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: #53a4a9;
  border-radius: 50%;
}

/* ----------------------------------------
   .pf-symptom-list  リード内のシンプルリスト（supplement 等）
---------------------------------------- */
.pf-symptom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-symptom-list li {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 1.85;
  color: #333;
  margin-bottom: 6px;
}

.pf-symptom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: #53a4a9;
  border-radius: 50%;
}

/* ----------------------------------------
   .pf-compare-wrap  比較テーブル横スクロール用ラッパ（SP対応）
---------------------------------------- */
.pf-compare-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pf-compare-wrap .pf-compare-table {
  min-width: 560px;
}

/* ----------------------------------------
   .pf-related-grid / .pf-related-card  関連サービス導線（下層 4 ページ末尾）
---------------------------------------- */
.pf-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pf-related-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  padding: 20px 22px;
  text-decoration: none;
  color: #1a1a1a;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pf-related-card:hover {
  box-shadow: 0 8px 24px rgba(83, 164, 169, 0.16);
  transform: translateY(-3px);
  color: #1a1a1a;
}

.pf-related-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7f7;
  color: #53a4a9;
  font-size: 1.8rem;
  border-radius: 50%;
}

.pf-related-card-body {
  flex: 1;
}

.pf-related-card-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pf-related-card-desc {
  font-size: 1.2rem;
  color: #777;
  line-height: 1.6;
}

.pf-related-card-arrow {
  color: #53a4a9;
  font-size: 1.4rem;
}

/* ----------------------------------------
   .pf-cta-section  クロージング CTA（全ページ末尾）
---------------------------------------- */
.pf-cta-section {
  background: linear-gradient(135deg, #f0f7f7 0%, #fff 100%);
  border: 1px solid #d4e6e8;
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
}

.pf-cta-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.pf-cta-title .pf-accent {
  color: #53a4a9;
}

.pf-cta-lead {
  font-size: 1.5rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 24px;
}

.pf-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.pf-cta-note {
  margin-top: 18px;
  font-size: 1.2rem;
  color: #777;
}

/* ----------------------------------------
   .pf-access-block  診療時間 + アクセス（index S8）
---------------------------------------- */
.pf-access-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pf-access-info {
  background: #fff;
  border: 1px solid #e0e8e4;
  border-radius: 10px;
  padding: 28px;
}

.pf-access-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1a1a1a;
}

.pf-access-info table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.pf-access-info th,
.pf-access-info td {
  padding: 8px 10px;
  border: 1px solid #e6e6e6;
  text-align: center;
  line-height: 1.5;
}

.pf-access-info th {
  background: #f7fafa;
  font-weight: 700;
}

.pf-access-info td.is-closed {
  color: #aaa;
}

.pf-access-info td.is-open {
  color: #53a4a9;
  font-weight: 700;
}

.pf-access-info .pf-access-addr {
  font-size: 1.4rem;
  line-height: 1.85;
  color: #444;
  margin-top: 12px;
}

.pf-access-map {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
}

.pf-access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ----------------------------------------
   レスポンシブ（タブレット 1024px 以下）
---------------------------------------- */
@media screen and (max-width: 1024px) {
  .pf-section {
    padding: 60px 0;
  }

  .pf-section-title {
    font-size: 2.4rem;
  }

  .pf-hero-title {
    font-size: 2.8rem;
  }

  .pf-target-grid,
  .pf-strength-grid,
  .pf-concern-grid,
  .pf-reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .pf-pillar-list {
    grid-template-columns: 1fr;
  }

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

/* ----------------------------------------
   レスポンシブ（SP 767px 以下）
---------------------------------------- */
@media screen and (max-width: 767px) {
  .pf-section {
    padding: 50px 0;
  }

  .pf-section-header {
    margin-bottom: 28px;
  }

  .pf-section-title {
    font-size: 2.0rem;
  }

  .pf-section-lead {
    font-size: 1.4rem;
  }

  .pf-hero {
    padding: 50px 0 40px;
  }

  .pf-hero-title {
    font-size: 2.2rem;
  }

  .pf-hero-subtitle {
    font-size: 1.4rem;
  }

  .pf-hero-cta {
    flex-direction: column;
  }

  .pf-btn {
    width: 100%;
  }

  .pf-target-grid,
  .pf-strength-grid,
  .pf-concern-grid,
  .pf-reason-grid,
  .pf-service-grid,
  .pf-menu-grid,
  .pf-option-grid,
  .pf-product-grid,
  .pf-treatment-list,
  .pf-symptom-grid,
  .pf-step-3,
  .pf-access-block,
  .pf-related-grid {
    grid-template-columns: 1fr;
  }

  .pf-doctor-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .pf-doctor-card-photo {
    max-width: 200px;
    margin: 0 auto;
  }

  .pf-lead-block {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .pf-lead-block.is-compact {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 24px;
  }

  .pf-lead-block-arrow {
    transform: rotate(90deg);
    text-align: center;
    margin: 4px auto;
  }

  .pf-tab-list {
    flex-direction: column;
    border-bottom: none;
  }

  .pf-tab-button {
    border-bottom: 1px solid #e6e6e6;
    border-left: 3px solid transparent;
    margin-bottom: 0;
    text-align: left;
  }

  .pf-tab-button[aria-selected="true"] {
    border-bottom-color: #53a4a9;
    border-left-color: #53a4a9;
    background: #53a4a9;
    color: #fff;
  }

  .pf-cta-section {
    padding: 36px 20px;
  }

  .pf-cta-title {
    font-size: 1.9rem;
  }

  .pf-cta-buttons {
    flex-direction: column;
  }

  .pf-flow-v-num {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .pf-flow-v-item:not(:last-child)::before {
    left: 19px;
    top: 42px;
  }

  .pf-compare-table {
    font-size: 1.3rem;
  }

  .pf-compare-table th,
  .pf-compare-table td {
    padding: 10px 12px;
  }

  .pf-compare-table tbody th {
    width: 32%;
  }
}
