.elementor-841 .elementor-element.elementor-element-c687b60{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-505ff32 *//* 診療時間テーブル全体 */
.clinic-hours {
  font-family: "M PLUS Rounded 1c", "Yu Gothic", "Hiragino Kaku Gothic ProN",
               system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               sans-serif;
  color: #333;
  max-width: 100%;
}

/* テーブルベース */
.clinic-hours__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;          /* 列幅を揃えてスッキリ見せる */
  font-size: 14px;
  background: #fff;
}

/* 上の横線 */
.clinic-hours__table thead tr:first-child th {
  border-bottom: 1px solid #d3d3d3;
}

/* 全セルのボーダー（下線のみ） */
.clinic-hours__table th,
.clinic-hours__table td {
  border-bottom: 1px solid #e1e1e1;
  padding: 10px 8px;
  text-align: center;
  font-weight: 400;
}

/* 左端の「診療時間」ラベル・時間列だけ左寄せ */
.clinic-hours__label,
.clinic-hours__time {
  text-align: left;
}

/* 見出し行（曜日） */
.clinic-hours__table thead th {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding-top: 6px;
  padding-bottom: 6px;
}

/* 左端の「診療時間」ラベル */
.clinic-hours__label {
  font-weight: 500;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* 時間帯のセル（1列目のth） */
.clinic-hours__time {
  font-weight: 500;
  white-space: nowrap;
}

/* ◯ や － の見た目を少し上品に */
.clinic-hours__table td {
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* 備考 */
.clinic-hours__note {
  margin-top: 6px;
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

/* -------- PC時：1列目と日祝列の幅調整 -------- */

/* 1列目（診療時間の列）を広めに */
.clinic-hours__table th.clinic-hours__label,
.clinic-hours__table th.clinic-hours__time,
.clinic-hours__table td:first-child {
  width: 140px;
}

/* 日・祝（最後の列）も少し広く */
.clinic-hours__table th:last-child,
.clinic-hours__table td:last-child {
  width: 80px;
}

/* ===========================
   レスポンシブ（スライドさせない・曜日は横書き）
   =========================== */

/* タブレット〜小さいスマホ */
@media screen and (max-width: 768px) {

  .clinic-hours__table {
    font-size: 12px;
    table-layout: fixed;        /* 小さい画面でも列幅を詰める */
  }

  .clinic-hours__table th,
  .clinic-hours__table td {
    padding: 6px 3px;           /* 余白をタイトに */
  }

  .clinic-hours__table td {
    font-size: 11px;
    letter-spacing: 0.04em;     /* 文字間も少し詰める */
  }

  .clinic-hours__note {
    font-size: 11px;
    line-height: 1.4;
  }

  /* 1列目の幅を少しだけ縮める */
  .clinic-hours__table th.clinic-hours__label,
  .clinic-hours__table th.clinic-hours__time,
  .clinic-hours__table td:first-child {
    width: 110px;
  }

  /* 日・祝（最後の列）も少し詰める */
  .clinic-hours__table th:last-child,
  .clinic-hours__table td:last-child {
    width: 60px;
  }

  /* ★ 曜日は横書き固定（傾かないよう念のため指定） */
  .clinic-hours__table thead th {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    letter-spacing: 0.08em;
  }
}

/* さらに小さい端末（〜480px）向けにもう少し圧縮 */
@media screen and (max-width: 480px) {

  .clinic-hours__table {
    font-size: 11px;
  }

  .clinic-hours__table th,
  .clinic-hours__table td {
    padding: 4px 2px;
  }

  .clinic-hours__table td {
    font-size: 10px;
  }

  .clinic-hours__note {
    font-size: 10px;
  }

  /* 1列目をさらに少しだけ縮める */
  .clinic-hours__table th.clinic-hours__label,
  .clinic-hours__table th.clinic-hours__time,
  .clinic-hours__table td:first-child {
    width: 100px;
  }

  /* 日祝列もさらに詰める */
  .clinic-hours__table th:last-child,
  .clinic-hours__table td:last-child {
    width: 50px;
  }
}/* End custom CSS */