@charset "UTF-8";

/* ================================================================
   岩本町クリニック - スタイルシート（モバイルファースト設計）
   ----------------------------------------------------------------
   構成:
     1. リセット & ベース
     2. 共通レイアウト
     3. ヘッダー
     4. グローバルナビゲーション
     5. メインビジュアル（トップページ）
     6. お知らせ & 診療スケジュール（トップページ）
     7. コンテンツ共通
     8. トップページ固有（OUR CONCEPT / PRカード / 院長紹介）
     9. サブページ固有（初診 / 診療科目 / 院内設備 / 院長紹介 / アクセス）
    10. サイドバー
    11. フッター
    12. 固定フッターバー（CTA）
    13. ページトップボタン
    14. レスポンシブ（min-width: 768px タブレット / min-width: 1024px デスクトップ）

   ブレークポイント:
     768px  ... タブレット
     1024px ... デスクトップ
   ================================================================ */


/* ================================================================
   1. リセット & ベース（モバイルベース）
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  padding-bottom: 0;
  font-family:
    "Hiragino UD Sans W6 JIS2004",
    "ヒラギノUD角ゴ W6 JIS2004",
    游ゴシック体, "Yu Gothic", YuGothic,
    メイリオ, Meiryo, Osaka,
    "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
  color: #1A3A4A;
  background: #F0FBFE;
  line-height: 1.3125;
  letter-spacing: 1px;
  text-align: center;
}

a {
  color: #1A3A4A;
  text-decoration: none;
}
a:hover {
  opacity: 0.75;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; padding: 0; }
dl, dt, dd { margin: 0; padding: 0; }
table { border-collapse: collapse; border-spacing: 0; }


/* ================================================================
   2. 共通レイアウト
   ================================================================ */
.innerBox {
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
  padding: 0 10px;
}


/* ================================================================
   3. ヘッダー（モバイルベース = スティッキーバー）
   ================================================================ */
.headerPosi {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

#headerTop {
  padding: 0;
}

#headerTop .innerBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
  min-height: 48px;
}

/* ロゴ */
#site-title {
  width: auto;
  flex-shrink: 0;
  margin: 0;
  padding: 8px 0 8px 8px;
  font-size: 16px;
  font-weight: normal;
  flex: 1;
}
#site-title img {
  height: 40px;
  width: auto;
}

/* 右側エリア（住所 + 電話番号）… モバイルでは非表示 */
#header_image_top {
  display: none;
}

.header-address {
  font-size: 12px;
  color: #1A3A4A;
  margin-bottom: 6px;
  line-height: 1.5;
}

#header_image_top .leftBox {
  text-align: right;
}
#header_image_top .leftBox p {
  font-size: 12px;
  color: #00B4D8;
  font-weight: 600;
  text-align: right;
}
#header_image_top .leftBox .tel-img {
  display: block;
  margin-top: 3px;
  margin-left: auto;
  max-width: 220px;
}

/* モバイル電話ボタン（モバイルで表示） */
.mobile-tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #90E0EF;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}
.mobile-tel-btn:hover {
  background: #0077B6;
  opacity: 1;
}
.mobile-tel-btn svg {
  width: 20px;
  height: 20px;
}

/* ハンバーガーメニュー（モバイルで表示） */
.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: static;
  z-index: 1100;
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #1A3A4A;
  margin: 3px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ハンバーガー開閉アニメーション */
.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ================================================================
   4. グローバルナビゲーション（モバイルベース = スライドダウン）
   ================================================================ */
#headerTopNv {
  background: #E8F8FC;
  border-top: 3px solid #90E0EF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
#headerTopNv.is-open {
  max-height: 500px;
}

#headerTopNv ul {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}

#headerTopNv li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#headerTopNv li:first-child {
  border-left: none;
}

#headerTopNv a {
  display: block;
  padding: 15px 20px;
  color: #1A3A4A;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: none;
  text-align: left;
  transition: background 0.3s;
}
#headerTopNv a:hover {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}


/* ================================================================
   5. メインビジュアル（トップページ）
   ================================================================ */
#topMainBnr {
  position: relative;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
}

.slideFrame {
  position: relative;
}
.slideFrame img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* メインビジュアル上のオーバーレイバナー（モバイル非表示） */
.bannerBox {
  display: none;
}
.centerring {
  display: none;
}

.tpLeftBr {
  position: absolute;
  top: 0;
  left: 0;
}
.tpLeftBr img {
  width: 594px;
  height: auto;
}

.tpRightBr {
  position: absolute;
  top: 0;
  right: 0;
}
.tpRightBr img {
  width: 324px;
  height: auto;
}

/* ニュースバー */
.tpBottomBr {
  background: url("../images/common/bg_01.png");
  padding: 10px 0;
}

