/*
 * ======================================
 * site.css - たまき眼科 サイト固有スタイル
 * ======================================
 *
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * .tamaki-schedule-table  - 診療時間テーブルのカスタム表示（◎/手術セル）
 * .tamaki-schedule-wrap   - 診療案内セクションの背景付きラッパー
 * .tamaki-payment-grid    - 決済方法グリッド
 * .tamaki-symptom-btn     - 症状カテゴリーの丸ボタン
 * .tamaki-step-flow       - 初めて来院される方のステップフロー
 *
 * ======================================
 * 共通SCSSに不足していたもの
 * ======================================
 * - 診療時間テーブル専用の ◎ / 手術 セルスタイル（値の粒度不足）
 * - 症状→疾患の丸型ボタンナビ（構造不足）
 * - Google Fonts: Barlow を head.php で読み込み
 *
 */

/* ================================================
   Google Fonts 補完（head.phpで読み込むが念のため）
   ================================================ */

/* ================================================
   ヘッダー 2段構成
   ================================================ */

/* ロゴ画像 */
.header__logo img {
  height: 60px;
  width: auto;
  display: block;
}

@media (max-width: 1100px) {
  .header__logo img {
    height: 40px;
  }
}

/* 上段 */
.header__top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 40px;
}

/* アクションボタン共通 */
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 42px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  white-space: nowrap;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.header__action--access {
  border: 1px solid #f87620;
  color: #f87620;
  background: #fff;
}
.header__action--access:hover {
  background: #fdf0ea;
  color: #f87620;
}

.header__action--tel {
  background: #5c4734;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.03em;
}
.header__action--tel:hover {
  background: #4a3828;
  color: #fff;
}


/* 下段ナビ */
.header__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.header__bottom .header__nav {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}

.header__bottom .header__nav-item {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.header__bottom .header__nav-item:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.header__bottom .header__nav-item a {
  padding: 10px 24px;
  gap: 0;
}

.header__nav-icon {
  display: block;
  font-size: 2.8rem;
  color: #f87620;
  margin-bottom: 5px;
}

.header__nav-ja {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, serif;
  color: #3f3125;
  line-height: 1;
  white-space: nowrap;
}

/* ホバー下線を無効化 */
.header__bottom .header__nav-item a::after {
  display: none !important;
}

/* ドロップダウン：フェードイン */
.header__dropdown {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  max-width: 200px;
  width: max-content;
  white-space: nowrap;
}

.header__nav-item:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown-item a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #3f3125;
  padding: 11px 18px;
  letter-spacing: 0.03em;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.header__dropdown-item a:hover {
  background: #fdf0ea !important;
  border-left-color: #f87620;
}

/* SP（1100px以下）*/
@media (max-width: 1100px) {
  .header__top {
    border-bottom: none;
  }
  .header__top-inner {
    padding: 10px 15px;
  }
  .header__actions {
    display: none;
  }
  .header__bottom {
    display: none;
  }
}

/* SPナビ内電話番号 */
.header__tel {
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
}
.header__tel::before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 6px;
  color: #fff;
}

/* ================================================
   ブログ一覧：2カラムレイアウト
   ================================================ */
.entry-list-layout {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.entry-list-layout__main {
  flex: 1;
  min-width: 0;
}

.entry-list-layout__side {
  flex-shrink: 0;
  width: 220px;
}

/* 月別アーカイブボックス */
.entry-archive-box {
  border: 1px solid rgba(230, 122, 77, 0.25);
  border-radius: 6px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.entry-archive-box__title {
  background: #4f3923;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 12px 16px;
  letter-spacing: 0.08em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.entry-archive-box__title i {
  color: #f87620;
}

/* CMS出力のアーカイブリスト調整 */
.entry-archive-box #cms-blog-entry-month-1-area a,
.entry-archive-box #cms-blog-entry-month-1-area li {
  display: block;
  padding: 11px 16px;
  font-size: 1.45rem;
  color: #3f3125;
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 122, 77, 0.15);
  transition: background 0.15s ease;
}

.entry-archive-box #cms-blog-entry-month-1-area a:hover {
  background: #fdf0ea;
  color: #f87620;
}

@media (max-width: 896px) {
  .entry-list-layout {
    flex-direction: column;
    gap: 40px;
  }
  .entry-list-layout__side {
    width: 100%;
  }
  .entry-archive-box {
    position: static;
  }
}

/* ブログカード */
.card-blog__date {
  font-size: 1.5rem;
  border-radius: 5px;
}
.card-blog__category {
  display: none;
}
.card-blog__title {
  font-size: 1.8rem;
}

/* お知らせ日付フォントサイズ */
.news-list__date {
  font-size: 1.9rem;
}

