@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap');
/* ---------------------------------------------------------
common
----------------------------------------------------------*/
*{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;/* 10px */
  height: -webkit-fill-available;
}
body {
  background-color: #fff;
  color: #030303;
  font-size: 1.6rem;/* 14px */
  line-height: 1.5;
  font-family: 'Noto Sans JP', 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  overflow-wrap: break-word;
/*  word-break : break-all;*/
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
a {
  text-decoration: none;
  color: #3f3b3a;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.wrapper {
  width: 100%;
  min-width: 28rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.header-inner {
  max-width: 120rem;
  margin: 0 auto;
}
.inner {
  width: 90%;
  max-width: 120rem;
  margin: 0 auto;
}
img {
  width: 100%;
}

/* ---------------------------------------------------------
header
----------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(255,255,255,1);
}
/* スクロール後に追加されるクラス */
header.is-scrolled {
  background-color: rgba(255,255,255,0.7); /* 半透明 */
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
h1 {
  font-weight: normal;
  font-size: 1em;
  margin-bottom: 10px;
  margin-left: 5px;
}
.header-left img {
  width: 90%;
  max-width: 40rem;
}
.header-right-contents {
  display: flex;
  flex-direction: column;
}
.header-right-contents p:nth-of-type(1) {
  background-color: #5b9f8d;
  color: #fff;
  padding: 0.5rem;
  width: 100%;
  border-radius: 9999px;
  margin: 0 auto;
  text-align: center;
}
.header-right-contents p:nth-of-type(2) {
  font-weight: bold;
  font-size: 2em;
  letter-spacing: 1.8;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}
/* メニューナビ設定 */
.nav-logo {
  display: flex;
  padding: 0 0 0 1rem;
  align-items: center;
  height: 65px;
  background-color: #fff;
}
.nav-logo img {
  width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-nav {
  position: fixed;
  z-index: 9000;
  top: 0;
  right: -120%; /* 初期状態で右外に隠す */
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transition: all 0.8s ease;
}

/* ソートされた状態のクラス */
.menu-nav.panelactive {
  right: 0; /* メニューが表示される */
}

/* メニューリストの縦スクロール設定 */
.menu-nav.panelactive .menu-nav-list {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  overflow: auto;
}

/* メニューリストスタイル */
.menu-nav-list >  ul {
  width: 100%;
  position: absolute;
  z-index: 9000;
  top: 0;
}
.menu-nav-list a {
  color: #333333;
  text-decoration: none;
  padding: 2rem;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.5rem;
  border-top: solid 0.1rem #5B9F8D;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
.menu-nav-list li:last-of-type {
  border-bottom: solid 0.1rem #5B9F8D;
}
/* ボタン設定 */
.ob-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5b9f8d;
  height: 65px;
  width: 65px;
}
.openbtn {
  position: relative;
  z-index: 9999;
  cursor: pointer;
  width: 20px;
  height: 45px;
  margin: 0 auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

/* ハンバーガーボタンの状態 */
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #fff;
  width: 100%;
}
.openbtn span:nth-of-type(1) { top: 1.2rem; }
.openbtn span:nth-of-type(2) { top: 2rem; }
.openbtn span:nth-of-type(3) { top: 2.8rem; }

/* アクティブ状態の変化 */
.openbtn.active span:nth-of-type(1) {
  top: 1.8rem;
  transform: translateY(6px) rotate(-45deg);
  background-color: #5b9f8d;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 3rem;
  transform: translateY(-6px) rotate(45deg);
  background-color: #5b9f8d;
}
/* ---------------------------------------------------------
main
----------------------------------------------------------*/
/*button*/
/* ---------------------------------------------------------
固定トップに戻るボタン（画像のデザインに合わせた版）
----------------------------------------------------------*/
/* トップに戻るボタン本体 */
.button-top {
  width: 4.5rem;
  height: 4.5rem;
  background-color: #5B9F8D; /* 緑の背景 */
  border-radius: 15%;

  border: 3px solid #ffffff; /* 白い枠（内側） */
  box-shadow: 0 0 0 3px #5B9F8D; /* 外側の緑枠を追加 */

  position: fixed;
  right: 1.5rem;
  bottom: 6rem;
  z-index: 999;

  cursor: pointer;
  opacity: 0;
  visibility: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: opacity .3s ease, visibility .3s ease;
}

/* 中の白い上向き三角 */
.button-top::before {
  content: "";
  width: 0;
  height: 0;

  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 14px solid #ffffff;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 表示 */
.button-top.active {
  opacity: 1;
  visibility: visible;
}

.button-top:hover {
  opacity: 0.8;
}

.fv {
  margin-bottom: 2rem;
}
article {
  padding: 3.5rem 0;
}
article h2 {
  color: #5b9f8d;
  text-align: center;
  font-weight: bold;
  font-size: 1.6em;
  position: relative;
  margin-bottom: 4rem;
}
article h2::before {
  content: '';
  background-color: #fea21e;
  width: 5%;
  min-width: 40px;
  height: 3px;
  position: absolute;
  bottom: -7.5px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1em;
}
/*top-service*/
.top-service-wrap {
  text-align: center;
}
.top-service-wrap section {
  padding: 3rem 2rem;
  border-top: solid 5px #5b9f8d;
  border-radius: 1em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.icon {
  margin: 0 auto 10px;
  background-color: #e8f4f1;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.icon i {
  font-size: 30px;
  color: #5b9f8d;
}
.top-service-wrap section h3 {
  color: #000;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 2rem;
}
.top-service-wrap section p {
  color: #555;
}
/*top-news*/
.top-news {
  background-color: #f8f9fa;
}
.top-news-wrap {
  border-radius: 1em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}
.top-news-wrap section {
  padding: 2rem;
  background-color: #fff;
}
.top-news-wrap section:not(:last-of-type) {
  border-bottom: solid 1px #e1e0e0;
}
.top-news-wrap h3 {
  font-size: 1.2em;
  margin-bottom: 0.5rem;
}
.top-news-wrap section p {
  color: #555;
}
.top-news-wrap section p.date {
  padding: 5px;
  background-color: #5b9f8d;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 9999px;
  width: 100px;
  margin-bottom: 1rem;
}
.to-news a {
  border: solid 2px #5b9f8d;
  padding: 2rem;
  display: block;
  text-align: center;
  border-radius: 9999px;
  font-size: 1.1em;
  font-weight: bold;
  color: #5b9f8d;
  background-color: #fff;
  max-width: 200px;
  margin: 0 auto;
}
/*top-guide*/
.top-guide .top-service-wrap section {
  border-top: none;
  background-color: #fff;
}
.top-guide .top-service-wrap > p {
  margin-bottom: 2rem;
}
.top-guide i {
  color: #5B9F8D;
  font-size: 30px;
  margin-bottom: 10px;
}

/*top-calendar*/
.top-calendar {
  background-color: #f8f9fa;
}
.top-calendar-wrap {
  padding: 2rem 1rem;
  background-color: #fff;
}
.top-calendar-wrap > div {
  border-radius: 1em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  margin: 0 auto;
  max-width: 780px;
}
.calendar-box {
  max-width: 780px;
  margin: 0 auto 30px ;
  width: 100%;
}
.month {
  font-weight: bold;
  color: #fff;
  position: relative;
  background-color: #7ba886;
  padding: 10px;
  text-align: center;
}
.last-month-wrap {
  position: absolute;
  top: 0;
  left: 0;
}
.next-month-wrap {
  position: absolute;
  top: 0;
  right: 0;
}
.calendar-table {
  font-size: 14px;
  width: 100%;
  margin-bottom: 10px;
}
.calendar-table th {
  background-color: #e8f0ed;
  border: solid 2px #a2b3a1;
  padding: 10px 0;
}
.calendar-table th:nth-of-type(1) {
  border-left: #a2b3a1 solid 2px;
}
.calendar-table th:last-of-type {
  border-right: #a2b3a1 solid 2px;
}
.calendar-table td {
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  border: solid 2px #a2b3a1;
}
.regular-item {
  background-color: #c8e6c9;
}
.closed-item {
  background-color: #f5f5f5;
}
.reserve-item {
  background-color: #fff9c4;
}
.other-months {
  opacity: 0.3;
}
.calendar-color ul {
  padding-left: 20px;
  padding-bottom: 10px;
}
.calendar-color li {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: bold;
  white-space: nowrap;
  font-size: min(1em,3vw);
}
.calendar-color li::before {
  content: '';
  width: 25px;
  height: 18px;
  border: solid 0.5px #d5d5d5;
  background-color: #c8e6c9;
  position: relative;
  display: inline-block;
  margin-right: 5px;
}
.calendar-color li.closed-cc::before {
  background-color: #f5f5f5;
}
.calendar-color li.reserve-cc::before {
  background-color: #fff9c4;
}

.content {
  display: block;
}

.hidden {
  display: none;
}
.t-button {
  font-size: 0.8em;
}
.t-button:hover {
  opacity: 0.7;
}
.last-month-wrap .t-button {
  display: block;
  border-radius: 0.3em;
  padding: 5px 10px;
  background-color: #62866b;
  color: #fff;
  position: relative;
  top: 5px;
  left: 15px;
  cursor:pointer;
}
.last-month {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5px;
  font-size: 1.2em;
}
.last-month i {
padding-top: 2px;
}
.next-month {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5px;
  font-size: 1.2em;
}
.next-month i {
padding-top: 2px;
}
.next-month-wrap .t-button {
  display: block;
  border-radius: 0.3em;
  padding: 5px 10px;
  background-color: #62866b;
  color: #fff;
  position: relative;
  top: 5px;
  right: 15px;
  cursor:pointer;
}
/*top-access*/
article.top-access {
  padding-bottom: 0;
}
.access-map-iframe {
  width: 100%;
  aspect-ratio: 5 / 3;
}
.access-map-iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.top-access dt {
  padding: 5px;
  background-color: #5b9f8d;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 9999px;
  width: 100px;
  letter-spacing: 0.1em;
}
.top-access dd {
  padding-left: 5px;
  margin-bottom: 15px;
}
/*top-time*/
/* ============================
   ▼ テーブル全体共通
============================ */
.clinic-time-table,
.clinic-time-table-sp {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 14px;
}

.clinic-time-table th,
.clinic-time-table td,
.clinic-time-table-sp th,
.clinic-time-table-sp td {
  padding: 12px 0;
  border: 1px solid #d1dcd3;
  vertical-align: middle;
}

/* ============================
   ▼ 1行目（見出し行）
   PC：曜日行
   SP：時間帯行
============================ */
.table-head-row th:nth-of-type(1),
.table-head-row .day {
  background-color: #6aa39a; /* ←後で調整OK */
  color: #fff;
  font-weight: bold;
}
.table-head-row th:nth-of-type(1) {
  padding: 0;
}

/* ============================
   ▼ 左側の時間帯セル（PC） SP：時間帯行
============================ */
.time-cell,.table-head-row th {
  background-color: #fff; /* ←後で調整OK */
  font-weight: bold;
}

/* ============================
   ▼ SP 版 左列（曜日セル）
============================ */
.clinic-time-table-sp .day {
  background-color: #6aa39a; /* PC と統一 */
  font-weight: bold;
  color: #fff;
}

/* ============================
   ▼ 診療内容（PC / SP 共通）
============================ */

/* 訪問診療 */
.home-visit {
  background-color: #f4faf8;
  color: #416b33;
  font-weight: bold;
}

/* 一般外来 */
.general {
  background-color: #fffaf5;
  color: #996b40;
  font-weight: bold;
}

/* 予約制外来 */
.reserved {
  background-color: #fff9e6;
  color: #8b7500;
  font-weight: bold;
}

/* 休診 */
.closed {
  background-color:#f5f5f5;
}
.time-ul {
  margin-top: 2rem;
}
.time-ul li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.5rem;
}

.en-link a {
  display: block;
  background-color: #4a7f76;
  color: #fff;
  border-radius: 1em;
  padding: 1.5rem 2rem;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  max-width: 200px;
  margin: 3rem auto 0;
}
.en-p div {
  border-radius: 0.5em;
  max-width: 600px;
  margin: 0 auto;
}
.en-p {
  padding: 4rem 1rem;
  background-color: #e8f0ed;
}
.top-en {
  line-height: 2;
}
/* ---------------------------------------------------------
footer
----------------------------------------------------------*/
footer {
  color: #3f3b3a;
}
.footer-inner {
  max-width: 134rem;
  margin: 0 auto;
}
.footer-address {
  background-color: #f8f9fa;
  text-align: center;
  padding: 3rem 0;
}
.fadd-p {
  font-size: 0.75em;
  margin-bottom: 1rem;
}
.footer-contact {
  background-color: #fff;
  padding: 3rem 1rem;
  width: 100%;
  margin: 2rem auto 0;
}
.footer-contact > p {
  background-color: #5b9f8d;
  color: #fff;
  padding: 0.5rem;
  width: 40%;
  border-radius: 9999px;
  margin: 0 auto 2rem;
}
.footer-contact div {
  font-weight: bold;
  font-size: 1.5em;
}
.footer-nav {
  background-color: #5b9f8d;
  margin-bottom: 2rem;
  padding: 1.5rem;
}
.footer-nav a {
  color: #fff;
}
.copyright {
  text-align: center;
  padding-bottom: 9rem;
  line-height: 2;
}
.copyright-link,.copyright-link2 {
  color: #3f3b3a;
  position: relative;
}
.copyright-link::after,.copyright-link2::after {
  content: '';
  position: absolute;
  top: 1.5em;
  left: 0;
  width: 100%;
  height: 0.5px;
  background-color: #3f3b3a;
}
@media not screen and (max-width:769px) {
  .only-sp {
    display: none;
  }
  a[href^="tel:"]{
    pointer-events: none;
  }
  /*header*/
  .header-inner {
    padding: 1rem;
  }
  .header-left {
    width: 55%;
  }
  .header-left img {
    max-width: 60rem;
  }
  .header-nav {
    background-color: #5b9f8d;
  }
  .header-nav a {
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    display: block;
    font-size: 1.25em;
    font-weight: bold;
  }
  .header-nav a:hover {
    background-color: #fea21e;
    opacity: 1;
  }
  .header-nav ul {
    display: flex;
  }
  .header-nav li {
    flex: 1;
  }
  .inner {
    width: 75%;
  }
  /*main*/
  article {
    padding: 4.5rem 0;
  }
  article h2 {
    font-size: 3.6rem;
  }
  .top-service-wrap {
    display: flex;
    gap: 20px;
  }
  /*top-guide*/
  .top-guide {
    position: relative;
    background-image: url(../img/top-guide-bg.jpeg);
    background-size: cover;
  }

  /* 白の薄いオーバーレイ */
  .top-guide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5); /* ← 透明度で調整 */
    z-index: 1;
  }

  /* 中のコンテンツを前面に */
  .top-guide > * {
    position: relative;
    z-index: 2;
  }
  .top-guide .top-service-wrap {
    display: block;
  }
  .top-service-item {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 1行目は3等分 */
    grid-auto-rows: auto;
    gap: 20px;
  }

  /* 1〜3 → 1行目 */
  .top-service-item section:nth-child(1) { grid-column: 1/3; grid-row: 1; }
  .top-service-item section:nth-child(2) { grid-column: 3/5; grid-row: 1; }
  .top-service-item section:nth-child(3) { grid-column: 5/7; grid-row: 1; }
  .top-service-item section:nth-child(4) { grid-column: 2/4; grid-row: 2; }
  .top-service-item section:nth-child(5) { grid-column: 4/6; grid-row: 2; }

  /*top-access*/
  .top-access-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .top-access-wrap > div {
    flex: 1;
  }
  /*top-calendar*/
  .calendar-color ul {
    display: flex;
    gap: 5%;
    padding-left: 0;
    justify-content: center;
  }
  .clinic-time-table {
    table-layout: fixed;
    white-space: nowrap;
  }
  .clinic-time-table tr th:nth-of-type(1) {
    min-width: 110px;
  }
  .clinic-img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
  .fadd-p {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  .fadd-add {
    font-size: 2.2rem;
  }
  .footer-contact {
    width: 75%;
  }
  .footer-logo {
    max-width: 650px;
    margin: 0 auto;
  }
  .footer-contact div {
    display: flex;
    justify-content: center;
    gap: 5%;
  }
  .footer-nav ul {
    display: flex;
    justify-content: center;
  }
  .footer-nav a {
    display: block;
    padding: 0 1rem;
    position: relative;
  }
  .footer-nav a::after {
    position: absolute;
    content: '';
    width: 0.5px;
    height: 100%;
    background-color: #fff;
    top: 0;
    right: 0;
    opacity: 0.5;
  }

  /* 最後の li だけ線を消す */
  .footer-nav li:last-child a::after {
    display: none;
  }
  .copyright {
    padding-bottom: 5rem;
  }

  #time-toggle-btn2 {
    font-family: 'M+PLUS Rounded 1c', 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    position: fixed;
    top: 40%;
    right: 10px;
    width: 70px;
    height: 200px;
    background: #5b9f8d;
    color: #fff;
    font-size: 1.6rem;
    padding: 1rem 0;
    border: none;
    text-align: center;
    z-index: 1000;
    border: 3px solid #ffffff; /* 白い枠（内側） */
    box-shadow: 0 0 0 3px #5B9F8D; /* 外側の緑枠を追加 */
    border-radius: 1em;
  }
  #time-toggle-btn2 .button-wrap > div {
    display: flex;
    flex-direction: column; /* アイコンと文字を縦に */
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  #time-toggle-btn2 .button-wrap p {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2rem;
  }
  /* ▼ スライドパネル（最初は画面の右外へ） */
/* 右から出てくるパネル（ボタンと同じ高さあたり） */
.slide-panel2 {
  position: fixed;
  right: -800px;          /* まずは画面の外（幅300px＋余白くらい） */
  top: 40%;               /* ボタンと同じ 40% に */
  width: 650px;           /* パネルの横幅はお好みで調整 */
  height: auto;           /* ★縦いっぱいにしない */
  background: #fff;
  box-shadow: -3px 0 10px rgba(0,0,0,0.2);
  z-index: 999;
  border-radius: 0.5em;
  transition: right 0.35s ease-out;
  padding: 5px;
  overflow-y: auto;
}
.slide-panel2 .clinic-time-table td{
  font-size:12px;
}
.slide-panel2 .clinic-time-table th{
  font-size:12px;
}
.slide-panel2 .clinic-time-table tr th:nth-of-type(1) {
    min-width: 110px;
  }
/* 表示状態（ボタンのすぐ左に出てくるイメージ）*/
.slide-panel2.active {
  right: 90px; /* ボタンの right:10px ＋ ボタン幅70px ＋余白10px くらい */
}

  .button-wrap img {
    width: 25px;
  }
}
@media screen and (max-width:769px) {
  .only-pc {
    display: none;
  }
  /*header*/
  .header-left div {
    padding: 0 0 0 1rem;
  }
  .header-left img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /*main*/
  /*top-service*/
  .top-service-wrap section {
    margin-bottom: 2rem;
  }
  /*top-calendar*/
  .calendar-color li {
    margin-bottom: 5px;
  }
  /*top-access*/
  .access-map-iframe {
    margin-bottom: 2rem;
  }
  .access-dl dl {
    display: flex;
    margin-bottom: 20px;
    gap: 2.5px;
  }
  .top-access dt {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
  }
  .access-dl dd {
    margin-top: 5px;
  }
  .footer-nav li:not(:last-of-type) {
    margin-bottom: 1em;
  }
  .footer-nav ul {
    text-align: center;
  }
  #time-toggle-btn {
    font-family: 'M+PLUS Rounded 1c', 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #5b9f8d;
    color: #fff;
    font-size: 1.6rem;
    padding: 1rem 0;
    border: none;
    text-align: center;
    z-index: 1000;
    border-top: 3px solid #ffffff; /* 白い枠（内側） */
    box-shadow: 0 0 0 3px #5B9F8D; /* 外側の緑枠を追加 */
  }
  /* ▼ スライドパネル（最初は非表示） */
  .slide-panel {
    position: fixed;
    left: 0;
    bottom: -100%;
    width: 100%;
    background: #fff;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.35s ease-out;
    padding: 15px;
    overflow-y: auto;
    max-height: 80vh;
  }

  /* ▼ 開いた状態 */
  .slide-panel.active {
    bottom: 50px; /* ボタンの高さ分だけ上に */
  }
  .button-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .button-wrap img {
    width: 25px;
  }
  .clinic-img img {
    margin: 20px 0;
  }
}