@charset "UTF-8";

/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
  --color-text-main: #333333;
  --color-text-sub: #666666;
  --color-primary: #009E96;
  --color-primary-light: #e0f2f1;
  --color-bg-main: #FFFCE0;
  --color-bg-grid: #f4f9fa;
  --color-grid-line: #e3edf2;
  --color-border: #cccccc;
  --font-base: 'Noto Sans JP', sans-serif;
  --inner-width: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, p, dl, dt, dd, ul, li, figure {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ==========================================================================
   Base
   ========================================================================== */
body {
  font-family: var(--font-base);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden; /* 横スクロール防止 */
  background-color: #ffffff;
}

/* グリッド背景を再利用可能なクラスに */
.u-bg-grid {
  background-color: var(--color-bg-grid);
  background-image: 
    linear-gradient(var(--color-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid-line) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ユーティリティ: 表示切り替え */
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}

/* インナー幅設定 */
.l-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-main .l-inner {
  padding-bottom: 40px;
}

.pt40 {
  padding-top: 40px;
}

/* ==========================================================================
   Components
   ========================================================================== */
/* セクションヘッダー */
.c-section-header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

.c-section-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary); /* デザイン上の緑色のアンダーラインを再現 */
}

.c-section-header__title {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.c-section-header__title img {
  width: auto;
  height: 32px;
}

.c-section-header__title--small {
  font-size: 20px;
}

.c-section-header__title--small img {
  height: 24px;
}

/* ヘッダーのレイアウト調整 */
.l-header__inner {
  display: flex;
  justify-content: space-between; /* 左右に配置 */
  align-items: flex-end; /* 下揃え */
}

/* ナビゲーションのスタイル */
.l-header__nav-list {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.l-header__nav-list li:not(:last-child)::after {
  content: "｜";
  margin-left: 20px;
  color: var(--color-border);
}

.l-header__nav-list a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/* プライマリボタン */
.c-btn-primary {
  display: inline-block;
  background-color: #ffffff;
  border: 2px solid var(--color-text-main);
  color: var(--color-text-main);
  font-weight: 700;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 30px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.c-btn-primary:hover {
  opacity: 0.7;
}

/* ==========================================================================
   Layout & Pages
   ========================================================================== */
/* Header */
.l-header {
  background-color: #ffffff;
  padding: 10px 0;
}

.l-header__inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 20px;
}

.l-header__catch {
  font-size: 10px;
  color: var(--color-text-sub);
  margin-bottom: 5px;
}

.l-header__logo img {
  height: 40px; /* デザインカンプに応じた適切なサイズ */
  width: auto;
}

/* ==========================================================================
   SP用 ハンバーガーメニュー
   ========================================================================== */
/* ヘッダーの高さを固定して配置を安定させる（仮で60pxとしています） */
.l-header {
  position: relative;
  z-index: 100;
}

/* ボタン本体 */
.l-header__hamburger {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101; /* メニューより上に配置 */
  padding: 0;
}

/* 3本線 */
.l-header__hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary); /* デザインに合わせた緑色 */
  transition: all 0.3s ease;
}

.l-header__hamburger-line:nth-child(1) { top: 0; }
.l-header__hamburger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.l-header__hamburger-line:nth-child(3) { bottom: 0; }

/* ボタンクリック時（×になるアニメーション） */
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* ドロワーメニュー本体（初期状態は右画面外に隠す） */
.l-header__drawer {
  position: fixed;
  top: 60px; /* ヘッダーの高さ分下げる */
  right: -100%;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: #ffffff;
  transition: right 0.3s ease;
  z-index: 100;
  overflow-y: auto;
}

/* メニューを開いた状態（画面内に入る） */
.l-header__drawer.is-active {
  right: 0;
}

/* ドロワー内のリストデザイン */
.l-header__drawer-list {
  padding: 20px;
}

.l-header__drawer-list li {
  border-bottom: 1px solid var(--color-border);
}

.l-header__drawer-list a {
  display: block;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-main);
}