/* お知らせボックス スクロール */
.news-box .news-list,
.news-box #cms-news-1-area {
  max-height: 183px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #f87620 #f3f0ee;
}
.news-box .news-list::-webkit-scrollbar,
.news-box #cms-news-1-area::-webkit-scrollbar {
  width: 4px;
}
.news-box .news-list::-webkit-scrollbar-track,
.news-box #cms-news-1-area::-webkit-scrollbar-track {
  background: #f3f0ee;
}
.news-box .news-list::-webkit-scrollbar-thumb,
.news-box #cms-news-1-area::-webkit-scrollbar-thumb {
  background: #f87620;
  border-radius: 2px;
}


/* ================================================
   診療時間テーブル（TOP・フッター共通）
   ================================================ */
.tamaki-schedule-wrap {
  background: #f3f0ee;
  padding: 50px 0;
}

.tamaki-schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "YakuHanJP", "游ゴシック Medium", YuGothic, sans-serif;
  font-size: 2rem;
}

.tamaki-schedule-table thead th {
  background: #f87620;
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  text-align: center;
  letter-spacing: 0.1em;
  border: 1px solid #d4623d;
}

.tamaki-schedule-table thead th:first-child {
  background: #4f3923;
  text-align: left;
}

.tamaki-schedule-table tbody th {
  background: #f5ede6;
  color: #3f3125;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  border: 1px solid #e8ddd5;
}

.tamaki-schedule-table tbody td {
  text-align: center;
  padding: 14px 8px;
  border: 1px solid #e8ddd5;
  background: #fff;
}

.tamaki-schedule-table .cell-circle::before {
  content: "●";
  color: #f87620;
  font-size: 1.8rem;
}

.tamaki-schedule-table .cell-circle--note {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.tamaki-schedule-table .cell-note {
  display: block;
  font-size: 1.5rem;
  color: #3f3125;
  letter-spacing: 0;
}

.tamaki-schedule-table .cell-surgery {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4f3923;
  background: #f5ede6;
}

.tamaki-schedule-table .cell-empty::before {
  content: "―";
  color: #bbb;
}

@media (max-width: 639px) {
  .tamaki-schedule-table {
    font-size: 1.3rem;
  }
  .tamaki-schedule-table thead th,
  .tamaki-schedule-table tbody th,
  .tamaki-schedule-table tbody td {
    padding: 8px 6px;
  }
}

/* 診療注記テキスト */
.tamaki-schedule-note {
  font-size: 1.6rem;
  color: #6a5444;
  margin-top: 12px;
  line-height: 1.8;
}

/* ================================================
   MV（メインビジュアル）サイト固有
   ================================================ */
#slideshow {
  height: 100vh;
  min-height: 480px;
}

@media (max-width: 896px) {
  #slideshow {
    height: 55vh;
    min-height: 300px;
  }
}

@media (max-width: 639px) {
  #slideshow {
    height: 50vh;
    min-height: 260px;
  }
}

#slideshow .swiper-slide {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

#slideshow .main_slider__inner {
  width: 100%;
  height: 100%;
}

#slideshow .main_slider__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: kenburns-in 8s ease-out forwards;
}

@keyframes kenburns-in {
  0% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* MV テキストオーバーレイ */
.tamaki-mv-text {
  position: absolute;
  bottom: 60px;
  left: 5%;
  z-index: 10;
  color: #fff;
}

.tamaki-mv-text__ja {
  display: block;
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, serif;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.tamaki-mv-text__en {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

@media (max-width: 896px) {
  .tamaki-mv-text {
    bottom: 40px;
  }
  .tamaki-mv-text__ja {
    font-size: 2.6rem;
  }
}

@media (max-width: 639px) {
  .tamaki-mv-text {
    bottom: 24px;
    left: 4%;
  }
  .tamaki-mv-text__ja {
    font-size: 2rem;
    letter-spacing: 0.12em;
  }
  .tamaki-mv-text__en {
    font-size: 1.2rem;
  }
}

/* ================================================
   当院の強み
   ================================================ */
.tamaki-strength-sub {
  text-align: center;
  font-size: 1.8rem;
  color: #888;
  margin-top: 6px;
  margin-bottom: 60px;
  letter-spacing: 0.08em;
}

.tamaki-strength-wrap {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 40px 32px;
  align-items: center;
}

.tamaki-strength-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.tamaki-strength-col--left {
  text-align: right;
}

.tamaki-strength-col--left .tamaki-strength-title {
  justify-content: flex-end;
}

.tamaki-strength-col--left .tamaki-strength-num {
  order: 1;
}

.tamaki-strength-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #3f3125;
  margin-bottom: 8px;
  line-height: 1.4;
}

.tamaki-strength-num {
  display: inline-flex;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #f87620;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.tamaki-strength-text {
  font-size: 1.7rem;
  color: #555;
  line-height: 1.9;
}

.tamaki-strength-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .tamaki-strength-wrap {
    grid-template-columns: 1fr 240px 1fr;
    gap: 32px 20px;
  }
}

@media (max-width: 768px) {
  .tamaki-strength-wrap {
    grid-template-columns: 1fr;
  }
  .tamaki-strength-center {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
  }
  .tamaki-strength-col--left {
    text-align: left;
    order: 1;
  }
  .tamaki-strength-col--right {
    order: 0;
  }
  .tamaki-strength-col--left .tamaki-strength-title {
    justify-content: flex-start;
  }
  .tamaki-strength-col--left .tamaki-strength-num {
    order: 0;
  }
}

/* ================================================
   連携している医療機関
   ================================================ */
.tamaki-network-box {
  border: 3px solid #3f3125;
  border-radius: 20px;
  padding: 32px 48px;
  text-align: center;
  margin-bottom: 40px;
}

.tamaki-network-box__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #3f3125;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.tamaki-network-box__list {
  font-size: 1.8rem;
  color: #3f3125;
  line-height: 2.1;
  letter-spacing: 0.03em;
}