.newInfomation {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 0;
}
.newInfomation h2 {
  font-size: 16px;
  color: #1A3A4A;
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
}
.newInfomation h2 span {
  display: block;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
.newInfomation ul {
  display: inline-block;
  vertical-align: middle;
}
.newInfomation li {
  display: inline-block;
}
.newInfomation .news-date {
  color: #1A3A4A;
  font-size: 14px;
  margin-right: 10px;
}
.newInfomation .news-title {
  color: #0090AD;
  font-size: 14px;
}

.news-list-btn {
  text-align: right;
  margin-top: 10px;
}
.news-list-btn a {
  display: inline-block;
  background: #00B4D8;
  color: #fff;
  padding: 8px 30px;
  border-radius: 20px;
  font-size: 14px;
}


/* ================================================================
   5-2. ヒーロースライダー（ズーム＋フェード）
   ================================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* モバイルベース: 縦長画像対応、max-height制限なし */
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
  overflow: hidden;
}

.hero-slide:first-child {
  position: relative; /* 高さ確保用 */
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero-slide.is-active img {
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}


/* ================================================================
   6. お知らせ & 診療スケジュール（トップページ）
   ================================================================ */

/* 全幅ラッパー */
.topInfoSchedule-wrap {
  background: #fff;
  padding: 25px 0 30px;
  border-bottom: 1px solid #D4F1F9;
}

.topInfoSchedule {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 0 auto;
  max-width: 1080px;
  text-align: left;
  padding: 0 10px;
}

/* --- お知らせ --- */
.topInfo {
  width: 100%;
}

.topInfo-heading {
  text-align: center;
  margin-bottom: 25px;
}
.topInfo-heading h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1A3A4A;
  letter-spacing: 2px;
  margin-bottom: 3px;
}
.topInfo-heading span {
  display: block;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #90E0EF;
  letter-spacing: 2px;
}

.topInfo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.topInfo-list li {
  padding: 14px 0 14px 12px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: baseline;
  gap: 15px;
  font-size: 14px;
}
.topInfo-list li:first-child {
  border-top: 1px solid #ddd;
}
.topInfo-list .info-date {
  flex-shrink: 0;
  color: #999;
  font-size: 13px;
  white-space: nowrap;
}
.topInfo-list .info-title a {
  color: #1A3A4A;
  text-decoration: underline;
}
.topInfo-list .info-title a:hover {
  color: #00B4D8;
  opacity: 1;
}

.topInfo-more {
  text-align: center;
  margin-top: 20px;
}
.topInfo-more a {
  display: inline-block;
  border: 2px solid #1A3A4A;
  color: #1A3A4A;
  padding: 10px 40px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.topInfo-more a:hover {
  background: #1A3A4A;
  color: #fff;
  opacity: 1;
}

/* --- 診療スケジュール --- */
.topSchedule {
  width: 100%;
}

.topSchedule-heading {
  text-align: center;
  margin-bottom: 25px;
}
.topSchedule-heading h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1A3A4A;
  letter-spacing: 2px;
  margin-bottom: 3px;
}
.topSchedule-heading span {
  display: block;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #90E0EF;
  letter-spacing: 2px;
}

/* 診療時間テーブル */
.topSchedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  display: table;
  overflow-x: visible;
}
.topSchedule-table th,
.topSchedule-table td {
  border: 1px solid #dfdfdf;
  padding: 8px 6px;
  text-align: center;
  font-size: 13px;
}
.topSchedule-table thead th {
  background: #469de2;
  color: #fff;
  font-weight: bold;
}
.topSchedule-table tbody td.time-col {
  background: #E8F8FC;
  font-weight: bold;
  white-space: nowrap;
  text-align: left;
  padding-left: 12px;
}

/* テーブル下部（休診日 + 注釈を横並び） */
.topSchedule-bottom {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  gap: 8px;
}

.topSchedule-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.topSchedule-meta .closed-label {
  color: #0090AD;
  font-weight: bold;
  margin-right: 2px;
}
.topSchedule-meta .closed-days {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00B4D8;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

.topSchedule-sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.topSchedule-sub .time-info {
  font-size: 16px;
  color: #1A3A4A;
}
.topSchedule-sub .time-info strong {
  font-size: 17px;
}

.topSchedule-note {
  font-size: 14px;
  color: #1A3A4A;
  line-height: 1.7;
}


/* ================================================================
   7. コンテンツ共通（1カラムレイアウト）
   ================================================================ */
#main {
  background: #ffffff;
  padding: 0;
}

#container {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
  padding: 25px 10px 60px;
  text-align: left;
}

#content {
  width: 100%;
}

/* コンテンツ幅を狭めるバリエーション（院内設備等） */
#container.container--narrow {
  max-width: 800px;
}

/* サブページ共通ヒーロー */
.subPageImgList {
  position: relative;
}
.subPagebkImg {
  background-image: url("../images/common/kasou_head_eye-1.jpg");
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subPagebkImg h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1A3A4A;
  letter-spacing: 1px;
  text-align: center;
}

/* 見出しスタイル（下線付き） */
.content-heading {
  font-size: 16px;
  color: #1A3A4A;
  border-bottom: 2px solid #00B4D8;
  padding-bottom: 8px;
  margin: 30px 0 15px;
}
.content-heading a {
  color: #1A3A4A;
  text-decoration: underline;
}


