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

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

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

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

.title_box h2 {
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 72.8px */
  letter-spacing: -1.7px;
}
.title_box h2 strong {
  font-weight: 700;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 105;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background-color: #f8f4eb;
  z-index: 110;
}
header nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header nav svg path {
  fill: #5B5A5C;
}
header nav svg path:nth-child(-n+3), header nav svg path:last-child {
  fill: #2E345F;
}
header nav svg path:nth-last-of-type(2) {
  fill: #E98E30;
}
header nav ul {
  display: flex;
  gap: 20px;
  transition: all 0.3s;
}
header nav ul li {
  position: relative;
  transition: all 0.2s;
  border-radius: 10px;
}


header nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: -0.5px;
  padding: 0 20px;
  transition: all 0.2s;
}

header nav ul li.list_active{
  background-color: #344EAD;

}

header nav ul li.list_active a{
  color: #fff;
}
header nav .menu_btn {
  display: flex;
  align-items: center;
  padding: 0 23px;
  cursor: pointer;
  width: 70px;
  height: 50px;
  position: relative;
}
header nav .menu_btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 0.4s;
}
header nav .menu_btn img.exit_btn {
  opacity: 0;
}
header nav.menu_on ul {
  opacity: 0;
  pointer-events: none;
}
header nav.menu_on .menu_btn img {
  opacity: 0;
}
header nav.menu_on .menu_btn img.exit_btn {
  opacity: 1;
}
header.dark_on nav svg path {
  fill: #fff;
  transition: fill 0.2s;
}
header.dark_on nav svg path:nth-last-of-type(2) {
  fill: #E98E30;
}

.menu_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F8F4EB;
  z-index: 105;
  display: none;
  padding: 206px 0 168px;
}
.menu_wrap h2 {
  text-align: center;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 72.8px */
  letter-spacing: -1.7px;
  margin-bottom: 80px;
}
.menu_wrap .main_menu {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.menu_wrap .main_menu > li {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
  width: 170px;
  text-align: center;
}
.menu_wrap .main_menu > li > a {
  padding-bottom: 11px;
  display: inline-block;
  width: 150px;
  border-bottom: 2px solid #000;
}
.menu_wrap .main_menu > li .sub_menu {
  margin-top: 30px;
}
.menu_wrap .main_menu > li .sub_menu li:not(:last-child) {
  margin-bottom: 16px;
}
.menu_wrap .main_menu > li .sub_menu li a {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 5px 0;
  background-color: transparent;
  transition: all 0.2s;
}
.menu_wrap .main_menu > li .sub_menu li:hover a {
  background-color: #EFE7D5;
  border-radius: 10px;
}

aside {
  position: fixed;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  z-index: 103;
}
aside ul li {
  background-color: #344EAD;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  position: relative;
}
aside ul li:not(:last-child) {
  margin-bottom: 20px;
}
aside ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
aside ul li a span {
  position: absolute;
  right: calc(100% + 10px);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.8px;
  color: #fff;
  width: 86px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1F1F1F;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.2s;
}
aside ul li:hover a span {
  opacity: 1;
}

.main_wrap {
  position: relative;
  overflow: hidden;
}
.main_wrap .bg_box {
  position: relative;
}
.main_wrap .bg_box img {
  height: 823px;
}
.main_wrap .title_box {
  max-width: 1420px;
  width: 100%;
  position: absolute;
  top: 234px;
  left: 50%;
  transform: translateX(-50%);
}
.main_wrap .title_box * {
  color: #fff;
}
.main_wrap .title_box h2 strong {
  color: #E98E30;
  font-weight: 700;
}
.main_wrap .title_box p {
  margin-top: 37.65px;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
  color: rgba(255, 255, 255, 0.8);
}
.main_wrap .title_box .btn_wrap {
  display: flex;
  gap: 12px;
  margin-top: 37.65px;
}
.main_wrap .title_box .btn_wrap .link_btn {
  background-color: #E98E30;
  border-radius: 20px 0;
}
.main_wrap .title_box .btn_wrap .link_btn a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 25px 28px;
}
.main_wrap .title_box .btn_wrap .link_btn a span {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -1px;
}
.main_wrap .title_box .btn_wrap .link_btn a span img {
  margin-left: 8px;
}
.main_wrap .title_box .btn_wrap .link_btn a small {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
}
.main_wrap .scroll_box {
  position: absolute;
  bottom: 173px;
  z-index: 3;
  max-width: 1420px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.main_wrap .scroll_box a {
  display: flex;
  align-items: center;
}
@keyframes scrolldown {
  0% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, -5px, 0);
  }
}
.main_wrap .scroll_box img {
  animation: scrolldown 0.3s infinite alternate;
}
.main_wrap .scroll_box span {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.1px;
  margin-left: 10px;
  color: #fff;
}
.main_wrap .main_pagination {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: -moz-max-content;
  width: max-content;
  height: -moz-fit-content;
  height: fit-content;
  gap: 16px;
}
.main_wrap .main_pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}
.main_wrap .main_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
}

