@charset "utf-8";

/* ==========================================================================
   1. Main Visual Section
   ========================================================================== */
.main_visual {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main_visual_swiper {
  width: 100%;
  height: 800px;
}

.main_visual_item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 800px;
  background-image: var(--main-visual-pc-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.main_visual_text {
  position: relative;
  z-index: 2;
  width: calc(100% - 40px);
  max-width: 1200px;
  text-align: center;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}

.swiper-slide-active .main_visual_text {
  opacity: 1;
  transform: translateY(0);
}

.main_visual_text h2 {
  margin: 0 0 18px;
  color: #7cd3ff;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.05em;
}

.main_visual_text p {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.04em;
}

.main_visual_pagination {
  position: absolute;
  left: 0;
  bottom: 56px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.main_visual_bullet {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: .85;
  cursor: pointer;
  transition:
    width .3s ease,
    height .3s ease,
    background .3s ease,
    opacity .3s ease;
}

.main_visual_bullet.is-active {
  width: 16px;
  height: 16px;
  background: #209ad9;
  opacity: 1;
}

/* ==========================================================================
   2. Main Clinic Section
   ========================================================================== */
.main_clinic {
  position: relative;
  padding: 74px 0 88px;
  background: #fff;
  overflow: hidden;
}

.main_clinic_inner {
  position: relative;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 34px;
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 0 0 88px;
}

.main_clinic_head {
  position: relative;
  z-index: 5;
  padding-top: 4px;
  text-align: left;
}

.main_clinic_sub {
  margin: 0;
  color: #67b2e4;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 41px;
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.04em;
}

.main_clinic_head h2 {
  margin: 0;
  color: #000;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 44px;
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.04em;
}

.main_clinic_desc {
  margin: 42px 0 0;
  color: #111;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.06em;
}

.main_clinic_notice {
  margin: 22px 0 0;
  color: #494949;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -.04em;
}

.main_clinic_category {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 150px 0 0;
  padding: 0;
  list-style: none;
}

.main_clinic_category button {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #28313a;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.06em;
  cursor: pointer;
}

.main_clinic_category button::after {
  content: 'EVENT';
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.main_clinic_category button.is-active {
  padding-bottom: 4px;
  border-bottom: 1px solid #95caed;
  color: #95caed;
}

.main_clinic_swiper_wrap {
  position: relative;
  min-width: 0;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity .9s ease, transform .9s ease;
}

.main_clinic.is-motion .main_clinic_swiper_wrap {
  opacity: 1;
  transform: translateY(0);
}

.main_clinic_swiper {
  width: 100%;
  overflow: visible;
}

.main_clinic .swiper-slide {
  width: 354px;
  height: auto;
  transition: border 250ms ease-in-out;
}

.main_clinic .swiper-slide:hover {
  border: 4px solid #609ac0;
}

.main_clinic_card {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f4f4f4;
}

.main_clinic_card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.main_clinic_card:hover img {
  transform: scale(1.04);
}

.main_clinic_control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
}

.main_clinic_arrow {
  position: relative;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid #eee;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}

.main_clinic_arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid #111;
  border-right: 1px solid #111;
  transition: border-color .25s ease;
}

.main_clinic_prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.main_clinic_next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.main_clinic_arrow:hover {
  border-color: #95caed;
  background: #95caed;
}

.main_clinic_arrow:hover::before {
  border-color: #fff;
}

/* ==========================================================================
   3. Main Video Section
   ========================================================================== */
.main_video {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

.main_video_bg {
  position: absolute;
  inset: 0;
  background-image: url('');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
}

.main_video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(84, 170, 226, .62);
  backdrop-filter: blur(1px);
}

.main_video_inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.main_video_head {
  margin-bottom: 58px;
  text-align: center;
}

.main_video_sub {
  margin: 0 0 18px;
  color: #fff;
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
}

.main_video_head h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: -.05em;
}

.main_video_desc {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
}

.main_video_box {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  text-decoration: none;
}

.main_video_thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
}

.main_video_el {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .7s ease;
  border: 0;
}

.main_video_play {
  display: none;
}

.main_video_play span {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 34px solid #fff;
}

.main_video_box:hover .main_video_play {
  background: rgba(255, 255, 255, .18);
  transform: translate(-50%, -50%) scale(1.08);
}

.main_video_head,
.main_video_box {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity .9s ease, transform .9s ease;
}

.main_video.is-motion .main_video_head,
.main_video.is-motion .main_video_box {
  opacity: 1;
  transform: translateY(0);
}

.main_video.is-motion .main_video_box {
  transition-delay: .15s;
}

/* ==========================================================================
   4. Main Doctor Section
   ========================================================================== */
.main_doctor {
  position: relative;
  padding: 130px 0;
  background: #fff;
  overflow: hidden;
}

.main_doctor_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.main_doctor_head {
  margin-bottom: 70px;
  text-align: center;
}

.main_doctor_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 38px;
  margin: 0 0 24px;
  padding: 0 22px;
  border: 2px solid #43a7df;
  border-radius: 999px;
  color: #43a7df;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.main_doctor_head h2 {
  margin: 0 0 20px;
  color: #253642;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: -.055em;
}

