/* ===== テーブル崩れ強制リセット ===== */
.s-article-content table.schedule_table {
  display: table !important;
  width: 100% !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
  border: 1px solid #8e806c !important;
}
.s-article-content table.schedule_table thead {
  display: table-header-group !important;
}
.s-article-content table.schedule_table tbody {
  display: table-row-group !important;
}
.s-article-content table.schedule_table tr {
  display: table-row !important;
}
.s-article-content table.schedule_table th,
.s-article-content table.schedule_table td {
  display: table-cell !important;
  text-align: center !important;
  padding: 8px !important;
  border-right: 1px solid #8e806c !important;
  border-bottom: 1px solid #8e806c !important;
  box-sizing: border-box;
}
.s-article-content table.schedule_table th:last-child,
.s-article-content table.schedule_table td:last-child {
  border-right: none !important;
}
.s-article-content table.schedule_table thead th {
  background: var(--color-brand-background-exclusive);;
  font-weight: bold;
  color: #fff;
  border-right: #635a4d  solid 1px !important;
}
.s-article-content table.schedule_table thead th.txt_red {
  color: #af0000;
}
.s-article-content table.schedule_table col:first-child {
  width: 10%;
}
.s-article-content table.schedule_table col:not(:first-child) {
  width: calc(90% / 10);
}
.s-article-content table.schedule_table th span {
  font-size: 0.85em;
}

@media screen and (max-width: 760px) {
  .schedule_table_wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .schedule_table {
    min-width: 640px;
    border-collapse: separate;
    border-spacing: 0;
  }
  .schedule_table th:first-child,
  .schedule_table td:first-child {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 2;
  }
  .schedule_table thead th:first-child {
    z-index: 3;
  }
}


/* ===== 追加スタイル ===== */
.schedule_table_wrap {
  margin-top: var(--space-ml);
  margin-bottom: var(--space-ml);
}
.contactWrap {
  margin-top: var(--space-ml);
  margin-bottom: var(--space-md);
  padding: 3em 2em 2em;
  background: #f5f5f5;
}
.contactWrap h2 {
  font-family: Source Han Sans JP,sans-serif;
  font-feature-settings: "palt" on;
  font-size: var(--font-size-sm) !important;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
}
.contactBox {
  margin-top: var(--space-ms);
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.contactBox__left {
  border-right: 1px solid var(--color-brand-border-split);
}
.contactBox h3 {
  color: var(--color-brand-text-primary);
  font-family: Source Han Sans JP,sans-serif;
  font-feature-settings: "palt" on;
  font-size: var(--font-size-xs) !important;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  margin-bottom: var(--space-xxs);
  text-align: center;
}
.contactWrap .desc {
  color: var(--color-brand-text-secondary);
  font-feature-settings: "palt" on;
  font-size: var(--font-size-xs);
  font-weight: 500;
  margin-top: var(--space-xs);
  text-align: center;
}
.contactWrap .tel {
  align-items: baseline;
  display: flex;
  gap: var(--space-xxs);
  justify-content: center;
}
.contactWrap .tel span {
  font-family: Source Han Sans JP,sans-serif;
  letter-spacing: .02em;
  line-height: 1.2;
  color: var(--color-brand-button);
  font-feature-settings: "palt" on;
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-decoration: underline;
}
.mailBox .mail_link {
  margin-top: var(--space-md);
  display: flex;
  justify-content: center;
}
.mail_txt {
  margin-top: var(--space-xs);
  font-feature-settings: "palt" on;
  font-size: var(--font-size-xs);
  font-weight: 500;
  text-align: center;
}
.mailBox .btn {
  display: flex;
  justify-content: center;
  max-width: 320px;
  margin: var(--space-md) auto 0;
  padding: 1em;
  color: #fff;
  background: #8e806c;
  font-family: Source Han Sans JP, sans-serif;
  font-feature-settings: "palt" on;
  letter-spacing: .02em;
  line-height: 1.2;
  border-radius: var(--border-radius-full);
  text-decoration: none;
  text-align: center;
}
.mailBox .btn span {
  display: inline-block;
  margin-left: 0.5em;
  letter-spacing: .02em;
  line-height: 22px;
}
.mailBox svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
.copy {
  /* margin-top: var(--space-ml); */
  color: var(--color-brand-text-primary);
  font-family: Source Han Sans JP,sans-serif;
  font-feature-settings: "palt" on;
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
}
.sp_none {
  display: block;
}

@media screen and (max-width: 760px) {
  .contactBox {
    gap: var(--space-ms);
    grid-template-columns: repeat(1,1fr);
  }
  .contactBox__left {
    border-right: none;
  }
  .mailBox .btn {
    max-width: 306.66px;
  }
  .sp_none {
    display: none;
  }
}