/* ==========================================================================
   Hero Section (PC版)
   ========================================================================== */
   .l-main {
    background-color: var(--color-bg-main);
   }


   .p-hero {
    position: relative;
    padding: 80px 0 60px; /* 波が下からはみ出ないように下余白を調整 */
    background-color: var(--color-bg-grid);
    background-image: 
      linear-gradient(var(--color-grid-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--color-grid-line) 1px, transparent 1px);
    background-size: 20px 20px;
    min-height: 450px;
  }
  
  .p-hero__inner {
    max-width: var(--inner-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* 絶対配置の基準（アンカー） */
    z-index: 2;
  }
  
  /* 文字エリア（Flexを解除して幅を固定） */
  .p-hero__content {
    width: 550px; 
  }
  
  .p-hero__title {
    margin-bottom: 0;
  }
  
  .p-hero__title img {
    display: block;
    width: 520px; /* 画像のサイズをここでコントロール */
    max-width: none; /* 親の縮小制限を解除 */
    height: auto;
  }
  
  /* ボタンの絶対配置 */
  .p-hero__btn-wrapper {
    position: absolute;
    left: 20px;
    bottom: -90px;
    z-index: 10; 
    max-width: 350px;
  }
  
  .p-hero__btn {
    display: inline-block;
    line-height: 1;
    max-width: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .p-hero__btn:hover {
    opacity: 0.85;
    transform: translateY(-3px); /* ホバーで少し浮かせる */
  }
  
  /* TOP右イラストの絶対配置 */
  .p-hero__image {
    position: absolute;
    right: 20px;
    bottom: -110px;
    width: 52%;
    max-width: 550px;
    text-align: right;
    z-index: 3;
  }
  
  .p-hero__image img {
    width: 100%;
    height: auto;
  }
  
  /* 波の背景（SVG描画） */
  .p-hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23009E96' d='M0,100 C480,100 720,50 1150,50 C1300,50 1440,60 1440,60 L1440,120 L0,120 Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 100%; 
    z-index: 1;
  }

/* Search Section */
/* ==========================================================================
   Search Section (エリアから探す)
   ========================================================================== */
   .p-search {
    padding: 60px 0;
  }
  
  /* 大枠のボックス（タブを除く下のコンテンツ部分） */
  .p-search__box {
    position: relative;
  }
  
  /* タブ（エリアから探す） */
  .p-search__tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    border: 1px solid var(--color-border);
    border-bottom: none; /* 下の線を消して本体と繋げる */
    background-color: #ffffff;
    position: relative;
    z-index: 2; /* 下の枠線より前に出す */
    margin-bottom: -1px; /* 下のボックスと1px重ねる */
    border-radius: 4px 4px 0 0; /* 上だけ少し丸みを持たせると自然です */
  }

.p-search__tab img {
  width: 16px; 
  height: auto;
  vertical-align: middle;
}
  
  /* 検索エリア本体（表組み部分） */
  .p-search__body {
    border: 1px solid var(--color-border);
    background-color: #ffffff;
    padding: 20px 30px;
    position: relative;
    z-index: 1;
  }
  
  .p-search__note {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .p-search__list {
    border-top: 1px solid var(--color-border);
  }
  
  .p-search__row {
    display: flex;
    border-bottom: 1px solid var(--color-border);
  }
  
  /* 表の左側（地方名） */
  .p-search__row dt {
    width: 180px;
    flex-shrink: 0;
    color: var(--color-primary);
    font-weight: 700;
    padding: 20px 0;
    display: flex;
    align-items: center;
  }
  
  /* 表の右側（都道府県ボタンのエリア） */
  .p-search__row dd {
    flex: 1;
    padding: 15px 0;
    display: flex;
    align-items: center;
  }
  
  .p-search__pref-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  /* 都道府県ボタン（通常時） */
  .p-search__pref-list a {
    display: block;
    padding: 6px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    font-size: 14px;
    color: var(--color-text-main);
    background-color: #ffffff;
    transition: all 0.3s ease;
  }
  
  /* 都道府県ボタン（ホバー時・リッチな動き） */
  .p-search__pref-list a:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    transform: translateY(-2px); /* フワッと浮かせる */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 影をつける */
  }

/* 詳しくはこちらボタンのホバー */
.p-hospital-card__story-btn {
  /* 既存のコード */
  color: var(--color-text-main);
}
.p-hospital-card__story-btn:hover {
  opacity: 1; /* opacityで薄くするのではなく... */
  color: var(--color-primary); /* 色を変えて... */
  transform: translateX(5px); /* 右に少しスライドさせる */
}

/* Contents Section */
.p-contents {
  margin-bottom: 60px;
}

