/* ========================================
   Table system
======================================== */
:root {
  --table-border: #cbd8e1;
  --table-head-bg: #eef2f5;
  --table-row-head-bg: #f4f8fb;
  --table-alt-bg: #fafafa;
  --table-closed-bg: #f1f3f5;
  --table-head-text: #1f4f63;
  --table-muted-text: #999;
}

/* ========================================
   Common table wrap
======================================== */
.c-table-wrap,
.p-reception-table-wrap,
.p-schedule-table-wrap,
.p-doctor-schedule-wrap,
.p-monthly-doctor-table-wrap,
.c-horizontal-scroll {
  position: relative;
  width: 100%;
  max-width: 850px;
  margin: 24px auto 0;
}

.c-table-wrap,
.p-reception-table-wrap,
.p-schedule-table-wrap,
.p-doctor-schedule-wrap,
.p-monthly-doctor-table-wrap,
.c-horizontal-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ========================================
   Common table base
======================================== */
.c-table,
.p-reception-table,
.p-schedule-table,
.p-doctor-schedule,
.p-monthly-doctor-table,
.p-news-single__content table,
.p-news-single__body table,
.p-monthly-doctor__content table {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--table-border);
  background: #fff;
  color: var(--color-text, #333);
  font-size: 1rem;
}

.c-table caption,
.p-reception-table caption,
.p-schedule-table caption,
.p-schedule-table__caption,
.p-doctor-schedule caption,
.p-monthly-doctor-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.c-table th,
.c-table td,
.p-reception-table th,
.p-reception-table td,
.p-schedule-table th,
.p-schedule-table td,
.p-doctor-schedule th,
.p-doctor-schedule td,
.p-monthly-doctor-table th,
.p-monthly-doctor-table td,
.p-news-single__content table th,
.p-news-single__content table td,
.p-news-single__body table th,
.p-news-single__body table td,
.p-monthly-doctor__content table th,
.p-monthly-doctor__content table td {
  padding: 18px 14px;
  border-right: 1px solid var(--table-border);
  border-bottom: 1px solid var(--table-border);
  color: var(--color-text, #333);
  font-size: 1rem;
  line-height: 1.65;
  vertical-align: middle;
}

.c-table tr > *:last-child,
.p-reception-table tr > *:last-child,
.p-schedule-table tr > *:last-child,
.p-doctor-schedule tr > *:last-child,
.p-monthly-doctor-table tr > *:last-child,
.p-news-single__content table tr > *:last-child,
.p-news-single__body table tr > *:last-child,
.p-monthly-doctor__content table tr > *:last-child {
  border-right: 0;
}

.c-table tbody tr:last-child > *,
.p-reception-table tbody tr:last-child > *,
.p-schedule-table tbody tr:last-child > *,
.p-doctor-schedule tbody tr:last-child > *,
.p-monthly-doctor-table tbody tr:last-child > *,
.p-news-single__content table tr:last-child > *,
.p-news-single__body table tr:last-child > *,
.p-monthly-doctor__content table tr:last-child > * {
  border-bottom: 0;
}

.c-table thead th,
.p-reception-table thead th,
.p-schedule-table thead th,
.p-doctor-schedule thead th,
.p-monthly-doctor-table thead th,
.p-news-single__content table thead th,
.p-news-single__body table thead th,
.p-monthly-doctor__content table thead th {
  background: var(--table-head-bg);
  color: var(--color-text, #333);
  font-weight: 800;
  text-align: center;
}

.c-table tbody th,
.p-reception-table tbody th,
.p-schedule-table tbody th,
.p-doctor-schedule tbody th,
.p-monthly-doctor-table tbody th,
.p-news-single__content table tbody th,
.p-news-single__body table tbody th,
.p-monthly-doctor__content table tbody th {
  background: var(--table-row-head-bg);
  color: var(--table-head-text);
  font-weight: 800;
}

.c-table tbody td,
.p-reception-table tbody td,
.p-schedule-table tbody td,
.p-doctor-schedule tbody td,
.p-monthly-doctor-table tbody td,
.p-news-single__content table tbody td,
.p-news-single__body table tbody td,
.p-monthly-doctor__content table tbody td {
  background: #fff;
}

.c-table tbody tr:nth-child(even) td,
.p-reception-table tbody tr:nth-child(even) td,
.p-doctor-schedule tbody tr:nth-child(even) td,
.p-monthly-doctor-table tbody tr:nth-child(even) td,
.p-news-single__content table tbody tr:nth-child(even) td,
.p-news-single__body table tbody tr:nth-child(even) td,
.p-monthly-doctor__content table tbody tr:nth-child(even) td {
  background: var(--table-alt-bg);
}

.is-closed,
.p-schedule-table .is-closed,
.p-doctor-schedule .is-closed,
.p-monthly-doctor-table .is-closed {
  color: var(--table-muted-text) !important;
  font-weight: 800;
}

/* ========================================
   General table
======================================== */
.c-table {
  min-width: 520px;
}

.c-table th,
.c-table td {
  text-align: left;
  vertical-align: top;
}

.c-table tbody th {
  width: 24%;
  min-width: 90px;
}

.c-table--compact th,
.c-table--compact td {
  padding: 13px 15px;
}

.c-table--center th,
.c-table--center td {
  text-align: center;
  vertical-align: middle;
}

.c-table__note {
  color: #4b5560;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ========================================
   Schedule table
======================================== */

.p-schedule-table {
  min-width: 720px;
}

.p-schedule-table th,
.p-schedule-table td {
  text-align: center;
}

.p-schedule-table thead th:first-child,
.p-schedule-table tbody th {
  padding-left: 18px;
  padding-right: 18px;
}

.p-schedule-table tbody td {
  font-weight: 800;
}

.p-schedule-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
}

.p-schedule-mark--dot {
  border: 2px solid var(--color-main);
  background: var(--color-main);
}

.p-schedule-mark--double {
  border: 2px solid var(--color-main);
  background: #fff;
}

.p-schedule-mark-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e6f0f4;
  color: #1f4f63;
  font-size: 0;
  font-weight: 800;
  line-height: 1;
}

.p-schedule-mark-text::before {
  content: "訪問";
  font-size: 0.92rem;
}

/* ========================================
   Schedule guide
======================================== */
.p-schedule-guide {
  max-width: 850px;
  margin: 24px auto 0;
}

.p-schedule-guide__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-schedule-guide__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text, #333);
  font-size: 1rem;
  line-height: 1.6;
}