.main_doctor_head p {
  margin: 0;
  color: #7d8790;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -.035em;
}

.main_doctor_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.main_doctor_card {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .06);
  color: inherit;
  text-decoration: none;
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity .8s ease,
    transform .8s ease,
    box-shadow .35s ease;
}

.main_doctor.is-motion .main_doctor_card {
  opacity: 1;
  transform: translateY(0);
}

.main_doctor.is-motion .main_doctor_card:nth-child(2) {
  transition-delay: .15s;
}

.main_doctor_card:hover {
  box-shadow: 0 24px 54px rgba(0, 0, 0, .12);
}

.main_doctor_img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: #eef5f9;
}

.main_doctor_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.main_doctor_card:hover .main_doctor_img img {
  transform: scale(1.06);
}

.main_doctor_info {
  padding: 34px 20px 38px;
  text-align: center;
}

.main_doctor_info span {
  display: block;
  margin-bottom: 10px;
  color: #43a7df;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.03em;
}

.main_doctor_info strong {
  display: block;
  color: #111;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.05em;
}

/* ===========================================================================
   5. Main Joint Section
   ========================================================================== */
.main_joint {
  position: relative;
  min-height: 800px;
  padding: 102px 0 58px;
  background: #000;
  overflow: hidden;
}

.main_joint_visual {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  pointer-events: none;
  transition: background-image .35s ease, opacity .35s ease;
}

.main_joint_inner {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: 0 190px 0 auto;
  padding: 0 24px;
}

.main_joint_head {
  text-align: center;
}

.main_joint_head h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 57px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
}

.main_joint_head h2 span {
  color: #bde4ff;
}

.main_joint_head p {
  margin: 14px 0 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .06em;
}

.main_joint_category {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 76px 0 0;
}

.main_joint_category button {
  position: relative;
  min-width: 96px;
  height: 38px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
  cursor: pointer;
  transition: color .25s ease;
}

.main_joint_category button::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, .18);
  transform: translateY(-50%);
}

.main_joint_category button:first-child::before {
  display: none;
}

.main_joint_category button::after {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  background: #bde4ff;
  opacity: 0;
  transition: opacity .25s ease;
}

.main_joint_category button.is-active {
  color: #bde4ff;
}

.main_joint_category button.is-active::after {
  opacity: 1;
}

.main_joint_more {
  position: absolute;
  top: 175px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color .25s ease;
}

.main_joint_more::before,
.main_joint_more::after {
  content: '';
  display: block;
  background: currentColor;
}

.main_joint_more::before {
  order: 2;
  width: 16px;
  height: 1px;
}

.main_joint_more::after {
  order: 3;
  width: 1px;
  height: 16px;
  margin-left: -20px;
}

.main_joint_more:hover {
  color: #bde4ff;
}

.main_joint_content {
  margin-top: 41px;
}

.main_joint_swiper {
  width: 100%;
  overflow: hidden;
}

.main_joint_panel {
  height: auto;
}

.main_joint_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px;
  align-items: stretch;
}

.main_joint_card {
  display: block;
  overflow: hidden;
  height: 100%;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.main_joint_photo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 300px;
  overflow: hidden;
  background: #dcf1ff;
}

.main_joint_photo>div {
  position: relative;
  overflow: hidden;
}

/* .main_joint_photo>div::before,
.main_joint_photo>div::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 56px;
  background: rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
} */

.main_joint_photo>div::before {
  top: 0;
}

.main_joint_photo>div::after {
  bottom: 0;
}

.main_joint_case_img {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, .18), rgba(158, 109, 98, .12));
}

.main_joint_photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.main_joint_card:hover .main_joint_photo img {
  transform: scale(1.04);
}