.p-contents__banners {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.p-contents__banner {
  flex: 1;
  transition: opacity 0.3s ease;
}

.p-contents__banner:hover {
  opacity: 0.8;
}

/* Info Section */
.p-info {
  margin-bottom: 80px;
}

.p-info__text {
  font-size: 14px;
  line-height: 1.8;
}

/* Footer */
.l-footer {
  background-color: var(--color-bg-grid);
  background-image: 
    linear-gradient(var(--color-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid-line) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 40px 0 20px;
  border-top: 2px solid var(--color-primary);
}

.l-footer__inner {
  text-align: center;
}

.l-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-bottom: 30px;
  font-size: 14px;
}

.l-footer__links a:hover {
  text-decoration: underline;
}

.l-footer__copy {
  font-size: 12px;
  color: var(--color-text-sub);
}

/* ==========================================================================
   Media Queries (SP)
   ========================================================================== */
@media (max-width: 768px) {
  
  .p-search__body {
    padding: 15px;
  }

  .p-search__row {
    flex-direction: column;
    padding: 15px 0;
  }

  .p-search__row dt {
    width: 100%;
    padding: 0 0 10px 0;
  }

  .p-search__row dd {
    padding: 0;
  }

  .p-search__pref-list {
    gap: 8px;
  }

  .p-search__pref-list a {
    padding: 8px 12px;
    font-size: 13px;
  }

  .p-contents__banners {
    flex-direction: column;
  }

  .l-footer__links {
    flex-direction: column;
    gap: 15px;
  }
}

/* ==========================================================================
   Search Result (Hospital List)
   ========================================================================== */
   .p-search-result {
    margin-bottom: 60px;
  }
  
  /* 検索結果見出しエリア */
  .p-search-result__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    padding-top: 20px;
  }
  
  .p-search-result__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin: auto 0;
  }
  
  .p-search-result__title-bar {
    display: inline-block;
    width: 6px;
    height: 24px;
    background-color: var(--color-primary);
  }
  
  .p-search-result__illust img {
    display: block;
    max-width: 120px;
    height: auto;
  }
  
  /* 病院リストコンテナ */
  .p-search-result__list {
    display: flex;
    flex-direction: column;
    gap: 30px; /* カード間の余白 */
  }
  
  /* 病院カード */
  .p-hospital-card {
    background-color: #ffffff;
  }
  
  .p-hospital-card__header {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 12px 20px;
  }
  
  .p-hospital-card__name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
  }
  
  .p-hospital-card__body {
    border: 1px solid var(--color-border);
    border-top: none; /* ヘッダーの下線と被らないように */
    padding: 25px 20px;
  }
  
  /* 病院基本情報 */
  .p-hospital-card__info {
    margin-bottom: 25px;
  }
  
  .p-hospital-card__info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
  }
  
  .p-hospital-card__info li:last-child {
    margin-bottom: 0;
  }
  
  .p-hospital-card__info img {
    width: 18px;
    height: auto;
    margin-top: 2px; /* テキストとの縦位置微調整 */
    flex-shrink: 0;
  }
  
  /* ストーリー部分 */
  .p-hospital-card__story {
    display: flex;
    gap: 20px;
  }
  
  .p-hospital-card__story-img {
    flex-shrink: 0;
    width: 240px;
  }
  
  .p-hospital-card__story-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #f0f0f0; /* 薄いボーダーを追加して引き締め */
  }
  
  .p-hospital-card__story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 4px solid var(--color-primary); /* デザインにある左の緑線 */
    padding-left: 20px;
  }
  
  .p-hospital-card__story-label {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .p-hospital-card__story-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* 詳しくはこちらボタン */
  .p-hospital-card__story-btn-wrap {
    text-align: right;
    margin-top: auto; /* 余白を埋めて下揃えにする */
  }
  
  .p-hospital-card__story-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
  }
  
  .p-hospital-card__story-btn:hover {
    opacity: 0.7;
  }
  
  .p-hospital-card__story-btn img {
    width: 24px;
    height: auto;
  }

  .p-hospital-card__story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 4px solid var(--color-primary);
    padding-left: 25px; /* 余白を少し広げてゆったりと */
    margin: 10px 0; /* 上下に少し余白を持たせて線の長さを調整 */
  }
  
  .p-hospital-card__story-text {
    font-size: 16px; /* デザインに合わせて少しフォントサイズを調整 */
    line-height: 1.8; /* 行間を広げて読みやすく */
  }
  
  /* ==========================================================================
     Media Queries (SP)
     ========================================================================== */
  @media (max-width: 768px) {
    
    .p-search-result__title {
      font-size: 16px;
    }
    
    .p-search-result__illust {
      display: none; /* SP時はイラストを隠す（必要に応じて表示） */
    }
  
    .p-hospital-card__body {
      padding: 15px;
    }
  
    .p-hospital-card__story {
      flex-direction: column;
      gap: 15px;
    }
  
    .p-hospital-card__story-img {
      display: none;
    }
  
    .p-hospital-card__story-content {
      border-left: none;
      padding-left: 0;
      padding-top: 15px;
    }
  
    .p-hospital-card__story-text {
      font-size: 15px;
    }
  }

  /* ==========================================================================
   Hospital Detail Page (病院詳細ページ)
   ========================================================================== */
/* 大枠のカードデザイン */
.p-hospital-detail {
  background-color: #ffffff;
  padding: 40px 50px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

/* --- ヘッダーエリア --- */
.p-hospital-detail__header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px dashed var(--color-border);
}

