/*==================================================================================================================================

  *基本フォント設定

==================================================================================================================================*/
body {
  font-size: 16px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #444;
  background: #fff;
  letter-spacing: 0;
  line-height: 1.75;
}

/* モバイルファースト設計 */
@media (min-width: 768px) {

  /* タブレット以上のサイズ設定 */
  body {
    font-size: 18px;
    /* 文字サイズを大きく */
  }

  .container {
    max-width: 1200px;
    /* コンテンツの幅制限 */
    margin: 0 auto;
    /* 中央揃え */
  }
}

@media (min-width: 1024px) {

  /* デスクトップ用 */
  body {
    font-size: 20px;
  }
}

/*==================================================================================================================================

  *基本設定

==================================================================================================================================*/

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* 横幅を中央揃え */
  padding: 0 20px;
  text-align: center;
}

img {
  max-width: 100%;
  /* 親要素に合わせて画像を縮小 */
  height: auto;
  /* アスペクト比を維持 */
}

h1,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.2;
  color: #1A3651;
  font-family: 'Zen Maru Gothic', sans-serif;
}

h2 {
  font-weight: bold;
  line-height: 1.5;
  font-family: 'Zen Maru Gothic', sans-serif;
  text-align: center;
  color: #444;
}

.title_span {
  font-size: 4rem;
  font-weight: 500;
  color: #ECA64F;
  font-family: 'Zen Maru Gothic', sans-serif;
}

@media (max-width: 768px){
.title_span {
  font-size: 2.5rem;
}
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

/* PCだけで改行 */
.pc-br {
  display: block;
}

@media (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

/* PCでは改行しない */
.sp-br {
  display: none;
}

/* モバイルだけ改行させる */
@media (max-width: 768px) {
  .sp-br {
    display: block;
  }
}


/* ボタンデザイン */
.button {
  text-align: right;
  /* これがポイント */
  margin-top: 20px;
}

.button a {
  text-decoration: none;
  color: #1A3651;
  font-size: 18px;
  display: inline-block;
  position: relative;
  padding: 10px 30px 10px 30px;
  font-family: 'Zen Maru Gothic', sans-serif;
  background-color: #ECA64F;
  border-radius: 50px;
}

.button .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  right: 0;
}

.button a:hover .arrow {
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .button {
    margin-top: 30px;
    text-align: center;
  }
}

.button a {
  font-size: 16px;
  padding-right: 20px;
}

/* モバイルファースト */
@media (min-width: 768px) {
  .container {
    max-width: 960px;
    /* 中画面の最大幅 */
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
    /* 大画面の最大幅 */
  }
}

/*==================================================================================================================================

  *メイン画像

==================================================================================================================================*/
/* ベーススタイル */
.main-image {
  padding: 0
}

.main-image img {
  width: 100%;
  /* 画像の幅を親要素に合わせる */
  height: auto;
  /* 画像の高さを自動調整 */
  margin-top: 100px;
}

/* デスクトップ版画像（初期設定：表示） */
.desktop-image {
  display: block;
}

/* モバイル版画像（初期設定：非表示） */
.mobile-image {
  display: none;
}

/* モバイルサイズ用スタイル */
@media only screen and (max-width: 767px) {

  /* モバイル版画像を表示 */
  .mobile-image {
    display: block;
  }

  /* デスクトップ版画像を非表示 */
  .desktop-image {
    display: none;
  }

  .main-image img {
  margin-top: 0px;
}
}

/* デスクトップ版のメディアクエリ（767px以上） */
@media only screen and (min-width: 768px) {

  /* デスクトップ版画像を表示 */
  .desktop-image {
    display: block;
  }

  /* モバイル版画像を非表示 */
  .mobile-image {
    display: none;
  }
}

/*==================================================================================================================================

  *新着情報

==================================================================================================================================*/
.news-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.news-title {
  text-align: left;
  margin-bottom: 30px;
}

.news-title h2 {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #ECA64F;
  font-weight: bold;
  margin-bottom: 5px;
  font-family: 'Zen Maru Gothic', sans-serif;
  text-align: left;
}

.news-title p {
  font-size: 17px;
  color: #1A3651;
  font-family: 'Zen Maru Gothic', sans-serif;
  margin-left: 20px;
  font-weight: bold;
}

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

.news-list li {
  margin-bottom: 20px;
}

.news-list li a {
  display: flex;
  gap: 20px;
  text-decoration: none;
  color: #3a362d;
  font-size: 15px;
  line-height: 1.8;
  transition: background-color 0.2s;
  padding: 10px;
  border-radius: 4px;
}

.news-list li a:hover {
  background-color: #f5f5f5;
}

.news-list .date {
  white-space: nowrap;
  min-width: 100px;
  color: #888;
  font-size: 14px;
}


@media screen and (max-width: 768px) {
  .news-section {
    padding: 30px 15px;
  }

  .news-title {
    text-align: center;
  }

  .news-title h2 {
    font-size: 28px;
    text-align: center;
  }

  .news-title p {
    font-size: 13px;
    margin-left: 0px;
  }

  .news-list li a {
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    padding: 12px;
  }

  .news-list .date {
    font-size: 13px;
    min-width: auto;
    color: #666;
  }
}

/*==================================================================================================================================

  *発熱・かぜ症状の患者さんへ

==================================================================================================================================*/
.info-block {
  max-width: 1200px;
  background-color: #F5F5F7;
  /* 背景色を淡いブルー */
  padding: 50px;
  border-radius: 10px;
  margin: 50px auto;
  /* 横方向を自動で中央に寄せる */
  text-align: left;
  /* テキストを左寄せに設定（必要に応じて） */
}

.info-block h2 {
  font-size: 1.8rem;
  color: #E34C3A;
  /* 見出しの色 */
  margin-bottom: 10px;
  text-align: center;
}

.info-content {
  margin-top: 30px;
  text-align: center;
}

.info-block .info-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 10px 0;
}

