#wrap {
  width: 100%;
  min-width: 1440px;
  overflow: hidden;
}

.fp_cont .section {
  overflow: hidden;
}

.inner {
  width: calc(100% - 4rem);
  max-width: 1280px;
  margin: 0 auto;
}

.disc {
  font-size: 1.8rem;
  line-height: 1.6;
}

/* ################# header  ################# */
#hd {
  width: 100%;
  max-height: 102px;
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.3s;
  z-index: -1;
}

.hd_wr {
  width: calc(100% - 4rem);
  max-width: 1760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.7rem 0 1.8rem;
}

.hd_left {
  display: flex;
  align-items: center;
  gap: 7rem;
}

#hd .logo a {
  display: block;
  width: 171px;
  height: 58px;
  background: url("/theme/addoctor/img/common/logo.png") no-repeat center
    center/cover;
}

#gnb > ul {
  display: flex;
  align-items: center;
  gap: 4rem;
}

#gnb > ul > li {
  position: relative;
}

#gnb .depth1 {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 5.8rem;
  position: relative;
}

#gnb .depth1::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: -100%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease-out;
  transition-property: opacity, top, visibility;
  background-color: var(--main-color);
}

#gnb .act .depth1::before {
  top: -5px;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s, 0s, 0s;
}

#gnb .act a {
  color: var(--main-color);
}

#gnb .submenu_list {
  min-width: 15.4rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  padding: 3rem 1rem;
  border-radius: 1.5rem;
  transition: all 0.4s ease-out;
  transition-property: opacity, top, visibility;
  background-color: var(--main-color);
}

#gnb .act .submenu_list {
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 10;
  transition-delay: 0s, 0s, 0s;
}

#gnb .submenu_list li + li {
  margin-top: 2.4rem;
}

#gnb .submenu_list li a {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

.fp-viewing-3 #gnb .depth1 {
  color: #c3c3c3;
}

.hamBtn {
  width: 80px;
  height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 6rem;
  box-sizing: border-box;
}

.hamBtn .line {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fff;
  margin: 5px auto;
  margin-right: 0;
  transition: all 0.8s ease-in-out;
}

.hamBtn .line:nth-child(1) {
  width: 100%;
  background-color: var(--main-color);
}

.hamBtn .line:nth-child(2) {
  width: 50%;
  background-color: var(--sub-color);
}

.hamBtn .line:nth-child(3) {
  width: 25%;
  background-color: var(--sub-color);
}

/* active */
.hamBtn.act {
  position: relative;
  z-index: 100000;
}

.hamBtn.act .line:nth-child(2),
.hamBtn.act .line:nth-child(4) {
  opacity: 0;
}

.hamBtn.act .line:nth-child(1) {
  transform: translateY(14px) rotate(45deg);
  width: 50%;
  background-color: #fff;
}

.hamBtn.act .line:nth-child(3) {
  transform: translateY(-14px) rotate(-45deg);
  width: 50%;
  background-color: #fff;
}

/* 공통 :: open */

.sitemap {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: -1;
  opacity: 0;
  filter: Alpha(opacity=0);
  visibility: hidden;
}

.sitemap.open {
  opacity: 1;
  filter: Alpha(opacity=100);
  visibility: visible;
  z-index: 999;
}

.sitemap.open:before {
  opacity: 0.5;
}

.sitemap .sitemap_bg {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 0%;
  top: 0px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.6s ease;
}

.sitemap.open .sitemap_bg {
  height: 100%;
}

.sitemap.open .st_wr {
  opacity: 1;
  transition-delay: 0.4s;
}

.sitemap.open .st_list_wr > ul > li {
  opacity: 1;
  transform: translateY(0);
}

