@charset "UTF-8";
/* ----------------
	診療受付時間
------------------*/
.time_attention_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 1380px) {
  .time_attention_area {
    display: block;
    margin-bottom: 30px;
  }
  .time_attention_area .strongText {
    margin-bottom: 15px;
  }
  .time_attention_area .btn_area {
    display: flex;
    justify-content: flex-end;
  }
}

.department_title {
  display: flex;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 30px;
}
.department_title .icon {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #1090c0;
  position: relative;
}
.department_title .icon .icon_inner {
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .department_title {
    font-size: 1.75rem;
  }
  .department_title .icon {
    width: 30px;
    height: 30px;
    margin-top: 2px;
  }
  .department_title .icon .icon_inner {
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width: 575px) {
  .department_title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .department_title .icon {
    flex: none;
    width: 30px;
    height: 30px;
  }
  .department_title .icon .icon_inner {
    width: 22px;
    height: 22px;
  }
}

.outpatient_time_area {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #dfdfdf;
}
@media screen and (max-width: 575px) {
  .outpatient_time_area tr._pc {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .outpatient_time_area tr._sp {
    display: none;
  }
}
.outpatient_time_area .outpatient_time_btn_area {
  width: 390px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #5082a8;
  border: 1px solid #dfdfdf;
}
.outpatient_time_area .outpatient_time_btn_area .btn.small {
  min-width: 145px;
  padding: 7px 45px 7px 15px;
}
.outpatient_time_area .outpatient_time_table {
  width: calc(100% - 390px);
}
.outpatient_time_area .outpatient_time_table .time_table td,
.outpatient_time_area .outpatient_time_table .time_table th {
  text-align: center;
}
.outpatient_time_area .outpatient_time_table .time_table tbody td {
  font-family: "Roboto", sans-serif;
}
.outpatient_time_area .outpatient_time_table .time_table tbody td.open {
  position: relative;
}
.outpatient_time_area .outpatient_time_table .time_table tbody td.open::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../img/icon/open.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.outpatient_time_area .outpatient_time_table .time_table tbody td._time:not(.open) {
  background-color: #f8f8f8;
}
@media screen and (min-width: 576px) {
  .outpatient_time_area .outpatient_time_table .time_table._sp {
    display: none;
  }
}
.outpatient_time_area .outpatient_time_text_area {
  padding: 25px 30px;
}
@media screen and (max-width: 1330px) {
  .outpatient_time_area .outpatient_time_btn_area {
    width: 200px;
    flex-direction: column;
  }
  .outpatient_time_area .outpatient_time_table {
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 1330px) and (min-width: 1111px) {
  .outpatient_time_area .outpatient_time_btn_area .btn.small {
    min-height: 45px;
  }
}
@media screen and (max-width: 1110px) {
  .outpatient_time_area {
    border: none;
  }
  .outpatient_time_area .outpatient_time_btn_area {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    background-color: transparent;
    border: none;
    gap: 20px;
    padding: 15px 15px 10px 15px;
  }
  .outpatient_time_area .outpatient_time_btn_area .btn.small {
    min-width: 145px;
    padding: 7px 45px 7px 15px;
  }
  .outpatient_time_area .outpatient_time_table {
    width: 100%;
  }
  .outpatient_time_area .outpatient_time_text_area {
    border: 1px solid #dfdfdf;
    border-top: none;
  }
}
@media screen and (max-width: 999px) {
  .outpatient_time_area .outpatient_time_text_area {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 767px) {
  .outpatient_time_area .outpatient_time_btn_area {
    justify-content: flex-start;
    gap: 10px;
    padding: 0 0 20px;
  }
  .outpatient_time_area .outpatient_time_btn_area .btn.small {
    line-height: 2;
  }
}
@media screen and (max-width: 575px) {
  .outpatient_time_area .outpatient_time_btn_area .btn.small {
    min-width: auto;
    width: calc((100% - 20px) / 2);
    padding: 7px 25px 7px 15px;
  }
  .outpatient_time_area .outpatient_time_btn_area .btn.small::before {
    right: 15px;
  }
  .outpatient_time_area .outpatient_time_text_area {
    padding: 0 10px;
  }
}

/* ------------------
	外来診療担当表
--------------------*/
.schedule_attention_area {
  margin-bottom: 40px;
}
.schedule_attention_area .schedule_title_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 40px;
}
.schedule_attention_area .schedule_title_area h2 {
  font-size: 1.75rem;
  padding-left: 30px;
}
.schedule_attention_area .schedule_title_area h2 > span {
  font-size: 56px;
  font-family: "Roboto", sans-serif;
  margin-right: 8px;
}
@media screen and (max-width: 999px) {
  .schedule_attention_area .schedule_title_area h2 {
    margin: 5px 0;
  }
}
@media screen and (max-width: 767px) {
  .schedule_attention_area .schedule_title_area {
    margin-bottom: 25px;
  }
  .schedule_attention_area .schedule_title_area h2 {
    font-size: 1.25rem;
    padding-left: 20px;
  }
  .schedule_attention_area .schedule_title_area h2 > span {
    font-size: 45px;
  }
}
@media screen and (max-width: 575px) {
  .schedule_attention_area .schedule_title_area {
    margin-bottom: 25px;
  }
  .schedule_attention_area .schedule_title_area h2 {
    font-size: 1.25rem;
    padding-left: 20px;
  }
  .schedule_attention_area .schedule_title_area h2 > span {
    font-size: 45px;
  }
}
@media screen and (max-width: 420px) {
  .schedule_attention_area {
    margin-bottom: 30px;
  }
  .schedule_attention_area .schedule_title_area {
    display: block;
    margin-bottom: 15px;
  }
  .schedule_attention_area .schedule_title_area h2 {
    line-height: 1.5;
    font-size: 1.125rem;
    padding-left: 20px;
  }
  .schedule_attention_area .schedule_title_area h2 > span {
    font-size: 40px;
  }
}

h2 {
  font-size: 1.75rem;
  padding-left: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
h2 > span {
  font-family: "Roboto", sans-serif;
  margin-right: 45px;
}
h2 .reserve_badge {
  display: inline-block !important;
  background-color: #c01039;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
  padding: 10px 15px;
  margin-right: 0;
  line-height: 1;
  letter-spacing: 0.055em;
  display: block;
  padding-left: 0;
  position: relative;
}
h2 .reserve_badge::before {
  display: none !important;
}
@media screen and (max-width: 999px) {
  h2 {
    padding: 5px 5px 5px 0;
    margin: 1.21875rem 0 1rem;
  }
}

h3.h3_schedule {
  display: flex;
  margin: 2rem 0 2.5rem !important;
}
h3.h3_schedule .reserve_badge {
  display: inline-block;
  background-color: #c01039;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
  padding: 10px 15px;
  line-height: 1;
  margin-left: 45px;
}

.schedule_btn_wrapper {
  margin-bottom: 20px;
}
.schedule_btn_wrapper .btn {
  min-width: 140px;
}
.schedule_btn_wrapper .btn:not(:last-child) {
  margin-right: 15px;
}

.titleAndTextBox.notice .content dl {
  display: flex;
  flex-wrap: wrap;
}
.titleAndTextBox.notice .content dl > dt {
  width: 100px;
}
.titleAndTextBox.notice .content dl > dd {
  width: calc(100% - 100px);
}
@media screen and (max-width: 575px) {
  .titleAndTextBox.notice .content dl {
    display: block;
  }
  .titleAndTextBox.notice .content dl > dt {
    width: 100%;
  }
  .titleAndTextBox.notice .content dl > dd {
    width: 100%;
    padding-left: 1em;
  }
}
/*# sourceMappingURL=outpatient.css.map */