.contact-info {
  padding-top: 20px;
  margin-top: 20px;
  font-size: 1.5rem;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.button-container {
  display: flex;
  justify-content: center;
  /* ボタンを中央に配置 */
  gap: 20px;
  /* ボタン間に20pxの隙間を追加 */
  margin-top: 20px;
}

.button-container a {
  font-size: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 20px 40px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

.phone-btn {
  background-color: #B5CB5D;
  /* 電話予約ボタンの色 */
}

.phone-btn:hover {
  background-color: #bac786;
  /* ホバー時 */
}

.web-btn {
  background-color: #1A3651;
  /* WEB予約ボタンの色 */
}

.web-btn:hover {
  background-color: #6a8399;
  /* ホバー時 */
}

@media screen and (max-width: 768px) {
  .info-block {
  padding: 30px 20px;
  border-radius: 10px;
  margin: 50px auto;
  text-align: left;
}

.info-block h2 {
  font-size: 1.4rem;
  text-align: center;
}

.info-block .info-content p {
  text-align: left;
}

  .button-container{
    flex-direction: column;
    align-items: center;  /* 中央寄せ */
    gap: 12px;
  }
  .btn{
    display: block;
    width: min(320px, 100%); /* 幅を揃えて中央 */
    margin: 0 auto;
    padding: 10px 30px;
  }
}

/*==================================================================================================================================

  *山形の皆様に「かわぞえ嶋北泌尿器科内科クリニック」が選ばれる理由

==================================================================================================================================*/

.sec_top.sec07 {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.sec07_bg {
  background-color: #fff;
  padding: 20px 0;
  margin-top: 20px;
}

.container_wd {
  width: 100%;
}

.feature_box {
  background: linear-gradient(to bottom, #fff 40%, #ECA64F 40%);
  /* 上半分が#f6f8fb、下半分が白 */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.sec_no {
  font-size: 1.2rem;
  color: #1A3651;
  font-weight: bold;
  text-align: left;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.sec_title {
  font-size: 1.8rem;
  color: #444;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.sec_text {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin: 50px 0px 15px 0px;
  text-align: left;
}

.sec_span {
  color: #E34C3A;
  font-family: 'Zen Maru Gothic', sans-serif;
}

/* 画像とテキストを横並びにする */
.img_text_container {
  display: flex;
  align-items: center;
  /* 垂直方向に中央揃え */
  gap: 20px;
  /* 画像とテキストの間にスペースを追加 */
}

.img_left {
  flex: 0 0 40%;
  /* 画像の幅を40%に設定 */
}

.text_right {
  flex: 1;
  /* 残りのスペースをテキストに割り当て */
}

.img_left img {
  width: 100%;
  /* 画像がボックスにフィット */
  border-radius: 8px;
}

/* ボタンデザイン */
.button-f {
  text-align: right;
  /* これがポイント */
  margin-top: 20px;
}

.button-f a {
  text-decoration: none;
  color: #1A3651;
  font-size: 18px;
  display: inline-block;
  position: relative;
  padding: 10px 30px 10px 30px;
  font-family: 'Zen Maru Gothic', sans-serif;
  background-color: #fff;
  border-radius: 50px;
}

.button-f .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  right: 0;
}

.button-f a:hover .arrow {
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .button-f {
    margin-top: 30px;
    text-align: center;
  }
}


/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .img_text_container {
    flex-direction: column;
    /* スマホでは縦並びに変更 */
  }

  .img_left,
  .text_right {
    width: 100%;
    /* 画像とテキストを100%に調整 */
  }

  .sec_title {
    font-size: 1.5rem;
    /* 小さい画面で文字サイズを調整 */
  }

  .sec_text {
    font-size: 0.95rem;
    /* 小さい画面でテキストを調整 */
  }
}

/*==================================================================================================================================

  *診療案内

==================================================================================================================================*/
/* ===== 設定色 ===== */
:root {
  --accent: #ECA64F;
  /* 見出し・ボタンの赤み */
  --accent-light: #f7e7cf;
  /* ストライプの薄赤 */
  --text: #333;
  --muted: #777;
  --border: #e9e9e9;
}

/* セクション背景（上部ストライプ） */
.svc-guide {
  position: relative;
  padding: 50px 0 70px;
  background: #fff;
}

.svc-guide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 140px;
  background:
    repeating-linear-gradient(-45deg,
      var(--accent-light) 0,
      var(--accent-light) 6px,
      transparent 6px,
      transparent 18px);
  opacity: .6;
  pointer-events: none;
}

.svc-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 2カラム */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
}

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

/* カード */
.svc-card {}

/* 画像＋ラベル */
.svc-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.svc-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.svc-label {
  position: absolute;
  left: 20px;
  bottom: -18px;
  /* 画像から少しはみ出す */
  display: inline-block;
  background: #fff;
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
  border: 1px solid var(--border);
  font-size: clamp(18px, 2vw, 22px);
  font-family: 'Zen Maru Gothic', sans-serif;
}

/* 本文 */
.svc-body {
  margin-top: 32px;
  color: var(--text);
  line-height: 1.9;
  font-size: 16px;
}

.svc-body p {
  margin: 0;
}

/* CTAボタン（丸枠） */
.svc-cta {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
  /* 右寄せ */
}

.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: 10px 26px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: .2s ease;
}

.svc-btn .arrow {
  font-size: 1.1em;
  transform: translateY(1px);
}

.svc-btn:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 900px) {
  .svc-cta {
    justify-content: center;
  }
}