.stm_contt {
  position: absolute;
  display: table;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.sitemap .st_wr {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 5em 0;
  opacity: 0;
  transition: opacity 0.5s ease 0s;
}

.sitemap::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.st_ctt {
  max-width: 1520px;
  margin: 0 auto;
}

.st_con {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.st_con h1 {
  position: relative;
  font-size: 3em;
  padding-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.004em;
  color: #fff;
  text-align: left;
}

.st_list_wr {
  margin-top: 3.75em;
}

.st_list_wr > ul {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.st_list_wr > ul > li {
  padding: 0 2%;
  display: table-cell;
  vertical-align: top;
  text-align: left;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.sitemap.open .st_list_wr > ul > li:nth-child(2) {
  transition-delay: 0.2s;
}

.sitemap.open .st_list_wr > ul > li:nth-child(3) {
  transition-delay: 0.4s;
}

.sitemap.open .st_list_wr > ul > li:nth-child(4) {
  transition-delay: 0.6s;
}

.sitemap.open .st_list_wr > ul > li:nth-child(5) {
  transition-delay: 0.8s;
}

.sitemap.open .st_list_wr > ul > li:nth-child(6) {
  transition-delay: 1s;
}

.st_list_wr > ul > li:before {
  position: absolute;
  top: -4.16rem;
  left: 12%;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--main-color);
  border-radius: 100%;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.4s ease-in-out;
}

.st_list_wr > ul > li:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.st_list_wr > ul > li > h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  min-height: 7.8rem;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
  background-color: transparent;
}

.st_list_wr > ul > li > h2 > a {
  position: relative;
  color: #fff;
  pointer-events: none;
}

@media (hover: hover) {
  .st_list_wr > ul > li .submenu_list:hover a {
    opacity: 0.4;
  }

  .st_list_wr > ul > li .submenu_list:hover a:hover {
    opacity: 1;
    color: #fff;
  }
}

.st_list_wr > ul > li .submenu_list a {
  display: block;
  overflow: hidden;
  padding: 0.85rem 0;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.3;
  -webkit-transition: all 0.2s;
  transition: all 0.3s;
}

.quick {
  position: fixed;
  right: 4rem;
  bottom: 5rem;
  z-index: 300;
}

.sns_flot {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.sns_flot .blog {
  background: #897e66;
}

.sns_flot .link_list {
  display: flex;
  align-items: center;
  border-radius: 30px;
}

.sns_flot .link_list:hover {
  background: #fff;
  box-shadow: 0 3px 7px rgba(96, 96, 96, 0.1);
}

.sns_flot span.ico {
  display: inline-block;
  width: 6rem;
  height: 6rem;
  background: no-repeat center center;
  transition: all 0.3s;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 3px 7px rgba(96, 96, 96, 0.1);
}

.sns_flot .link_list ul {
  display: flex;
  align-items: center;
  width: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.sns_flot .link_list:hover ul {
  padding: 0 28px;
  width: auto;
  opacity: 1;
}

.sns_flot .link_list ul li a {
  font-size: 1.5rem;
  color: #444;
  font-weight: 500;
}

.sns_flot .link_list ul li {
  visibility: hidden;
}

.sns_flot .link_list:hover ul li {
  visibility: visible;
}

.sns_flot .link_list ul li + li {
  margin-left: 12px;
  padding-left: 12px;
  position: relative;
}

.sns_flot .link_list ul li + li::before {
  content: "|";
  font-size: 1.5rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.sns_flot .insta .ico {
  background-image: url("../img/common/flot_ico01.png");
}

.sns_flot .blog .ico {
  background-image: url("../img/common/flot_ico02.png");
}

.sns_flot .fbk .ico {
  background-image: url("../img/common/flot_ico03.png");
}
.sns_flot .youtube .ico {
  background-image: url("../img/common/flot_ico05.png");
}

.sns_flot .kakao .ico {
  background-image: url("../img/common/flot_ico04.png");
}

.sns_flot .insta:hover .ico {
  background-image: url("../img/common/flot_ico01_act.png");
}

.sns_flot .blog:hover .ico {
  background-image: url("../img/common/flot_ico02_act.png");
}

.sns_flot .fbk:hover .ico {
  background-image: url("../img/common/flot_ico03_act.png");
}
.sns_flot .youtube:hover .ico {
  background-image: url("../img/common/flot_ico05_act.png");
}

.sns_flot .kakao:hover .ico {
  background-image: url("../img/common/flot_ico04_act.png");
}

.goTop {
  margin-top: 1.9rem;
}

#fullpage {
  width: 100%;
  height: 100%;
}

#fp-nav.left {
  opacity: 1;
  left: 100px !important;
  z-index: 300;
  display: none;
  opacity: 0;
}

#fp-nav.left.act {
  display: block;
  animation: fadeIn 1s forwards;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  width: 10px;
  height: 10px;
  border: solid 1px #b7b7b7;
  background-color: transparent;
}

#fp-nav ul li a span {
  margin: 0;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  background-color: #b7b7b7;
  margin: 0;
  width: 100%;
  height: 100%;
}

#fp-nav ul li,
.fp-slidesNav ul li {
  width: 10px;
  height: 10px;
  margin: 2rem 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* main_visual */

.visual_sec {
  background: #fff;
  display: block;
  height: 100vh;
  width: 100%;
}

.vis_slide_wr {
  z-index: 100;
  align-items: center;
  border-radius: 1rem;
  bottom: 4rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 4rem;
  overflow: hidden;
  position: absolute;
  right: 4rem;
  text-align: center;
  top: 7.5rem;
  transform: translateZ(0);
}

.vis_slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.vis_slide .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 1;
}

.vis_slide .inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 30;
}

.vis_slide .txtbox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.vis_slide .tit {
  overflow: hidden;
  opacity: 0;
  font-size: 5.4rem;
  font-weight: 400;
  line-height: 1.2;
  font-family: "NanumSquareNeo";
}

.vis_slide .tit.tit_b {
  font-weight: 900;
}