.review_wrap {
  padding: 138px 0 148px;
  overflow: hidden;
  background-color: #fff;
}
.review_wrap .inner {
  display: flex;
  justify-content: space-between;
}
.review_wrap .title_box a {
  display: inline-block;
  border: 1px solid #1F1F1F;
  border-radius: 100px;
  padding: 15px 45px;
  margin-top: 115px;
  transition: all 0.1s;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}
.review_wrap .title_box a:hover {
  background-color: #1F1F1F;
  color: #fff;
}
.review_wrap .slide_box {
  overflow: hidden;
  width: 1008px;
}
.review_wrap .slide_box .swiper-slide {
  background-color: #656565;
  border-radius: 20px;
  height: 320px;
  position: relative;
}
.review_wrap .slide_box .swiper-slide:before {
  content: "";
  width: 210px;
  height: 184px;
  display: inline-block;
  background-image: url(../img/review_before_text.svg);
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.review_wrap .slide_box .swiper-slide::after {
  content: "빠른 시일내에 업데이트 하도록 하겠습니다.";
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.5px;
  opacity: 0.52;
}
.review_wrap .slide_box .review_pagination {
  height: 3px;
  margin-top: 90px;
  background-color: #D9D9D9;
  position: relative;
}
.review_wrap .slide_box .review_pagination .swiper-pagination-progressbar-fill {
  background-color: #1F1F1F;
}

.intro_wrap {
  position: relative;
}
.intro_wrap .top_box {
  padding: 145px 0 300px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.intro_wrap .top_box .color_box {
  background-color: #F8F4EB;
  border-radius: 100%;
  width: 1000px;
  height: 1000px;
  position: absolute;
  bottom: -70%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 0;
  transition: transform 2.5s ease;
}
.intro_wrap .top_box .color_box.active {
  transform: translate(-50%, -50%) scale(4.5);
  transition: transform 1s ease;
}
.intro_wrap .top_box .text_box {
  text-align: center;
  position: relative;
  z-index: 3;
}
.intro_wrap .top_box .text_box .top_text {
  opacity: 0;
  transition: opacity 0.7s;
}
.intro_wrap .top_box .text_box .top_text p {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 56px */
  letter-spacing: -1.2px;
}
.intro_wrap .top_box .text_box .line_box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 14px auto 24px;
  position: relative;
  opacity: 0;
  transition: opacity 0.7s;
}
.intro_wrap .top_box .text_box .line_box span {
  display: inline-block;
  width: 1px;
  height: 60px;
  background-color: #1F1F1F;
  position: relative;
}
.intro_wrap .top_box .text_box .line_box span::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 7px;
  height: 7px;
  background-color: #1F1F1F;
  border-radius: 100%;
}
.intro_wrap .top_box .text_box .line_box::after {
  position: absolute;
  bottom: -7.5%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 25px;
  height: 25px;
  background-color: rgba(31, 31, 31, 0.1);
  border-radius: 100%;
}
.intro_wrap .top_box .text_box .bottom_text {
  opacity: 0;
  transition: opacity 0.7s;
}
.intro_wrap .top_box .text_box .bottom_text p {
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 72.8px */
  letter-spacing: -1.7px;
}
.intro_wrap .top_box .text_box .bottom_text p strong {
  color: #344EAD;
  font-weight: 700;
}
.intro_wrap .top_box .text_box.text_on > div {
  opacity: 1;
}
.intro_wrap .top_box .text_box.text_on .top_text {
  transition-delay: 0.5s;
}
.intro_wrap .top_box .text_box.text_on .line_box {
  transition-delay: 0.6s;
}
.intro_wrap .top_box .text_box.text_on .bottom_text {
  transition-delay: 0.7s;
}
.intro_wrap .top_box .sub_link_wrap {
  position: relative;
  z-index: 3;
  display: flex;
  margin-top: 212px;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.intro_wrap .top_box .sub_link_wrap .mini_link_box {
  position: relative;
}
.intro_wrap .top_box .sub_link_wrap .mini_link_box .link_text_box {
  width: 100%;
  position: absolute;
  bottom: 73px;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.intro_wrap .top_box .sub_link_wrap .mini_link_box .link_text_box * {
  color: #fff;
}
.intro_wrap .top_box .sub_link_wrap .mini_link_box .link_text_box p {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 56px */
  letter-spacing: -1.2px;
  margin-bottom: 9px;
}
.intro_wrap .top_box .sub_link_wrap .mini_link_box .link_text_box ul {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.intro_wrap .top_box .sub_link_wrap .mini_link_box .link_text_box ul li {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}
.intro_wrap .top_box .sub_link_wrap .mini_link_box .link_text_box ul li::before {
  content: "#";
}
.intro_wrap .top_box .sub_link_wrap .mini_link_box img {
  filter: grayscale(1);
  transition: all 0.2s;
}
.intro_wrap .top_box .sub_link_wrap .mini_link_box:hover img {
  filter: grayscale(0);
}
.intro_wrap .top_box .sub_link_wrap.active {
  opacity: 1;
}
.intro_wrap .top_box .back_text_box {
  position: relative;
  text-align: center;
  z-index: 1;
  display: flex;
  justify-content: center;
  opacity: 0; /* 기본 숨김 */
  transition: opacity 1s ease;
}
.intro_wrap .top_box .back_text_box span {
  font-size: 200px;
  font-style: normal;
  font-weight: 800;
  line-height: 140%; /* 280px */
  letter-spacing: -1.5px;
  color: #EFE7D5;
  text-align: center;
  margin: 0 20px;
  transition: margin 1s ease;
}
.intro_wrap .top_box .back_text_box.shrink {
  opacity: 1;
}
.intro_wrap .top_box .back_text_box.shrink span {
  margin: 0;
}
.intro_wrap .top_box .circle_box {
  position: relative;
  z-index: 3;
  margin-top: -130px;
  display: flex;
  justify-content: space-between;
}
.intro_wrap .top_box .circle_box .mini_circle {
  border-radius: 100%;
  width: 340px;
  height: 340px;
  position: relative;
  text-align: center;
  transform: translateY(300px);
  opacity: 0;
  transition: transform 0.6s, opacity 0.4s;
}
.intro_wrap .top_box .circle_box .mini_circle .in_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.intro_wrap .top_box .circle_box .mini_circle .in_text * {
  color: #fff;
}
.intro_wrap .top_box .circle_box .mini_circle .in_text p {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -1px;
}
.intro_wrap .top_box .circle_box .mini_circle .in_text span {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
  border: 1px solid #fff;
  width: 133px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin: 20px auto 0;
  background: rgba(0, 0, 0, 0.5);
}
.intro_wrap .top_box .circle_box .mini_circle:nth-child(even) {
  background: linear-gradient(0deg, #5268B7 1.32%, #243F9E 98.68%);
}
.intro_wrap .top_box .circle_box .mini_circle:nth-child(even) .in_text span {
  background: rgba(255, 255, 255, 0.1);
}
.intro_wrap .top_box .circle_box .mini_circle.circle_on {
  opacity: 1;
  transform: translateY(0);
}
.intro_wrap .bg_box {
  background-image: url(../img/intro_doctor_bg.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 645px;
  /* background-attachment: fixed; */
}
.doctor_box {
  padding: 140px 0;
  height: 100vh;
  display: flex;
  justify-content: right;
  gap: 103px;
  overflow: hidden;
  position: static;
}
.doctor_box .left_box {
  width: 800px;
}
.doctor_box .left_box h3 {
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 72.8px */
  letter-spacing: -1.7px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(31, 31, 31, 0.4);
  position: relative;
}
.doctor_box .left_box h3 img {
  position: absolute;
  right: 0;
  top: 9px;
}
.doctor_box .left_box .info_box {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}
.doctor_box .left_box .info_box .doctor_title_box {
  padding-top: 50px;
}
.doctor_box .left_box .info_box .doctor_title_box small {
  color: #344EAD;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 36.4px */
  letter-spacing: -0.8px;
}
.doctor_box .left_box .info_box .doctor_title_box span {
  display: block;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 72.8px */
  letter-spacing: -1.7px;
}
.doctor_box .left_box .info_box .doctor_title_box p {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 36px */
  letter-spacing: -0.6px;
  color: #fff;
  background-color: #344EAD;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.doctor_box .left_box .info_box .doctor_title_box p::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/doctor_mark.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  margin-right: 6px;
}
.doctor_box .left_box .info_box .doctor_list_box {
  display: flex;
  gap: 73px;
  margin-top: 50px;
}
.doctor_box .left_box .info_box .doctor_list_box ul:first-child {
  width: 375px;
}
.doctor_box .left_box .info_box .doctor_list_box ul li {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}
.doctor_box .left_box .info_box .doctor_list_box ul li.margin_list {
  margin-top: 30px;
}
.doctor_box .right_box {
  width: 768px;
  height: 780px;
  border-top-left-radius: 50px;
  background-color: #FFFFFF;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
}
.doctor_box .right_box::after {
  content: url(../img/doctor_mark02.svg);
  position: absolute;
  top: 40px;
  left: 40px;
}

.margin_wrap {
  padding: 200px 0 0;
}

.implant_wrap {
  padding: 90px 0 290px;
}
.implant_wrap .title_box {
  margin-bottom: 60px;
}
.implant_wrap .title_box h2 strong {
  color: #fff;
  background-color: #344EAD;
  padding: 0 5px 0 13px;
}
@keyframes bulletProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.implant_wrap .implant_slide_wrap {
  overflow: hidden;
  position: relative;
}
.implant_wrap .implant_slide_wrap .line_box {
  width: 100%;
  z-index: 3;
  margin-bottom: 41px;
  position: relative;
}
.implant_wrap .implant_slide_wrap .line_box:after {
  content: "";
  width: 100%;
  height: 3px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  background-color: #D9D9D9;
}
.implant_wrap .implant_slide_wrap .line_box .implant_pagination {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.implant_wrap .implant_slide_wrap .line_box .implant_pagination .swiper-pagination-bullet {
  width: 25%;
  border-radius: 0;
  height: 55px;
  background-color: transparent;
  margin: 0;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 36.4px */
  letter-spacing: -0.8px;
  color: #8F8F8F;
  opacity: 1;
  position: relative;
  overflow: hidden;
}
.implant_wrap .implant_slide_wrap .line_box .implant_pagination .swiper-pagination-bullet .bullet-progress-bar {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background-color: #1F1F1F;
  z-index: 99;
}
.implant_wrap .implant_slide_wrap .line_box .implant_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  color: #1F1F1F;
}
.implant_wrap .implant_slide_wrap .line_box .implant_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .bullet-progress-bar {
  animation: bulletProgress 3s linear forwards;
}
.implant_wrap .implant_slide_wrap .implant_swiper {
  position: relative;
}
.implant_wrap .implant_slide_wrap .implant_swiper .swiper-slide {
  display: flex;
  gap: 35px;
}
.implant_wrap .implant_slide_wrap .implant_swiper .swiper-slide .text_box {
  margin-top: 62px;
}
.implant_wrap .implant_slide_wrap .implant_swiper .swiper-slide .text_box h3 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 84px */
  letter-spacing: -1.7px;
}
.implant_wrap .implant_slide_wrap .implant_swiper .swiper-slide .text_box p {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -1px;
  margin: 16px 0 54px;
}
.implant_wrap .implant_slide_wrap .implant_swiper .swiper-slide .text_box span {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
}

.sleep_wrap {
  position: relative;
}
.sleep_wrap .top_box {
  position: sticky;
  overflow: hidden;
  top: 0;
  height: 100vh;
}
.sleep_wrap .top_box .bg_box {
  position: relative;
}
.sleep_wrap .top_box .bg_box canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: transparent;
}
.sleep_wrap .top_box .inner {
  position: absolute;
  top: 111px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.sleep_wrap .top_box .title_box {
  text-align: center;
}
.sleep_wrap .top_box .title_box h2 {
  color: #fff;
}
.sleep_wrap .top_box .title_box p {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -1px;
  color: #0D1020;
  width: 476px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 51px;
  background-image: url(../img/sleep_text_bg.png);
}
.sleep_wrap .top_box .sleep_con_box {
  border: 1px solid #E3E3E3;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 60px 162px;
}
.sleep_wrap .top_box .sleep_con_box * {
  color: #fff;
}
.sleep_wrap .top_box .sleep_con_box ul li {
  display: flex;
  align-items: center;
}
.sleep_wrap .top_box .sleep_con_box ul li:before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/sleep_icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 26px;
}
.sleep_wrap .top_box .sleep_con_box ul li:not(:last-child) {
  margin-bottom: 40px;
}
.sleep_wrap .top_box .sleep_con_box ul li p {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 56px */
  letter-spacing: -1.2px;
  width: 135px;
}
.sleep_wrap .top_box .sleep_con_box ul li span {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
  display: flex;
  align-items: center;
}
.sleep_wrap .top_box .sleep_con_box ul li span::before {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #fff;
  display: inline-block;
  margin: 0 40px;
}
.sleep_wrap .spacer {
  height: 2000px;
}
.sleep_wrap .bottom_box {
  padding: 145px 0;
  position: relative;
  z-index: 9;
  width: 100%;
  background-color: #F8F4EB;
  border-radius: 100px 100px 0 0;
  overflow: hidden;
  transition: border-radius 0.4s;
}
.sleep_wrap .bottom_box .title_box {
  text-align: center;
  margin-bottom: 34px;
}
.sleep_wrap .bottom_box .sleep_pagination {
  margin: 0 auto;
  display: flex;
  max-width: 902px;
  padding: 10px 20px;
  justify-content: space-between;
}
.sleep_wrap .bottom_box .sleep_pagination .swiper-pagination-bullet {
  width: -moz-max-content;
  width: max-content;
  height: 45px;
  background-color: transparent;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
  border-radius: 100px;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.sleep_wrap .bottom_box .sleep_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1F1F1F;
  color: #fff;
}
.sleep_wrap .bottom_box .sleep_swiper {
  margin-top: 53px;
}
.sleep_wrap .bottom_box .sleep_swiper .swiper-slide {
  opacity: 0 !important;
}
.sleep_wrap .bottom_box .sleep_swiper .swiper-slide:nth-child(1) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sleep_wrap .bottom_box .sleep_swiper .swiper-slide:nth-child(1) .left_box span {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
}
.sleep_wrap .bottom_box .sleep_swiper .swiper-slide:nth-child(1) .left_box p {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 36.4px */
  letter-spacing: -0.8px;
  margin-top: 51px;
  background-color: #EFE7D5;
  padding: 12px 33px;
  border-radius: 10px;
}
.sleep_wrap .bottom_box .sleep_swiper .swiper-slide:nth-child(3) ul {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.sleep_wrap .bottom_box .sleep_swiper .swiper-slide:nth-child(3) ul li {
  background-color: #EFE7D5;
  border-radius: 15px;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 65px;
  height: 400px;
  text-align: center;
}
.sleep_wrap .bottom_box .sleep_swiper .swiper-slide:nth-child(3) ul li p {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 36.4px */
  letter-spacing: -0.8px;
  margin: 54px 0 19px;
  display: flex;
  align-items: center;
}
.sleep_wrap .bottom_box .sleep_swiper .swiper-slide:nth-child(3) ul li p::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/sleep_ch.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 12px;
}
.sleep_wrap .bottom_box .sleep_swiper .swiper-slide:nth-child(3) ul li span {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
}
.sleep_wrap .bottom_box .sleep_swiper .swiper-slide:nth-child(4) ul {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.sleep_wrap .bottom_box .sleep_swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.sleep_wrap .bottom_box.full_on {
  border-radius: 0;
}

.nature_wrap {
  background-image: url(../img/nature_bg.png);
  padding: 145px 0;
}
.nature_wrap .title_box {
  text-align: center;
}
.nature_wrap .title_box * {
  color: #fff;
}
.nature_wrap .title_box small {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
  display: inline-block;
  margin-bottom: 22px;
}
.nature_wrap .nature_pagination {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px 20px;
  margin: 34px 0 58px;
}
.nature_wrap .nature_pagination .swiper-pagination-bullet {
  background-color: transparent;
  border-radius: 100px;
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
  height: 45px;
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding: 0 40px;
  opacity: 1;
  margin: 0;
}
.nature_wrap .nature_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
  color: #344EAD;
}
.nature_wrap .nature_swiper .swiper-slide {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.2);
  height: 450px;
  opacity: 0 !important;
  display: flex;
  justify-content: space-between;
  padding: 25px 28px 0 66px;
}
.nature_wrap .nature_swiper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.nature_wrap .nature_swiper .swiper-slide h3 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 56px */
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}
.nature_wrap .nature_swiper .swiper-slide p {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
}
.nature_wrap .nature_swiper .swiper-slide .left_box {
  margin-top: 124px;
}
.nature_wrap .nature_swiper .swiper-slide .left_box * {
  color: #fff;
}
.nature_wrap .nature_swiper .swiper-slide .right_box {
  width: 720px;
}
.nature_wrap .nature_swiper .swiper-slide.nature_last_slide {
  padding: 0;
  background-color: transparent;
  height: auto;
}
.nature_wrap .nature_swiper .swiper-slide.nature_last_slide > div {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.2);
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-align: center;
}
.nature_wrap .nature_swiper .swiper-slide.nature_last_slide > div * {
  color: #fff;
}