.tamaki-network-text {
  text-align: center;
  font-size: 1.7rem;
  color: #555;
  line-height: 2.2;
}

@media (max-width: 639px) {
  .tamaki-network-box {
    padding: 24px 20px;
  }
  .tamaki-network-box__title {
    font-size: 2rem;
  }
  .tamaki-network-box__list {
    font-size: 1.5rem;
  }
  .tamaki-network-text {
    font-size: 1.5rem;
    text-align: left;
  }
}

/* クリニック理念
   ================================================ */
.tamaki-philosophy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tamaki-philosophy-item {
  font-size: 2rem;
  color: #3f3125;
  letter-spacing: 0.08em;
  line-height: 1.8;
  padding: 20px 28px;
  background: #fff;
  border-left: 4px solid #c89a6e;
}

@media (max-width: 639px) {
  .tamaki-philosophy-item {
    font-size: 1.6rem;
    padding: 16px 18px;
  }
}

/* ご挨拶
   ================================================ */
.tamaki-greeting-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.tamaki-greeting-text {
  font-size: 1.7rem;
  line-height: 2;
  color: #444;
}

.tamaki-greeting-catch {
  margin-top: 40px;
  font-size: 2.2rem;
  color: #3f3125;
  letter-spacing: 0.08em;
}

@media (max-width: 639px) {
  .tamaki-greeting-text {
    font-size: 1.5rem;
    text-align: left;
  }
  .tamaki-greeting-catch {
    font-size: 1.8rem;
  }
}

/* MV 右下バッジ */
.tamaki-mv-badges {
  position: absolute;
  bottom: 40px;
  right: 5%;
  z-index: 10;
  display: flex;
  gap: 18px;
  align-items: center;
}

.tamaki-mv-badge {
  width: 180px;
  height: 180px;
  clip-path: polygon(50% 0%, 100% 34.5%, 79.4% 90.5%, 20.6% 90.5%, 0% 34.5%);
  background-color: rgba(220, 220, 220, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3f3125;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .tamaki-mv-badge {
    width: 150px;
    height: 150px;
    font-size: 1.35rem;
  }
}

@media (max-width: 896px) {
  .tamaki-mv-badges {
    bottom: 20px;
    right: 3%;
    gap: 10px;
  }
  .tamaki-mv-badge {
    width: 116px;
    height: 116px;
    font-size: 1.15rem;
  }
}

/* スマホ専用バッジ（MVの下に通常フローで表示） */
.tamaki-mv-badges--mobile {
  display: none;
}

.tamaki-mv-badges--mobile .tamaki-mv-badge {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  clip-path: polygon(50% 0%, 100% 34.5%, 79.4% 90.5%, 20.6% 90.5%, 0% 34.5%);
  background-color: rgba(220, 220, 220, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3f3125;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.65;
  letter-spacing: 0.05em;
}

@media (max-width: 639px) {
  .tamaki-mv-badges {
    display: none;
  }
  .tamaki-mv-badges--mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px 16px;
    background-color: #fff;
  }
}

/* ================================================
   診療内容 - アイコン付き見出し
   ================================================ */
.treatment-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  border-left: 4px solid #f87620;
  padding-left: 12px;
}

.treatment-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.treatment-heading h3 {
  margin: 0;
}

/* ================================================
   症状から考えられる疾患 - 丸型ボタン
   ================================================ */
.tamaki-symptom-section {
  background: #f3f0ee;
}

.tamaki-symptom-category {
  margin-bottom: 40px;
}

