@import url("reset.css");

:root {
  --brand: #6c4791;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  position: relative;
  overflow: hidden;
}

.color-brand {
  color: var(--brand) !important;
  font-family: inherit !important;
}

.medium {
  font-weight: 500 !important;
}
.semi-bold {
  font-weight: 600 !important;
}
.bold {
  font-weight: 500 !important;
}

.flex {
  display: flex;
}
.flex_col {
  flex-direction: column;
}

.serif,
.serif * {
  font-family: "Noto Serif KR", sans-serif !important;
}
.white,
.white * {
  color: #fff;
}
img {
  max-width: 100%;
}

.btn {
  border-radius: 100px;
  display: inline-block;
  width: 180px;
  height: 60px;
  line-height: 60px;
  font-size: 1.6rem;
  text-align: center;
  cursor: pointer;
}

.btn.btn_brand {
  background: var(--brand);
  color: #fff;
}

.btn.btn_brand_line {
  border: solid 1px var(--brand);
  color: var(--brand);
  background: #fff;
}

.btn.btn_cancel {
  border: solid 1px #ddd;
  background-color: #fff;
  color: #999;
}

.btn.btn_lg {
  width: 100%;
}
.text_ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.text_ellipsis2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.pdt_0 {
  padding-top: 0 !important;
}
.is_mo {
  display: none;
}
/* header */
.header-wrap {
  width: 100%;
  height: 100px;
  z-index: 9999;
  transition: all 0.3s;
  position: fixed;
  left: 0px;
  top: 0px;
}
.header-wrap .header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  min-width: inherit;
  padding: 0 30px;
  height: 100%;
  transition: all 0.4s;
  z-index: 2;
  position: relative;
}

.header-wrap .header > * {
  z-index: 2;
}

.header-wrap .hd_logo {
  flex-shrink: 0;
  z-index: 3;
}
.header-wrap .hd_logo a {
  display: block;
  width: 280px;
  height: 31px;
  background: url("/ivf/img/common/logo_w.svg") center center / contain
    no-repeat;
}

.header-wrap .hd_menu {
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: url("/ivf/img/common/hd_menu.svg") center center no-repeat;
  border-radius: 100%;
}
.header-wrap .gnb_w {
  height: 100%;
  padding: 16px 0;
}
.header-wrap #gnb {
  display: inline-flex;
  gap: 65px;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  border-radius: 300px;
  padding: 20px 40px;
}
.header-wrap #gnb .main_menu {
  text-align: center;
  position: relative;
}
.header-wrap #gnb .main_menu > a {
  display: block;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
}
.header-wrap #gnb .main_menu:hover > a,
.header-wrap #gnb .main_menu:has(.sub_menu li:hover) > a {
  color: var(--brand) !important;
}
.header-wrap .hd_rt {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-wrap .hd_rt .link_btn {
  display: flex;
  align-items: center;
}
.header-wrap .hd_rt .link_btn > * {
  cursor: pointer;
  font-size: 1.6rem;
  color: #fff;
}
.header-wrap .hd_rt .link_btn > * + *::before {
  display: inline-block;
  content: "";
  margin: 0 10px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 100%;
  vertical-align: middle;
}
.header-wrap .sub_menu {
  position: absolute;
  display: none;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  margin-top: 36px;
}
.header-wrap .sub_menu_wrap {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
  background: #fff;
  width: 100%;
}
.header-wrap .sub_menu_wrap .container.flex {
  justify-content: center;
  gap: 65px;
  width: 800px;
  text-align: center;
  padding: 0 40px;
}
.header-wrap.fixed.sub_open .gnb_w::before {
  position: absolute;
  left: 0;
  top: 100px;
  background: #fff;
  display: block;
  content: "";
  width: 100%;
  height: 325px;
  z-index: -1;
  box-shadow: 0px 4px 10px 0px #0000001a;
}
.header-wrap .sub_menu li a {
  font-size: 18px;
  font-weight: 600;
  color: #6b7280;
  line-height: 2.5;
}
.header-wrap .sub_menu li:hover a {
  font-weight: 700;
  color: var(--brand);
}
.header-wrap.fixed .header {
  background: #fff;
  box-shadow: 0px 4px 10px 0px #0000001a;
}
.header-wrap.fixed .hd_logo a {
  background-image: url("/ivf/img/common/logo_c.svg");
}
.header-wrap.fixed #gnb .main_menu > a {
  color: #161c1c;
}
.header-wrap.fixed .hd_rt .link_btn > * {
  color: #161c1c;
}
.header-wrap.fixed .hd_rt .link_btn > *::before {
  background: #161c1c;
}
.header-wrap.fixed .hd_menu {
  background-color: var(--brand);
}

