/*===============================
schedule
================================*/
@media screen and (min-width: 768px) {
}
/* ::::: 当院について ::::: */
#schedule {
}
#schedule .schedule-section {
 padding: 60px 0;
 background: #fff;
}
@media screen and (min-width: 768px) {
 #schedule .schedule-section {
  padding: 100px 0;
  background: #fff;
 }
}
#schedule .schedule-header {
 border-bottom: 3px solid #d6a59c;
 margin-bottom: 40px;
}
#schedule .schedule-heading {
 display: flex;
 align-items: center;
 gap: 10px;
 font-family: "Noto Sans JP", "Helvetica Neue", sans-serif;
 font-size: clamp(1.2rem, 2.4vw, 2.4rem);
 font-weight: 700;
 color: #333;
}
#schedule .schedule-icon {
 width: 25px;
 height: 25px;
}
@media screen and (min-width: 768px) {
 #schedule .schedule-icon {
  width: 28px;
  height: 28px;
 }
}
/* --- 2カラム --- */
#schedule .schedule-flex {
 display: flex;
 gap: 48px;
 align-items: flex-start;
}

#schedule .schedule-photo {
 width: 50%;
 margin: 0;
}
#schedule .schedule-photo img {
 width: 100%;
 height: auto;
 display: block;
 border-radius: 6px;
}

#schedule .schedule-text {
 flex: 1;
 font-size: 1rem;
 line-height: 1.8;
 color: #333;
}
@media screen and (min-width: 768px) {
 #schedule .schedule-text {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
 }
}
#schedule .schedule-text p {
 margin: 0 0 1.8em;
}

#schedule .schedule-subheading {
 font-size: 1rem;
 font-weight: 700;
 color: #cc3366;
 margin: 2.8em 0 0.8em;
}
#schedule .schedule-list {
 list-style: disc;
 margin: 0 0 0 1.2em;
 padding: 0;
}
#schedule .schedule-list li {
 margin: 0 0 0.8em;
}

/* --- スマホ --- */
@media (max-width: 768px) {
 #schedule .schedule-section {
  padding: 70px 0;
 }
 #schedule .schedule-flex {
  flex-direction: column;
  gap: 32px;
 }
 #schedule .schedule-photo {
  flex: 0 0 auto;
  width: 100%;
 }
 #schedule .schedule-subheading {
  margin: 2em 0 0.8em;
 }
}
/* ========================
   診療時間表（スケジュール）
   ======================== */

#schedule .schedule-timetable {
 font-family: "Noto Sans JP", sans-serif;
 font-size: 0.95rem;
 line-height: 1.6;
 margin-top: 40px;
}

#schedule .schedule-block {
 margin-bottom: 60px;
}

#schedule .schedule-time-label {
 background: #ffcfd2;
 color: #333;
 font-weight: bold;
 font-size: 1.2rem;
 text-align: center;
 padding: 12px 0;
 border-radius: 6px;
 margin-bottom: 24px;
}

#schedule .schedule-tables {
 display: flex;
 flex-wrap: wrap;
 gap: 30px;
 justify-content: space-between;
}

#schedule .schedule-table {
 width: 100%;
 max-width: 300px;
 border-collapse: collapse;
 background: #fff;
 border: 1px solid #ccc;
 box-shadow: 0 0 4px rgba(0, 0, 0, 0.06);
}

#schedule .schedule-table thead th {
 background: #d4edc3;
 color: #333;
 font-weight: bold;
 text-align: center;
 padding: 12px;
 font-size: 1rem;
 border: 1px solid #ccc;
}

#schedule .schedule-table tbody td {
 border: 1px solid #ccc;
 padding: 10px;
 text-align: center;
 vertical-align: middle;
 background-color: #fff;
 color: #333;
}

#schedule .schedule-table td.closed {
 background-color: #f2f2f2;
 color: #888;
 font-style: italic;
}

/* 備考欄 */
#schedule .schedule-notes {
 margin-top: 40px;
 font-size: 0.85rem;
 color: #555;
}

#schedule .schedule-notes p {
 margin: 5px 0;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
 #schedule .schedule-tables {
  flex-direction: column;
  gap: 24px;
 }

 #schedule .schedule-table {
  max-width: 100%;
 }

 #schedule .schedule-time-label {
  font-size: 1.1rem;
  padding: 10px 0;
 }
}