.tamaki-symptom-category__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3f3125;
  background: #fff;
  border-left: 4px solid #f87620;
  padding: 10px 16px;
  margin-bottom: 20px;
  border-radius: 0 4px 4px 0;
  line-height: 1.7;
}

.tamaki-symptom-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tamaki-symptom-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f87620;
  color: #3f3125;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  padding: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(230, 122, 77, 0.15);
  gap: 6px;
}

.tamaki-symptom-btn__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.tamaki-symptom-btn:hover .tamaki-symptom-btn__icon {
  filter: brightness(0) invert(1);
}

.tamaki-symptom-btn:hover {
  background: #f87620;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(230, 122, 77, 0.3);
}

@media (max-width: 639px) {
  .tamaki-symptom-btn {
    width: 135px;
    height: 135px;
    font-size: 1.5rem;
  }
}

/* ================================================
   ステップフロー（初めて来院 / 手術の流れ）
   ================================================ */
/* ================================================
   初めて来院される方へ（カード型ステップフロー）
   ================================================ */
.first-visit {
  background: #fff;
  padding: 80px 0;
}

.first-visit__steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
  max-width: 1500px;
  margin: 0 auto;
}

.first-visit__item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 80, 40, 0.07);
  padding: 32px 24px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.first-visit__step {
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f87620;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}

.first-visit__step span {
  font-size: 2rem;
}

.first-visit__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fdf2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.first-visit__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.first-visit__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.first-visit__title {
  font-size: 2rem;
  font-weight: 700;
  color: #3f3125;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.first-visit__text {
  font-size: 1.6rem;
  color: #5a5a5a;
  line-height: 1.85;
  text-align: left;
}

.first-visit__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}

.first-visit__notes {
  margin-top: 40px;
  padding: 20px 28px;
  background: #fdf8f4;
  border-left: 4px solid #c89a6e;
}

.first-visit__notes-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3f3125;
  margin-bottom: 8px;
}

.first-visit__notes-text {
  font-size: 1.5rem;
  color: #5a4535;
  line-height: 1.9;
}

.first-visit__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 10px;
  color: #e8a882;
  font-size: 1.8rem;
  align-self: center;
}

@media (max-width: 896px) {
  .first-visit__steps {
    flex-wrap: wrap;
    gap: 20px;
  }
  .first-visit__item {
    flex: 0 0 calc(50% - 10px);
  }
  .first-visit__arrow {
    display: none;
  }
}

@media (max-width: 639px) {
  .first-visit {
    padding: 60px 0;
  }
  .first-visit__item {
    flex: 0 0 100%;
  }
}

/* ================================================
   散瞳検査セクション
   ================================================ */
.tamaki-exam-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(79, 57, 35, 0.08);
}

.tamaki-exam-intro {
  font-size: 1.8rem;
  line-height: 2;
  color: #3f3125;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8ddd5;
}

.tamaki-exam-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 896px) {
  .tamaki-exam-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tamaki-exam-card {
    padding: 28px 20px;
  }
}

.tamaki-exam-col-title {
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background: #f87620;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

/* ================================================
   特徴カード（たまき眼科の特徴）2カラムグリッド
   ================================================ */
.tamaki-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
}

.tamaki-feature-item {
  background: #fff;
}

.tamaki-feature-body {}