.vis_slide .tit + .tit {
  margin-top: 1.5rem;
}

.vis_slide .tit .char {
  display: inline-block;
  opacity: 0;
  line-height: 1;
}

.vis_slide .tit.splitting {
  animation: op1 0s forwards;
}

@keyframes op1 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.vis_slide .swiper-slide.act .tit.splitting .char {
  animation: slide-up 1.25s cubic-bezier(0.5, 0.2, 0, 1);
  animation-fill-mode: both;
  animation-delay: calc(0.5s + (0.05s * var(--char-index)));
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(125%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vis_slide .txtbox .disc {
  font-size: 1.8rem;
  font-weight: 300;
  word-break: keep-all;
  opacity: 0;
  margin-top: 3.3rem;
}

.vis_slide .swiper-slide.act .txtbox p {
  animation: fadeIn 1s forwards;
  animation-delay: 1.2s;
}

.effet_btn {
  display: flex;
  align-items: center;
  width: 20.7rem;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  border-radius: 15rem;
  background-color: rgba(36, 36, 36, 0.75);
  overflow: hidden;
  margin-top: 6rem;
  transition: all 0.5s;
  opacity: 0;
  position: relative;
}

.effet_btn .ico_plus {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  margin-right: 1.4rem;
  position: relative;
  z-index: 1;
  background: url("/theme/addoctor/img/main/effect_btn_ico.png") no-repeat
    center center/cover;
}

.effet_btn .link_ttl {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.3px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.effet_btn .fill_bg {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  transition:
    width 0.7s,
    height 0.7s;
  z-index: 0;
}

.effet_btn:hover .fill_bg {
  width: 40rem;
  height: 40rem;
}

.effet_btn:hover .link_ttl {
  color: #333;
}

.vis_slide .swiper-slide.act .effet_btn {
  animation: fadeIn 1s forwards;
  animation-delay: 1.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.vis_slide .mv_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: no-repeat center center/cover;
  background-color: #000;
}

.vis_slide .swiper-slide .mv_bg video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  object-fit: cover;
  opacity: 0.9;
}

.vis_slide .mv_bg.bg01 {
  background-image: url("/theme/addoctor/img/main/main_visual01.jpg");
}
.vis_slide .mv_bg.bg02 {
  background-image: url("/theme/addoctor/img/main/main_visual02.jpg");
}
.vis_slide .mv_bg.bg03 {
  background-image: url("/theme/addoctor/img/main/main_visual03.jpg");
}
.vis_slide .mv_bg.bg04 {
  background-image: url("/theme/addoctor/img/main/main_visual04.jpg");
}

.vis_slide .swiper-slide.act .mv_bg {
  animation: zoom 8s forwards;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.control_box {
  width: calc(100% - 4rem);
  max-width: 1600px;
  margin: 0 auto;
  position: absolute;
  bottom: 9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
  opacity: 0;
}

.control_box.act {
  animation: fadeIn 1s forwards;
}

.control_box .c_btn_wr {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.control_box .c_btn_wr button {
  display: block;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  opacity: 0.41;
  transition: opacity 0.4s linear;
  background: url("/theme/addoctor/img/main/vis_next.png") no-repeat center
    center/cover;
}

.control_box .c_btn_wr button.vis_prev {
  transform: rotate(-180deg);
}

.control_box .c_btn_wr button:hover {
  opacity: 1;
}

.control_box .swiper-pagination-progressbar {
  display: none;
  position: relative;
  height: 1px;
  margin-top: 2.9rem;
  background: rgba(255, 255, 255, 0.35);
}

.control_box
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: #fff;
  height: 3px;
}

.control_box .sd_disc {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  margin-top: 1rem;
}

/* main_visual */

.intro_sec {
  height: 100%;
  position: relative;
}

.intro_sec .fx_wr {
  display: flex;
  align-items: flex-end;
}

.intro_sec .fx_wr > div {
  width: 50%;
}

.intro_sec .left {
  position: relative;
}

.intro_sec .int_txt {
  position: absolute;
  top: 36.2rem;
  right: -4.1rem;
}

.intro_sec .int_txt .doc {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.intro_sec .int_txt .doc b {
  font-size: 4rem;
  font-weight: 600;
  margin-right: 1rem;
}

.cc_txt {
  font-size: 1.7rem;
  color: var(--main-color);
}

.cc_txt.bd {
  display: inline-block;
  position: relative;
}

.cc_txt.bd::after {
  content: "";
  width: 15.8rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: calc(100% + 8px);
  transform: translateY(-50%);
}

.cc_txt.wh {
  color: #fff;
}

.intro_sec .right {
  height: 100%;
}

.intro_sec .txtbox {
  position: relative;
  margin-bottom: 10.5rem;
  padding-left: 9rem;
  z-index: 3;
}

.intro_sec .txtbox .link_motn {
  position: absolute;
  top: -11.5rem;
  left: -10.3rem;
  z-index: -1;
}

.intro_sec .left .cc_txt {
  margin-bottom: 3.7rem;
}

.main_ttl_row.wh * {
  color: #fff;
}

.main_ttl_row .ttl42 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  font-family: "NanumSquareNeo";
}

.main_ttl_row .ttl42 b {
  font-weight: 900;
}

.psrc {
  overflow: hidden;
}

.psrc span {
  display: block;
  opacity: 0;
  transition: all 1s;
  transform: translateY(300px);
}

.main_ttl_row .psrc + * {
  margin-top: 3.7rem;
}

.section.on .psrc span {
  opacity: 1;
  transform: translateY(0);
}

.split_ttl {
  overflow: hidden;
  opacity: 0;
}

.split_ttl.splitting {
  opacity: 1;
}

.split_ttl.splitting .word {
  overflow: hidden;
  display: inline-block;
}

.split_ttl.splitting .char {
  display: inline-block;
  position: relative;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  opacity: 0;
}

.section.on .split_ttl.splitting .char {
  animation: slide-up 1.25s cubic-bezier(0.5, 0.2, 0, 1);
  animation-fill-mode: both;
  animation-delay: calc(0.5s + (0.05s * var(--char-index)));
}

.section .main_ttl_row .disc {
  transform: translateY(70px);
  opacity: 0;
}

.section.on .main_ttl_row .disc {
  transform: translateY(0);
  opacity: 1;
  transition: all 1.2s 1s ease;
}

[class*="fade-"].delay50 {
  transition-delay: 0.5s;
}

[class*="fade-"].delay100 {
  transition-delay: 1s;
}

[class*="fade-"].delay200 {
  transition-delay: 1.5s;
}

.fade-top {
  opacity: 0;
  transition: all 0.5s;
  transform: translateY(300px);
  transition: all 0.8s;
}

.section.on .fade-top {
  opacity: 1;
  transform: translateY(0);
}

.fade-right {
  opacity: 0;
  transition: all 0.5s;
  transform: translateX(-300px);
  transition: all 0.8s;
}

.section.on .fade-right {
  opacity: 1;
  transform: translateX(0);
}

.link_motn {
  position: relative;
  display: block;
  width: 22rem;
  height: 22rem;
  border-radius: 100%;
  border: 1px solid #eeebe7;
  transition: all 0.7s ease;
}

.link_motn::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("/theme/addoctor/img/main/plus_18x18.png") no-repeat center
    center/1.8rem;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.7s ease;
}

.link_motn span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.54px;
  background: var(--main-color);
  color: #fff;
  opacity: 0;
  transition: all 0.7s ease;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}

.link_motn:hover {
  border: 1px solid transparent !important;
  transition: all 0.7s ease;
}

.link_motn:hover::after {
  transform: rotate(-180deg);
  opacity: 0;
  transition: all 0.7s ease;
}

.link_motn:hover span {
  width: 87px;
  height: 87px;
  opacity: 1;
  transition: all 0.7s ease;
}

.intro_sec .doc_intro_ttl {
  width: 100%;
  min-height: 447px;
  padding-left: 9rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background: url("/theme/addoctor/img/main/main_sec1_right.jpg") no-repeat
    center center/cover;
}

.intro_sec .doc_intro_ttl .cc_txt {
  opacity: 0.38;
}

.intro_sec .doc_intro_ttl .disc {
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.9;
  margin-top: 2rem;
}

.clinic_wr {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: url("../img/main/clinic_wr_bg.png") no-repeat right center;
}

.clinic_wr::after {
  content: "";
  width: 0;
  height: 100%;
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -80;
  transition: all 1s ease;
}

.section.on .clinic_wr::after {
  width: 50%;
  transition: all 1s ease;
}

.clinic_wr .c_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7.5rem;
}