/*==================================================================================================================================

  *お悩みから探す

==================================================================================================================================*/
/* ===== 色などのトークン ===== */
:root {
  --finder-accent: #1A3651;
  /* タブ/文字の赤 */
  --finder-accent-weak: #e9b8b1;
  /* 薄い赤（ボーダー/装飾） */
  --finder-line: #1A3651;
  /* 下線 */
  --finder-pill-bg: #f6f8fb;
  /* ピル背景 */
  --finder-text: #333;
}

/* セクション外枠 */
.finder-block {
  padding: 40px 0 24px;
  background: #fff;
  margin-bottom: 50px;
}

.finder-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.finder-title {
  position: absolute;
  left: -9999px;
}

/* 視覚非表示（見出しを出すなら消す） */

/* タブ */
.finder-tabs {
  position: relative;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--finder-line);
  /* 下の赤ライン */
  padding-bottom: 10px;
}

.finder-tab {
  appearance: none;
  border: 1px solid var(--finder-accent);
  border-bottom: none;
  background: #fff;
  color: var(--finder-accent);
  padding: 12px 28px;
  border-radius: 14px 14px 0 0;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: .2s ease;
}

.finder-tab.is-active {
  background: var(--finder-accent);
  color: #fff;
  transform: translateY(1px);
  /* ラインに少し重ねる */
}