/* ================================================================
   8. トップページ固有セクション
   ================================================================ */

/* --- OUR CONCEPT セクション --- */
.concept-section {
  margin: 0 0 60px;
  padding: 0;
}
.concept-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

/* 画像グリッド */
.concept-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  perspective: 1200px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.concept-img {
  animation: conceptRotateY 6s ease-in-out infinite;
}
.concept-img:nth-child(2) { animation-delay: -2s; }
.concept-img:nth-child(3) { animation-delay: -4s; }

@keyframes conceptRotateY {
  0%   { transform: rotateY(0deg); }
  25%  { transform: rotateY(8deg); }
  50%  { transform: rotateY(0deg); }
  75%  { transform: rotateY(-8deg); }
  100% { transform: rotateY(0deg); }
}

.concept-img img,
.concept-img .dummy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.concept-img--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.concept-img--large img,
.concept-img--large .dummy-img {
  aspect-ratio: 3 / 4;
}
.concept-img--small img,
.concept-img--small .dummy-img {
  aspect-ratio: 4 / 3;
}

/* ダミー画像プレースホルダー */
.dummy-img {
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.dummy-img span {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}
.dummy-img--a { background: #C6E18E; }
.dummy-img--b { background: #D5E9E9; }
.dummy-img--c { background: #F4D9C5; }

/* テキスト */
.concept-text {
  flex: 1;
  order: 1; /* モバイル: テキストを画像の下に配置 */
}
.concept-images {
  order: -1; /* モバイル: 画像を上に配置 */
}
.concept-label {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #999;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.concept-heading {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
  margin: 0 0 20px;
}
.concept-heading span {
  color: #00B4D8;
}
.concept-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #1A3A4A;
  margin: 0 0 24px;
}
.concept-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.concept-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}
.concept-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #00B4D8;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  font-weight: bold;
}

/* --- 診療案内 セクション見出し --- */
.topPr-heading {
  text-align: center;
  margin-bottom: 24px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.topPr-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #00B4D8;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.topPr-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  letter-spacing: 3px;
  margin: 0;
}

/* --- 診療案内セクション全体 --- */
.topPr-section {
  background: #D4F1F9;
  padding: 30px 10px;
  margin: 0 0 40px;
  overflow: hidden;
  clear: both;
}

/* 左右レイアウト（モバイル: 縦並び） */
.topPr-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
}

/* 左: 写真 + テキスト */
.topPr-left {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.topPr-photo {
  flex: 1;
  overflow: hidden;
  border-radius: 6px;
  max-height: 250px;
}
.topPr-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dummy-img--pr-main {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: #b8d8e8;
  border-radius: 6px;
}
.topPr-lead {
  font-size: 16px;
  line-height: 1.9;
  color: #1A3A4A;
  margin-top: 20px;
}

/* 右: カードグリッド（モバイル: 1列） */
.topPr-cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 12px;
}

/* 個別カード */
.topPr-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
  padding: 18px 55px 15px 18px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.3s;
}
.topPr-card:hover {
  background: rgba(247, 238, 235, 0.9);
  opacity: 1;
}
.topPr-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1A3A4A;
  margin: 0 0 10px;
  line-height: 1.3;
}
.topPr-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #4A7A8A;
  margin: 0;
}
.topPr-card-arrow {
  position: absolute;
  bottom: 15px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #4A7A8A;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s;
}
.topPr-card:hover .topPr-card-arrow {
  background: #0077B6;
}