.c_top .ttl54 {
  font-size: 5.4rem;
  font-weight: 900;
  color: #fff;
  margin-top: 2.5rem;
  font-family: "NanumSquareNeo";
}

.c_tab {
  display: flex;
  gap: 1.8rem;
}

.c_tab li {
  font-size: 1.8rem;
  font-weight: 600;
  color: #cdcdcd;
  cursor: pointer;
}

.c_tab li.act {
  font-weight: 700;
  color: #222;
  position: relative;
}

.c_tab li::after {
  content: "";
  width: 0;
  height: 3px;
  left: -0.8rem;
  bottom: -0.7rem;
  position: absolute;
  transition: all 0.4s;
  z-index: -1;
  background-color: #897e66;
}

.c_tab li.act::after {
  width: calc(100% + 1.6rem);
}

.c_tab li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: -40px;
  right: -8px;
  position: absolute;
  opacity: 0;
  transition: all 0.4s;
  background-color: #897e66;
}

.c_tab li.act::before {
  opacity: 1;
  top: -16px;
}

.c_content .c_bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  height: 100vh;
  z-index: -1;
  transform: translate(-100%, -50%);
}

.section.on .clinic_wr .c_content .c_bg {
  transform: translate(0, -50%);
  transition: all 1s ease;
  transition-delay: 0.4s;
}