.p-hospital-detail__sub-title {
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: 10px;
  font-weight: 500;
}

.p-hospital-detail__name {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.p-hospital-detail__main-title {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  padding: 8px 20px;
  border-radius: 30px;
}

/* --- テーブル（基本情報） --- */
.p-hospital-detail__info-box {
  margin-bottom: 50px;
}

.p-hospital-detail__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

.p-hospital-detail__table th,
.p-hospital-detail__table td {
  border: 1px solid var(--color-border);
  padding: 15px 20px;
  font-size: 15px;
  line-height: 1.6;
}

.p-hospital-detail__table th {
  background-color: var(--color-bg-grid);
  color: var(--color-primary);
  width: 25%;
  font-weight: 700;
  text-align: left;
}

.p-hospital-detail__hours-note {
  font-size: 13px;
  color: var(--color-text-sub);
}

/* --- スタッフ紹介 --- */
.p-hospital-detail__doctor-section {
  margin-bottom: 50px;
}

.p-hospital-detail__doctor-title {
  font-size: 22px;
  color: var(--color-text-main);
  border-left: 5px solid var(--color-primary);
  padding-left: 15px;
  margin-bottom: 25px;
  font-weight: 700;
}

.p-hospital-detail__doctor-list {
  display: flex;
  flex-direction: column;
  gap: 30px; /* カード同士の間隔を少し広めに */
}

.p-hospital-detail__doctor-card {
  display: flex;
  flex-direction: column; /* 横並びから縦積みに変更 */
  gap: 20px;
  background-color: var(--color-bg-grid);
  padding: 30px;
  border-radius: 8px;
}

.p-hospital-detail__doctor-img {
  width: 180px; /* 縦積みになったので少し大きめに */
  margin: 0 auto; /* 画像を中央に配置 */
}

.p-hospital-detail__doctor-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/*紹介文*/
.p-hospital-detail__doctor-info {
  text-align: center; 
}

.p-hospital-detail__doctor-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  text-align: center; /* 名前だけ中央揃えにすると綺麗です（お好みで外してもOK） */
}

.p-hospital-detail__doctor-profile {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-main);
}

/* --- ヒーローボイス（ポイント） --- */
.p-hospital-detail__hero-voice {
  background-color: #fffbeb; /* 雑誌風の淡いイエロー（ここはアクセントとして保持） */
  border: 2px solid #fde047;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 50px;
  position: relative;
}

.p-hospital-detail__hero-voice-title {
  display: inline-block;
  background-color: #facc15;
  color: #854d0e;
  padding: 4px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: -15px;
  left: 30px;
}

.p-hospital-detail__hero-voice-text {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--color-text-main);
}

/* --- 大見出し＆中見出しエリア --- */
.p-hospital-detail__main-heading {
  font-size: 24px;
  color: var(--color-text-main);
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-primary);
  font-weight: 700;
}

.p-hospital-detail__custom-section {
  margin-bottom: 40px;
}

.p-hospital-detail__custom-mid-title {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.p-hospital-detail__custom-mid-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-main);
}

/* --- スライダーエリア --- */
.p-hospital-detail__slider-area {
  margin: 50px auto; 
  padding: 0 40px; 
  position: relative;
  max-width: 700px; 
}

.p-hospital-detail__slider-area .swiper {
  padding-bottom: 40px; 
}

.swiper-pagination {
  bottom: 0 !important; 
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--color-primary) !important; 
  transform: scale(0.7);
}

.swiper-pagination-bullet-active {
  background-color: var(--color-primary) !important;
}

/* --- 戻るボタン --- */
.p-hospital-detail__back-btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

.c-btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  padding: 12px 40px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.c-btn-back:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
}

.p-hospital-detail__hero-voice-main-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary); /* デザインに合わせてテーマカラーなどに */
  margin-bottom: 15px;
  line-height: 1.5;
  text-align: center; /* 中央揃えにしていますが、左揃えが良ければ外してください */
}

/* ==========================================================================
   Media Queries (SP)
   ========================================================================== */
@media (max-width: 768px) {
  .p-hospital-detail {
    padding: 20px;
  }

  .p-hospital-detail__name {
    font-size: 24px;
  }

  .p-hospital-detail__table th,
  .p-hospital-detail__table td {
    display: block;
    width: 100%;
  }

  .p-hospital-detail__table th {
    border-bottom: none;
  }

  .p-hospital-detail__table td {
    margin-bottom: 10px;
  }

  .p-hospital-detail__doctor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
  }

  .p-hospital-detail__slider-area {
    padding: 0; 
  }

  .p-hospital-detail__doctor-profile {
    text-align: left;
}
}