body {
  max-width: 1920px;
  margin: 0 auto;
  overflow: visible;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  min-width: 1700px;
}

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

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

header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}
header nav {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
header nav ul {
  display: flex;
}
header nav ul li {
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  padding: 17.5px 20px;
}
header nav ul li:not(:first-child) {
  margin-left: 20px;
}

.title_box small {
  color: #A89376;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -1.5px;
  font-family: "MaruBuri";
}
.title_box h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 150%; /* 75px */
  letter-spacing: -1.5px;
  font-family: "MaruBuri";
  margin-top: 20px;
}

aside {
  position: fixed;
  bottom: 70px;
  right: 40px;
  z-index: 102;
}
aside .quick_plus {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  border: 2px solid #FFF;
  cursor: pointer;
  position: relative;
  background-color: #fff;
}
aside .quick_plus ul {
  padding: 23px 0 17px;
  display: none;
}
aside .quick_plus ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
aside .quick_plus ul li a img {
  margin-bottom: 8px;
}
aside .quick_plus ul li a span {
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
}
aside .quick_plus ul li:not(:last-child) {
  margin-bottom: 30px;
}
aside .quick_plus .quick_plus_btn {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background-color: #728C72;
  overflow: hidden;
}
aside .quick_plus .quick_plus_btn img {
  margin-bottom: 7px;
}
aside .quick_plus .quick_plus_btn span {
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 19px;
  font-family: "MaruBuri";
}
aside .top_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  margin-top: 20px;
}
aside .top_btn img {
  margin-bottom: 8px;
}
aside .top_btn span {
  font-size: 18px;
  color: #728C72;
  font-weight: 600;
  line-height: normal;
  font-family: "MaruBuri";
}

.main_back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/main_intro_bg.png);
  z-index: 10000000;
  transition: opacity 1.6s;
}
.main_back .container {
  position: relative;
  width: 100%;
  height: 100%;
}
.main_back .container .back_title {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20000000;
}
.main_back .container .back_title span {
  float: left;
  width: 100%;
  color: #fff;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  transform: translateY(-50px);
  animation-fill-mode: forwards;
  opacity: 0;
  animation-name: titleAnimation;
  animation-timing-function: linear;
  animation-duration: 2s;
  font-size: 100px;
}
.main_back .container .back_title span:first-child {
  display: inline-block;
  margin-bottom: 45px;
}
.main_back .container .back_title span:first-child img {
  vertical-align: super;
  margin-left: 16px;
  margin-top: -50px;
}
.main_back .container .back_title span:last-child {
  font-size: 200px !important;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
}
.main_back .container .back_title span:last-child strong {
  color: #82A582;
}
.main_back .container .back_title span:last-child img {
  margin-right: 37px;
}