.main_joint_after {
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.main_joint_card_info {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  height: 46px;
  background: #fff;
  color: #b8c2d3;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.main_joint_card_info span {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
}

.main_joint_card_info span+span {
  border-left: 1px solid #e5edf4;
}

.main_joint_card_info em {
  position: absolute;
  right: 0;
  padding: 0 15px 0 0;
  color: #c4ccd9;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

.main_joint_notice {
  margin: 62px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -.04em;
}

.main_joint_arrow {
  position: absolute;
  bottom: -8px;
  z-index: 10;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.main_joint_arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: border-color .25s ease;
}

.main_joint_prev {
  left: 22px;
}

.main_joint_next {
  right: 22px;
}

.main_joint_prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.main_joint_next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.main_joint_arrow:hover::before {
  border-color: #bde4ff;
}

.main_joint_head,
.main_joint_category,
.main_joint_more,
.main_joint_content,
.main_joint_notice {
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity .9s ease,
    transform .9s ease;
}

.main_joint.is-motion .main_joint_head,
.main_joint.is-motion .main_joint_category,
.main_joint.is-motion .main_joint_more,
.main_joint.is-motion .main_joint_content,
.main_joint.is-motion .main_joint_notice {
  opacity: 1;
  transform: translateY(0);
}

.main_joint.is-motion .main_joint_category {
  transition-delay: .1s;
}

.main_joint.is-motion .main_joint_more,
.main_joint.is-motion .main_joint_content {
  transition-delay: .18s;
}

.main_joint.is-motion .main_joint_notice {
  transition-delay: .28s;
}

/* ==========================================================================
   6. Main Location Section
   ========================================================================== */
.main_location {
  position: relative;
  padding: 130px 0 0;
  background: #fff;
  overflow: hidden;
}

.main_location_head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
  text-align: center;
}

.main_location_sub {
  margin: 0 0 16px;
  color: #43a7df;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .18em;
}

.main_location_head h2 {
  margin: 0 0 22px;
  color: #1d2b36;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.06em;
}

.main_location_head p {
  margin: 0;
  color: #6f7c85;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -.04em;
}

.main_location_map {
  width: 100%;
  height: 600px;
  background: #eef5f9;
  overflow: hidden;
}

.main_location_map iframe,
.main_location_map>div {
  width: 100%;
  height: 100%;
}

.main_location_map .root_daum_roughmap {
  width: 100%;
}

.main_location_map .root_daum_roughmap .wrap_map {
  height: 600px;
}

.main_location_info {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 28px;
  max-width: 1200px;
  margin: -58px auto 100px;
  padding: 34px 40px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .12);
  position: relative;
  z-index: 5;
}

.main_location_item {
  min-width: 0;
}

.main_location_item span {
  display: block;
  margin-bottom: 10px;
  color: #43a7df;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.main_location_item strong {
  display: block;
  color: #111;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.045em;
}

.main_location_item a {
  color: inherit;
  text-decoration: none;
}

.main_location_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: #03ca5b;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.04em;
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
}