.case_wrap {
  padding: 277px 0 290px;
  overflow: hidden;
}
.case_wrap .top_box {
  display: flex;
  justify-content: space-between;
}
.case_wrap .top_box .left_info_box h2 {
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 72.8px */
  letter-spacing: -1.7px;
}
.case_wrap .top_box .left_info_box .case_pagination {
  display: flex;
  max-width: 350px;
  justify-content: space-between;
  padding: 10px 0;
  margin: 24px 0 40px;
}
.case_wrap .top_box .left_info_box .case_pagination .swiper-pagination-bullet {
  width: -moz-max-content;
  width: max-content;
  height: 45px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: transparent;
  opacity: 1;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
}
.case_wrap .top_box .left_info_box .case_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1F1F1F;
  color: #fff;
}
.case_wrap .top_box .left_info_box p {
  display: flex;
  align-items: center;
}
.case_wrap .top_box .left_info_box p.case_day_wrap {
  padding: 12px 0;
}
.case_wrap .top_box .left_info_box p.case_day_wrap .case_title {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 36.4px */
  letter-spacing: -0.8px;
  margin-right: 24px;
}
.case_wrap .top_box .left_info_box p.case_day_wrap .case_day {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
}
.case_wrap .top_box .left_info_box p.case_info {
  margin-top: 50px;
}
.case_wrap .top_box .left_info_box p.case_info span {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.5px;
  color: rgba(31, 31, 31, 0.4);
  margin-left: 12px;
}
.case_wrap .top_box .case_swiper {
  width: 838px;
  overflow: hidden;
  margin-bottom: 112px;
}
.case_wrap .top_box .case_swiper > .swiper-wrapper > .swiper-slide {
  opacity: 0 !important;
}
.case_wrap .top_box .case_swiper > .swiper-wrapper > .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.case_wrap .top_box .case_swiper .btn_wrap {
  max-width: 164px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px auto 0;
}
.case_wrap .top_box .case_swiper .btn_wrap > div {
  background-color: #EFE7D5;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.case_wrap .top_box .case_swiper .btn_wrap > div.next_btn {
  transform: scaleX(-1);
}
.case_wrap .bottom_box {
  background-image: url(../img/board_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 418px;
}
.case_wrap .bottom_box .text_box {
  text-align: center;
  padding-top: 106px;
}
.case_wrap .bottom_box .text_box h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 56px */
  letter-spacing: -1.2px;
}
.case_wrap .bottom_box .text_box p {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
  margin: 12px 0 44px;
}
.case_wrap .bottom_box .text_box a {
  background-color: #344EAD;
  color: #fff;
  width: 250px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin: 0 auto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
}