.tamaki-feature-title {
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3f3125;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.tamaki-feature-img {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
}

.tamaki-feature-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.tamaki-feature-text {
  font-size: 1.6rem;
  color: #5a4535;
  line-height: 2;
}

@media (max-width: 768px) {
  .tamaki-feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================================================
   決済方法グリッド
   ================================================ */
.tamaki-payment-table {
  width: 100%;
  border-collapse: collapse;
}

.tamaki-payment-table th {
  background: #f87620;
  color: #fff;
  font-weight: 700;
  padding: 12px 20px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  border: 1px solid #d4623d;
  width: 15%;
  vertical-align: middle;
  text-align: center;
}

.tamaki-payment-table td {
  padding: 14px 20px;
  border: 1px solid #e8ddd5;
  background: #fff;
  font-size: 1.8rem;
  color: #3f3125;
  line-height: 1.8;
}

.tamaki-payment-table tr:nth-child(even) td {
  background: #fdf8f5;
}

@media (max-width: 639px) {
  .tamaki-payment-table th,
  .tamaki-payment-table td {
    display: block;
    width: 100%;
  }
  .tamaki-payment-table th {
    border-bottom: none;
  }
}

/* ================================================
   about.php 院長挨拶内 小見出し
   ================================================ */
.about-sub-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f87620;
  margin-bottom: 0;
}

.about-sub-heading__en {
  font-family: "Barlow", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f87620;
  letter-spacing: 0.15em;
  line-height: 1;
}

.about-sub-heading__ja {
  font-size: 2rem;
  font-weight: 700;
  color: #3f3125;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* ================================================
   手術までの流れ（画像付きフロー）
   ================================================ */
.surgery-flow {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.surgery-flow__item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: #fff;
  border: 1px solid #ede8e3;
  border-radius: 8px;
  padding: 32px 36px;
  margin-bottom: 24px;
  position: relative;
}

.surgery-flow__num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.surgery-flow__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f87620;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}


.surgery-flow__img {
  flex-shrink: 0;
  width: 240px;
}

.surgery-flow__img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.surgery-flow__body {
  flex: 1;
  min-width: 0;
}

.surgery-flow__title {
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3f3125;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.surgery-flow__text {
  font-size: 1.8rem;
  color: #5a4535;
  line-height: 1.95;
}

@media (max-width: 768px) {
  .surgery-flow__item {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 20px;
  }
  .surgery-flow__img {
    width: 100%;
    order: 3;
  }
  .surgery-flow__img img {
    height: 200px;
  }
  .surgery-flow__body {
    order: 2;
  }
  .surgery-flow__num-wrap::after {
    display: none;
  }
}

/* ================================================
   手術について 背景画像セクション
   ================================================ */
.surgery-about-bg {
  position: relative;
  background-image: url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28044/about_surgery.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.surgery-about-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, 0.55);
  z-index: 0;
}

.surgery-about-bg .container {
  position: relative;
  z-index: 1;
}

.surgery-about-bg .heading .heading__en {
  color: rgba(255, 255, 255, 0.7);
}

.surgery-about-bg .heading .heading__ja {
  color: #fff;
}

.surgery-about-bg .heading::after {
  background: rgba(255, 255, 255, 0.4);
}

.surgery-about-bg .tamaki-exam-card {
  background: transparent;
}

.surgery-about-bg .tamaki-exam-card p {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* ================================================
   院内体制リスト（太め中点 ＋ 点線下線）
   ================================================ */
.list-dot-underline {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list-dot-underline li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1.6rem;
  color: #3f3125;
  line-height: 1.85;
  padding: 10px 0;
  border-bottom: 1px dotted #c9a98a;
}

.list-dot-underline li::before {
  content: "・";
  font-size: 2rem;
  font-weight: 700;
  color: #f87620;
  flex-shrink: 0;
  line-height: 1;
}

.list-dot-underline li:last-child {
  border-bottom: none;
}

/* ================================================
   手術後の生活について カード
   ================================================ */
.after-surgery-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3f3125;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(230, 122, 77, 0.3);
}

.after-surgery-card__head i {
  color: #f87620;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.after-surgery-card__list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.after-surgery-card__list li {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #3f3125;
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 4px;
}

.after-surgery-card__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #f87620;
}

/* 緊急時アラートボックス */
.after-surgery-alert {
  background: #fff8f5;
  border: 2px solid #f87620 !important;
  border-radius: 8px;
  padding: 28px 32px !important;
}

.after-surgery-alert__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #c0401a;
  margin-bottom: 16px;
}

.after-surgery-alert__head i {
  color: #f87620;
  font-size: 2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.after-surgery-alert__body p {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #3f3125;
}

.after-surgery-alert__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.7rem !important;
  font-weight: 700;
  color: #3f3125;
  background: #4f3923;
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 4px;
  margin-top: 20px !important;
}

.after-surgery-alert__tel i {
  color: #f87620;
}

.after-surgery-alert__tel a {
  color: #fff;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
}

.after-surgery-alert__tel a:hover {
  opacity: 0.8;
}

@media (max-width: 639px) {
  .after-surgery-alert__tel {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.4rem !important;
  }
}

/* 基本情報テーブル */
#overview .table-basic th {
  background: #4f3923;
  color: #fff;
  border-color: #6a4f35;
}
#overview .table-basic td {
  background: #fff;
  border-color: #ddd;
}

/* タイムライン */
.dl-timeline__year {
  font-size: 1.6rem;
}
.dl-timeline__text {
  font-size: 1.6rem;
}

/* ================================================
   ページヒーロー（下層ページ）サイト固有
   ================================================ */
.page-hero {
  background-image: url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28044/page-hero.jpg');
  background-size: cover;
  background-position: center;
  height: 360px;
  padding-top: 110px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, 0.52);
  z-index: 1;
}