/* --- 院長紹介 + バナースペース --- */
.topDoctor-section {
  background: #EDF7FC;
  padding-top: 60px;
}
.topDoctor-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 0;
}
.topDoctor {
  flex: 1;
  min-width: 0;
  margin: 0;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.topDoctor-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topDoctor-img {
  flex-shrink: 0;
  width: 55%;
  max-width: 240px;
  margin: 15px auto 0;
  padding-left: 0;
}
.topDoctor-img img {
  width: 100%;
  height: auto;
  display: block;
}

.topDoctor-text {
  flex: 1;
  padding: 15px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.topDoctor-text h3 {
  font-size: 18px;
  color: #1A3A4A;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.3;
  padding-left: 0;
  background-image: none;
}
.topDoctor-text h3 span {
  display: block;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #90E0EF;
  letter-spacing: 2px;
  margin-top: 2px;
}

.topDoctor-name {
  margin: 15px 0;
  font-size: 14px;
  color: #1A3A4A;
  text-align: center;
}
.topDoctor-name .name {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-top: 2px;
  letter-spacing: 3px;
}

.topDoctor-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #1A3A4A;
  text-align: left;
}

.topDoctor-btn {
  margin-top: 20px;
  text-align: center;
}
.topDoctor-btn a {
  display: inline-block;
  background: #fff;
  color: #1A3A4A;
  border: 2px solid #1A3A4A;
  padding: 10px 25px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.topDoctor-btn a:hover {
  background: #1A3A4A;
  color: #fff;
  opacity: 1;
}

/* 緑枠ボックス */
.greenBox {
  border: 3px double #ddd;
  padding: 15px 20px;
  margin: 20px 0;
}


/* ================================================================
   9. サブページ固有セクション
   ================================================================ */

/* --- ページテキスト共通 --- */
.page-text {
  font-size: 16px;
  line-height: 1.8;
}
.page-text p {
  margin-bottom: 1.2em;
}
.page-text h3 {
  font-size: 18px;
  color: #1A3A4A;
  border-left: 4px solid #00B4D8;
  padding: 5px 0 5px 12px;
  margin: 20px 0 12px;
  line-height: 1.4;
}
.page-text h3:first-child {
  margin-top: 0;
}
.page-text h4 {
  font-size: 15px;
  color: #1A3A4A;
  font-weight: bold;
  margin: 20px 0 10px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}

/* --- 初診の方へ: 持ち物リスト --- */
.bring-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}
.bring-item {
  text-align: center;
  padding: 12px 15px;
  background: #E8F8FC;
  border-radius: 8px;
  font-weight: bold;
}

/* --- 初診の方へ: 注意事項ボックス --- */
.notice-box {
  background: #faf4e3;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 15px 20px;
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.7;
}

/* --- 初診の方へ: 診療フロー --- */
.flow-list {
  margin: 25px 0;
}
.flow-item {
  display: flex;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px dashed #ddd;
}
.flow-item:last-child {
  border-bottom: none;
}
.flow-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #00B4D8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
}
.flow-body {
  flex: 1;
}
.flow-body h4 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #1A3A4A;
  font-weight: bold;
}
.flow-body p {
  line-height: 1.8;
  font-size: 16px;
}

/* --- 診療科目: カード --- */
.treatment-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 25px 0;
  border-bottom: 1px dashed #ddd;
}
.treatment-card:last-child {
  border-bottom: none;
}
.treatment-card .card-icon {
  flex-shrink: 0;
  width: 60px;
}
.treatment-card .card-icon img {
  width: 60px;
  height: auto;
}
.treatment-card .card-body h4 {
  font-size: 18px;
  color: #1A3A4A;
  margin-bottom: 8px;
  font-weight: bold;
}
.treatment-card .card-body p {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 10px;
}
.card-link {
  display: inline-block;
  color: #00B4D8;
  font-weight: bold;
  font-size: 14px;
}
.card-link::after {
  content: " →";
}

/* --- 診療内容ページ（参考サイト風） --- */

/* ページ見出し（中央配置アイコン + タイトル） */
.med-page-title {
  text-align: center;
  padding: 30px 0 5px;
}
.med-page-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-bottom: 15px;
}
.med-page-title h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1A3A4A;
  letter-spacing: 3px;
  margin: 0;
}
.med-page-en {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #00B4D8;
  letter-spacing: 3px;
  margin-top: 6px;
}

/* コンテナ */
.med-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 15px 40px;
}

/* 各診療セクション */
.med-section {
  padding: 30px 0;
  border-bottom: 1px solid #D4F1F9;
}
.med-section:last-child {
  border-bottom: none;
}
.med-section-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* テキスト側 */
.med-text {
  flex: 1;
}
.med-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #1A3A4A;
  margin: 0 0 25px;
  letter-spacing: 2px;
}
.med-heading-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
}
.med-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #1A3A4A;
  margin-bottom: 1em;
}

/* 詳細ボタン */
.med-detail-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 24px;
  border: 2px solid #4A7A8A;
  border-radius: 30px;
  color: #1A3A4A;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.med-detail-btn span {
  margin-left: 6px;
  font-size: 16px;
}
.med-detail-btn:hover {
  background: #1A3A4A;
  border-color: #1A3A4A;
  color: #fff;
  opacity: 1;
}

/* 画像側（モバイル: 幅100%、上に配置） */
.med-image {
  width: 100%;
  flex-shrink: 0;
  order: -1;
}
.med-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.dummy-img--med {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #E8F8FC;
  border-radius: 6px;
}

/* --- 院内設備: 各設備アイテム --- */
.facility-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}
.facility-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 40px;
}
.facility-heading {
  font-size: 16px;
  font-weight: bold;
  color: #1A3A4A;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 3px solid #00B4D8;
}
.facility-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.facility-text {
  flex: 1;
}
.facility-text p {
  font-size: 16px;
  line-height: 1.9;
}
.facility-photo {
  width: 100%;
  flex-shrink: 0;
  order: -1;
}
.facility-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* --- 院長紹介: プロフィール --- */
.doctor-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 35px;
}
.doctor-photo {
  flex-shrink: 0;
  width: 160px;
}
.doctor-photo img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.doctor-info {
  flex: 1;
}

/* --- 院長紹介: 経歴テーブル --- */
.career-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 15px;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.career-table th {
  text-align: left;
  padding: 8px 15px 8px 0;
  font-weight: normal;
  color: #1A3A4A;
  white-space: nowrap;
  vertical-align: top;
  border-bottom: 1px dashed #ddd;
}
.career-table td {
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  vertical-align: top;
}