.c_content .c_bg li div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: no-repeat center center/cover;
}

.c_content .c_bg li.act div {
  z-index: 3;
}

.c_content:not(.act) {
  display: none;
}

.c_content .swiper {
  overflow: visible;
}

.c_ctt_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: linear-gradient(to right, #fff 80%, transparent 20%);
}

.c_ctt_row .left {
  width: 55.3%;
  flex: 0 0 auto;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.16);
}

.c_ctt_row .right {
  position: relative;
  width: 38.88%;
}

.c_ctt_row .right .c_ttl {
  font-family: "Nanum Myeongjo", serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  pointer-events: none;
  transform: translateY(70px);
  opacity: 0;
}

.c_ctt_row .right .link_motn {
  position: absolute;
  top: -1.5rem;
  right: 4rem;
}

.c_ctt_row .right .ttl35 {
  font-size: 3.5rem;
  font-weight: 600;
  margin: 6rem 0 2.5rem;
  color: #444;
  transform: translateY(70px);
  opacity: 0;
}

.c_ctt_row .right .ttl35 span {
  color: var(--main-color);
}

.c_ctt_row .right .disc {
  transform: translateY(70px);
  opacity: 0;
  letter-spacing: -1px;
}

.swiper-slide.swiper-slide-active .c_ctt_row .right .c_ttl {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.7s ease;
}

.c_ctt_row .right .c_ttl span {
  display: block;
  transform: translateX(8rem);
}

.c_slide01 .c_ctt_row .right .c_ttl {
  display: inline-block;
  text-align: right;
}

.swiper-slide.swiper-slide-active .c_ctt_row .right .ttl35 {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.7s ease;
  transition-delay: 0.3s;
}

.swiper-slide.swiper-slide-active .c_ctt_row .right .disc {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.7s ease;
  transition-delay: 0.5s;
}

.c_content .inner {
  position: relative;
  max-width: 1320px;
  transform: translateX(2rem);
}

.control_btn_wr {
  position: absolute;
  top: calc(100% + 2rem);
  left: 0;
  display: flex;
  gap: 2rem;
}

.control_btn_wr button {
  display: block;
  width: 4rem;
  height: 4rem;
  opacity: 0.27;
  transition: opacity 0.5s;
  background: url("/theme/addoctor/img/main/c_next.png") no-repeat center
    center/cover;
}

.control_btn_wr button:first-child {
  transform: rotate(-180deg);
}

.control_btn_wr button:hover {
  opacity: 1;
}

.section.sec03 {
  background: #222;
}

.big_ttl {
  font-family: "NanumSquareNeo";
  font-weight: 1000;
  color: #b2aa9f;
  font-size: 10rem;
  opacity: 0.1;
  padding-left: 16.98%;
  white-space: nowrap;
}

.e_control {
  display: flex;
  gap: 2rem;
  margin-top: 8.3rem;
}

.e_control button {
  display: block;
  width: 7rem;
  height: 7rem;
  opacity: 0.4;
  transition: opacity 0.5s;
  background: url("/theme/addoctor/img/main/vis_next.png") no-repeat center
    center/cover;
}

.e_control button.e_prev {
  transform: rotate(-180deg);
}

.e_control button:hover {
  opacity: 1;
}