.main_location_btn_n {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.main_location_btn:hover {
  background: #029c47;
  color: #fff;
}

.main_location_head,
.main_location_map,
.main_location_info {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity .9s ease, transform .9s ease;
}

.main_location.is-motion .main_location_head,
.main_location.is-motion .main_location_map,
.main_location.is-motion .main_location_info {
  opacity: 1;
  transform: translateY(0);
}

.main_location.is-motion .main_location_map {
  transition-delay: .12s;
}

.main_location.is-motion .main_location_info {
  transition-delay: .24s;
}

/* ==========================================================================
   7. Responsive Web Design (Media Queries)
   ========================================================================== */

/* Laptop & Tablet (max-width: 1199px) and (min-width: 768px) */
@media (max-width: 1199px) and (min-width: 768px) {

  /* Main Visual */
  .main_visual_swiper,
  .main_visual_item {
    height: 680px;
  }

  .main_visual_text h2 {
    font-size: 56px;
  }

  .main_visual_text p {
    font-size: 22px;
  }

  /* Main Clinic */
  .main_clinic {
    padding: 70px 0 82px;
  }

  .main_clinic_inner {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 28px;
    padding-left: 34px;
  }

  .main_clinic_sub {
    font-size: 34px;
  }

  .main_clinic_head h2 {
    font-size: 36px;
  }

  .main_clinic_desc {
    margin-top: 34px;
    font-size: 18px;
  }

  .main_clinic_category {
    margin-top: 96px;
  }

  .main_clinic_category button {
    font-size: 20px;
  }

  .main_clinic .swiper-slide {
    width: 300px;
  }

  /* Main Video */
  .main_video {
    padding: 110px 0;
  }

  .main_video_sub {
    font-size: 60px;
  }

  .main_video_head h2 {
    font-size: 34px;
  }

  .main_video_play {
    width: 96px;
    height: 96px;
  }

  .main_video_play span {
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-left-width: 28px;
  }

  /* Main Doctor */
  .main_doctor {
    padding: 110px 0;
  }

  .main_doctor_head h2 {
    font-size: 36px;
  }

  .main_doctor_info strong {
    font-size: 30px;
  }

  /* Main Joint */
  .main_joint {
    min-height: auto;
    padding: 86px 0 58px;
  }

  .main_joint_visual {
    width: 380px;
    opacity: .55;
  }

  .main_joint_inner {
    max-width: none;
    margin: 0 auto;
    padding: 0 34px;
  }

  .main_joint_category {
    margin-top: 58px;
  }

  .main_joint_category button {
    min-width: auto;
    padding: 0 18px;
    font-size: 18px;
  }

  .main_joint_more {
    top: 155px;
    right: 34px;
  }

  .main_joint_photo {
    height: 250px;
  }

  .main_joint_notice {
    margin-top: 48px;
  }

  .main_joint_arrow {
    bottom: -4px;
  }

  /* Main Location */
  .main_location {
    padding-top: 110px;
  }

  .main_location_head h2 {
    font-size: 44px;
  }

  .main_location_map {
    height: 520px;
  }

  .main_location_info {
    grid-template-columns: 1fr 1fr;
    margin: -48px 24px 0;
  }

  .main_location_btn {
    grid-column: 1 / 3;
    width: 100%;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {

  /* Main Visual */
  .main_visual_swiper,
  .main_visual_item {
    height: 560px;
  }

  .main_visual_item {
    background-image: var(--main-visual-mo-image);
    background-position: center;
  }

  .main_visual_text {
    width: calc(100% - 32px);
  }

  .main_visual_text h2 {
    margin-bottom: 14px;
    font-size: 38px;
  }

  .main_visual_text p {
    font-size: 18px;
  }

  .main_visual_pagination {
    bottom: 34px;
    gap: 10px;
  }

  .main_visual_bullet {
    width: 8px;
    height: 8px;
  }

  .main_visual_bullet.is-active {
    width: 14px;
    height: 14px;
  }

  /* Main Clinic */
  .main_clinic {
    padding: 64px 0 72px;
  }

  .main_clinic_inner {
    display: block;
    padding: 0 20px;
  }

  .main_clinic_head {
    margin-bottom: 34px;
  }

  .main_clinic_sub {
    font-size: 30px;
  }

  .main_clinic_head h2 {
    font-size: 34px;
  }

  .main_clinic_desc {
    margin-top: 26px;
    font-size: 17px;
  }

  .main_clinic_notice {
    margin-top: 14px;
    font-size: 13px;
  }

  .main_clinic_category {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 32px;
  }

  .main_clinic_category button {
    font-size: 18px;
  }

  .main_clinic_category button::after {
    font-size: 12px;
  }

  .main_clinic .swiper-slide {
    width: 78vw;
    max-width: 330px;
  }

  .main_clinic_control {
    gap: 18px;
    margin-top: 28px;
  }

  .main_clinic_arrow {
    width: 48px;
    height: 48px;
  }

  /* Main Video */
  .main_video {
    padding: 84px 0;
  }

  .main_video_inner {
    padding: 0 20px;
  }

  .main_video_head {
    margin-bottom: 38px;
  }

  .main_video_sub {
    margin-bottom: 14px;
    font-size: 6vw;
  }

  .main_video_head h2 {
    margin-bottom: 14px;
    font-size: 5vw;
  }

  .main_video_desc {
    font-size: 16px;
  }

  .main_video_play {
    width: 78px;
    height: 78px;
    border-width: 4px;
  }

  .main_video_play span {
    margin-left: 5px;
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 22px;
  }

  /* Main Doctor */
  .main_doctor {
    padding: 84px 0;
  }

  .main_doctor_inner {
    padding: 0 20px;
  }

  .main_doctor_head {
    margin-bottom: 42px;
  }

  .main_doctor_label {
    min-width: 96px;
    height: 34px;
    margin-bottom: 18px;
    font-size: 15px;
  }

  .main_doctor_head h2 {
    margin: 14px 0;
    font-size: 6vw;
  }

  .main_doctor_head p {
    font-size: 16px;
  }

  .main_doctor_list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .main_doctor_info {
    padding: 26px 18px 30px;
  }

  .main_doctor_info span {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .main_doctor_info strong {
    font-size: 28px;
  }

  /* Main Joint */
  .main_joint {
    min-height: auto;
    padding: 64px 0 56px;
  }

  .main_joint_visual {
    width: 100%;
    opacity: .6;
  }

  .main_joint_inner {
    margin: 0;
    padding: 0 20px;
  }

  .main_joint_head h2 {
    font-size: 31px;
  }

  .main_joint_head p {
    margin-top: 10px;
    font-size: 10px;
  }

  .main_joint_category {
    flex-wrap: wrap;
    margin-top: 38px;
  }

  .main_joint_category button {
    min-width: auto;
    height: 34px;
    padding: 0 13px;
    font-size: 3.5vw;
  }

  .main_joint_category button::before {
    height: 17px;
  }

  .main_joint_category button::after {
    left: 13px;
    right: 13px;
  }

  .main_joint_more {
    position: relative;
    top: auto;
    right: auto;
    justify-content: flex-end;
    width: 100%;
    margin-top: 28px;
    font-size: 13px;
  }

  .main_joint_content {
    margin-top: 24px;
  }

  .main_joint_swiper {
    overflow: hidden;
  }

  .main_joint_list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .main_joint_photo {
    height: auto;
    aspect-ratio: 2 / 1;
  }

  /* .main_joint_photo>div::before,
  .main_joint_photo>div::after {
    height: 38px;
  } */

  .main_joint_card_info {
    height: 42px;
    font-size: 12px;
  }

  .main_joint_card_info span {
    padding: 0 12px;
  }

  .main_joint_card_info em {
    padding-right: 12px;
    font-size: 11px;
  }

  .main_joint_notice {
    margin-top: 34px;
    padding: 0 30px;
    word-break: keep-all;
  }

  .main_joint_arrow {
    bottom: -12px;
    width: 44px;
    height: 44px;
  }

  .main_joint_arrow::before {
    width: 22px;
    height: 22px;
  }

  .main_joint_prev {
    left: 8px;
  }

  .main_joint_next {
    right: 8px;
  }

  /* Main Location */
  .main_location {
    padding-top: 84px;
  }

  .main_location_head {
    margin-bottom: 42px;
    padding: 0 20px;
  }

  .main_location_sub {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .main_location_head h2 {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .main_location_head p {
    font-size: 16px;
  }

  .main_location_map {
    height: 420px;
  }

  .main_location_info {
    grid-template-columns: 1fr;
    gap: 22px;
    margin: -36px 20px 30px;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .main_location_item span {
    font-size: 15px;
  }

  .main_location_item strong {
    font-size: 18px;
  }

  .main_location_btn {
    width: 100%;
    height: 54px;
    font-size: 16px;
  }
}

/* Doctor Profile Modal */
body.is_doctor_modal_open {
  overflow: hidden;
}

.main_doctor_card {
  width: 100%;
  padding: 0;
  border: 0;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.main_doctor_modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.main_doctor_modal.is-active {
  opacity: 1;
  visibility: visible;
}

.main_doctor_modal_dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
}

.main_doctor_modal_box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  padding: 52px 48px 48px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .2);
  text-align: center;
  transform: translateY(24px);
  transition: transform .3s ease;
}

.main_doctor_modal.is-active .main_doctor_modal_box {
  transform: translateY(0);
}

.main_doctor_modal_close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.main_doctor_modal_close::before,
.main_doctor_modal_close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #111;
}

.main_doctor_modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.main_doctor_modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.main_doctor_modal_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  margin: 0 0 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: #eef8fe;
  color: #43a7df;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.main_doctor_modal_box h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.05em;
}

.main_doctor_modal_position {
  margin: 0 0 28px;
  color: #43a7df;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.04em;
}

.main_doctor_modal_profile {
  padding: 30px 26px;
  border-radius: 18px;
  background: #f7f8fa;
  color: #555;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -.04em;
}

@media (max-width: 767px) {
  .main_doctor_modal {
    padding: 20px;
  }

  .main_doctor_modal_box {
    padding: 48px 24px 30px;
    border-radius: 18px;
  }

  .main_doctor_modal_box h3 {
    font-size: 30px;
  }

  .main_doctor_modal_position {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .main_doctor_modal_profile {
    padding: 24px 18px;
    font-size: 16px;
  }
}