.p-schedule-guide__list li::before {
  content: none;
}

.p-schedule-guide__label--outpatient,
.p-schedule-guide__label--internal {
  display: inline-flex;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.p-schedule-guide__label--outpatient {
  border: 2px solid var(--color-main);
  background: var(--color-main);
}

.p-schedule-guide__label--internal {
  border: 2px solid var(--color-main);
  background: #fff;
}

.p-schedule-guide__label--visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 54px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e6f0f4;
  color: #1f4f63;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

/* ========================================
   Visit guide
======================================== */
.p-visit-guide {
  max-width: 850px;
  margin: 80px auto 0;
}

.p-visit-guide__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.p-visit-guide__card {
  overflow: hidden;
  background: #fff;
}

.p-visit-guide__table {
  overflow: hidden;
  border: 1px solid var(--table-border);
  background: #fff;
}

.p-visit-guide__title-row {
  border-bottom: 1px solid var(--table-border);
}

.p-visit-guide__title {
  padding: 14px 18px;
  background: var(--table-head-bg);
  color: var(--color-text, #333);
  font-size: 1.08rem;
  font-weight: 800;
  text-align: center;
}

.p-visit-guide__row {
  display: grid;
  grid-template-columns: 1fr;
}

.p-visit-guide__day {
  padding: 12px 16px;
  text-align: center;
}

.p-visit-guide__time {
  padding: 18px 16px;
  text-align: center;
}

.p-visit-guide__row + .p-visit-guide__row {
  border-top: 1px solid var(--table-border);
}

.p-visit-guide__day {
  display: grid;
  place-items: center;
  padding: 18px 12px;
  background: var(--table-row-head-bg);
  color: var(--table-head-text);
  font-weight: 800;
}

.p-visit-guide__time {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: var(--color-text, #333);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
}

.p-visit-guide__time small {
  margin-top: 4px;
  color: var(--color-text-light, #666);
  font-size: 0.88rem;
  line-height: 1.7;
}

.p-visit-guide__closed {
  color: indianred;
}

/* ========================================
   Schedule notice
======================================== */
.p-schedule-notice {
  margin: 48px auto 0;
  padding: 38px 24px;
  border-radius: 14px;
  background: #f7fafc;
  color: var(--color-text);
}

.p-schedule-notice__title {
  margin: 0 0 25px;
  color: var(--color-main);
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
}

.p-schedule-notice__list {
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.p-schedule-notice__list li {
  position: relative;
  padding-left: 1.25em;
  font-size: 1.05rem;
  line-height: 2.1;
  margin-bottom:10px;
}

.p-schedule-notice__list li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: var(--color-sub);
  font-size: 0.8em;
  font-weight: 800;
}

.p-schedule-notice__list strong {
  color: var(--color-text);
  font-weight: 800;
}

/* ========================================
   Doctor schedule
======================================== */
.p-doctor-schedule {
  min-width: 860px;
}

.p-doctor-schedule th,
.p-doctor-schedule td {
  text-align: center;
}

.p-doctor-schedule small,
.p-monthly-doctor-table small {
  display: inline-block;
  margin-top: 3px;
  color: #4b5560;
  font-size: 0.95rem;
  line-height: 1.4;
}

.p-doctor-schedule__stack {
  display: grid;
  gap: 4px;
  line-height: 1.45;
}

/* ========================================
   Monthly doctor table
======================================== */
.p-monthly-doctor-table {
  min-width: 0;
}

.p-monthly-doctor-table th,
.p-monthly-doctor-table td {
  text-align: center;
}

.p-monthly-doctor-table tbody th {
  width: 24%;
  white-space: nowrap;
}

/* ========================================
   More links
======================================== */
.p-schedule-more-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 16px;
  max-width: 850px;
  margin: 34px auto 0;
}

.p-schedule-more-links .c-more-link-wrap {
  margin-top: 0;
}

/* ========================================
   Scroll hint
======================================== */
.c-scroll-hint,
.p-doctor-scroll-hint {
  display: none;
}

@media (max-width: 900px) {
  .c-scroll-hint {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 156px;
    min-height: 94px;
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(24, 52, 77, 0.42);
    color: #fff;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.45;
    text-align: center;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }

  .c-scroll-hint::before {
    content: "☝";
    display: block;
    margin-bottom: 8px;
    font-size: 2rem;
    line-height: 1;
    animation: cScrollHintHand 1.2s ease-in-out infinite;
  }

  .c-scroll-hint.is-hidden {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes cScrollHintHand {
  0%, 100% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(7px);
  }
}

@media (max-width: 767px) {

  .c-table thead{
    display:none;
  }
  .c-table-wrap {
    overflow-x: visible;
    max-width: none;
    margin: 20px auto;
  }

  .c-table {
    display: block;
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
  }

  .c-table caption {
    display: none;
  }

  .c-table tbody {
    display: grid;
    gap: 12px;
  }

  .c-table tr {
    display: block;
    overflow: hidden;
    border: 1px solid var(--table-border);
    border-radius: 12px;
    background: #fff;
  }

  .c-table th,
  .c-table td {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    text-align: left;
    font-size: 1rem;
    line-height: 1.75;
  }

  .c-table tbody th {
    width: 100%;
    padding: 12px 14px;
    background: var(--table-row-head-bg);
    color: var(--table-head-text);
    font-weight: 800;
  }

  .c-table tbody td {
    padding: 14px;
    background: #fff;
    color: var(--color-text, #333);
  }

  .c-table tbody tr:nth-child(even) td {
    background: #fff;
  }

  .c-table__note {
    font-size: 0.95rem;
    line-height: 1.7;
  }
   .p-schedule-table-wrap {
    overflow-x: visible;
  }

  .p-schedule-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 0.88rem;
  }

  .p-schedule-table th,
  .p-schedule-table td {
    padding: 14px 4px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .p-schedule-table thead th:first-child,
  .p-schedule-table tbody th {
    width: 25%;
  }

  .p-schedule-table thead th:not(:first-child),
  .p-schedule-table tbody td {
    width: calc(75% / 7);
  }

  .p-schedule-table tbody th {
    font-size: 0.92rem;
    letter-spacing: 0;
  }

  .p-schedule-table tbody td {
    font-size: 0;
  }

  .p-schedule-table .is-closed {
    font-size: 0.95rem;
  }

  .p-schedule-mark {
    width: 16px;
    height: 16px;
  }

  .p-schedule-mark-text {
    width: auto;
    height: auto;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #1f4f63;
    font-size: 1rem;
    font-weight: 800;
  }

  .p-schedule-mark-text::before {
    content: "訪";
    font-size: 1rem;
  }

  .p-schedule-table-wrap .c-scroll-hint {
    display: none !important;
  }

  .p-schedule-guide {
    margin-top: 14px;
  }

  .p-schedule-guide__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .p-schedule-guide__list li {
    gap: 9px;
    font-size: 1rem;
  }

  .p-schedule-guide__label--outpatient,
  .p-schedule-guide__label--internal {
    width: 20px;
    height: 20px;
  }

  .p-schedule-guide__label--visit {
    width: auto;
    height: auto;
    min-width: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #1f4f63;
    font-size: 0;
  }

  .p-schedule-guide__label--visit::before {
    content: "訪";
    font-size: 1rem;
    font-weight: 800;
  }

  .p-visit-guide {
    margin-top: 34px;
  }

  .p-visit-guide__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .p-visit-guide__title {
    padding: 13px 16px;
    font-size: 1rem;
  }

  .p-visit-guide__day {
    padding: 16px 8px;
    font-size: 0.92rem;
  }

  .p-visit-guide__time {
    padding: 16px 14px;
    font-size: 1.2rem;
  }

  .p-schedule-notice {
    margin: 24px auto;
    padding: 32px 16px;
  }

  .p-schedule-notice__list li {
    font-size: 1.02rem;
    line-height: 2;
  }

  .p-schedule-more-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .p-doctor-schedule {
    min-width: 860px;
  }

  .p-doctor-schedule th,
  .p-doctor-schedule td {
    padding: 14px 8px;
    font-size: 0.95rem;
  }

  .p-news-single__body table,
  .p-monthly-doctor__content table {
    table-layout: fixed;
    min-width: 0;
  }

  .p-news-single__content table th,
  .p-news-single__content table td,
  .p-news-single__body table th,
  .p-news-single__body table td,
  .p-monthly-doctor__content table th,
  .p-monthly-doctor__content table td {
    padding: 12px 4px;
    font-size: 0.95rem;
    line-height: 1.55;
    text-align: center;
    white-space: nowrap;
  }
}
/* PC：診療時間表と受付時間を横並び */
.p-schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
  max-width: 1100px;
  margin: 80px auto 0;
}

.p-schedule-layout__main,
.p-schedule-layout__side {
  min-width: 0;
}

.p-schedule-layout .p-schedule-table-wrap {
  max-width: none;
  margin: 0;
}

.p-schedule-layout .p-schedule-table {
  min-width: 680px;
}

.p-schedule-layout .p-schedule-guide {
  max-width: none;
}

.p-schedule-layout .p-visit-guide {
  max-width: none;
  margin: 0;
}

.p-schedule-layout .p-visit-guide__time {
  font-size: 1rem;
}

/* タブレット以下：縦並びに戻す */
@media (max-width: 1024px) {
  .p-schedule-layout {
    grid-template-columns: 1fr;
    max-width: 850px;
    margin-top: 64px;
  }

  .p-schedule-layout .p-schedule-table-wrap {
    overflow-x: auto;
  }

  .p-schedule-layout .p-schedule-table {
    min-width: 720px;
  }

  .p-schedule-layout .p-visit-guide {
    margin-top: 34px;
  }
}

/* スマホ：既存のスマホ表示を優先 */
@media (max-width: 767px) {
  .p-schedule-layout {
    margin-top: 48px;
  }

  .p-schedule-layout .p-schedule-table-wrap {
    overflow-x: visible;
  }

  .p-schedule-layout .p-schedule-table {
    min-width: 0;
  }
}
/* =========================
   Overview table
========================= */

.p-about-overview-table{
	margin:32px 0 0;
	border:1px solid var(--color-border,#d9e1e8);
	background:#fff;
}

.p-about-overview-table__row{
	display:grid;
	grid-template-columns:180px 1fr;
	border-top:1px solid var(--color-border,#d9e1e8);
}

.p-about-overview-table__row:first-child{
	border-top:0;
}

.p-about-overview-table dt,
.p-about-overview-table dd{
	margin:0;
	padding:18px 22px;
	font-size:1rem;
	line-height:1.8;
}

.p-about-overview-table dt{
	background:#f4f8fb;
	color:var(--color-main,#2b6f8a);
	font-weight:800;
}

.p-about-overview-table dd{
	background:#fff;
	color:var(--color-text,#333);
	font-weight:500;
}

.p-about-overview-table a{
	color:var(--color-main,#2b6f8a);
	font-weight:700;
	text-decoration:none;
}

.p-about-overview-table a:hover{
	text-decoration:underline;
}

/* =========================
   SP
========================= */

@media (max-width:767px){

	.p-about-overview-table__row{
		grid-template-columns:1fr;
	}

	.p-about-overview-table dt{
		padding:12px 16px;
		border-bottom:1px solid var(--color-border,#d9e1e8);
	}

	.p-about-overview-table dd{
		padding:14px 16px;
	}
}

/* =========================
   Visit overview table
========================= */

.p-visit-overview-table{
	margin-top:32px;
	border:1px solid var(--color-border,#d9e1e8);
	background:#fff;
}

.p-visit-overview-table__row{
	display:grid;
	grid-template-columns:180px 1fr;
	border-top:1px solid var(--color-border,#d9e1e8);
}

.p-visit-overview-table__row:first-child{
	border-top:0;
}

.p-visit-overview-table__head{
	padding:20px;
	background:#f4f8fb;
	color:var(--color-main,#2b6f8a);
	font-weight:800;
	line-height:1.6;
}

.p-visit-overview-table__body{
	padding:20px 24px;
	line-height:1.9;
}

.p-visit-overview-table__body p{
	margin:0;
}

.p-visit-overview-table__body p + p{
	margin-top:10px;
}

.p-visit-overview-table__body strong{
	font-weight:800;
}

.p-visit-overview-table__closed{
	color:#c64545;
	font-size:1.15rem;
	font-weight:800;
}

.p-visit-overview-table .c-more-link-wrap{
	margin-top:16px;
}

/* SP */

@media (max-width:767px){

	.p-visit-overview-table__row{
		grid-template-columns:1fr;
	}

	.p-visit-overview-table__head{
		padding:14px 16px;
		border-bottom:1px solid var(--color-border,#d9e1e8);
	}

	.p-visit-overview-table__body{
		padding:16px;
	}
}
.p-front-schedule{
	margin-bottom:2rem;
}

.p-front-schedule__head{
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:1rem;
	margin-bottom:1.5rem;
}

.p-front-schedule__title{
	margin:0;
	font-size:1.75rem;
	font-weight:800;
}

.p-front-schedule__more{
	font-size:1rem;
	font-weight:700;
	text-decoration:none;
	color:var(--color-main);
}

.p-front-schedule__body{
	display:grid;padding:12px 18px;
}

.p-front-block-title{
  position: relative;
  margin: 10px;
  padding-left:1em;
  /* border-bottom: 1px solid var(--color-border, #d9e1e8); */
  color: var(--color-text, #333);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.5;
}
.p-front-block-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 1.35em;
    border-radius: 999px;
    background: var(--color-main, #2b6f8a);}

/* =========================
   診療時間
========================= */

.p-front-hours__table-wrap{
	overflow-x:auto;
}

.p-front-hours-table{
	width:100%;
	border-collapse:collapse;
}

.p-front-hours-table th,
.p-front-hours-table td{
	border:1px solid var(--color-border);
	padding:1rem .5rem;
	text-align:center;
	font-size:1rem;
}

.p-front-hours-table thead th{
	background:#f3f7f9;
	font-weight:800;
}

.p-front-hours-table tbody th{
	background:#fafafa;
	font-weight:800;
}

.p-mark{
	display:inline-block;
	width:18px;
	height:18px;
	border-radius:50%;
}

.p-mark--dot{
	background:var(--color-main);
}

.p-mark--circle{
	border:3px solid var(--color-main);
}

.is-visit{
	font-size:1.125rem;
	font-weight:700;
	color:var(--color-main);
}

.is-closed{
	color:#888;
}

.p-front-hours__legend{
	display:flex;
	flex-wrap:wrap;
	gap:1rem 1.5rem;
	margin:1rem 0 0;
	padding:0;
	list-style:none;
	font-size:1rem;
}

.p-front-hours__legend li{
	display:flex;
	align-items:center;
	gap:.5rem;
}

.p-front-hours__legend strong{
	color:var(--color-main);
	font-size:1.125rem;
}

/* =========================
   受付時間
========================= */

.p-front-reception__list{
	margin:0;
  border: 1px solid var(--color-border);
}

.p-front-reception__list div{
	display:grid;
	grid-template-columns:160px 1fr;
	border-top:1px solid var(--color-border);
}

.p-front-reception__list div:first-child{
	border-top:none;
}

.p-front-reception dt,
.p-front-reception dd{
	padding:1rem;
	margin:0;
	font-size:1rem;
}

.p-front-reception dt{
	background:#fafafa;
	font-weight:800;
}

.p-front-reception dd{
	font-weight:600;
}

/* =========================
   注意事項
========================= */

.p-front-visit-notice ul{
	margin:0;
	padding-left:1.5rem;
}

.p-front-visit-notice li{
	font-size:1rem;
	line-height:1.9;
}

.p-front-visit-notice strong{
	/*background:linear-gradient(
		transparent 65%,
		#dff3e8 65%
	);*/
  color: indianred;
}

/* =========================
   SP
========================= */

@media (max-width:767px){

	.p-front-schedule__title{
		font-size:1.5rem;
	}

	.p-front-hours,
	.p-front-reception,
	.p-front-visit-notice{
		padding:1rem;
	}

	.p-front-reception__list div{
		grid-template-columns:1fr;
	}

	.p-front-reception dt{
		border-bottom:1px solid var(--color-border);
	}
}
@media (max-width:767px){

	.p-front-hours__table-wrap{
		overflow-x:visible;
	}

	.p-front-hours-table{
		width:100%;
		min-width:0;
		table-layout:fixed;
	}

	.p-front-hours-table th,
	.p-front-hours-table td{
		padding:.75rem .15rem;
		font-size:1rem;
	}

	.p-front-hours-table th:first-child{
		width:25%;
	}

	.p-front-hours-table thead th{
		font-size:1rem;
	}

	.p-front-hours-table tbody th{
		font-size:1rem;
		line-height:1.35;
	}

	.p-mark{
		width:14px;
		height:14px;
	}

	.p-mark--circle{
		border-width:2px;
	}

	.is-visit{
		font-size:1rem;
	}
}
/* =========================
   Gutenberg Table
========================= */

.wp-block-table table,
.p-news-single__content table,
.p-news-single__body table,
.p-monthly-doctor__content table,
table.has-fixed-layout{
	width:100%;
	border-collapse:separate;
	border-spacing:0;
	border:1px solid var(--table-border,#cbd8e1);
	background:#fff;
	table-layout:auto;
}

.wp-block-table th,
.wp-block-table td,
.p-news-single__content table th,
.p-news-single__content table td,
.p-news-single__body table th,
.p-news-single__body table td,
.p-monthly-doctor__content table th,
.p-monthly-doctor__content table td,
table.has-fixed-layout th,
table.has-fixed-layout td{
	padding:18px 14px;
	border-right:1px solid var(--table-border,#cbd8e1);
	border-bottom:1px solid var(--table-border,#cbd8e1);
	font-size:1rem;
	line-height:1.65;
	vertical-align:middle;
}

.wp-block-table tr > *:last-child,
.p-news-single__content table tr > *:last-child,
.p-news-single__body table tr > *:last-child,
.p-monthly-doctor__content table tr > *:last-child,
table.has-fixed-layout tr > *:last-child{
	border-right:0;
}

.wp-block-table tbody tr:last-child > *,
.p-news-single__content table tbody tr:last-child > *,
.p-news-single__body table tbody tr:last-child > *,
.p-monthly-doctor__content table tbody tr:last-child > *,
table.has-fixed-layout tbody tr:last-child > *{
	border-bottom:0;
}

.wp-block-table thead th,
.p-news-single__content table thead th,
.p-news-single__body table thead th,
.p-monthly-doctor__content table thead th,
table.has-fixed-layout thead th{
	background:var(--table-head-bg,#eef2f5);
	color:var(--color-text,#333);
	font-weight:800;
	text-align:center;
}

.wp-block-table tbody td,
.p-news-single__content table tbody td,
.p-news-single__body table tbody td,
.p-monthly-doctor__content table tbody td,
table.has-fixed-layout tbody td{
	background:#fff;
}

.wp-block-table tbody tr:nth-child(even) td,
.p-news-single__content table tbody tr:nth-child(even) td,
.p-news-single__body table tbody tr:nth-child(even) td,
.p-monthly-doctor__content table tbody tr:nth-child(even) td,
table.has-fixed-layout tbody tr:nth-child(even) td{
	background:#fafafa;
}

/* =========================
   News single duty table
   月日 / 曜日 / 担当医師 / 所属医療機関
========================= */

@media (max-width:767px){

	.p-news-single__content table,
	.p-news-single__body table{
		width:100%;
		table-layout:fixed !important;
	}

	.p-news-single__content table th,
	.p-news-single__content table td,
	.p-news-single__body table th,
	.p-news-single__body table td{
		padding:9px 5px;
		font-size:.85rem;
		line-height:1.45;
		text-align:center;
		word-break:normal;
		overflow-wrap:normal;
	}

	/* 月日 */
	.p-news-single__content table th:nth-child(1),
	.p-news-single__content table td:nth-child(1),
	.p-news-single__body table th:nth-child(1),
	.p-news-single__body table td:nth-child(1){
		width:22% !important;
		white-space:nowrap;
	}

	/* 曜日 */
	.p-news-single__content table th:nth-child(2),
	.p-news-single__content table td:nth-child(2),
	.p-news-single__body table th:nth-child(2),
	.p-news-single__body table td:nth-child(2){
		width:12% !important;
		white-space:nowrap;
	}

	/* 担当医師 */
	.p-news-single__content table th:nth-child(3),
	.p-news-single__content table td:nth-child(3),
	.p-news-single__body table th:nth-child(3),
	.p-news-single__body table td:nth-child(3){
		width:28% !important;
		white-space:nowrap;
	}

	/* 所属医療機関 */
	.p-news-single__content table th:nth-child(4),
	.p-news-single__content table td:nth-child(4),
	.p-news-single__body table th:nth-child(4),
	.p-news-single__body table td:nth-child(4){
		width:38% !important;
		white-space:normal;
	}
}