.page-hero .page-hero__content {
  position: relative;
  z-index: 2;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.page-hero .h-250 {
  height: 100%;
}

@media (max-width: 896px) {
  .page-hero {
    height: 260px;
  }
}

.page-hero--tamaki {
  background: linear-gradient(135deg, #4f3923 0%, #6a4f35 100%);
}

/* ================================================
   診療時間 CTAボタン 2カラム
   ================================================ */
.schedule-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.schedule-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  min-width: 220px;
  justify-content: center;
}

.schedule-cta__btn i {
  font-size: 2rem;
  flex-shrink: 0;
}

.schedule-cta__btn--tel {
  background: #fff;
  color: #3f3125;
  border: 2px solid #f87620;
}

.schedule-cta__btn--tel:hover {
  background: #f87620;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 122, 77, 0.3);
}



@media (max-width: 639px) {
  .schedule-cta {
    flex-direction: column;
    align-items: center;
  }
  .schedule-cta__btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ================================================
   contact-cta（footer-cta）
   ================================================ */
.footer-cta {
  position: relative;
  background-image: url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28044/bg-cta.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
}

.footer-cta::before {
  display: none !important;
}

.footer-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 5, 0.45);
  z-index: 0;
}

.footer-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}

.footer-cta__heading {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.footer-cta__title {
  font-family: "Barlow", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1;
  margin: 0;
}

.footer-cta__divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.footer-cta__lead {
  text-align: left;
}

.footer-cta__lead p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  margin: 0;
  letter-spacing: 0.05em;
}

.footer-cta__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  min-width: 220px;
  justify-content: center;
}

.footer-cta__btn i {
  font-size: 2rem;
  flex-shrink: 0;
}

.footer-cta__btn--tel {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.footer-cta__btn--tel:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}


@media (max-width: 896px) {
  .footer-cta {
    padding: 80px 20px;
  }
  .footer-cta__inner {
    flex-direction: column;
    gap: 40px;
  }
  .footer-cta__heading {
    gap: 20px;
  }
  .footer-cta__title {
    font-size: 3.6rem;
  }
  .footer-cta__divider {
    height: 60px;
  }
}

