@charset "UTF-8";
body {
  max-width: 1920px;
  margin: 0 auto;
  overflow: visible;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.anchor {
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}

.title_box h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 130%; /* 67.6px */
  letter-spacing: -1.5px;
}
.title_box h2 strong {
  font-weight: 700;
  color: #0CAE96;
}

@keyframes colorBg {
  0% {
    top: 100%;
  }
  100% {
    top: 0;
  }
}
@keyframes colorBgEnd {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
@keyframes textOpa {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes textLine {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes textColor {
  0% {
    color: #fff;
  }
  100% {
    color: #6BEDC8;
  }
}
.main_intro {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100vh;
  z-index: 999;
}
.main_intro .intro_center {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: absolute;
  animation: colorBgEnd 1s forwards;
  animation-delay: 5.5s;
}
.main_intro .intro_center .intro_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main_intro .intro_center .color_box {
  background-color: #0A4436;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 100%;
  animation: colorBg 1s forwards;
  animation-delay: 1s;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.main_intro .intro_center .color_box .intro_text {
  opacity: 0;
  transition: opacity 0.3s;
  animation: textOpa 1s forwards;
  animation-delay: 2.6s;
}
.main_intro .intro_center .color_box .intro_text h1 {
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 105px */
  letter-spacing: -1.5px;
  color: #fff;
}
.main_intro .intro_center .color_box .intro_text h1 strong {
  font-weight: 700;
  color: #fff;
  animation: textColor 1s forwards;
  animation-delay: 3.4s;
  position: relative;
}
.main_intro .intro_center .color_box .intro_text h1 strong::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 5px;
  background-color: #0CAE96;
  display: inline-block;
  animation: textLine 1s forwards;
  animation-delay: 3.5s;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 103;
  transition: background-color 0.2s;
}
header .h_bg {
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 70px;
  display: none;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 240px;
  z-index: 104;
}
header nav h1 a svg path {
  transition: all 0.2s;
}
header nav > ul {
  display: flex;
  height: 100%;
}
header nav > ul > li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
header nav > ul > li > a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  padding: 17.5px 20px;
  transition: all 0.2s;
  position: relative;
  transition: color 0.2s;
}
header nav > ul > li > a::after {
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: transparent;
  position: absolute;
  transition: all 0.2s;
}
header nav > ul > li:hover > a, header nav > ul > li.active > a {
  color: #0CAE96;
}
header nav > ul > li:hover > a::after, header nav > ul > li.active > a::after {
  width: 100%;
  background-color: #0CAE96;
}
header nav > ul > li ul {
  position: absolute;
  width: 100%;
  height: 70px;
  left: 0;
  top: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}
header nav > ul > li ul li a {
  font-size: 18px;
  font-weight: 400;
  line-height: 260%; /* 46.8px */
  letter-spacing: -0.5px;
}
header nav > ul > li ul li:hover > a, header nav > ul > li ul li.active > a {
  color: #0CAE96;
}
header nav > ul > li ul li:hover > a::after, header nav > ul > li ul li.active > a::after {
  width: 100%;
  background-color: #0CAE96;
}
header:hover, header.scrolled {
  background-color: #fff;
}
header:hover nav, header.scrolled nav {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}
header:hover nav h1 a svg path, header.scrolled nav h1 a svg path {
  fill: #231815;
}
header:hover nav a, header.scrolled nav a {
  color: #303030;
}

@keyframes scrolldown {
  0% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, -5px, 0);
  }
}
.main_wrap {
  position: relative;
}
.main_wrap .main_text_box {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}
.main_wrap .main_text_box * {
  color: #fff;
}
.main_wrap .main_text_box small {
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
}
.main_wrap .main_text_box h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
  margin-top: 5px;
}
.main_wrap .scroll_box {
  position: absolute;
  left: 50%;
  bottom: 47px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.main_wrap .scroll_box img {
  margin-right: 10px;
  animation: scrolldown 0.3s infinite alternate;
}
.main_wrap .scroll_box span {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.1px;
  color: #fff;
}

@keyframes rotatetxt {
  100% {
    transform: rotate(360deg);
  }
}
.special_wrap {
  margin-top: 196px;
}

.special_con_wrap {
  overflow: hidden;
}
.special_con_wrap .inner {
  position: relative;
}
.special_con_wrap .sp_title_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
  position: relative;
}
.special_con_wrap .sp_title_box h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 130%; /* 67.6px */
  letter-spacing: -1.5px;
  margin-top: 84px;
}
.special_con_wrap .sp_title_box .circle_logo {
  position: absolute;
  right: 0;
  top: 0;
  animation: rotatetxt 20s linear infinite;
  z-index: 3;
}
.special_con_wrap .special_swiper .swiper-slide {
  width: auto;
}
.special_con_wrap .special_swiper .swiper-slide .text_box {
  margin-top: 36px;
}
.special_con_wrap .special_swiper .swiper-slide .text_box h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 130%; /* 46.8px */
  letter-spacing: -1px;
}
.special_con_wrap .special_swiper .swiper-slide .text_box p {
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
  color: #0CAE96;
  margin: 16px 0;
}
.special_con_wrap .special_swiper .swiper-slide .text_box span {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}