.eq_slide .swiper-slide .item_wr {
  overflow: hidden;
  padding: 6.8rem 1rem 0 4rem;
  transition: all 0.5s ease-in-out;
  background: linear-gradient(to bottom, #897e66, #222);
}

.eq_slide .swiper-slide.swiper-slide-prev .item_wr {
  transform: perspective(960px) rotateY(-90deg) scale(0.8);
}

.eq_slide .swiper-slide.swiper-slide-active .item_wr {
  background: linear-gradient(to bottom, #e0cea8, #222);
}

.eq_slide .swiper-slide.swiper-slide-active .item_wr {
  transform: translateY(-4rem);
}

.eq_slide .swiper-slide .e_txt {
  margin-bottom: 1rem;
}

.eq_slide .e_txt .cetg {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  color: #fff;
}

.eq_slide .e_txt .subject {
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2.5rem;
}

.eq_slide .e_txt .disc {
  color: #dad1ba;
  line-height: 1.1;
}

.eq_row {
  display: flex;
  padding-left: 16.98%;
}

.eq_row .left {
  width: 25%;
  flex: 0 0 auto;
  padding-top: 6.95rem;
  position: relative;
}

.eq_row .left .link_motn {
  position: absolute;
  left: -16rem;
  top: -7rem;
  border-color: rgba(238, 235, 231, 0.13);
}

.eq_row .ttl42 {
  margin-bottom: 3rem;
}

.eq_row .right {
  width: 75%;
  overflow: hidden;
  padding-left: 3.33%;
  padding-top: 6.95rem;
}

.eq_row .right .eq_slide {
  padding-right: 13.33%;
  overflow: visible;
}

.section.sec04 {
  background: url("/theme/addoctor/img/main/main_sec04_bg.jpg") no-repeat center
    center/cover;
}

.section.sec04 .txtbox {
  position: relative;
  display: inline-block;
}

.section.sec04 .link_motn {
  position: absolute;
  right: -17rem;
  top: -10rem;
}

.news_slide_wr {
  position: relative;
}

.news_slide a {
  display: block;
  border-radius: 1.5rem;
  border: solid 1px #e5e5e5;
  overflow: hidden;
}

.news_slide .thumb {
  position: relative;
  overflow: hidden;
}
.news_slide .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news_slide .thumb::before {
  content: "";
  width: 4rem;
  height: 4rem;
  max-width: 30px;
  max-height: 30px;
  overflow: hidden;
  border-radius: 100%;
  transform: scale(1);
  will-change: transform;
  position: absolute;
  top: -50px;
  right: -50px;
  background: var(--main-color);
  opacity: 0.34;
  transition: all ease-in 0.4s;
}

.news_slide a:hover .thumb::before {
  transform: scale(50);
  transition: all ease-in 0.4s;
}

.news_slide .thumb::after {
  content: "";
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: opacity ease-in 0.4s;
  transition-delay: 0.2s;
  transform: translate(-50%, -50%);
  background: url("/theme/addoctor/img/main/thumb_link_ico.png") no-repeat
    center center/cover;
}

.news_slide a:hover .thumb::after {
  opacity: 1;
}

.news_slide .info_wr {
  padding: 2.5rem 2.8rem;
  border-top: solid 1px #e5e5e5;
  background: #fff;
}

.news_slide .subject {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  min-height: 7.6rem;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news_slide .date {
  font-size: 1.5rem;
  font-weight: 500;
  color: #cacaca;
}

.news_slide_wr .n_control {
  display: flex;
  gap: 1rem;
  margin-left: auto;
  position: absolute;
  top: -4.6rem;
  right: 0;
  z-index: 3;
}

.n_control button {
  display: block;
  width: 7rem;
  height: 7rem;
  opacity: 0.5;
  transition: opacity 0.5s;
  background: url("/theme/addoctor/img/main/slide_next_gr.png") no-repeat center
    center/cover;
}

.n_control button:first-child {
  transform: rotate(-180deg);
}

.n_control button:hover {
  opacity: 1;
}

.news_slide_wr .news_slide {
  padding-top: 5rem;
}

.news_slide_wr .swiper-pagination-progressbar {
  position: relative;
  height: 2px;
  margin-top: 5rem;
  background: #e3e3e3;
}

.news_slide_wr
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background-color: #2d2d2d;
}

.ctt_us {
  text-align: center;
  padding: 11.6rem 0 6.4rem;
  background: url("/theme/addoctor/img/main/ctt_us_web.jpg") no-repeat center
    center/cover;
}

.ctt_us * {
  color: #fff;
}

.ctt_us h3 {
  font-size: 5.5rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.ctt_us .disc17 {
  font-size: 1.7rem;
}

.ctt_us .view_more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.5rem;
  font-size: 1.5rem;
}

.ctt_us .view_more span {
  display: inline-block;
  width: 4.5rem;
  height: 4.5rem;
  margin-left: 9px;
  background: url("/theme/addoctor/img/main/view_more45x45.png") no-repeat
    center center/cover;
}

footer.section {
  height: auto !important;
}

#ft {
  background-color: #383838;
}

#ft .top {
  display: flex;
  padding: 9.8rem 0 7rem;
}

#ft .top > div {
  width: 50%;
}

#ft .top .left {
  border-right: solid 1px #707070;
}

#ft .top .right {
  padding-left: 7.03%;
}

#ft dl {
  display: flex;
  gap: 4.4rem;
}

#ft dl + dl {
  margin-top: 5rem;
}

#ft dl dt {
  color: #fff;
  font-size: 2rem;
  padding-left: 6.9rem;
  background: no-repeat left top/2.5rem auto;
}

#ft dl dt.call {
  background-image: url("/theme/addoctor/img/common/ico_call.png");
}

#ft dl dt.alert {
  background-image: url("/theme/addoctor/img/common/ico_alert.png");
}

#ft dl dt.time {
  background-image: url("/theme/addoctor/img/common/ico_time.png");
}

#ft dl dd {
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
}

#ft dl dd .call {
  font-size: 3rem;
  font-weight: 600;
  color: var(--main-color);
}

#ft dl dd a.phone_num {
  color: #ffffff;
}

#ft dl dd > span {
  color: var(--main-color);
}

#ft dl dd > span.num {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

