@charset "UTF-8";
.c-btn-01 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 60px;
  padding: 12px 0;
  background-color: #ffffff;
  border: 1px solid #3FA7D1;
  color: #3FA7D1;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  box-sizing: border-box;
  transition: 0.2s ease;
}
.c-btn-01::after {
  background-image: url("../images/common/icon-arrow_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 20px;
  width: 36px;
  height: 36px;
}

.c-btn-02 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 60px;
  padding: 12px 0;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  box-sizing: border-box;
  transition: 0.2s ease;
}
.c-btn-02::after {
  background-image: url("../images/common/icon-arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 20px;
  width: 36px;
  height: 36px;
}

/* =========================================================
schedule
========================================================= */
.p-schedule-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 10vh;
}
@media screen and (max-width: 767px) {
  .p-schedule-mv {
    margin-bottom: 40px;
  }
}
.p-schedule-mv_wrap {
  position: relative;
  width: 97%;
  height: 80vh;
  min-height: 500px;
  background-image: url("../images/common/mv-guide.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-left: 3%;
  padding-left: 10%;
  border-bottom-left-radius: 120px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .p-schedule-mv_wrap {
    height: 50vh;
    min-height: 360px;
    padding-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-schedule-mv_wrap {
    width: 100%;
    margin-left: 0;
    height: 40vh;
    min-height: 280px;
    border-bottom-left-radius: 60px;
  }
}
.p-schedule-mv_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 110, 140, 0.55);
  mix-blend-mode: multiply;
  z-index: 1;
}
.p-schedule-mv_head {
  background-color: #ffffff;
  border-radius: 0 12px 12px 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 20px 120px 20px 20px;
}
@media screen and (max-width: 991px) {
  .p-schedule-mv_head {
    padding: 16px 60px 16px 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-schedule-mv_head {
    padding: 12px 30px 12px 16px;
  }
}
.p-schedule-mv_ttl {
  color: #333333;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.3;
}
.p-schedule-mv_ttl .en {
  color: #3FA7D1;
  display: block;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 700;
  margin-bottom: 4px;
}
.p-schedule-cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 94%;
  max-width: 1280px;
  margin: 0 auto 10vh;
}
@media screen and (max-width: 991px) {
  .p-schedule-cont {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-schedule-cont {
    margin-bottom: 60px;
  }
}
.p-schedule-sidenav {
  width: 25%;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}
@media screen and (max-width: 991px) {
  .p-schedule-sidenav {
    display: none;
  }
}
.p-schedule-sidenav_ttl {
  border-bottom: 3px solid #333333;
  color: #333333;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
  padding-bottom: 12px;
  min-height: 60px;
  display: flex;
  align-items: flex-end;
}
.p-schedule-sidenav_item a {
  color: #333333;
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.p-schedule-sidenav_item a::before {
  background-image: url(../images/common/icon-arrow_right-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}
.p-schedule-sidenav_item a:hover {
  color: #3FA7D1;
  background-color: #f8fcfe;
}
.p-schedule-sidenav_item a:hover::before {
  transform: translateX(4px);
}
.p-schedule-sidenav_item.is-current a {
  color: #3FA7D1;
  font-weight: 700;
  background-color: #f8fcfe;
}
.p-schedule-sidenav_item.is-current a::before {
  background-image: url(../images/common/icon-arrow_right.svg);
  transform: translateX(4px);
}
.p-schedule-box {
  width: 72%;
  /* カレンダーのツールバー非表示 */
  /* ---------------------------------------------------------
  p-schedule-box_note (カレンダーの注意書き)
  --------------------------------------------------------- */
  /* ---------------------------------------------------------
  custom-calendar-nav (年月切り替えナビ)
  --------------------------------------------------------- */
  /* ---------------------------------------------------------
  Event Section (FullCalendar)
  --------------------------------------------------------- */
  /* ---------------------------------------------------------
  Schedule List Block (今月・来月の予定リスト)
  --------------------------------------------------------- */
  /* ---------------------------------------------------------
  p-schedule-list-btn (電話予約ボタン)
  --------------------------------------------------------- */
}
@media screen and (max-width: 991px) {
  .p-schedule-box {
    width: 100%;
  }
}
.p-schedule-box .fc-header-toolbar {
  display: none !important;
}
.p-schedule-box_head {
  margin-bottom: 40px;
  padding-bottom: 12px;
  min-height: 60px;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-schedule-box_head {
    margin-bottom: 24px;
    padding-bottom: 8px;
    min-height: auto;
  }
}
.p-schedule-box_ttl {
  color: #333333;
  display: flex;
  align-items: center;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1;
}
.p-schedule-box_ttl::before {
  background-image: url(../images/common/icon-tooth.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  width: clamp(32px, 4vw, 44px);
  height: clamp(32px, 4vw, 44px);
  margin-right: 14px;
  flex-shrink: 0;
}
.p-schedule-box_subttl {
  border-left: 6px solid #3FA7D1;
  color: #333333;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .p-schedule-box_subttl {
    margin-bottom: 20px;
  }
}
.p-schedule-box_subttl .en {
  color: #C4C4C4;
  display: block;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  margin-top: 2px;
}
.p-schedule-box_note {
  background-color: #f8fcfe;
  border: 1px solid #d1e7f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-schedule-box_note {
    padding: 16px;
    margin-bottom: 20px;
  }
}
.p-schedule-box_note-ttl {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.p-schedule-box_note-ttl::before {
  content: "!";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #3FA7D1;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  margin-right: 8px;
}
.p-schedule-box_note-lead {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}
.p-schedule-box_note-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-schedule-box_note-list {
    gap: 12px;
    flex-direction: column;
  }
}
.p-schedule-box_note-list dt {
  font-weight: 700;
}
.p-schedule-box_note-list dd {
  display: flex;
  align-items: center;
  margin: 0;
}
.p-schedule-box_note-list dd span {
  margin-right: 4px;
  font-size: 12px;
}
.p-schedule-box_note-list dd span.closed {
  color: #ff4d4d;
}
.p-schedule-box_note-list dd span.partial {
  color: #efd603;
}
.p-schedule-box_note-list dd span.ortho {
  color: #5acb06;
}
.p-schedule-box .custom-calendar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 6px;
  background-color: #f0f6f9;
  border-radius: 50px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-schedule-box .custom-calendar-nav {
    gap: 8px;
    padding: 4px;
    margin-bottom: 20px;
  }
}
.p-schedule-box .custom-calendar-nav_btn {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  color: #555555;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-schedule-box .custom-calendar-nav_btn {
    padding: 10px 12px;
  }
}
.p-schedule-box .custom-calendar-nav_btn:hover {
  color: #3FA7D1;
  background-color: rgba(255, 255, 255, 0.6);
}
.p-schedule-box .custom-calendar-nav_btn.is-active {
  background-color: #3FA7D1;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(63, 167, 209, 0.3);
}
.p-schedule-box .custom-calendar-nav_btn.is-active:hover {
  background-color: #3596bd;
  color: #ffffff;
}
.p-schedule-box .event-section {
  margin-bottom: 40px;
}
.p-schedule-box .event-section .eo-fullcalendar-container,
.p-schedule-box .event-section #eo_fullcalendar {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 767px) {
  .p-schedule-box .event-section .eo-fullcalendar-container,