@keyframes titleAnimation {
  0% {
    transform: translateY(-50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }
  20% {
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    
  }
  /* 100% {
    transform: translateY(50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
    clip-path: polygon(100% 0, 100% 0%, 0 100%, 0 100%);
  } */
}

.main_wrap {
  overflow: hidden;
  margin-bottom: 140px;
}
.main_wrap .main_swiper {
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide {
  opacity: 0 !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 85vh;
  transition: opacity 1s;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide .inner {
  position: relative;
  height: 100%;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide .inner .text_box {
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-35%);
  opacity: 0;
  transition: all 2s;
  transition-delay: 1s;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide .inner .text_box .logo_text {
  display: flex;
  align-items: center;
  margin-bottom: 72px;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide .inner .text_box .logo_text img {
  margin-right: 18px;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide .inner .text_box .logo_text small {
  margin-left: 8px;
  margin-bottom: 5px;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide .inner .text_box h2 small {
  display: block;
  font-size: 26px;
  color: #728C72;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  margin-bottom: 23px;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide .inner .text_box h2 strong {
  font-size: 66px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -2px;
  font-family: "MaruBuri";
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide .inner .text_box p {
  font-size: 22px;
  font-weight: 500;
  line-height: 200%; /* 44px */
  letter-spacing: -0.5px;
  margin-top: 50px;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide .inner .text_box p strong {
  color: #728C72;
  font-weight: 500;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide.main_slide01 {
  background-image: url(../img/main01.png);
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide.main_slide02 {
  background-image: url(../img/main02.png);
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide.main_slide02 .text_box h2 small {
  margin-bottom: 23px;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide.main_slide02 .text_box p {
  display: flex;
  flex-direction: column;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide.main_slide02 .text_box p span {
  display: flex;
  align-items: center;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide.main_slide02 .text_box p span:before {
  margin-right: 11px;
  display: inline-block;
  height: 32px;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide.main_slide02 .text_box p span.mark01:before {
  content: url(../img/mark01.svg);
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide.main_slide02 .text_box p span.mark02:before {
  content: url(../img/mark02.svg);
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide.main_slide03 {
  background-image: url(../img/main03.png);
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.main_wrap .main_swiper .swiper-wrapper .swiper-slide.swiper-slide-active .inner .text_box {
  transform: translateY(-50%);
  opacity: 1;
}
.main_wrap .main_swiper .main_pagination {
  position: absolute;
  bottom: 0;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  border-top: 1px solid #fff;
}
.main_wrap .main_swiper .main_pagination .swiper-pagination-bullet {
  width: 33.333%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin: 0;
}
.main_wrap .main_swiper .main_pagination .swiper-pagination-bullet:not(:last-child) {
  border-right: 1px solid #fff;
  border-radius: 0;
}
.main_wrap .main_swiper .main_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #fff;
}

.intro_wrap {
  margin-bottom: 200px;
}
.intro_wrap .inner {
  display: flex;
  justify-content: space-between;
  padding-top: 100px;
}
.intro_wrap .inner .text_box h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 150%; /* 75px */
  letter-spacing: -1.5px;
  font-family: "MaruBuri";
}
.intro_wrap .inner .text_box h2 strong {
  color: #728C72;
  font-weight: 400;
  font-family: "MaruBuri";
}
.intro_wrap .inner .text_box p {
  font-size: 22px;
  font-family: "MaruBuri";
  font-weight: 400;
  line-height: 190%; /* 41.8px */
  letter-spacing: -1.5px;
  margin: 35px 0 60px;
}
.intro_wrap .inner .text_box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.5px;
}
.intro_wrap .inner .text_box ul li:not(:last-child) {
  margin-bottom: 25px;
}
.intro_wrap .inner .text_box ul li strong {
  font-weight: 500;
}
.intro_wrap .inner .img_roll_box .mini_roll p {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.5px;
}
.intro_wrap .inner .img_roll_box .mini_roll:not(:last-child) {
  margin-bottom: 70px;
}

.awards_banner {
  margin-bottom: 150px;
}
.awards_banner .inner .title_box {
  margin-bottom: 70px;
}
.awards_banner .inner .banner_con {
  position: relative;
}
.awards_banner .inner .banner_con > img {
  border-radius: 20px;
}
.awards_banner .inner .banner_con .awards_img {
  position: absolute;
  top: -210px;
  right: 90px;
}
.awards_banner .inner .banner_con .awards_img img {
  box-shadow: 4px 5px 12px 0px rgba(0, 0, 0, 0.2);
}
.awards_banner .inner .banner_con .awards_img img:first-child {
  margin-right: 22px;
}

.doctor_wrap {
  background-color: #6B645D;
  overflow: hidden;
  padding: 150px 0 140px;
}
.doctor_wrap .doctor_popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(108, 142, 108, 0.95);
  z-index: 102;
}
.doctor_wrap .doctor_popup .con {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
}
.doctor_wrap .doctor_popup .con .exit_btn {
  margin-bottom: 10px;
  margin-right: -150px;
  text-align: right;
  cursor: pointer;
}
.doctor_wrap .doctor_popup .con pre {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
  letter-spacing: -0.5px;
  color: #fff;
  text-align: center;
}
.doctor_wrap .doctor_slide {
  max-width: 1110px;
  margin: 0 auto;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-scrollbar {
  max-width: 1110px;
  width: 100%;
  position: static;
  margin-top: 70px;
  background-color: rgba(255, 255, 255, 0.4);
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #728C72;
  cursor: pointer;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide {
  display: flex;
  cursor: pointer;
  margin-right: 240px;
  transition: opacity 0.5s;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide.swiper-slide-prev {
  opacity: 0;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .left_box {
  margin-right: 80px;
  position: relative;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .left_box img {
  border-radius: 20px;
  overflow: hidden;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .left_box a {
  position: absolute;
  bottom: 60px;
  left: -148px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 228px;
  height: 228px;
  background-color: rgba(114, 140, 114, 0.9);
  border-radius: 100%;
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  line-height: 140%; /* 30.8px */
  letter-spacing: -0.5px;
  transition: background-color 0.2s;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .left_box a:hover {
  background-color: #728c72;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .right_box {
  width: 554px;
  padding-top: 17px;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .right_box h2 {
  display: flex;
  align-items: center;
  padding-bottom: 29.5px;
  position: relative;
  border-bottom: 1px solid #F3E8D1;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .right_box h2:before {
  content: "Dr.";
  display: inline-block;
  font-size: 41px;
  color: #F3E8D1;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.5px;
  font-family: "MaruBuri";
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .right_box h2 strong {
  margin: 0 12px;
  font-size: 34px;
  color: #fff;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 5px;
  font-family: "MaruBuri";
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .right_box h2 small {
  color: #F3E8D1;
  font-size: 23px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.5px;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .right_box h2 p {
  position: absolute;
  right: 0;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .right_box h2 p img:last-child {
  margin-left: 11px;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .right_box .top_list {
  padding: 18px 20px;
  border-bottom: 1px solid #F3E8D1;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .right_box .top_list li {
  font-size: 18px;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: -0.5px;
  color: #F3E8D1;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .right_box .main_list {
  padding-top: 25px;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .right_box .main_list li {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}
.doctor_wrap .doctor_slide .doctor_swiper .swiper-wrapper .swiper-slide .right_box .main_list li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #728C72;
  border-radius: 100%;
  margin-right: 13px;
}

.sleep_wrap {
  background-image: url(../img/sleep_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sleep_wrap .inner {
  padding: 150px 0;
}
.sleep_wrap .inner .title_box p {
  margin: 40px 0 30px;
  font-size: 20px;
  font-weight: 300;
  line-height: 180%; /* 36px */
  letter-spacing: -0.5px;
}
.sleep_wrap .inner .title_box ul {
  display: flex;
}
.sleep_wrap .inner .title_box ul li {
  border-radius: 100px;
  padding: 8px 18px;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #A89376;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  color: #A89376;
}
.sleep_wrap .inner .title_box ul li:not(:last-child) {
  margin-right: 10px;
}
.sleep_wrap .inner .hover_box {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}
.sleep_wrap .inner .hover_box .mini_hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #D0CABC;
  border-radius: 20px;
  overflow: hidden;
  width: 464px;
  height: 430px;
  cursor: pointer;
  position: relative;
}
.sleep_wrap .inner .hover_box .mini_hover > p {
  font-size: 26px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  margin-top: 55.5px;
}
.sleep_wrap .inner .hover_box .mini_hover > img {
  margin-bottom: 45.5px;
}
.sleep_wrap .inner .hover_box .mini_hover .popup_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #728C72;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.sleep_wrap .inner .hover_box .mini_hover .popup_box p {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  line-height: 170%; /* 34px */
  letter-spacing: -0.5px;
  text-align: center;
}
.sleep_wrap .inner .hover_box .mini_hover .popup_box ul {
  display: flex;
  margin: 30px 0 33px;
}
.sleep_wrap .inner .hover_box .mini_hover .popup_box ul li {
  font-size: 18px;
  color: #F3E8D1;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.5px;
}
.sleep_wrap .inner .hover_box .mini_hover .popup_box ul li:not(:last-child) {
  margin-right: 30px;
}
.sleep_wrap .inner .hover_box .mini_hover:hover .popup_box {
  opacity: 1;
}

.implant_wrap .inner {
  padding: 153px 0 149px;
}
.implant_wrap .inner .title_box {
  text-align: center;
  margin-bottom: 70px;
}
.implant_wrap .inner .title_box h2 {
  margin-top: 26px;
}
.implant_wrap .inner .implant_swiper {
  overflow: hidden;
}
.implant_wrap .inner .implant_swiper .implant_pagination {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.implant_wrap .inner .implant_swiper .implant_pagination .swiper-pagination-bullet {
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #A8A8A8;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  border-radius: 0;
  opacity: 1;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s;
}
.implant_wrap .inner .implant_swiper .implant_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-bottom: 2px solid #728C72;
  color: #728C72;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper {
  height: 444px;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide {
  background-color: #F4F2EF;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide .con_inner {
  display: flex;
  margin-left: 100px;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide .con_inner .text_box {
  margin-left: 102px;
  padding-top: 28px;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide .con_inner .text_box h3 {
  font-size: 34px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide .con_inner .text_box p {
  font-size: 20px;
  font-weight: 300;
  line-height: 170%; /* 34px */
  letter-spacing: -0.5px;
  margin: 25px 0 45px;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide .con_inner .text_box ul {
  display: flex;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide .con_inner .text_box ul li {
  color: #A89376;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.5px;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide .con_inner .text_box ul li:not(:last-child) {
  margin-right: 25px;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide.impl_slide03 .con_inner .text_box p {
  margin: 25px 0;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide.impl_slide03 .con_inner .text_box ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide.impl_slide03 .con_inner .text_box ul li img {
  margin-bottom: 15px;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide.impl_slide03 .con_inner .text_box ul li span {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.5px;
}
.implant_wrap .inner .implant_swiper .swiper-wrapper .swiper-slide.impl_slide03 .con_inner .text_box ul li:not(:last-child) {
  margin-right: 30px;
}

.gum_wrap {
  display: flex;
  justify-content: space-between;
}
.gum_wrap > div {
  width: 100%;
}
.gum_wrap .img_banner_wrap {
  position: relative;
}
.gum_wrap .img_banner_wrap .banner_text_box {
  position: absolute;
  top: 120px;
  left: 240px;
}
.gum_wrap .img_banner_wrap .banner_text_box small {
  font-size: 21px;
  font-weight: 400;
  line-height: 150%; /* 31.5px */
  letter-spacing: -1.5px;
  color: #F3E8D1;
  font-family: "MaruBuri";
}
.gum_wrap .img_banner_wrap .banner_text_box h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 400;
  line-height: 160%; /* 64px */
  letter-spacing: -1.5px;
  font-family: "MaruBuri";
  margin: 27px 0 69px;
}
.gum_wrap .img_banner_wrap .banner_text_box p {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  line-height: 180%; /* 36px */
  letter-spacing: -0.5px;
}
.gum_wrap .btn_box_wrap {
  overflow: hidden;
}
.gum_wrap .btn_box_wrap .mini_btn {
  height: 33.33%;
  background-color: #D0CABC;
  display: flex;
  align-items: center;
  position: relative;
  transition: background-color 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.gum_wrap .btn_box_wrap .mini_btn:not(:last-child) {
  border-bottom: 1px solid #7E7171;
}
.gum_wrap .btn_box_wrap .mini_btn .text_con {
  margin-left: 80px;
  opacity: 0.5;
  transition: opacity 0.3s;
  position: relative;
  z-index: 2;
}
.gum_wrap .btn_box_wrap .mini_btn .text_con h3 {
  font-size: 34px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
}
.gum_wrap .btn_box_wrap .mini_btn .text_con p {
  font-size: 20px;
  font-weight: 300;
  line-height: 170%; /* 34px */
  letter-spacing: -0.5px;
}
.gum_wrap .btn_box_wrap .mini_btn img {
  position: absolute;
  top: 0;
  right: 127px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gum_wrap .btn_box_wrap .mini_btn:hover {
  background-color: #F4F2EF;
}
.gum_wrap .btn_box_wrap .mini_btn:hover .text_con {
  opacity: 1;
}
.gum_wrap .btn_box_wrap .mini_btn:hover img {
  opacity: 1;
}
.gum_wrap .btn_box_wrap .mini_btn.mini_active {
  background-color: #F4F2EF;
}
.gum_wrap .btn_box_wrap .mini_btn.mini_active .text_con {
  opacity: 1;
}
.gum_wrap .btn_box_wrap .mini_btn.mini_active img {
  opacity: 1;
}

.beauty_wrap {
  background-image: url(../img/beauty_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.beauty_wrap .inner {
  padding: 150px 0 100px;
}
.beauty_wrap .inner .title_box {
  text-align: center;
  margin-bottom: 50px;
}
.beauty_wrap .inner .beauty_con {
  max-width: 1098px;
  margin: 0 auto;
}
.beauty_wrap .inner .beauty_con .mini_beauty {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 30px;
}
.beauty_wrap .inner .beauty_con .mini_beauty:not(:last-child) {
  border-bottom: 1px solid #DCDCDC;
}
.beauty_wrap .inner .beauty_con .mini_beauty .left_box small {
  color: #A89376;
  font-family: "MaruBuri";
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
}
.beauty_wrap .inner .beauty_con .mini_beauty .left_box h3 {
  font-size: 34px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  margin: 15px 0 35px;
}
.beauty_wrap .inner .beauty_con .mini_beauty .left_box p {
  font-size: 20px;
  font-weight: 300;
  line-height: 170%; /* 34px */
  letter-spacing: -0.5px;
}
.beauty_wrap .inner .beauty_con .mini_beauty .left_box ul {
  display: flex;
  margin-top: 35px;
}
.beauty_wrap .inner .beauty_con .mini_beauty .left_box ul li {
  font-size: 18px;
  color: #B4B4B4;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
}
.beauty_wrap .inner .beauty_con .mini_beauty .left_box ul li:not(:last-child) {
  margin-right: 25px;
}

.list_wrap {
  background-color: #F4F2EF;
  overflow: hidden;
}
.list_wrap .inner {
  padding: 150px 0 150px;
  max-width: 1608px;
}
.list_wrap .inner .title_box {
  text-align: center;
  margin-bottom: 90px;
}
.list_wrap .inner .title_box h2 {
  margin-top: 26px;
}
.list_wrap .inner .slide_wrap {
  position: relative;
}
.list_wrap .inner .slide_wrap .list_swiper {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
.list_wrap .inner .slide_wrap .list_swiper .swiper-wrapper .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.list_wrap .inner .slide_wrap .list_swiper .swiper-wrapper .swiper-slide p {
  font-size: 26px;
  background-color: #D0CABC;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_wrap .inner .slide_wrap .list_swiper .swiper-wrapper .swiper-slide img {
  filter: grayscale(1);
  transition: filter 0.3s;
}
.list_wrap .inner .slide_wrap .list_swiper .swiper-wrapper .swiper-slide:hover img {
  filter: none;
}
.list_wrap .inner .slide_wrap .btn_wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 0;
}
.list_wrap .inner .slide_wrap .btn_wrap div {
  cursor: pointer;
}

.gallery_wrap {
  padding: 150px 0;
  overflow: hidden;
}
.gallery_wrap .title_box {
  text-align: center;
  margin-bottom: 70px;
}
.gallery_wrap .title_box h2 {
  margin-top: 26px;
}
.gallery_wrap .gallery_swiper {
  max-width: 1154px;
  margin: 0 auto;
  position: relative;
}
.gallery_wrap .gallery_swiper .page_box {
  width: 377px;
  height: 100px;
  background: rgba(26, 26, 26, 0.4);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery_wrap .gallery_swiper .page_box .data_wrap {
  margin-left: 20px;
}
.gallery_wrap .gallery_swiper .page_box .data_wrap .slide_number {
  display: inline-block;
  margin-right: 31px;
  width: 30px;
}
.gallery_wrap .gallery_swiper .page_box .data_wrap .slide_title,
.gallery_wrap .gallery_swiper .page_box .data_wrap .slide_number {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.7px;
}
.gallery_wrap .gallery_swiper .page_box .btn_wrap {
  width: 180px;
  height: 100%;
  display: flex;
}
.gallery_wrap .gallery_swiper .page_box .btn_wrap div {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gallery_wrap .gallery_swiper .page_box .btn_wrap .gallery_next {
  background-color: rgba(114, 140, 114, 0.9);
}

footer {
  background-image: url(../img/footer_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
footer .top_box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 70px 0;
}
footer .top_box .inner {
  display: flex;
  justify-content: space-between;
}
footer .top_box .inner .sub_title {
  display: flex;
  align-items: center;
}
footer .top_box .inner .sub_title .sub_title_text {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  color: #F3E8D1;
}
footer .top_box .inner .sub_title span {
  font-size: 18px;
  color: #F3E8D1;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.5px;
  display: inline-block;
  margin-left: 36px;
}
footer .top_box .inner .map_box {
  margin-top: 43px;
  border-radius: 20px;
  overflow: hidden;
}
footer .top_box .inner .info_wrap .info01 {
  margin-bottom: 35px;
}
footer .top_box .inner .info_wrap .info01 img {
  margin: 30px 0 22px;
}
footer .top_box .inner .info_wrap .info01 ul {
  opacity: 0.5;
}
footer .top_box .inner .info_wrap .info01 ul li {
  font-size: 17px;
  color: #F3E8D1;
  font-weight: 300;
  line-height: 31px; /* 182.353% */
  letter-spacing: -0.5px;
}
footer .top_box .inner .info_wrap .info02 > p {
  font-size: 45px;
  color: #F3E8D1;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.5px;
  font-family: "MaruBuri";
  margin-top: 20px;
}
footer .bottom_box {
  padding: 35px 0;
  opacity: 0.5;
}
footer .bottom_box .inner {
  display: flex;
  justify-content: space-between;
}
footer .bottom_box .inner p, footer .bottom_box .inner li {
  font-size: 16px;
  color: #F3E8D1;
  font-weight: 300;
  line-height: 30px; /* 187.5% */
  letter-spacing: -0.5px;
}
footer .bottom_box .inner ul {
  display: flex;
}
footer .bottom_box .inner ul li {
  display: flex;
  align-items: center;
}
footer .bottom_box .inner ul li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 15px;
  display: inline-block;
  background-color: #F3E8D1;
  margin: 0 18px;
}

@media (max-width: 1800px) {
  header nav {
    max-width: 1400px;
  }
  .main_wrap .main_swiper {
    max-width: 1400px;
  }
  .main_wrap .main_swiper .swiper-wrapper .swiper-slide .inner {
    max-width: 1280px;
  }
  .inner {
    max-width: 1400px;
  }
}