#ft .tt_row_wr .tt_row {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  line-height: 1.68;
}

#ft .tt_row_wr .tt_row.longtt {
  margin-top: 1.8rem;
}

.main_ft .tt_row_wr .tt_row.mt35 {
  margin-top: 3.5rem;
}

#ft .tt_row_wr .tt_row.mt35 {
  margin-top: 3.5rem;
}

#ft .tt_row_wr .tt_row.longtt .label {
  color: #ffe3a7;
  width: 100%;
}

#ft .tt_row_wr .label {
  width: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#ft .tt_row_wr .info {
  width: calc(100% - 10rem);
}

#ft .tt_row_wr .info span {
  color: #ffe3a7;
}

#ft .main_map_wr {
  position: relative;
  width: 100%;
  max-width: 550px;
  overflow: hidden;
}

#ft .main_map {
  position: relative;
  padding-top: 55.45%;
}

#ft .main_map_wr::before {
  content: "";
  width: 4rem;
  height: 4rem;
  max-width: 30px;
  max-height: 30px;
  overflow: hidden;
  border-radius: 100%;
  transform: scale(50);
  will-change: transform;
  position: absolute;
  top: -50px;
  right: -50px;
  background: var(--main-color);
  opacity: 0.34;
  z-index: 100;
  transition: all ease-in 0.4s;
}

#ft .main_map_wr:hover::before {
  transform: scale(1);
  transition: all ease-in 0.4s;
}

#ft .main_map_wr::after {
  content: "";
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  z-index: 100;
  transition: opacity ease-in 0.4s;
  transition-delay: 0.2s;
  transform: translate(-50%, -50%);
  background: url("/theme/addoctor/img/main/thumb_link_ico.png") no-repeat
    center center/cover;
}

#ft .main_map_wr:hover::after {
  opacity: 0;
}

#ft .main_map .root_daum_roughmap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#ft .main_map .root_daum_roughmap .wrap_map {
  height: 100% !important;
}

#ft .main_map .wrap_controllers {
  display: none !important;
}

#ft .map_info {
  margin-top: 2.6rem;
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
}

#ft .map_info span {
  color: #fff;
  width: 15.9rem;
  font-size: 1.8rem;
  line-height: 4rem;
  text-align: center;
  border-radius: 2.3rem;
  flex: 0 0 auto;
  background-color: var(--main-color);
}

#ft .map_info p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
}

#ft .map_info p b {
  font-weight: 600;
  display: block;
}

#ft .bot {
  position: relative;
  padding: 4.8rem 0 5.1rem;
  border-top: solid 1px #707070;
}

#fnb a {
  font-size: 1.6rem;
  font-weight: 600;
  color: #e4e4e4;
}

#fnb ul {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4.2rem;
}

#ft address div {
  display: flex;
  gap: 2rem;
}

#ft address div span {
  font-size: 1.5rem;
  line-height: 2;
  color: #c8c8c8;
}
#ft address a.phone_num {
  color: #d8d8d8;
}

#ft .copy {
  font-size: 1.5rem;
  line-height: 2;
  color: #e4e4e4;
}

#ft .bot .logo {
  position: absolute;
  top: 4.8rem;
  right: 0;
}

.fp_cont #ft .top,
.fp_cont #ft .bot {
  transform: translateY(50px);
}

.fp_cont #ft.on .top,
.fp_cont #ft.on .bot {
  transition: all 1.2s ease-in-out;
  transform: translateY(0);
}

.popup {
  /* position: fixed; */
  position: absolute;
  width: calc(100% - 4rem);
  max-width: 434px;
  top: 8rem;
}

.popup img {
  width: 100%;
}

.popup .pp_bot {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  background-color: #222;
}

.popup .pp_bot button {
  display: block;
  font-size: 1.6rem;
  color: #fff;
}

.popup .pp_bot .btn_close {
  padding-right: 2.2rem;
  background: url("../img/main/pop_close.png") no-repeat right 70%/1.44rem;
}

.popup .pp_bot .btn_close24 {
  padding-left: 2.2rem;
  background: url("../img/main/pop_check.png") no-repeat left 70%/1.6rem;
}

@media all and (max-width: 1540px) {
  .st_list_wr > ul {
    padding: 0 5vw;
  }

  #gnb {
    display: none !important;
  }

  .visual_sec {
    position: relative;
  }

  .control_box {
    max-width: 1280px;
  }

  .fp-auto-height,
  .fp-auto-height .fp-tableCell {
    height: auto !important;
  }
}

@media all and (max-width: 1439px) {
  .fp_cont .section {
    overflow: visible;
  }

  .fp_cont .section,
  .fp_cont .section .fp-tableCell {
    height: auto !important;
  }

  .clinic_wr {
    padding: 13rem 0;
  }

  .intro_sec {
    padding-top: 13rem;
  }

  .section.sec03 {
    padding-top: 12rem;
  }

  .section.sec04 {
    padding: 14rem 0;
  }
}