.doctor_wrap {
  overflow: hidden;
  padding-top: 280px;
}
.doctor_wrap .doctor_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.doctor_wrap .doctor_pagination .swiper-pagination-bullet {
  width: 240px;
  height: 70px;
  border-radius: 0;
  background-color: #F4F4F4;
  color: #8F8F8F;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  margin: 0;
}
.doctor_wrap .doctor_pagination .swiper-pagination-bullet:last-child {
  margin-left: 24px;
}
.doctor_wrap .doctor_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0A4436;
  color: #fff;
  opacity: 1;
}
.doctor_wrap .doctor_swiper {
  overflow: hidden;
  position: relative;
}
.doctor_wrap .doctor_swiper .doctor_logo {
  position: absolute;
  top: 0;
  right: 0;
}
.doctor_wrap .doctor_swiper .swiper-wrapper {
  flex-direction: column;
}
.doctor_wrap .doctor_swiper .swiper-slide {
  display: flex;
  position: relative;
}
.doctor_wrap .doctor_swiper .swiper-slide:last-child {
  margin-top: 245px;
}
.doctor_wrap .doctor_swiper .swiper-slide .left_box {
  background-color: #F4F4F4;
  width: 570px;
  height: 700px;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
}
.doctor_wrap .doctor_swiper .swiper-slide .left_box .top_text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  top: 22px;
  width: 100%;
  padding: 0 30px;
}
.doctor_wrap .doctor_swiper .swiper-slide .left_box .top_text img {
  margin-top: 7px;
}
.doctor_wrap .doctor_swiper .swiper-slide .left_box .top_text ul li {
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
  display: flex;
  align-items: center;
}
.doctor_wrap .doctor_swiper .swiper-slide .left_box .top_text ul li:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-image: url(../img/doctor_ch.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.doctor_wrap .doctor_swiper .swiper-slide .left_box .top_text ul li:not(:last-child) {
  margin-bottom: 8px;
}
.doctor_wrap .doctor_swiper .swiper-slide .right_box {
  margin-left: 112px;
  margin-top: 70px;
}
.doctor_wrap .doctor_swiper .swiper-slide .right_box h3 * {
  font-size: 36px;
  font-weight: 600;
  line-height: 130%; /* 46.8px */
  letter-spacing: -1px;
}
.doctor_wrap .doctor_swiper .swiper-slide .right_box h3 span {
  color: #8F8F8F;
}
.doctor_wrap .doctor_swiper .swiper-slide .right_box .info_list {
  margin: 44px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}
.doctor_wrap .doctor_swiper .swiper-slide .right_box .info_list .point_list {
  color: #0CAE96;
}
.doctor_wrap .doctor_swiper .swiper-slide .right_box .con_box {
  display: flex;
  align-items: end;
}
.doctor_wrap .doctor_swiper .swiper-slide .right_box .con_box ul:nth-child(2) {
  margin-left: 160px;
}
.doctor_wrap .doctor_swiper .swiper-slide .right_box .con_box ul li {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
  list-style: disc inside;
  text-indent: -28px;
  padding-left: 28px;
}

.gallery_wrap {
  margin: 190px 0 219px;
  overflow: hidden;
}
.gallery_wrap .inner {
  overflow: hidden;
}
.gallery_wrap .title_box {
  margin-bottom: 50px;
  text-align: center;
}
.gallery_wrap .gallery_swiper {
  position: relative;
}
.gallery_wrap .gallery_swiper .swiper-slide {
  opacity: 0 !important;
}
.gallery_wrap .gallery_swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.gallery_wrap .gallery_swiper .gallery_pagination {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 58px;
  transform: translateY(-50%);
  z-index: 3;
  width: -moz-max-content;
  width: max-content;
}
.gallery_wrap .gallery_swiper .gallery_pagination .swiper-pagination-bullet {
  height: 34px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-color: transparent;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
  opacity: 1;
  color: #fff;
}
.gallery_wrap .gallery_swiper .gallery_pagination .swiper-pagination-bullet:not(:last-child) {
  margin-bottom: 22px;
}
.gallery_wrap .gallery_swiper .gallery_pagination .swiper-pagination-bullet::before {
  content: "•";
  display: inline-block;
  margin-right: 15px;
}
.gallery_wrap .gallery_swiper .gallery_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #0CAE96;
}