/* --- 院長紹介: 略歴・専門分野 2カラム → モバイルは1カラム --- */
.doctor-two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.doctor-two-col-item {
  flex: 1;
  min-width: 0;
}
.doctor-two-col-item h3 {
  margin-bottom: 10px;
}
.doctor-specialty-list {
  padding: 15px 0;
  line-height: 1.8;
  font-size: 15px;
}
.doctor-specialty-list p {
  margin-bottom: 15px;
}
.doctor-specialty-list strong {
  color: #1A3A4A;
  font-weight: bold;
}

/* --- アクセス: 医院情報レイアウト --- */
.access-info-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.access-info-text {
  flex: 1;
  min-width: 0;
}
.access-info-photo {
  width: 100%;
  flex-shrink: 0;
  order: -1;
}
.access-info-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* --- アクセス: 医院情報テーブル --- */
.access-table {
  width: 100%;
  font-size: 15px;
  margin: 15px 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.access-table th {
  text-align: left;
  padding: 10px 15px 10px 0;
  font-weight: bold;
  color: #1A3A4A;
  white-space: nowrap;
  vertical-align: top;
  width: 120px;
  border-bottom: 1px dashed #ddd;
}
.access-table td {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  vertical-align: top;
}

/* --- アクセス: 2カラム → モバイルは1カラム --- */
.access-two-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 30px 0;
}
.access-two-col-item {
  flex: 1;
  padding: 25px 30px;
}
.access-two-col-item + .access-two-col-item {
  border-top: 1px solid #ddd;
}
.access-two-col-heading {
  font-size: 18px;
  font-weight: bold;
  color: #00B4D8;
  margin-bottom: 12px;
}
.access-two-col-item p {
  font-size: 15px;
  line-height: 1.9;
}

/* --- アクセス: Google Map --- */
.map-container {
  width: 100%;
  margin: 20px 0;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 4px;
}


/* ================================================================
   10. サイドバー
   ================================================================ */
.sideWidget {
  margin-bottom: 20px;
}

/* サイドバー見出し */
.localHead {
  background: #90E0EF;
  color: #1A3A4A;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
}

/* 診療科目メニュー */
.side-menu {
  background: #fff;
}
.side-menu li {
  border-bottom: 1px dashed #ddd;
}
.side-menu li:last-child {
  border-bottom: none;
}
.side-menu a {
  display: block;
  padding: 15px 15px 12px 55px;
  font-size: 15px;
  color: #1A3A4A;
  background-image: url("../images/common/icon_create_sample_01.png");
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 35px auto;
  transition: background-color 0.2s;
}
.side-menu a:hover {
  background-color: #F0FBFE;
  opacity: 1;
}

/* クリニック情報ウィジェット */
.side-clinic-widget {
  background: #fff;
  padding: 15px;
  font-size: 13px;
  line-height: 1.7;
}
.side-clinic-widget .side-logo {
  display: block;
  margin-bottom: 15px;
}
.side-clinic-widget .side-logo img {
  max-width: 100%;
}
.side-clinic-widget strong {
  display: block;
  margin-top: 10px;
  margin-bottom: 3px;
}

/* サイドバー診療時間テーブル */
.side-schedule {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin: 10px 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.side-schedule th,
.side-schedule td {
  border: 1px solid #ddd;
  padding: 5px 3px;
  text-align: center;
}
.side-schedule thead th {
  background: #90E0EF;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}
.side-schedule .time-col {
  background: #D4F1F9;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  font-size: 12px;
}

.side-note {
  font-size: 12px;
  color: #1A3A4A;
  margin-top: 5px;
  line-height: 1.5;
}

.side-access-btn {
  display: block;
  margin-top: 15px;
  text-align: center;
}
.side-access-btn a {
  display: inline-block;
  border: 2px solid #0090AD;
  color: #0090AD;
  padding: 10px 30px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
}
.side-access-btn a:hover {
  background: #0090AD;
  color: #fff;
  opacity: 1;
}

/* 求人バナー */
.side-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}


/* ================================================================
   11. フッター
   ================================================================ */
#footer {
  background-color: #eaf5fc;
  padding: 25px 0 0;
  color: #1A3A4A;
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 160px;
  height: 160px;
  background: repeating-linear-gradient(
    -45deg,
    #90E0EF 0px,
    #90E0EF 4px,
    transparent 4px,
    transparent 12px
  );
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
#footer::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: repeating-linear-gradient(
    -45deg,
    #90E0EF 0px,
    #90E0EF 4px,
    transparent 4px,
    transparent 12px
  );
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
#footerInner {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}
/* あしらい：フッター下部ドットパターン */
#footerInner::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  background-image: radial-gradient(circle, #90E0EF 3px, transparent 3px);
  background-size: 16px 16px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
/* あしらい：フッター下部の水色ブロック */
#footerInner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-30%);
  width: 120px;
  height: 100px;
  background: #D4F1F9;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
  padding: 0 10px;
}