.gallery_wrap {
  border-radius: 0 100px;
  background-color: #EFE7D5;
  padding: 145px 0;
  overflow: hidden;
  position: relative;
  z-index: 102;
}
.gallery_wrap .top_box .title_box {
  text-align: center;
}
.gallery_wrap .top_box .title_box p {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
  margin: 16px 0 46px;
}
@keyframes bulletProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.gallery_wrap .top_box .line_box {
  max-width: 1420px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 42px auto 0;
  z-index: 3;
  position: relative;
}
.gallery_wrap .top_box .line_box:after {
  content: "";
  width: 100%;
  height: 3px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  background-color: #fff;
}
.gallery_wrap .top_box .line_box .gallery_pagination {
  display: flex;
  justify-content: space-between;
  max-width: 1420px;
  margin: 0 auto;
  width: 100%;
}
.gallery_wrap .top_box .line_box .gallery_pagination .swiper-pagination-bullet {
  height: 55px;
  background-color: transparent;
  display: flex;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 36.4px */
  letter-spacing: -0.8px;
  opacity: 1;
  color: #8F8F8F;
  margin: 0;
  width: 100%;
  border-radius: 0;
  opacity: 1;
  position: relative;
  overflow: hidden;
}
.gallery_wrap .top_box .line_box .gallery_pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background-color: #1F1F1F;
  z-index: 99;
}
.gallery_wrap .top_box .line_box .gallery_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  color: #1F1F1F;
}
.gallery_wrap .top_box .line_box .gallery_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 100%;
  transition: width 3.7s;
}
.gallery_wrap .bottom_box {
  max-width: 1670px;
  width: 100%;
  height: 500px;
  border-radius: 50px 0 0 50px;
  background-color: #F8F4EB;
  margin-top: 208px;
  margin-left: auto;
  position: relative;
  padding: 93px 110px;
}
.gallery_wrap .bottom_box .left_box h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -1px;
}
.gallery_wrap .bottom_box .left_box h3 strong {
  font-weight: 700;
}
.gallery_wrap .bottom_box .left_box ul {
  display: flex;
  gap: 24px;
  margin-top: 55px;
}
.gallery_wrap .bottom_box .left_box ul li {
  background-color: #344EAD;
  border-radius: 100%;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
  position: relative;
}
.gallery_wrap .bottom_box .left_box ul li:not(:last-child)::after {
  content: "";
  width: 27px;
  height: 2px;
  background-color: #344EAD;
  display: inline-block;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.gallery_wrap .bottom_box .right_box {
  position: absolute;
  bottom: 32px;
  right: 250px;
}

.info_wrap {
  margin-top: -100px;
}
.info_wrap .bottom_box {
  padding: 145px 0;
}
.info_wrap .bottom_box .inner {
  display: flex;
  justify-content: space-between;
}
.info_wrap .bottom_box .inner > div {
  width: 50%;
  height: 442px;
}
.info_wrap .bottom_box .inner > div:last-child {
  border-left: 1px solid rgba(31, 31, 31, 0.1);
  padding-left: 115px;
}
.info_wrap .bottom_box .inner > div h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 48px */
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.info_wrap .bottom_box .inner > div span {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.6px;
}
.info_wrap .bottom_box .inner > div ul {
  margin-top: 24px;
}
.info_wrap .bottom_box .inner > div ul li {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.5px;
  background-color: #EFE7D5;
  border-radius: 5px;
  padding: 5px 20px;
  width: -moz-max-content;
  width: max-content;
}
.info_wrap .bottom_box .inner > div ul li:not(:last-child) {
  margin-bottom: 10px;
}
.info_wrap .bottom_box .inner > div p {
  display: flex;
  align-items: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 84px */
  margin-top: 107px;
}
.info_wrap .bottom_box .inner > div p img {
  margin-right: 16px;
}

footer .f_box {
  border-radius: 50px 50px 0 0;
  background-color: #EFE7D5;
  padding: 42px 0 36px;
  text-align: center;
}
footer .f_box li {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.5px;
  color: rgba(31, 31, 31, 0.3);
}
footer .f_box li:not(:last-child) {
  margin-bottom: 8px;
}
footer .f_box li:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .f_box li:last-child a {
  border: 1px solid rgba(31, 31, 31, 0.3);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: -0.5px;
  color: rgba(31, 31, 31, 0.3);
  display: inline-block;
  padding: 0 8px;
  margin-left: 25px;
  transition: all 0.2s;
}
footer .f_box li:last-child a:hover {
  color: rgba(31, 31, 31, 0.8);
  border: 1px solid rgba(31, 31, 31, 0.8);
}