.implant_wrap {
  background-color: #0A4436;
  padding: 128px 0 146px;
}
.implant_wrap .title_box {
  text-align: center;
}
.implant_wrap .title_box * {
  color: #fff;
}
.implant_wrap .title_box p {
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
  font-weight: 400;
  margin-top: 22px;
}
.implant_wrap .slide_con_wrap {
  margin-top: 84px;
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button {
  border-radius: 0;
  background-color: transparent;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
  justify-content: space-between;
  padding: 28px 38px 28px 24px;
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button p {
  margin-bottom: 0;
  color: #fff;
  display: flex;
  align-items: center;
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button p strong {
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
  margin-right: 18px;
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button p strong span {
  background-color: #fff;
  width: 20px;
  height: 2px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button p strong span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s;
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button > span {
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button > span:before {
  content: "";
  background-image: url(../img/star.svg);
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  margin-right: 8px;
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button:after {
  display: none;
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button:not(.collapsed) p {
  color: #0A4436;
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button:not(.collapsed) p strong span:last-child {
  transform: translate(-50%, -50%) rotate(0);
  background-color: #0A4436;
}
.implant_wrap .slide_con_wrap .accordion-header .accordion-button:not(.collapsed) > span {
  opacity: 1;
}
.implant_wrap .slide_con_wrap .accordion-item {
  border-radius: 0;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
}
.implant_wrap .slide_con_wrap .accordion-item:first-child {
  border-top: 1px solid #fff;
}
.implant_wrap .slide_con_wrap .accordion-item .accordion-body {
  display: flex;
  justify-content: space-between;
  padding: 34px 0;
}
.implant_wrap .slide_con_wrap .accordion-item .accordion-body .left_box {
  margin-top: 89px;
}
.implant_wrap .slide_con_wrap .accordion-item .accordion-body .left_box * {
  color: #fff;
}
.implant_wrap .slide_con_wrap .accordion-item .accordion-body .left_box h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 130%; /* 46.8px */
  letter-spacing: -1px;
}
.implant_wrap .slide_con_wrap .accordion-item .accordion-body .left_box p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.5px;
  margin-top: 40px;
}

.orth_wrap {
  overflow: hidden;
}
.orth_wrap .top_box {
  background-image: url(../img/orth_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 175px 0;
}
.orth_wrap .top_box .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.orth_wrap .top_box .title_box * {
  color: #fff;
}
.orth_wrap .top_box .title_box h2 strong {
  color: #6BEDC8;
}
.orth_wrap .top_box .title_box p {
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
  margin: 22px 0 44px;
}
.orth_wrap .top_box .title_box small {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}
.orth_wrap .bottom_box {
  margin: 170px 0;
}
.orth_wrap .bottom_box .inner {
  overflow: hidden;
}
.orth_wrap .bottom_box .title_box {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.orth_wrap .bottom_box .title_box small {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.5px;
  opacity: 0.3;
}
.orth_wrap .bottom_box .orth_pagination {
  margin: 76px 0 96px;
  display: flex;
  justify-content: space-between;
}
.orth_wrap .bottom_box .orth_pagination .swiper-pagination-bullet {
  width: 268px;
  height: 70px;
  border-radius: 0;
  background-color: #F4F4F4;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  color: #8F8F8F;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
}
.orth_wrap .bottom_box .orth_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0A4436;
  color: #fff;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide {
  opacity: 0 !important;
  display: flex;
  justify-content: space-between;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .text_box {
  margin-top: 63px;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .text_box:before {
  content: "BEFORE & AFTER";
  color: #0CAE96;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .text_box h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 130%; /* 46.8px */
  letter-spacing: -1px;
  margin: 2px 0 50px;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .text_box p {
  font-size: 24px;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.8px;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box {
  display: flex;
  position: relative;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box > div:last-child {
  margin-left: 24px;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box > div .view_box {
  position: relative;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box > div .view_box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  z-index: 2;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box > div .view_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 174, 150, 0.8);
  opacity: 0;
  transition: opacity 0.2s;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box > div .view_box::after {
  content: "VIEW";
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 52px */
  border: 8px solid #fff;
  border-radius: 100%;
  width: 166px;
  height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box > div:hover .view_box::before, .orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box > div:hover .view_box::after {
  opacity: 1;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box .center_text {
  position: absolute;
  left: 50%;
  bottom: -52px;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box .center_text span {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
  color: #8f8f8f;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box .bna_arrow {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box .bna_con {
  margin-top: 22px;
  text-align: center;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box .bna_con small {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
  color: #8F8F8F;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide .bna_box .bna_con p {
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
}
.orth_wrap .bottom_box .orth_swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.nature_wrap .top_box {
  padding: 275px 0;
  background-image: url(../img/nature_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.nature_wrap .top_box .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nature_wrap .top_box .title_box * {
  color: #fff;
}
.nature_wrap .top_box .title_box h2 strong {
  color: #6BEDC8;
}
.nature_wrap .top_box .title_box ul {
  margin-top: 65px;
}
.nature_wrap .top_box .title_box ul li {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
  padding: 20px 0 22px;
}
.nature_wrap .top_box .title_box ul li p {
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
  width: 173px;
  margin-right: 51px;
}
.nature_wrap .top_box .title_box ul li span {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}
.nature_wrap .top_box .title_box ul li:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/doctor_ch.svg);
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-right: 19px;
}
.nature_wrap .bottom_box {
  margin: 167px 0;
}
.nature_wrap .bottom_box .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nature_wrap .bottom_box .title_box p {
  font-size: 36px;
  font-weight: 600;
  line-height: 130%; /* 46.8px */
  letter-spacing: -1px;
  margin: 92px 0 38px;
  display: flex;
  align-items: center;
}
.nature_wrap .bottom_box .title_box p:before {
  content: "";
  display: inline-block;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  background-image: url(../img/nature_ch.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.nature_wrap .bottom_box .title_box span {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}

.sleep_wrap {
  background-color: #EFF5F3;
  padding: 141px 0 144px;
}
.sleep_wrap .title_box {
  text-align: center;
}
.sleep_wrap .title_box p {
  font-size: 24px;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.8px;
  margin: 22px 0 80px;
}
.sleep_wrap ul {
  counter-reset: number 0;
  display: flex;
  justify-content: space-between;
}
.sleep_wrap ul li .img_box {
  width: 342px;
  height: 342px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sleep_wrap ul li .img_box:before {
  counter-increment: number 1;
  content: "0" counter(number);
  background-color: #303030;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.5s;
}
.sleep_wrap ul li .img_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid transparent;
  transition: border 0.5s;
}
.sleep_wrap ul li p {
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
  margin-top: 22px;
  text-align: center;
}
.sleep_wrap ul li:last-child .img_box::after {
  border-color: transparent;
  transition: border-color 0.5s;
}
.sleep_wrap ul li:last-child .img_box:before {
  background-color: #0CAE96;
}
.sleep_wrap ul li:last-child .img_box.on::after {
  border-color: #0CAE96;
}
.sleep_wrap .info_text {
  background-color: #303030;
  border-radius: 0 50px;
  padding: 34px 0;
  margin-top: 118px;
}
.sleep_wrap .info_text p {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.8px;
}
.sleep_wrap .info_text p strong {
  color: #6BEDC8;
  font-weight: 400;
}

.wisdom_wrap {
  margin: 162px 0 278px;
}
.wisdom_wrap .inner > div {
  display: flex;
  justify-content: space-between;
}
.wisdom_wrap .inner > div .title_box {
  margin-top: 96px;
}
.wisdom_wrap .inner > div .title_box p {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
  margin: 22px 0 84px;
}
.wisdom_wrap .inner > div .title_box ul {
  display: flex;
}
.wisdom_wrap .inner > div .title_box ul li {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.8px;
}
.wisdom_wrap .inner > div .title_box ul li:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/nature_ch.svg);
  display: inline-block;
  background-position: center;
  background-size: cover;
  margin-right: 11px;
}
.wisdom_wrap .inner > div .title_box ul li:not(:last-child) {
  margin-right: 29px;
}
.wisdom_wrap .inner > div.bottom_box {
  margin-top: 126px;
}
.wisdom_wrap .inner > div.bottom_box .title_box {
  margin-right: 92px;
  margin-top: 64px;
}
.wisdom_wrap .inner > div.bottom_box .title_box small {
  font-size: 36px;
  font-weight: 600;
  line-height: 130%; /* 46.8px */
  letter-spacing: -1px;
  color: #8F8F8F;
  margin-bottom: 22px;
  display: inline-block;
}
.wisdom_wrap .inner > div.bottom_box .title_box p {
  margin: 64px 0 0;
}

.program_wrap {
  background-image: url(../img/program_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 135px 0 99px;
}
.program_wrap .title_box p {
  font-size: 24px;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.8px;
  margin-top: 22px;
}
.program_wrap .program_con_box {
  background-color: #fff;
  border-radius: 0 50px;
  width: 100%;
  padding: 83px 140px;
  margin-top: 80px;
}
.program_wrap .program_con_box ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.program_wrap .program_con_box ul li {
  text-align: center;
  position: relative;
}
.program_wrap .program_con_box ul li p {
  font-size: 36px;
  font-weight: 600;
  line-height: 130%; /* 46.8px */
  letter-spacing: -1px;
  margin: 24px 0 14px;
}
.program_wrap .program_con_box ul li span {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}
.program_wrap .program_con_box ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 130%;
  transform: translateY(-50%);
  width: 30px;
  height: 14px;
  background-image: url(../img/program_arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.info_wrap {
  padding-left: 240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 147px 0;
}
.info_wrap h2 {
  margin-bottom: 57px;
  font-size: 52px;
  font-weight: 700;
  line-height: 130%; /* 67.6px */
  letter-spacing: -1.5px;
  display: flex;
  align-items: center;
}
.info_wrap h2 img {
  margin-right: 20px;
}
.info_wrap hr {
  margin: 60px 0;
}

footer {
  background-color: #303030;
  padding: 65px 0;
}
footer * {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 27px */
  letter-spacing: -0.5px;
  text-align: center;
}
footer ul {
  display: flex;
  justify-content: center;
  margin-top: 27px;
}
footer ul li {
  display: flex;
  align-items: center;
}
footer ul li:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 19px;
  background-color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  margin: 0 12px;
}
footer ul li a:hover {
  color: #fff;
}
footer p {
  margin-top: 4px;
}

aside {
  position: fixed;
  top: 50%;
  right: -258px;
  transform: translateY(-50%);
  z-index: 103;
  display: flex;
  transition: transform 0.3s ease;
}
aside .quick_btn_wrap {
  width: 70px;
  border-radius: 20px 0px 0px 0px;
  overflow: hidden;
  margin-top: 19px;
}
aside .quick_btn_wrap .quick_menu {
  background-color: #0CAE96;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
aside .quick_btn_wrap .quick_menu p {
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 110%; /* 22px */
  letter-spacing: -0.6px;
  margin-top: 8px;
}
aside .quick_btn_wrap .top_btn {
  background-color: #141414;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
aside .quick_sns_wrap {
  background-color: #F4F4F4;
  width: 258px;
  height: 417px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0px 0px 10px;
}
aside .quick_sns_wrap p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
  margin-bottom: 20px;
}
aside .quick_sns_wrap p strong {
  color: #0CAE96;
  font-weight: 600;
}
aside .quick_sns_wrap ul li {
  width: 210px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #CDCDCD;
}
aside .quick_sns_wrap ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
aside .quick_sns_wrap ul li:not(:last-child) {
  margin-bottom: 10px;
}
aside .quick_sns_wrap ul li span {
  display: inline-block;
  margin-left: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}
aside.hide {
  transform: translate(-258px, -50%);
}