.foot-detail {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.foot-detail .left  { width: 100%; margin-bottom: 20px; }
.foot-detail .right { width: 100%; margin-bottom: 20px; }

/* フッター左: ロゴ + 情報 */
.foot-logo img {
  max-width: 200px;
  height: auto;
}
.foot-category {
  display: inline-block;
  background: #00B4D8;
  color: #fff;
  padding: 2px 12px;
  border-radius: 4px;
  font-size: 12px;
  margin: 10px 0 5px;
}
.foot-subjects {
  color: #0090AD;
  font-size: 14px;
  font-weight: bold;
}
.foot-address {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 10px;
}

/* フッター診療時間テーブル */
.foot-schedule {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 10px;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.foot-schedule th,
.foot-schedule td {
  padding: 6px 8px;
  text-align: center;
  border: 1px solid rgba(79, 59, 23, 0.2);
}
.foot-schedule thead th {
  font-weight: bold;
}
.foot-schedule .time-col {
  font-weight: bold;
  white-space: nowrap;
  text-align: left;
}
.foot-note {
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* フッター右: Google Map */
.foot-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 4px;
  margin-top: 10px;
}

/* フッター電話番号 */
.foot-tel {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 20px;
}
.foot-tel .tel-label {
  color: #0090AD;
  font-size: 14px;
  font-weight: bold;
}
.foot-tel .tel-number {
  font-size: 22px;
  font-weight: bold;
  color: #1A3A4A;
  letter-spacing: 2px;
}

/* フッターナビゲーション */
.foot-nav {
  background: #1A3A4A;
  padding: 36px 0 28px;
}
.foot-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 28px 48px;
  flex-wrap: wrap;
}
.foot-nav-group {
  min-width: 0;
}
.foot-nav-heading {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  position: relative;
  padding-left: 12px;
}
.foot-nav-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background: #00B4D8;
  border-radius: 2px;
}
.foot-nav-heading:hover {
  color: #80DFF0;
}
.foot-nav-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 12px;
}
.foot-nav-list li {
  margin-bottom: 2px;
}
.foot-nav-list li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  line-height: 1.9;
  transition: color 0.2s;
}
.foot-nav-list li a:hover {
  color: #80DFF0;
}

/* コピーライト */
#siteBottom {
  background: #142F3C;
  padding: 14px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.02em;
}


/* ================================================================
   12. 固定フッターバー（電話予約 / WEB予約）
   ================================================================ */
.fixed-footer-bar {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.fixed-footer-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  transition: opacity 0.3s, transform 0.2s;
  gap: 2px;
}
.fixed-footer-bar a:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.fixed-footer-bar .footer-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.fixed-footer-bar .footer-bar-icon svg {
  width: 22px;
  height: 22px;
}

.fixed-footer-bar .footer-bar-label {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
}

/* 電話ボタン（丸・白） */
.fixed-footer-bar .footer-tel {
  background: #fff;
  color: #555;
}

/* WEB予約ボタン（丸・ダークグレー） */
.fixed-footer-bar .footer-web {
  background: #555;
  color: #fff;
}


/* ================================================================
   13. ページトップボタン
   ================================================================ */
#back-top {
  position: fixed;
  bottom: 100px;
  right: 15px;
  z-index: 999;
}
#back-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #00B4D8;
  color: #fff;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}
#back-top a:hover {
  opacity: 1;
}


/* ================================================================
   14. レスポンシブ
   ================================================================ */

/* --------------------------------------------------
   14-1. タブレット（min-width: 768px）
   -------------------------------------------------- */
@media (min-width: 768px) {
  .innerBox { padding: 0 15px; }

  /* ヘッダー */
  #headerTop .innerBox { min-height: 56px; }
  #site-title {
    padding: 8px 0 8px 12px;
  }
  #site-title img { height: 36px; }
  .mobile-tel-btn {
    width: 56px;
    height: 56px;
  }
  .mobile-tel-btn svg { width: 22px; height: 22px; }
  .hamburger {
    width: 56px;
    height: 56px;
  }
  .hamburger-line { width: 22px; }

  /* サブページヒーロー */
  .subPagebkImg { height: 180px; }
  .subPagebkImg h2 { font-size: 22px; }

  /* コンテナ */
  #container { padding: 30px 15px 15px; }

  /* お知らせ + スケジュール */
  .topInfoSchedule { padding: 0 20px; }
  .topInfo-heading h3,
  .topSchedule-heading h3 {
    font-size: 22px;
    letter-spacing: 2px;
  }
  .topSchedule-table th,
  .topSchedule-table td { padding: 10px 12px; font-size: 14px; }

  /* CONCEPTセクション */
  .concept-heading { font-size: 22px; }

  /* 診療案内 */
  .topPr-section { padding: 40px 15px; }
  .topPr-heading { margin-bottom: 30px; }
  .topPr-title { font-size: 24px; }
  .topPr-cards { grid-template-columns: repeat(2, 1fr); }
  .topPr-card h3 { font-size: 18px; }

  /* 院長紹介 */
  .topDoctor-wrap { padding-left: 15px; padding-right: 15px; }
  .topDoctor-img { width: 60%; max-width: 280px; margin: 20px auto 0; }
  .topDoctor-text { padding: 20px 15px; }
  .topDoctor-text h3 { font-size: 20px; }
  .topDoctor-name .name { font-size: 20px; }

  /* ヒーロースライダー: SP縦長画像対応 */
  .hero-slider { max-height: none; }
  .hero-slide img { max-height: none; object-position: center center; aspect-ratio: 1280 / 1620; }
  .hero-text-overlay { align-items: center !important; padding-top: 5% !important; padding-left: 6% !important; }

  /* サブページ: 院内設備 */
  .facility-heading { font-size: 18px; }

  /* サブページ: 診療内容 */
  .med-page-title { padding: 30px 0 5px; }
  .med-page-title h2 { font-size: 22px; letter-spacing: 3px; }
  .med-page-icon { width: 56px; height: 56px; }
  .med-container { padding: 10px 15px 40px; }
  .med-section { padding: 30px 0; }
  .med-detail-btn { padding: 10px 24px; font-size: 14px; }

  /* テーブル: 横スクロール */
  .access-table,
  .topSchedule-table,
  .foot-schedule,
  .side-schedule,
  .career-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* フッター */
  #footer { padding: 40px 0 0; }
  #footerInner { padding: 0 15px; }
  .foot-logo img { max-width: 200px; }
  .foot-map iframe { height: 250px; }

  /* ページトップボタン */
  #back-top { bottom: 105px; right: 18px; }
  #back-top a { width: 64px; height: 64px; font-size: 18px; }
}