.finder-tab:hover {
  filter: brightness(0.98);
}

/* パネル */
.finder-panels {
  margin-top: 18px;
}

.finder-panel.is-active {
  animation: fadeIn .18s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ピルのグリッド */
.finder-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
}

@media (max-width: 980px) {
  .finder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .finder-grid {
    grid-template-columns: 1fr;
  }
}

/* ピル（カード） */
.finder-pill {
  display: grid;
  place-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--finder-accent);
  background: var(--finder-pill-bg);
  border: 1px solid #eef0f4;
  border-radius: 28px;
  min-height: 84px;
  padding: 18px 20px;
  font-weight: 700;
  letter-spacing: .06em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .04);
  transition: box-shadow .2s ease, transform .06s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.finder-pill:hover {
  background: #fff;
  border-color: var(--finder-accent-weak);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .06);
}

/*==================================================================================================================================

  *PICKUP診療

==================================================================================================================================*/
/* ===== カラートークン（調整はここだけでOK） ===== */
:root {
  --pickup-blue: #B5CB5D;
  /* 主アクセント（見出し/ボタン系） */
  --pickup-blue-deep: #8B9C47;
  /* 濃いオリーブ系 */
  --pickup-blue-soft: #D9E58A;
  /* 淡いオリーブ */
  --pickup-border: #D0E17B;
  /* カードの枠色 */
  --pickup-bg: #f6f8fb;
  /* セクション薄背景 */
  --pickup-ribbon: #A0B74E;
  /* 下帯の濃色（写真下の帯イメージ） */
  --text-main: #444;
  --text-muted: #6a6f77;
}

/* ===== セクション ===== */
.pickup {
  background: linear-gradient(to bottom, var(--pickup-bg) 0 70%, var(--pickup-ribbon) 70% 100%);
  padding: 36px 0 90px;
  /* 下を広めに（丸ピルのスペース） */
}

.pickup__inner {
  max-width: 1300px;
  margin: 20px auto;
  padding: 0 24px;
}

/* 2カラム */
.pickup__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 980px) {
  .pickup__grid {
    grid-template-columns: 1fr;
  }
}

/* 左：写真 */
.pickup__media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.pickup__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右：カード */
.pickup__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--pickup-border);
  border-radius: 14px;
  padding: 28px 28px 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

/* カードの装飾ライン（上左右に細線） */
.pickup__card::before,
.pickup__card::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 22%;
  height: 0;
  border-top: 1px solid var(--pickup-blue-soft);
}

.pickup__card::before {
  left: 18px;
}

.pickup__card::after {
  right: 18px;
}

.pickup__eyebrow {
  color: var(--pickup-blue);
  font-weight: 700;
  letter-spacing: .06em;
  margin: 20px 0 10px;
  font-size: clamp(14px, 1.4vw, 16px);
  text-align: center;
}