@media screen and (max-width: 1280px) {
  .quick_wrap {
    right: 35px;
    bottom: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1279px) {
  .quick_wrap {
    transform: scale(0.7);
    right: 24px !important;
    bottom: 24px !important;
    transform-origin: bottom right;
  }
}
@media screen and (min-width: 769px) {
  .quick_wrap {
    position: fixed;
    right: 55px;
    bottom: 50px;
    z-index: 9;
    text-align: center;
  }
  .quick_list {
    background: linear-gradient(180deg, #845eaa 0%, #c4a5b9 100%);
    border-radius: 16px;
    width: 110px;
  }
  .quick_list li {
    width: 100%;
    padding: 22px 0;
    text-align: center;
    min-height: 110px;
  }
  .quick_list li + li {
    border-top: solid 1px #fff;
  }
  .quick_list li img {
    display: block;
    margin: 0 auto 12px;
  }
  .quick_list li a {
    display: block;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    letter-spacing: -3%;
  }
}
@media screen and (max-width: 768px) {
  .quick_wrap {
    display: none;
  }
  .mo_quick_wrap {
    display: block;
    position: fixed;
    left: 0px;
    bottom: 0;
    z-index: 9;
    text-align: center;
    background: #fff;
    width: 100%;
    height: 70px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    box-shadow: 0px 4px 10px 0px #0000001a;
  }
  .quick_list {
    display: flex;
    width: 100%;
    align-items: center;
    height: 100%;
  }
  .quick_list li {
    flex: 1;
    text-align: center;
  }
  .quick_list li a {
    display: inline-flex;
    font-size: 14px;
    color: #555555;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
  .quick_list li .icon {
    mask-repeat: no-repeat;
    mask-position: center center;
    background-color: var(--brand);
    width: 20px;
    height: 20px;
    display: block;
    mask-size: cover;
  }
  .quick_list li:first-child .icon {
    mask-image: url("/ivf/img/common/quick_icon01.svg");
  }
  .quick_list li:nth-child(2) .icon {
    mask-image: url("/ivf/img/common/quick_icon02.svg");
  }
  .quick_list li:nth-child(3) .icon {
    mask-image: url("/ivf/img/common/quick_icon03.svg");
  }
  .quick_list li:last-child .icon {
    mask-image: url("/ivf/img/common/quick_icon04.svg");
  }
}

.footer {
  background: url("/ivf/img/common/ft_bg.png") center center / cover;
  width: 100%;
  z-index: 2;
  overflow: hidden;
  position: relative;
  padding: 115px 0;
}
.footer * {
  color: #fff;
}

.footer > .container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.footer .summary_wrap {
  max-width: 534px;
  flex: 1;
}
.footer .map_wrap {
  max-width: 615px;
  flex: 1;
}

.footer p.cont_tit {
  font-size: 2.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -3%;
}

.footer .summary_wrap > div + div {
  margin-top: 32px;
}

.footer .summary_wrap .map_cont p.cont_tit {
  margin-bottom: 24px;
}
.footer .summary_wrap .map_cont p:not(.cont_tit) {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -3%;
}
.footer .map_cont .map_btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.footer .map_cont .map_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.8rem;
  height: 64px;
  font-weight: 700;
  flex: 1;
  background: #f5f7fa;
  color: #161c1c;
  border: 1px solid #d1d5db;
  border-radius: 12px;
}
.footer .summary_wrap .tel_cont p.tel {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 4px;
  letter-spacing: -3%;
}

.footer .summary_wrap .time_cont ul {
  margin-top: 13px;
}
.footer .summary_wrap .time_cont ul li + li {
  margin-top: 12px;
}
.footer .summary_wrap .time_cont ul li {
  display: flex;
  align-items: center;
  width: max-content;
  position: relative;
  font-size: 2.4rem;
  gap: 24px;
  line-height: 32px;
  letter-spacing: -3%;
  font-weight: 600 !important;
}
.footer .summary_wrap .time_cont ul li p {
  display: flex;
  align-items: center;
}
.footer .summary_wrap .time_cont ul li span {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}
.footer .summary_wrap .time_cont ul li b {
  min-width: 90px;
  text-align: justify;
  vertical-align: middle;
  text-align-last: justify;
  margin-right: 16px;
}
.footer .summary_wrap .time_cont ul li .remark {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -5%;
  color: #f7f4eb;
}

.footer .root_daum_roughmap {
  width: 100%;
  border-radius: 24px;
}

.footer .wrap_controllers,
.footer .wrap_btn_zoom,
.footer .section_address {
  display: none !important;
}

.footer .ft_bottom {
  position: relative;
  margin-top: 84px;
}
.footer .ft_bottom .ft_bt_top {
  width: 100%;
  border-bottom: solid 1px #9ca3af;
  margin-bottom: 38px;
  padding-bottom: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.footer .ft_bottom .ft_bt_top .ft_btn {
  display: flex;
  gap: 16px;
}

.footer .ft_bottom .ft_bt_top .ft_btn a {
  font-size: 1.2rem;
  color: #d1d5db;
}

.footer .ft_copy {
  display: inline-flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
}
.footer .ft_copy p {
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.4;
  color: #d1d5db;
}
.footer .ft_copy .sns_btn {
  display: flex;
  gap: 14px;
}

.sitemap_wrap {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 9999;
  display: none;
  background: url("/ivf/img/common/sitemap_bg.png") center center / cover;
}
.sitemap_wrap > .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sitemap_wrap.active {
  display: block;
}
.sitemap_wrap .sitemap_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  opacity: 0;
  margin-bottom: 50px;
}
.sitemap_wrap .sitemap_top .logo {
  width: 410px;
  height: 50px;
  background-size: cover;
}

.sitemap_wrap .close {
  background: url("/ivf/img/common/sitemap_x.svg");
  cursor: pointer;
  width: 45px;
  height: 45px;
  position: absolute;
  right: 66px;
  top: 50px;
}

.sitemap_cont {
  position: relative;
  display: flex;
  align-items: center;
  gap: 64px;
}
.sitemap_cont .sitemap_left {
  width: 36%;
  background-size: cover;
  aspect-ratio: 669 / 562;
  min-width: 669px;
}
.sitemap_list {
  width: 100%;
}
.sitemap_list .flex {
  gap: 30px;
  width: 100%;
  flex-direction: column;
}
.sitemap_list .flex > div.sub_menu {
  flex: 1;
  transform: translateY(50px);
  transition: all 0.5s ease-in-out;
  opacity: 0;
  position: relative;
}
.sitemap_list .flex > div.sub_menu p.tit::before {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: -15px;
  top: 10px;
  opacity: 0;
  transition: opacity 0.4s;
}
.sitemap_list .flex > div.sub_menu.active p.tit::before {
  opacity: 1;
}
.sitemap_list .flex > div.sub_menu p.tit {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}
.sitemap_list .flex > div.sub_menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.sitemap_list .flex > div.sub_menu ul li {
  color: #fff;
  position: relative;
}
.sitemap_list .flex > div.sub_menu ul li + li {
  margin-left: 20px;
}
.sitemap_list .flex > div.sub_menu ul li + li::before {
  display: inline-block;
  vertical-align: bottom;
  content: "";
  width: 1px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: -10px;
  top: 0;
}
.sitemap_list .flex > div.sub_menu ul li a {
  font-size: 16px;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
}
.sitemap_list .flex > div.sub_menu ul li:hover {
  font-weight: 700;
}
.sitemap_wrap.active .sitemap_top {
  opacity: 1;
}

.sitemap_wrap.active .sitemap_list .flex > div.sub_menu {
  opacity: 1;
  transform: translateY(0);
}

section.white_bg {
  background-color: #fff;
}
section.brown_bg {
  background-color: var(--brown);
}
section.yellowg_bg {
  background-color: #f6f6f6;
}
.font60 {
  font-size: clamp(24px, 4.7vw, 60px);
}
.font56 {
  font-size: 5.6rem;
  line-height: 1.4;
}
.font40 {
  font-size: 4rem;
  line-height: 1.4;
}
.font34 {
  font-size: 3.4rem;
  line-height: 1.4;
}
.font32 {
  font-size: 3.2rem;
}
.font30 {
  font-size: 3rem;
}
.font24 {
  font-size: 2.4rem;
  line-height: 1.4;
}
.font20 {
  font-size: 2rem;
  line-height: 1.4;
}

.font18 {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.4;
}

.txt_center {
  text-align: center;
}

.margin_center {
  margin: 0 auto;
}

.layerPop-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
}

.layerPop-wrap {
  margin: 0 auto;
  position: fixed;
  top: 50%;
  z-index: 10001;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.layerPop-wrap .layerPopTop {
  position: relative;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  text-align: right;
}
.layerPop-wrap .layerPopTop > div {
  display: flex;
  align-items: center;
}
.layerPop-wrap .layerPopTop .swiper-navi {
  gap: 8px;
}
.layerPop-wrap .layerPopTop .swiper-navi p {
  cursor: pointer;
}
.layerPop-wrap .layerPopTop .swiper-navi .next {
  transform: scaleX(-1);
}

.layerPop-wrap .layerPopTop input[type="checkbox"] + label {
  background-image: url("/ivf/img/common/main_pop_chkbox.svg");
  background-size: 16px;
  height: 16px;
  padding-left: 24px;
}

.layerPop-wrap .layerPopTop input[type="checkbox"]:checked + label {
  background-image: url("/ivf/img/common/main_pop_chkbox_on.svg");
}

.layerPop-wrap .layerPopTop .label {
  width: auto;
  color: #fff;
  font-size: 1.4rem;
  background-size: 14px;
  line-height: 14px;
  height: 14px;
  padding-left: 20px;
}

.layerPop-wrap .layerPopTop button {
  background: none;
  cursor: pointer;
  margin-left: 20px;
}

.layerPop-wrap .layerPopCont {
  max-width: 1280px;
  border-radius: 12px;
  overflow: hidden;
}

.layerPop-wrap .swiper-slide {
  max-height: 580px;
  overflow: hidden;
  border-radius: 12px;
  min-width: 414px !important;
}

.layerPop-wrap .swiper-slide a {
  display: block;
}

.layerPop-wrap .layerPopCont img {
  max-width: 100%;
  max-height: 620px;
}

.layerPop-wrap .swiper-page {
  display: grid;
  gap: 1px;
  background: #ddd;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.layerPop-wrap .swiper-page .swiper-pagination-bullet {
  width: 100%;
  height: 60px;
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  opacity: 1 !important;
  background: none;
  border-radius: 0;
  margin: 0;
  line-height: 60px;
}

.layerPop-wrap .swiper-page .swiper-pagination-bullet-active {
  background: var(--brown) !important;
  color: #fff;
}

@media screen and (min-width: 1281px) {
  .mo_nav,
  .mo_mo_nav_bg {
    display: none;
  }
  .center-header-wrap .hd_rt .link_btn {
    display: none;
  }
  .mo_center_link,
  .mo_center_click_toggle {
    display: none;
  }
  .mo_nav_overlay {
    display: none;
  }
}

@media screen and (max-width: 1280px) {
  * {
    word-break: keep-all;
  }
  .header-wrap .header {
    padding: 0 35px;
    height: 78px;
  }
  .header-wrap .gnb_w {
    display: none !important;
  }
  .header-wrap .hd_logo a {
    width: 180px;
    height: 28px;
  }
  .header-wrap .hd_menu {
    width: 35px;
    height: 35px;
    background-size: auto 16px;
  }
  .mo_nav .nav_top {
    padding: 0 35px;
    height: 78px;
    justify-content: space-between;
    display: flex;
    background: #fff;
    position: relative;
    align-items: center;
  }
  .mo_nav .nav_top .logo {
    width: 180px;
    height: 28px;
  }
  .mo_nav .nav_btn {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .mo_nav .nav_btn .btn_close {
    width: 38px;
    height: 38px;
    display: inline-block;
    position: relative;
    background: url("/ivf/img/common/mo_hd_gnb_x.svg") center center no-repeat;
    background-size: cover;
  }
  .mo_nav {
    display: none;
    background: #f5f7fa;
    position: fixed;
    z-index: 10000;
    width: 50vw;
    height: 100%;
    top: 0;
    right: 0;
  }
  .mo_nav_overlay {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
  }
  .mo_nav > .flex {
    height: 100%;
  }
  .mo_gnb {
    max-height: calc(100% - 80px);
    overflow-y: auto;
    scrollbar-width: thin;
  }

  .mo_gnb .main_menu > p::after {
    display: inline-block;
    content: "";
    width: 13px;
    height: 13px;
    background: url("/ivf/img/common/mo_hd_gnb_arrow.svg") center center
      no-repeat;
    transition: all 0.4s;
  }
  .mo_gnb .main_menu.active > p::after {
    transform: scaleY(-1);
  }
  .mo_gnb .main_menu > p {
    line-height: 64px;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-bottom: 1px solid #d1d5db;
  }
  .mo_nav .sub_menu {
    width: 100%;
  }
  .mo_nav .sub_menu_list {
    display: none;
    background: #fff;
    padding: 25px 40px;
    border-bottom: 1px solid #d1d5db;
  }
  .mo_nav .sub_menu_list li {
    position: relative;
  }
  .mo_nav .sub_menu_list li + li {
    margin-top: 16px;
  }
  .mo_nav .sub_menu_list a {
    display: block;
    font-size: 16px;
    color: #6b7280;
  }
  .footer .container {
    gap: 30px;
    padding: 0 16px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .footer .map_wrap {
    width: 100%;
    max-width: initial;
  }
  .footer .summary_wrap {
    width: 100%;
    max-width: initial;
    padding-left: 20px;
  }

  .layerPop-wrap {
    margin: 0 auto;
    position: fixed;
    top: 50%;
    z-index: 10001;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 70% !important;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
  }
  .layerPop-wrap .layerPopCont {
    border-radius: 0 !important;
  }
  .layerPop-wrap .layerPopTop {
    display: none !important;
  }
  .layerPop-wrap .layerPop.swiper-slide {
    background: #f7f7f7;
    min-width: auto !important;
    border-radius: 0;
  }
  .layerPop-wrap .layerPop.swiper-slide a {
    display: block;
  }
  .layerPop-wrap .swiper-pagination {
    bottom: 50px !important;
    width: 100% !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .layerPop-wrap .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: solid 1px #fff;
    background: transparent;
    opacity: 1;
    margin: 0 2px;
  }
  .layerPop-wrap .swiper-pagination-bullet-active {
    background: #fff;
  }
  .layerPop-wrap .popup-bt {
    background: #f2f2f2;
    display: flex;
  }
  .layerPop-wrap .popup-bt > a {
    width: 100%;
    display: block;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
    border: solid 1px #d7d7d7;
    font-size: 12px;
    color: #333;
  }
}

@media screen and (max-width: 768px) {
  .header-wrap .header {
    height: 78px;
    padding: 0 20px;
  }
  .mo_nav {
    width: 100%;
  }
  .mo_nav .nav_top {
    padding: 0 20px;
  }
  .header-wrap .hd_rt .link_btn.mo_none {
    display: none;
  }
  .is_mo {
    display: block;
  }
  .header-wrap:not(.fixed) .hd_rt .mo_link_btn p img {
    filter: brightness(1000%);
  }
  .footer {
    padding: 50px 0 90px;
    background-image: url("/ivf/img/common/ft_bg_mo.png");
  }
  .footer .root_daum_roughmap {
    height: 250px;
  }
  .footer .summary_wrap .map_cont p:not(.cont_tit) {
    font-size: 16px;
  }
  .footer .summary_wrap p.cont_tit {
    font-size: 16px;
  }
  .footer .summary_wrap p.cont_tit img {
    width: 30px;
  }
  .footer .summary_wrap .tel_cont p.tel {
    font-size: 26px;
    line-height: 1.4;
  }
  .footer .summary_wrap .time_cont ul li {
    line-height: 32px;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .footer .summary_wrap .time_cont ul li span.remark {
    line-height: initial;
  }
  .footer .ft_bottom {
    margin-top: 48px;
  }
  .footer .ft_bottom .ft_bt_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .footer .ft_bottom .ft_bt_top img {
    height: 22px;
  }
  .footer .ft_bottom .ft_copy {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
  }
  .footer .ft_copy p.mo_none {
    display: none;
  }
  .layerPop-wrap {
    width: 90% !important;
  }
}