/* --------------------------------------------------
   14-2. デスクトップ（min-width: 1024px）
   -------------------------------------------------- */
@media (min-width: 1024px) {
  .innerBox { padding: 0 20px; }

  /* ヘッダー: 通常レイアウト（スティッキー解除） */
  .headerPosi {
    position: relative;
    box-shadow: none;
  }
  #headerTop .innerBox {
    min-height: auto;
  }

  /* ロゴ */
  #site-title {
    width: 300px;
    flex-shrink: 0;
    flex: initial;
    margin: 20px 0;
    padding: 0;
  }
  #site-title img {
    max-width: 100%;
    height: auto;
  }

  /* PC用電話・住所: 表示 */
  #header_image_top {
    display: block;
    margin: 15px 0 10px;
    text-align: right;
  }

  /* モバイル電話ボタン: 非表示 */
  .mobile-tel-btn {
    display: none;
  }

  /* ハンバーガー: 非表示 */
  .hamburger {
    display: none;
  }

  /* ナビゲーション: 常時表示・横並び */
  #headerTopNv {
    max-height: none;
    overflow: visible;
    transition: none;
  }
  #headerTopNv ul {
    flex-direction: row;
  }
  #headerTopNv li {
    width: 180px;
    border-bottom: none;
    border-right: 1px dotted rgba(255, 255, 255, 0.6);
  }
  #headerTopNv li:first-child {
    border-left: 1px dotted rgba(255, 255, 255, 0.6);
  }
  #headerTopNv a {
    padding: 20px 0;
    font-size: 15px;
    text-align: center;
    letter-spacing: 2px;
  }

  /* メインビジュアル */
  #topMainBnr {
    max-height: 560px;
  }
  .slideFrame img {
    max-height: 560px;
  }
  .bannerBox {
    display: block;
    position: absolute;
    top: 0;
    right: 110px;
    width: 1080px;
    pointer-events: none;
  }
  .centerring {
    display: block;
  }

  /* ヒーロースライダー: PC用 max-height */
  .hero-slider { max-height: 550px; }
  .hero-slide img { max-height: 550px; object-position: center center; }

  /* サブページヒーロー */
  .subPagebkImg { height: 300px; }
  .subPagebkImg h2 { font-size: 35.2px; }

  /* コンテナ */
  #container { padding: 50px 0 10px; }

  /* お知らせ + スケジュール: 横並び */
  .topInfoSchedule-wrap { padding: 50px 0 60px; }
  .topInfoSchedule {
    flex-direction: row;
    gap: 40px;
    padding: 0;
  }
  .topInfo { width: 50%; }
  .topSchedule { width: 50%; }
  .topInfo-heading h3,
  .topSchedule-heading h3 {
    font-size: 26px;
    letter-spacing: 3px;
  }
  .topInfo-list li { padding-left: 0; }
  .topSchedule-table th,
  .topSchedule-table td { padding: 12px 8px; font-size: 14px; }
  .topSchedule-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .topSchedule-sub {
    flex-direction: column;
    gap: 4px;
  }
  .topSchedule-table {
    display: table;
    overflow-x: visible;
  }

  /* CONCEPTセクション: 横並び */
  .concept-inner {
    flex-direction: row;
    gap: 40px;
  }
  .concept-text {
    order: 0;
  }
  .concept-images {
    order: 0;
    max-width: none;
  }
  .concept-heading { font-size: 26px; }
  .concept-desc { font-size: 15px; }
  .concept-features li { font-size: 15px; }

  /* 診療案内: 横並び */
  .topPr-section { padding: 60px 0; }
  .topPr-heading { margin-bottom: 40px; }
  .topPr-title { font-size: 28px; }
  .topPr-layout {
    flex-direction: row;
  }
  .topPr-left { width: 38%; }
  .topPr-photo { max-height: none; }
  .dummy-img--pr-main { min-height: 300px; }
  .topPr-lead { font-size: 15px; }
  .topPr-cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .topPr-card {
    padding: 25px 55px 20px 25px;
  }
  .topPr-card h3 { font-size: 22px; }
  .topPr-card p { font-size: 16px; }

  /* 院長紹介: フル幅1カラム */
  .topDoctor-wrap {
    max-width: 1280px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 80px;
  }
  .topDoctor-inner {
    flex-direction: row;
  }
  .topDoctor-img {
    width: 35%;
    max-width: none;
    margin: 0;
    padding-left: 30px;
  }
  .topDoctor-text {
    padding: 35px;
    text-align: left;
  }
  .topDoctor-text h3 {
    font-size: 28px;
    padding-left: 35px;
    background-image: url("../images/common/icon_create_sample_01.png");
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: 28px auto;
  }
  .topDoctor-name { text-align: left; }
  .topDoctor-name .name { font-size: 24px; }
  .topDoctor-btn a {
    padding: 12px 40px;
    font-size: 14px;
  }

  /* サブページ: ページテキスト */
  .page-text { font-size: 16px; }
  .page-text h3 { font-size: 20px; margin: 40px 0 20px; }
  .page-text h4 { font-size: 17px; }

  /* 初診: 持ち物リスト 横並び */
  .bring-list { flex-direction: row; gap: 20px; }
  .bring-item { padding: 15px 25px; }

  /* 診療フロー */
  .flow-item { gap: 20px; padding: 20px 0; }
  .flow-num { width: 55px; height: 55px; font-size: 20px; }
  .flow-body h4 { font-size: 16px; }

  /* 診療科目カード: 横並び */
  .treatment-card { flex-direction: row; gap: 20px; }
  .treatment-card .card-icon { width: 80px; }
  .treatment-card .card-icon img { width: 80px; }

  /* 診療内容ページ */
  .med-page-title { padding: 50px 0 10px; }
  .med-page-title h2 { font-size: 28px; letter-spacing: 5px; }
  .med-page-icon { width: 70px; height: 70px; }
  .med-container { padding: 20px 0 60px; }
  .med-section { padding: 50px 0; }
  .med-section-inner {
    flex-direction: row;
    gap: 40px;
  }
  .med-image {
    width: 340px;
    order: 0;
  }
  .med-heading { font-size: 26px; letter-spacing: 3px; }
  .med-heading-icon { width: 44px; height: 44px; }
  .med-detail-btn { padding: 12px 30px; font-size: 14px; }

  /* 院内設備 */
  .facility-item { margin-bottom: 40px; padding-bottom: 40px; }
  .facility-heading { font-size: 20px; }
  .facility-inner {
    flex-direction: row;
  }
  .facility-photo {
    width: 340px;
    order: 0;
  }

  /* 院長プロフィール */
  .doctor-profile { flex-direction: row; align-items: flex-start; }
  .doctor-photo { width: 200px; }

  /* 略歴・専門分野 2カラム */
  .doctor-two-col {
    flex-direction: row;
    gap: 40px;
  }

  /* アクセス: 横並び */
  .access-info-layout {
    flex-direction: row;
  }
  .access-info-photo {
    width: 300px;
    order: 0;
  }
  .access-two-col {
    flex-direction: row;
  }
  .access-two-col-item + .access-two-col-item {
    border-top: none;
  }

  /* テーブル: 通常表示 */
  .access-table,
  .foot-schedule,
  .side-schedule,
  .career-table {
    display: table;
    overflow-x: visible;
  }

  /* サイドバー */
  .side-menu a { padding: 20px 22px 15px 60px; }

  /* フッター */
  #footer { padding: 100px 0 0; }
  #footerInner { padding: 0; }
  .foot-detail {
    flex-direction: row;
  }
  .foot-detail .left  { width: 50%; margin-bottom: 0; }
  .foot-detail .right { width: 50%; margin-bottom: 0; }
  .foot-logo img { max-width: 250px; }
  .foot-map iframe { height: 300px; }
  .foot-tel .tel-number { font-size: 28px; }

  /* 固定サイドボタン: PC時 */
  .fixed-footer-bar {
    bottom: 30px;
    right: 25px;
    gap: 12px;
  }
  .fixed-footer-bar a {
    width: 70px;
    height: 70px;
    gap: 3px;
  }
  .fixed-footer-bar .footer-bar-icon svg {
    width: 24px;
    height: 24px;
  }
  .fixed-footer-bar .footer-bar-label {
    font-size: 12px;
  }

  /* ページトップボタン */
  #back-top { bottom: 110px; right: 28px; }
  #back-top a { width: 70px; height: 70px; font-size: 20px; }
}