.pickup__title {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  margin: 0 0 14px;
  color: var(--text-main);
  font-weight: 800;
  text-align: center;
}

.pickup__lead {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 15.5px;
}

/* ===== 丸ピル（5つ） ===== */
.pickup__pills {
  max-width: 1000px;
  list-style: none;
  margin: 28px auto 0;
  /* 上下のマージンと左右中央寄せ */
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  justify-content: center;
  /* 中央揃え */
}

@media (max-width: 1100px) {
  .pickup__pills {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .pickup__pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===== 丸ピル（5つ） ===== */
.pill {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  /* 正方形 */
  border-radius: 50%;
  /* 丸型 */
  text-decoration: none;
  text-align: center;
  padding: 12px;
  color: #fff;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.3;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .85),
    /* 内側の白い線（幅を2pxに） */
    0 10px 22px rgba(0, 0, 0, .28);
  /* 外側の影 */
  border: 5px solid rgba(255, 255, 255, .45);
  /* さらに外側に薄い白い枠線 */
  transition: transform .08s ease, box-shadow .2s ease, filter .2s ease;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, .88),
    /* 内側の白い線 */
    0 14px 26px rgba(0, 0, 0, .22);
  /* 外側の影 */
  filter: brightness(1.03);
}

.pill a {
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
}

/* 交互に色を変更 */
/* 交互に色を変更 */
.pill:nth-child(odd) {
  background: linear-gradient(135deg, #1E4C75 0%, #1F4A78 100%);
  /* より強い青系グラデーション */
}

.pill:nth-child(even) {
  background: linear-gradient(135deg, #E9D45D 20%, #D2C03B 80%);
  /* 黄色系を少し強調 */
}

/* 文字サイズ調整（円内での見栄え） */
.pill {
  font-size: clamp(14px, 1.5vw, 20px);
  /* 最小14px、最大20px、画面幅によって1.5vwで変動 */
}

/*==================================================================================================================================

  *院長からの挨拶

==================================================================================================================================*/

.greeting-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px 60px 120px;
  flex-wrap: wrap;
  gap: 40px;
}

.greeting-image {
  flex: 1;
  max-width: 400px;
}

.greeting-image img {
  width: 100%;
  height: auto;
}

.greeting-content {
  flex: 2;
  color: #333;
  font-family: 'Noto Serif', serif;
}

.greeting-content h2 {
  font-size: 32px;
  color: #666;
  margin-bottom: 10px;
  position: relative;
  font-weight: bold;
}

.greeting-content h2 .en-title {
  font-size: 4rem;
  color: #ECA64F;
  letter-spacing: 4px;
  display: block;
  margin-top: 5px;
  font-weight: 500;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.greeting-content h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  margin: 30px 0;
  color: #666;
}

.greeting-content .name {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  border: 2px solid #333;
  padding: 5px 10px;
  margin-top: 10px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.greeting-content .sign {
  font-size: 24px;
  margin-top: 5px;
  display: block;
  color: #888;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.greeting-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-top: 20px;
}

/* 院長挨拶モバイル */
@media screen and (max-width: 768px) {
  .greeting-image {
    order: 2;
  }

  .greeting-content {
    order: 1;
  }

  .greeting-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .greeting-image,
  .greeting-content {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .greeting-content h2 .en-title {
    font-size: 36px;
  }

  .greeting-content h3 {
    font-size: 22px;
    text-align: left;
  }

  .greeting-content p {
    font-size: 15px;
    text-align: left;
  }

  .greeting-content .name {
    font-size: 18px;
  }

  .greeting-content .sign {
    font-size: 20px;
  }
}

/*==================================================================================================================================

  *アクセス

==================================================================================================================================*/

.access-section {
  background-color: #f6f8fb;
  padding: 60px 20px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

.access-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.access-info {
  flex: 1;
  min-width: 300px;
}

.address {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 30px 0;
}

.train-access .access-label {
  display: flex;
  align-items: center;
  background-color: #ECA64F;
  color: white;
  padding: 8px 12px;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

.train-access .access-label img {
  width: 20px;
  margin-right: 8px;
}

.train-access ul {
  padding-left: 1.2em;
  color: #444;
}

.train-access li {
  margin-bottom: 8px;
  font-size: 15px;
}

.access-map {
  flex: 1;
  min-width: 300px;
  display: flex;
  margin-top: 100px;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .access-inner {
    flex-direction: column;
  }

  .access-title {
    font-size: 48px;
    text-align: center;
  }

  .access-info,
  .access-map {
    width: 100%;
  }

  .access-map {
    margin-top: 0px;
  }

  .train-access .access-label {
    justify-content: center;
  }
}

/*==================================================================================================================================

  *PHOTO GALLERY

==================================================================================================================================*/

.photo-gallery {
  background-color: rgba(245, 242, 227, 0.95);
  padding: 60px 40px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

.gallery-header .ttlh2 {
  position: relative;
  font-size: 4rem;
  color: #ECA64F;
  margin: 0;
  display: inline-block;
  line-height: 1.2;
  padding-left: 30px;
  z-index: 1;
  font-weight: 500;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.gallery-header .ttlh2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  background-image: url(../images/gallerybg.png);
  z-index: -1;
}

.gallery-header p {
  font-size: 1.5rem;
  color: #1A3651;
  margin: 4px 0 20px;
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.gallery-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-main {
  position: relative;
  width: 56%;
  aspect-ratio: 16 / 10;
  background: #fff;
  overflow: hidden;
}

.gallery-main img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-main img.show {
  opacity: 1;
  z-index: 1;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  flex: 1;
  max-width: 400px;
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s, border 0.3s;
  border: 2px solid transparent;
}

.gallery-thumbs img.active {
  opacity: 1;
  /* border-color: #a3825c; */
  border-color: #7D87A6;

}

@media (max-width: 768px){
  .gallery-header .ttlh2 {
  font-size: 3rem;
}
}


/*==================================================================================================================================

  *フッター

==================================================================================================================================*/
/* フッター全体 */
.footer {
  background-color: #f9f9f9; /* 背景色 */
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #333;
}

/* ロゴ部分 */
.footer-top {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 400px;
  margin: 40px 0;
}

/* 予約リンク（電話・WEB）を2カラムで配置 */
.footer-reservation {
  display: flex;
  justify-content: center; /* ボタンを中央に配置 */
  gap: 40px; /* 予約リンク間の間隔を調整 */
  margin-bottom: 30px; /* 下の余白 */
}

.footer-button {
  padding: 12px 26px;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  background-color: transparent;
  border: 2px solid; /* 枠線を追加 */
  transition: all 0.3s ease;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.phone-button {
  border-color: #B5CB5D; /* 枠線に青色 */
  color: #B5CB5D; /* 文字色も青 */
}

.web-button {
  border-color: #1A3651; /* 枠線に緑色 */
  color: #1A3651; /* 文字色も緑 */
}

/* ホバー時のスタイル（枠線色と文字色を変化） */
.footer-button:hover {
  background-color: rgba(0, 0, 0, 0.05); /* ホバー時に薄い背景色 */
  border-color: #1c6d9f; /* 青色に変化 */
  color: #1c6d9f; /* 文字色を青色に */
}


/* フッターのコンテナ */
.footer-container {
  width: 70%; /* 幅を指定 */
  margin: 0 auto; /* 自動で左右のマージンを均等にして中央に配置 */
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* 左側の情報（住所、電話、診療時間） */
.footer-left {
  width: 45%;
}

.footer-phone, .footer-address, .footer-hours {
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 1rem;
  color: #666;
}

/* 右側のメニューリンク */
.footer-right {
  width: 47%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 60px;
}

/* 2カラム化 */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2カラム */
  column-gap: 24px;  /* 列間 */
  row-gap: 10px;     /* 行間 */
}

.footer-menu li {
  margin: 0; /* gapで管理するのでリセット */
}

.footer-menu a {
  text-decoration: none;
  color: #666;
  display: inline-block; /* クリック領域安定 */
}

.footer-menu a:hover {
  color: #ECA64F;
}

/* スマホで1カラム */
@media (max-width: 768px) {
  .footer-menu {
    grid-template-columns: 1fr;
  }

}

/* コピーライト部分 */
.footer-bottom {
  width: 100%; /* 横幅いっぱいに表示 */
  text-align: center;
  padding: 10px;
  background-color: #ECA64F;
  font-size: 0.9rem;
  color: #fff;
}

.footer-bottom p {
  font-family: 'Zen Maru Gothic', sans-serif;
  margin-bottom: 0;
}

/* 診療時間表のデザイン */
.footer-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.footer-hours-table th, .footer-hours-table td {
  padding: 12px;
  text-align: center;
  border: 1px solid #dfe6f0;
  font-size: 1rem;
  color: #666;
}

.footer-hours-table th {
  background-color: #ECA64F;
  font-weight: bold;
}

.footer-hours-table td {
  background-color: #ffffff;
}

.footer-hours-table td.footer-closed {
  background-color: #f6f8fb;
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
  color: #6a5032;
}

/* 横に並ぶ曜日と診療時間を整える */
.footer-hours-table td,
.footer-hours-table th {
  min-width: 50px;
}
/* ====== モバイル対応 ====== */
@media (max-width: 768px){

  /* ロゴ・ボタン周り */
  .footer-top{ margin-bottom: 22px; }
  .footer-logo img{ width: 300px; margin: 24px 0; }

  .footer-reservation{
    flex-direction: column;        /* 縦並び */
    align-items: center;           /* 中央寄せ */
    gap: 12px;
    margin-bottom: 22px;
  }
  .footer-button{
    width: min(300px, 100%);       /* 幅を揃えてタップしやすく */
    padding: 14px 18px;
    font-size: 1.1rem;
    border-radius: 9999px;         /* 丸 pill っぽく */
  }

  /* コンテナは縦積み・幅広めに */
  .footer-container{
    width: 92%;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 22px;
  }

  /* 左カラム（住所・表） */
  .footer-left{
    width: 100%;
    text-align: center;
  }
  .footer-left p{ font-size: 0.95rem; }

  /* 診療時間表：横スクロールできるように */
  .footer-hours-table{
    display: block;                /* テーブルをブロック化してスクロール可に */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;           /* 折返し防止 */
    margin-top: 14px;
    border: 1px solid #dfe6f0;     /* スクロール時も枠が見えるように */
  }
  .footer-hours-table table{ width: 100%; } /* 念のため */
  .footer-hours-table th,
  .footer-hours-table td{
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  /* 右カラム（メニュー） */
  .footer-right{ width:100%; align-items:center; margin-top: 0; }
  .footer-menu{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important; /* 2カラム固定 */
    column-gap: 16px;
    row-gap: 12px;
    text-align: center;
  }
  .footer-menu a{
    display: block;            /* クリック範囲を広く */
    padding: 8px 6px;
    font-size: 1rem;
    line-height: 1.4;
  }

  /* コピーライトの余白・文字サイズ */
  .footer-bottom{
    padding: 12px;
    font-size: 0.85rem;
  }
}

/*==================================================================================================================================

  *固定CTAラッパー

==================================================================================================================================*/
.fixed-cta {
  position: fixed;
  bottom: 20px; /* 画面下部に配置 */
  right: 20px;  /* 画面右端に配置 */
  display: flex;
  gap: 10px; /* ボタン間隔を少し広げる */
  z-index: 9999;
  flex-wrap: nowrap; /* ボタンが折り返さないように設定 */
  justify-content: flex-end; /* 右端に配置 */
}

/* 各ボタン共通スタイル */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px; /* アイコンとテキストの間隔を少し広げる */
  padding: 12px 18px; /* 横長にするためにパディングを調整 */
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
  border: 2px solid;
  white-space: nowrap; /* テキストを改行させない */
  overflow: hidden; /* ボタン内のテキストが長い場合に隠れる */
  text-overflow: ellipsis; /* 長いテキストは「...」で切り捨て */
}

/* アイコン */
.cta-btn i {
  font-size: 1.3em; /* アイコンサイズ調整 */
}

/* 電話ボタン */
.cta-tel {
  color: #B5CB5D; /* 文字色変更 */
  border-color: #B5CB5D; /* ボーダー色変更 */
}
.cta-tel:hover {
  background: #B5CB5D;
  color: #fff;
}

/* WEB予約ボタン */
.cta-web {
  color: #1A3651; /* 文字色変更 */
  border-color: #1A3651; /* ボーダー色変更 */
}
.cta-web:hover {
  background: #1A3651;
  color: #fff;
}

/* TOPボタン（正方形の〇囲み） */
.cta-top {
  color: #fff;
  border-color: #ECA64F; /* ボーダー色変更 */
  background-color: #ECA64F; /* 背景色変更 */
  border-radius: 50%; /* 〇形にする */
  width: 55px; /* サイズを少し小さく */
  height: 55px; /* サイズを少し小さく */
  font-size: 1rem; /* アイコンサイズ調整 */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* 上段に表示しないように */
}

.cta-top:hover {
  background-color: #f8c77a; /* 背景色をさらに薄く */
  border-color: #f8c77a; /* ボーダー色をさらに薄く */
}

/* スマホ対応 */
@media (max-width: 768px) {
  .fixed-cta {
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    background: #fff;
    padding: 8px;
    justify-content: space-between; /* 左端と右端に配置 */
  }

  .cta-btn {
    width: 48%; /* 電話とWEB予約ボタンを横並びにする */
    padding: 12px 0;
    font-size: 0.8rem; /* フォントサイズを調整 */
    text-align: center;
  }

  .cta-btn span {
    display: block;
    text-align: center;
  }

  .cta-top {
    position: absolute;
    top: -55px; /* TOPボタンを少し上に配置 */
    right: 20px; /* 右端に配置 */
    width: 55px;
    height: 55px;
    font-size: 1rem; /* アイコンサイズ調整 */
  }
}

/* PC版 */
@media (min-width: 769px) {
  .fixed-cta {
    bottom: 20px;
    left: 0;
    width: auto;
    justify-content: flex-end; /* 右端に配置 */
    gap: 15px; /* ボタン間隔を調整 */
  }

  .cta-btn {
    width: auto; /* ボタンの幅を自動調整 */
    padding: 15px 25px; /* ボタンを大きく */
    font-size: 1.2rem; /* フォントサイズ調整 */
  }

  .cta-top {
    width: 70px; /* サイズを大きく */
    height: 70px; /* サイズを大きく */
    font-size: 1.2rem; /* アイコンサイズ調整 */
    position: relative; /* 上段に表示しないように */
  }
}

.dx-content {
  max-width: 1200px;
  background-color: #f0e68c4d;
  padding: 20px;
  margin: 20px auto;
  border-radius: 8px;
}

.dx-section-header {
  color: #000080;
  font-size: 1.5em;
  text-align: left;
  margin: 40px 0 20px;
}

.dx-content p {
  padding: 10px 20px;
}

.dx-content li {
  padding: 0 20px;
  font-size: 0.8em;
}

/* スマホ対応 */
@media (max-width: 768px) {

.dx-section-header {
  font-size: 1.2em;
}

.dx-content p {
  padding: 5px;
}

.dx-content li {
  padding: 5px;
}
}