@media all and (max-width: 800px) {
  .st_list_wr > ul {
    display: block;
  }

  .st_list_wr > ul > li {
    float: none;
    display: block;
    width: auto;
    padding: 5% 0;
    margin-bottom: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .st_list_wr > ul > li:last-child {
    border-right: none;
  }

  .st_list_wr > ul > li:first-child {
    border-top: none;
  }

  .st_list_wr > ul > li h2 {
    min-height: auto;
  }

  .st_list_wr > ul > li .submenu_list {
    overflow: hidden;
    margin: 0 -1%;
    padding: 0;
  }

  .st_list_wr > ul > li .submenu_list li {
    float: left;
    position: relative;
    width: 31.33%;
    margin: 0 1%;
    word-break: keep-all;
  }

  .st_list_wr > ul > li .submenu_list li:before {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0px;
    width: 1px;
    background-color: #eee;
    content: "";
    display: none;
  }

  .st_list_wr > ul > li .submenu_list li:nth-child(3n + 1) {
    clear: both;
  }

  .hamBtn {
    width: 55px;
  }

  .hamBtn .line {
    height: 2px;
  }

  .hamBtn.act .line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
}

.main_ft {
  background-color: #383838;
}

.main_ft .top {
  display: flex;
  padding: 9.8rem 0 7rem;
}

.main_ft .top > div {
  width: 50%;
}

.main_ft .top .left {
  border-right: solid 1px #707070;
}

.main_ft .top .right {
  padding-left: 7.03%;
}

.main_ft dl {
  display: flex;
  gap: 4.4rem;
}

.main_ft dl + dl {
  margin-top: 5rem;
}

.main_ft dl dt {
  color: #fff;
  font-size: 2rem;
  padding-left: 6.9rem;
  background: no-repeat left top/2.5rem auto;
}

.main_ft dl dt.call {
  background-image: url("/theme/addoctor/img/common/ico_call.png");
}

.main_ft dl dt.alert {
  background-image: url("/theme/addoctor/img/common/ico_alert.png");
}

.main_ft dl dt.time {
  background-image: url("/theme/addoctor/img/common/ico_time.png");
}

.main_ft dl dd {
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
}

.main_ft dl dd .call {
  font-size: 3rem;
  font-weight: 600;
  color: var(--main-color);
}

.main_ft dl dd > span {
  color: var(--main-color);
}

.main_ft dl dd > span.num {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.main_ft .tt_row_wr .tt_row {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  line-height: 1.68;
  letter-spacing: 0;
}

.main_ft .tt_row_wr .tt_row.longtt {
  margin-top: 1.8rem;
}

.main_ft .tt_row_wr .tt_row.longtt .label {
  color: #ffe3a7;
  width: 100%;
}

.main_ft .tt_row_wr .label {
  width: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main_ft .tt_row_wr .info {
  width: calc(100% - 10rem);
}

.main_ft .tt_row_wr .info span {
  color: #ffe3a7;
}

.main_ft .main_map_wr {
  position: relative;
  width: 100%;
  max-width: 550px;
  overflow: hidden;
}

.main_ft .main_map {
  position: relative;
  padding-top: 55.45%;
}

.main_ft .main_map_wr::before {
  content: "";
  width: 4rem;
  height: 4rem;
  max-width: 30px;
  max-height: 30px;
  overflow: hidden;
  border-radius: 100%;
  transform: scale(50);
  will-change: transform;
  position: absolute;
  top: -50px;
  right: -50px;
  background: var(--main-color);
  opacity: 0.34;
  z-index: 100;
  transition: all ease-in 0.4s;
}

.main_ft .main_map_wr:hover::before {
  transform: scale(1);
  transition: all ease-in 0.4s;
}

.main_ft .main_map_wr::after {
  content: "";
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  z-index: 100;
  transition: opacity ease-in 0.4s;
  transition-delay: 0.2s;
  transform: translate(-50%, -50%);
  background: url("/theme/addoctor/img/main/thumb_link_ico.png") no-repeat
    center center/cover;
}

.main_ft .main_map_wr:hover::after {
  opacity: 0;
}

.main_ft .main_map .root_daum_roughmap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.main_ft .main_map .root_daum_roughmap .wrap_map {
  height: 100% !important;
}

.main_ft .main_map .wrap_controllers {
  display: none !important;
}

.main_ft .map_info {
  margin-top: 2.6rem;
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
}

.main_ft .map_info span {
  color: #fff;
  width: 15.9rem;
  font-size: 1.8rem;
  line-height: 4rem;
  text-align: center;
  border-radius: 2.3rem;
  flex: 0 0 auto;
  background-color: var(--main-color);
}

.main_ft .map_info p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
}

.main_ft .map_info p b {
  font-weight: 600;
  display: block;
}