.p-schedule-box .event-section #eo_fullcalendar {
    padding: 16px;
    margin-bottom: 30px;
  }
}
.p-schedule-box .event-section .eo-fullcalendar-container th.fc-day-header,
.p-schedule-box .event-section #eo_fullcalendar th.fc-day-header {
  font-size: 14px;
  color: #555;
  padding: 8px 0;
  background-color: #f8fcfe;
  border-bottom: 2px solid #e2e8f0;
}
.p-schedule-box .event-section .eo-fullcalendar-container td.fc-day,
.p-schedule-box .event-section #eo_fullcalendar td.fc-day {
  transition: background-color 0.2s;
}
.p-schedule-box .event-section .eo-fullcalendar-container td.fc-day:hover,
.p-schedule-box .event-section #eo_fullcalendar td.fc-day:hover {
  background-color: #f4fbff;
}
.p-schedule-box .event-section .eo-fullcalendar-container .fc-event,
.p-schedule-box .event-section #eo_fullcalendar .fc-event {
  background-color: #3FA7D1;
  border: none;
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 12px;
  color: #fff;
}
.p-schedule-box .p-schedule-list-block {
  background-color: #fafbfc;
  border: 1px solid #eaeef2;
  border-radius: 12px;
  padding: 24px;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-schedule-box .p-schedule-list-block {
    padding: 16px;
    margin: 30px 0;
  }
}
.p-schedule-box .p-schedule-list-block h2 {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  color: #333333;
  border-left: 4px solid #3FA7D1;
  padding-left: 10px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.p-schedule-box .p-schedule-list-block ul, .p-schedule-box .p-schedule-list-block ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-schedule-box .p-schedule-list-block li {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  color: #333;
}
.p-schedule-box .p-schedule-list-block li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.p-schedule-box .p-schedule-list-block li:last-child {
  margin-bottom: 0;
}
.p-schedule-box .p-schedule-list-block li strong {
  display: inline-block;
  background-color: #e6f4fa;
  color: #3FA7D1;
  font-size: 13px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4px;
}
.p-schedule-box .p-schedule-list-block .p-schedule-list-desc {
  font-size: 13px;
  color: #666;
  font-weight: normal;
  line-height: 1.5;
  margin-top: 4px;
}
.p-schedule-box .p-schedule-list-block .p-schedule-list-desc p {
  margin: 0;
}
.p-schedule-box .p-schedule-list-block p {
  color: #666;
  font-size: 14px;
  margin: 0;
}
.p-schedule-box .p-schedule-list-btn {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-schedule-box .p-schedule-list-btn {
    margin-top: 28px;
    padding-top: 10px;
  }
}
.p-schedule-box .p-schedule-list-btn .p-schedule-reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #3FA7D1 0%, #2a8bc1 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(63, 167, 209, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-schedule-box .p-schedule-list-btn .p-schedule-reserve-btn {
    padding: 14px 20px;
    gap: 8px;
    border-radius: 40px;
  }
}
.p-schedule-box .p-schedule-list-btn .p-schedule-reserve-btn::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("../images/common/icon-phone.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-schedule-box .p-schedule-list-btn .p-schedule-reserve-btn::before {
    width: 18px;
    height: 18px;
  }
}
.p-schedule-box .p-schedule-list-btn .p-schedule-reserve-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(63, 167, 209, 0.45);
  background: linear-gradient(135deg, #48b4de 0%, #3095cb 100%);
}
.p-schedule-box .p-schedule-list-btn .p-schedule-reserve-btn:active {
  transform: translateY(-1px);
}
.p-schedule-box .p-schedule-list-btn .p-schedule-reserve-btn_label {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.p-schedule-box .p-schedule-list-btn .p-schedule-reserve-btn_num {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}
/*# sourceMappingURL=style-schedule.css.map */