@media (max-width: 639px) {
  .footer-cta__heading {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  .footer-cta__divider {
    width: 60px;
    height: 1px;
  }
  .footer-cta__lead {
    text-align: center;
  }
  .footer-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .footer-cta__btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ================================================
   フッター サイト固有
   ================================================ */
/* フッター 2カラムレイアウト */
.site-footer {
  background: #4f3923;
  color: #f3f0ee;
}

.site-footer a {
  color: rgba(243, 240, 238, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #f87620;
}

.site-footer__layout {
  display: flex;
  min-height: 540px;
}

/* 左: マップ */
.site-footer__map {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.site-footer__map iframe {
  width: 100%;
  height: calc(100% - 36px);
  min-height: 504px;
  border: 0;
  display: block;
}

.site-footer__map-link {
  display: block;
  text-align: right;
  font-size: 1.3rem;
  color: #8a7060;
  padding: 6px 10px 0;
  text-decoration: none;
}
.site-footer__map-link:hover {
  color: #f87620;
}

/* 右: コンテンツ */
.site-footer__content {
  flex: 0 0 50%;
  background: #4f3923;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* クリニック名 */
.site-footer__brand {
  margin-bottom: 16px;
}

.site-footer__logo-img {
  width: 160px;
  height: auto;
  display: block;
}

/* 住所・TEL */
.site-footer__info {
  width: 100%;
  padding: 16px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(243, 240, 238, 0.15);
  border-bottom: 1px solid rgba(243, 240, 238, 0.15);
  font-size: 1.4rem;
  color: rgba(243, 240, 238, 0.8);
  line-height: 1.9;
}

.site-footer__info-hours {
  font-size: 1.25rem;
  color: rgba(243, 240, 238, 0.55);
  margin-top: 4px;
}

/* SNSアイコン */
.site-footer__social {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  justify-content: center;
}

.site-footer__social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #4f3923 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: background 0.2s, transform 0.2s;
}

.site-footer__social-btn:hover {
  background: #f87620;
  color: #fff !important;
  transform: translateY(-2px);
  opacity: 1;
}

/* 診療時間表 */
.site-footer__schedule {
  width: 100%;
  margin-bottom: 26px;
}

.site-footer__schedule-title {
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #f3f0ee;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(230, 122, 77, 0.5);
  text-align: left;
}

.site-footer__schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}

.site-footer__schedule-table th,
.site-footer__schedule-table td {
  padding: 10px 6px;
  border-bottom: 1px solid rgba(243, 240, 238, 0.1);
  text-align: center;
}

.site-footer__schedule-table thead th {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(243, 240, 238, 0.55);
  background: transparent;
  border-bottom: 1px solid rgba(243, 240, 238, 0.22);
}

.site-footer__schedule-table tbody th {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(243, 240, 238, 0.85);
  text-align: left;
  background: transparent;
  white-space: nowrap;
}

.site-footer__schedule-table .cell-circle::before {
  content: "●";
  color: #f87620;
}

.site-footer__schedule-table .cell-surgery {
  font-size: 1.2rem;
  color: rgba(243, 240, 238, 0.5);
  background: transparent;
  font-weight: 400;
}

.site-footer__schedule-note {
  font-size: 1.2rem;
  color: rgba(243, 240, 238, 0.45);
  margin-top: 8px;
  text-align: left;
}

/* フッターナビ */
.site-footer__nav {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(243, 240, 238, 0.15);
  margin-bottom: 20px;
}

.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.site-footer__nav li + li::before {
  content: "｜";
  color: rgba(243, 240, 238, 0.2);
  margin: 0 6px;
  font-size: 1.1rem;
}

.site-footer__nav a {
  font-size: 1.3rem;
  color: rgba(243, 240, 238, 0.6);
}

.site-footer__nav a:hover {
  color: #f87620;
}

/* コピーライト */
.site-footer__copyright {
  font-size: 1.2rem;
  color: rgba(243, 240, 238, 0.38);
  letter-spacing: 0.05em;
  margin-top: auto;
}

/* レスポンシブ */
@media (max-width: 896px) {
  .site-footer__layout {
    flex-direction: column;
  }
  .site-footer__map {
    flex: none;
    width: 100%;
    order: 2;
  }
  .site-footer__map iframe {
    min-height: 280px;
  }
  .site-footer__content {
    flex: none;
    width: 100%;
    order: 1;
    padding: 40px 5%;
  }
}

/* ================================================
   ブログ一覧（entry_list.php）カテゴリフィルター
   ================================================ */
.tamaki-cat-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tamaki-cat-filter__btn {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 9999px;
  border: 1px solid #f87620;
  color: #f87620;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}

.tamaki-cat-filter__btn.is-active,
.tamaki-cat-filter__btn:hover {
  background: #f87620;
  color: #fff;
}

/* ================================================
   院内紹介 グリッド
   ================================================ */
.tamaki-facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 896px) {
  .tamaki-facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .tamaki-facility-grid {
    grid-template-columns: 1fr;
  }
}

.tamaki-facility-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(79, 57, 35, 0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}

.tamaki-facility-card:hover {
  box-shadow: 0 8px 28px rgba(230, 122, 77, 0.15);
  transform: translateY(-4px);
}

.tamaki-facility-card__img {
  height: 180px;
  overflow: hidden;
  background: #f3f0ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tamaki-facility-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tamaki-facility-card:hover .tamaki-facility-card__img img {
  transform: scale(1.06);
}

.tamaki-facility-card__body {
  padding: 20px;
}

.tamaki-facility-card__title {
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #3f3125;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.tamaki-facility-card__text {
  font-size: 1.4rem;
  color: #5a4535;
  line-height: 1.8;
}

/* ================================================
   求める人材 5カラム 正円アイコン
   ================================================ */
.recruit-talent {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.recruit-talent__item {
  flex: 0 0 calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.recruit-talent__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f87620;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recruit-talent__circle i {
  font-size: 5.5rem;
  color: #f87620;
}

.recruit-talent__text {
  font-size: 1.8rem;
  color: #3f3125;
  line-height: 1.7;
  font-weight: 600;
}

@media (max-width: 639px) {
  .recruit-talent__item {
    flex: 0 0 calc(50% - 12px);
  }
}

/* ================================================
   採用メッセージ イラスト付きレイアウト
   ================================================ */
.recruit-message {
  overflow: hidden;
}

.recruit-message__layout {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruit-message__illust {
  flex-shrink: 0;
  width: 180px;
  align-self: flex-end;
}

.recruit-message__illust img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-message__main {
  flex: 1;
  min-width: 0;
  padding: 60px 40px;
}

@media (max-width: 896px) {
  .recruit-message__illust {
    width: 120px;
  }
  .recruit-message__main {
    padding: 40px 20px;
  }
}

@media (max-width: 639px) {
  .recruit-message__illust {
    display: none;
  }
  .recruit-message__main {
    padding: 0;
  }
}

/* QRコードグリッド */
.tamaki-recruit-qr {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.tamaki-recruit-qr__item {
  text-align: center;
}

.tamaki-recruit-qr__img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border: 1px solid #e0d6cc;
  border-radius: 6px;
}

.tamaki-recruit-qr__label {
  margin-top: 8px;
  font-size: 1.5rem;
  color: #3f3125;
  font-weight: 700;
}

/* ================================================
   求人情報 セクション固有
   ================================================ */
.tamaki-recruit-message {
  background: linear-gradient(135deg, #f3f0ee, #fdf8f4);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  border: 1px solid #e8ddd5;
}

.tamaki-recruit-message p {
  font-size: 1.8rem;
  line-height: 2.1;
  color: #3f3125;
}

@media (max-width: 639px) {
  .tamaki-recruit-message {
    padding: 28px 20px;
  }
}

/* ================================================
   日帰り手術バナー（TOP）3カラム画像付き
   ================================================ */
.tamaki-surgery-bnr {
  display: flex;
  align-items: stretch;
  border: 1px solid #ddd;
  overflow: hidden;
  background: #fff;
}

.tamaki-surgery-bnr__img {
  flex: 0 0 30%;
  overflow: hidden;
}

.tamaki-surgery-bnr__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tamaki-surgery-bnr__img--left img {
  object-position: left center;
}

.tamaki-surgery-bnr__img--right img {
  object-position: right center;
}

.tamaki-surgery-bnr__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  background: #fff;
}

.tamaki-surgery-bnr__en {
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #b08a6e;
  display: block;
  margin-bottom: 10px;
}

.tamaki-surgery-bnr__ja {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #3f3125;
  display: block;
  margin: 0 0 24px;
  line-height: 1.4;
}

.tamaki-surgery-bnr__lead {
  font-size: 1.8rem;
  line-height: 2;
  color: #5a4a3a;
  margin-bottom: 32px;
}

.tamaki-surgery-bnr__btn {
  display: inline-block;
  background: #4f3923;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 16px 48px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.tamaki-surgery-bnr__btn:hover {
  background: #6a4f35;
  color: #fff;
}

@media (max-width: 896px) {
  .tamaki-surgery-bnr__img {
    flex: 0 0 25%;
  }
  .tamaki-surgery-bnr__content {
    padding: 48px 24px;
  }
  .tamaki-surgery-bnr__ja {
    font-size: 2.4rem;
  }
}

@media (max-width: 639px) {
  .tamaki-surgery-bnr {
    flex-direction: column;
  }
  .tamaki-surgery-bnr__img {
    flex: none;
    height: 200px;
  }
  .tamaki-surgery-bnr__img--right {
    display: none;
  }
  .tamaki-surgery-bnr__content {
    padding: 48px 24px;
  }
}

/* ================================================
   お知らせ一覧：カテゴリフィルター / 記事リスト
   ================================================ */

.tamaki-category-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tamaki-category-filter__btn {
  display: inline-block;
  padding: 8px 24px;
  border: 2px solid #f87620;
  border-radius: 30px;
  font-size: 1.4rem;
  color: #f87620;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.05em;
  transition: background 0.25s, color 0.25s;
}

.tamaki-category-filter__btn:hover,
.tamaki-category-filter__btn.is-active {
  background: #f87620;
  color: #fff;
}

.tamaki-entry-list {
  /* CMS outputs <ul class="news-list"> or <dl class="news-bl"> */
}

/* entry.php 記事詳細 */
.tamaki-entry-body {
  font-size: 1.6rem;
  line-height: 2;
  color: #3f3125;
}

.tamaki-entry-body h2,
.tamaki-entry-body h3 {
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, serif;
  font-weight: 700;
  margin: 30px 0 15px;
}

.tamaki-entry-body p {
  margin-bottom: 1.5em;
}

.tamaki-entry-body img {
  max-width: 100%;
  height: auto;
}

.tamaki-entry-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0d8d0;
}

.tamaki-entry-meta__date {
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  color: #8a7060;
  letter-spacing: 0.05em;
}

.tamaki-entry-meta__cat {
  display: inline-block;
  padding: 2px 14px;
  border-radius: 20px;
  background: #f87620;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.tamaki-entry-title {
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #3f3125;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* ================================================
   院内紹介ページ：施設カード / 検査機器カード
   ================================================ */

.tamaki-facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

.tamaki-facility-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(63,49,37,0.08);
}

.tamaki-facility-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.tamaki-facility-card__body {
  padding: 18px 20px 22px;
}

.tamaki-facility-card__title {
  font-family: "YakuHanJP", "游明朝 Medium", "Yu Mincho", YuMincho, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3f3125;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 4px solid #f87620;
}

.tamaki-facility-card__text {
  font-size: 1.5rem;
  color: #5a4535;
  line-height: 1.85;
}

@media (max-width: 900px) {
  .tamaki-facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .tamaki-facility-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.sp-nav__link::after {
  margin-left: 10px;
}

.sp-fixed-bar__link {
  font-size: 1.2rem;
}

@media (max-width: 896px) {
  .page-top {
    bottom: 70px;
  }
  .column2--5-5 > .column2__child {
    width: 100%;
  }
}

@media (max-width: 639px) {
  body {
    font-size: 1.6rem;
  }
  :where(.heading) .heading__ja {
    font-size: 2rem;
  }
  :where(.heading) .heading__en {
    font-size: 1.5rem;
  }
}
