@charset "UTF-8";
:root {
  --laon-blue: #1e4787;
  --star-color: 200, 220, 255; /* RGB */
  --min-width: 1px; /* 꼬리 두께 최소 */
  --max-width: 3px; /* 꼬리 두께 최대 */
  --min-height: 120px; /* 꼬리 길이 최소 */
  --max-height: 220px; /* 꼬리 길이 최대 */
  --min-duration: 0.9s; /* 낙하 속도(짧을수록 빠름) 최소 */
  --max-duration: 1.8s; /* 낙하 속도 최대 */
  --spawn-interval: 380ms; /* 자동 생성 주기 (작을수록 자주) */
  --glow-1: 0 0 12px rgba(var(--star-color), 0.95);
  --glow-2: 0 0 26px rgba(var(--star-color), 0.7);
}

@font-face {
  font-family: "PayboocFont";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-Light.woff") format("woff");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "PayboocFont";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "PayboocFont";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "PayboocFont";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PayboocFont", "Noto Sans KR", sans-serif;
  color: #1b1b1b;
  height: 100%;
  letter-spacing: -0.03em;
  font-weight: 400;
  background: #fff;
  margin: 0 auto;
  min-width: 1400px;
}

img {
  border: 0;
  vertical-align: bottom;
}

a {
  font-family: "SUIT", "Noto Sans KR", sans-serif;
  color: #333;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
}

textarea {
  resize: none;
}

label {
  vertical-align: middle;
}

.relative {
  position: relative;
}

b,
strong,
.bold {
  font-weight: 600;
}

input:focus,
input:active,
textarea:focus,
textarea:active {
  outline: none;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: -1.5px;
}

.frm_input {
  height: 45px;
  /* font-size: 18px; */
  padding-left: 7px;
  box-sizing: border-box;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

/* scss 변수 */
.scm {
  /*screen_middle*/
  width: 1400px;
  margin: 0 auto;
}

.wrap {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}

.grid-no-gap {
  display: flex;
  flex-wrap: wrap;
}

.sub_visual {
  padding-top: 270px;
}

.sub_visual_ttl {
  font-size: 72px;
  font-weight: 800;
}

.sub_md_txt {
  display: inline-block;
  font-size: 54px;
  line-height: 1.4;
  font-weight: 800;
}

.sub_sm_txt {
  display: inline-block;
  font-size: 21px;
  color: #5a5a5a;
  line-height: 1.4;
  font-weight: 500;
}

.subpage {
  width: 100%;
  overflow-x: hidden;
  width: 100%;
  overflow: hidden;
}
.subpage .img1920 {
  width: 1920px;
  margin: 0 auto;
}
.subpage .img1920 > img {
  margin-left: -40px;
}

.flex_sb {
  display: flex;
  justify-content: space-between;
}

.sub_contents {
  width: 100%;
}

/***** header/quick *****/
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99998;
  width: 100%;
  height: 80px;
  background: #fff;
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.05);
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1400px;
  height: 100%;
  margin: 0 auto;
}
.header .gnb {
  display: flex;
  height: 100%;
}
.header .gnb .gnb_menu {
  height: 100%;
  position: relative;
}
.header .gnb .gnb_menu:hover .gnb_sub {
  opacity: 1;
  z-index: 0;
  top: calc(100% - 15px);
  max-height: 250px;
}
.header .gnb .mainmenu {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 18px;
  font-weight: 600;
  padding: 0 25px;
  color: #4b4b4b;
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.header .gnb_sub {
  width: 140px;
  height: auto;
  padding: 20px 0;
  position: absolute;
  top: calc(100% - 15px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) brightness(1.5);
  box-shadow: 0 0 6px 4px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
  top: calc(100% - 55px);
  max-height: 0;
  transition: all ease 0.4s;
}
.header .gnb_sub li {
  width: 100%;
  margin-bottom: 4px;
}
.header .gnb_sub li:last-child {
  margin-bottom: 0;
}
.header .gnb_sub li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 4px 0;
  text-align: center;
}
.header .gnb_sub li a:hover {
  color: var(--laon-blue);
}
.header .login_gnb {
  display: flex;
}
.header .login_gnb li {
  margin: 0 8px;
}
.header .login_gnb a {
  display: block;
  padding: 0 20px;
  height: 36px;
  font-size: 18px;
  line-height: 32px;
  color: var(--laon-blue);
  border: 2px solid var(--laon-blue);
  border-radius: 20px;
  font-weight: 600;
  transition: all ease 0.2s;
}
.header .login_gnb a:hover {
  background: var(--laon-blue);
  color: #fff;
}

.quickmenu {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  width: 80px;
  overflow: hidden;
  background: var(--laon-blue);
  display: flex;
  flex-direction: column;
}
.quickmenu .btn_allmenu {
  width: 100%;
  height: 80px;
}
.quickmenu .quick_nav {
  margin-top: auto;
}
.quickmenu .quick_nav li {
  margin-top: 40px;
}
.quickmenu .quick_nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.quickmenu .quick_nav a span {
  display: block;
  margin-bottom: 8px;
}
.quickmenu .btn_top {
  width: 100%;
  height: 80px;
  background: #fff;
  margin-top: 40px;
}

.allmenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px) brightness(1.1);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.04);
}
.allmenu.opened {
  display: block;
}
.allmenu_close {
  position: absolute;
  top: 10px;
  right: -60px;
  font-family: "SUIT", sans-serif;
  font-size: 32px;
  color: #1d111d;
}
.allmenu_inner {
  width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.allmenu_inner::before {
  content: url("../img/logo.jpg");
  position: absolute;
  top: 0;
  left: -220px;
}
.allmenu_part {
  width: 150px;
  text-align: center;
}
.allmenu_part ul li {
  margin-bottom: 10px;
}
.allmenu_part ul a {
  font-size: 16px;
  line-height: 1.5;
  transition: all ease 0.2s;
}
.allmenu_part ul a:hover {
  color: var(--laon-blue);
}
.allmenu h4 {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
  padding-bottom: 8px;
}

/***** //header/quick *****/
/***** main *****/
.desc {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #4b4b4b;
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.desc b {
  font-weight: 700;
}

.swiper-button-next,
.swiper-button-prev {
  background: none !important; /* 배경 이미지 제거 */
  width: 30px; /* 필요 시 크기 조정 */
  height: 30px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none; /* 기본 화살표 제거 */
}

.mainbanner {
  width: 100%;
  max-height: 1080px;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.mainbanner .swiper {
  width: 100%;
  height: 100%;
}
.mainbanner .swiper-wrpper {
  width: 100%;
  height: 100%;
}
.mainbanner .swiper-slide {
  width: 100%;
  height: 100%;
}
.mainbanner .swiper-slide.slide1 {
  background: url("../img/mainbanner1_bg.jpg") no-repeat center;
  background-size: cover;
}
.mainbanner .swiper-slide.slide2 {
  background: url("../img/mainbanner2_bg.jpg") no-repeat center;
  background-size: cover;
}
.mainbanner .swiper-slide.slide2 h3,
.mainbanner .swiper-slide.slide2 .desc {
  color: #fff;
}
.mainbanner .swiper-slide.slide3 {
  background: url("../img/mainbanner3_bg.jpg") no-repeat center;
  background-size: cover;
}
.mainbanner_cont {
  width: 1400px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mainbanner_cont h3 {
  font-family: "PayboocFont";
  font-weight: 800;
  color: #1b1b1b;
  font-size: 72px;
  line-height: 1.3;
  letter-spacing: -0.045em;
  margin-bottom: 45px;
  transform: translateY(60px);
  opacity: 0;
  transition: all ease 1s;
}
.mainbanner_cont .desc {
  opacity: 0;
  transform: translateY(-60px);
  transition: all ease 1s;
}
.mainbanner .active .mainbanner_cont h3 {
  opacity: 1;
  transform: translateY(0px);
}
.mainbanner .active .mainbanner_cont .desc {
  opacity: 1;
  transform: translateY(0px);
}
.mainbanner .active .mainbanner_cont .link_more_wrap2 {
  opacity: 1;
  transform: translateY(0px);
}
.mainbanner .swiper-pagination {
  position: absolute;
  bottom: 100px;
  left: calc(50% - 700px);
  display: inline-block;
  width: initial;
  color: var(--laon-blue);
  font-weight: 600;
}
.mainbanner .swiper-pagination-total {
  margin-left: 150px;
}
.mainbanner .swiper-pagination-bar {
  position: absolute;
  bottom: 106px;
  left: calc(50% - 670px);
  width: 120px;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  z-index: 5;
  transition: all ease 3s;
  transition-timing-function: linear;
}
.mainbanner .swiper-pagination-bar::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--laon-blue);
  transform-origin: left center;
}
.mainbanner .swiper-pagination-bar.active::after {
  transition: all ease 4s;
  width: 100%;
}
.mainbanner .swiper-buttons {
  position: absolute;
  bottom: 100px;
  left: calc(50% - 620px);
  padding-left: 120px;
  display: flex;
}
.mainbanner .swiper-buttons .swiper-button-next,
.mainbanner .swiper-buttons .swiper-button-prev {
  color: var(--laon-blue);
  position: static;
  margin: 0;
  height: initial;
}

.main_cs {
  width: 1400px;
  margin: 0 auto;
}
.main_cs form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 190px;
  padding: 0 90px;
}
.main_cs_ttl {
  font-family: "PayboocFont";
  font-size: 24px;
  font-weight: 800;
  color: #1b1b1b;
}
.main_cs_form {
  display: flex;
}
.main_cs_form_ipts {
  padding-top: 12px;
}
.main_cs_form input,
.main_cs_form select {
  border: none;
  border-bottom: 1px solid #1b1b1b;
  margin: 0 20px;
  width: 170px;
  color: #4b4b4b;
  height: 40px;
  font-size: 16px;
}
.main_cs_form option {
  color: #4b4b4b;
}
.main_cs_form_btn {
  margin-left: 40px;
}
.main_cs_form_btn button {
  width: 190px;
  height: 55px;
  background: var(--laon-blue);
  color: #fff;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  transition: all ease 0.2s;
}
.main_cs_form_btn button:hover {
  background: #173769;
}
.main_cs_form_btn p {
  margin-top: 8px;
}
.main_cs_form_btn input {
  display: none;
}
.main_cs_form_btn label {
  padding-left: 20px;
  font-size: 12px;
  letter-spacing: -0.045em;
  color: #aeaeae;
  background: url("../img/icon_check_off.png") no-repeat left center;
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.main_cs_form_btn input[type=checkbox]:checked + label {
  background: url("../img/icon_check_on.png") no-repeat left center;
}
.main_cs_form_btn a {
  font-size: 11px;
  color: #aeaeae;
  letter-spacing: -0.045em;
  text-decoration: underline;
}

.main_sm_ttl {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  font-weight: 500;
  color: var(--laon-blue);
  margin-bottom: 40px;
}

.main_big_ttl {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.4;
  color: #1b1b1b;
  margin-bottom: 45px;
}

.main_philo {
  padding: 150px 0;
}
.main_philo .desc {
  color: #5a5a5a;
}
.main_philo_ettl {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 105px;
  color: #f0f0f0;
  margin-top: 126px;
}
.main_philo_subt {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 22px;
  line-height: 1.6;
  color: #48638a;
  padding-left: 45px;
  margin-top: 50px;
}
.main_philo_cards {
  position: absolute;
  right: 0;
  top: 100px;
  display: flex;
  gap: 28px;
}
.main_philo_cards_col:nth-child(2) {
  position: relative;
  top: -100px;
}
.main_philo_card {
  width: 245px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 25px 15px rgba(0, 0, 0, 0.08);
  padding: 40px 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  transition: all ease 0.3s;
}
.main_philo_card_icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_philo_card_ttl {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 26px;
  margin-top: 20px;
  color: #1b1b1b;
}
.main_philo_card_desc {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  color: #5a5a5a;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}
.main_philo_card:hover {
  background: var(--laon-blue);
}
.main_philo_card:hover .main_philo_card_ttl {
  color: #fff;
}
.main_philo_card:hover .main_philo_card_desc {
  color: #fff;
}

.main_subject {
  padding: 150px 0;
  position: relative;
}
.main_subject_roll_ttl {
  padding-top: 90px;
  margin-left: 60px;
  position: relative;
  z-index: 1;
}
.main_subject_roll_ttl h4 {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 34px;
  color: #1b1b1b;
  margin-bottom: 20px;
}
.main_subject_roll_ttl .btn_viewmore {
  margin-top: 20px;
}
.main_subject_tab {
  display: flex;
  margin-top: 70px;
}
.main_subject_tab .swiper-pagination-bullet {
  width: auto;
  height: auto;
  opacity: 1;
  background: none;
}
.main_subject_tab li {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  color: #4b4b4b;
  margin-right: 10px;
  padding: 14px 25px;
  border-radius: 40px;
  cursor: pointer;
}
.main_subject_tab li.active, .main_subject_tab li:hover, .main_subject_tab li.swiper-pagination-bullet-active {
  background: var(--laon-blue);
  color: #fff;
  font-weight: 600;
}
.main_subject_swiper {
  display: flex;
  margin-top: 46px;
}
.main_subject .swiper {
  width: 680px;
  height: 412px;
  border-radius: 20px;
  overflow: hidden;
}
.main_subject .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.main_subject .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.main_subject .swiper .main_subject_menu {
  margin-top: auto;
  width: 100%;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
}
.main_subject .swiper .main_subject_menu li::after {
  content: "|";
  display: inline-block;
  margin: 0 10px;
  color: #fff;
}
.main_subject .swiper .main_subject_menu li:last-child::after {
  display: none;
}
.main_subject .swiper .main_subject_menu a {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  color: #fff;
}
.main_subject .swiper .main_subject_menu a:hover {
  text-decoration: underline;
}
.main_subject .swiper .slide1 {
  background: url("../img/main_subject1.png") no-repeat center/cover;
}
.main_subject .swiper .slide2 {
  background: url("../img/main_subject2.png") no-repeat center/cover;
}
.main_subject .swiper .slide3 {
  background: url("../img/main_subject3.png") no-repeat center/cover;
}
.main_subject .swiper .slide4 {
  background: url("../img/main_subject4.png") no-repeat center/cover;
}
.main_subject .swiper .slide5 {
  background: url("../img/main_subject5.png") no-repeat center/cover;
}
.main_subject .swiper .slide6 {
  background: url("../img/main_subject6.png") no-repeat center/cover;
}
.main_subject_roll_thumb {
  position: absolute;
  right: 0;
  bottom: 150px;
  opacity: 0.6;
  z-index: 0;
  border-radius: 200px 0 0 200px;
  overflow: hidden;
}
.main_subject_roll_thumb .swiper {
  width: 470px;
  height: 410px;
}
.main_subject_roll_thumb .swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.main_subject_roll_thumb .swiper .swiper-slide img {
  width: 100%;
}

.btn_viewmore {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 34px;
  border: 1px solid var(--laon-blue);
  color: #024097;
  font-size: 12px;
  border-radius: 30px;
  transition: all ease 0.3s;
}
.btn_viewmore::after {
  content: url("../img/icon_arrow_viewmore.png");
  margin-left: 10px;
  padding-top: 2px;
}
.btn_viewmore:hover {
  background: var(--laon-blue);
  color: #fff;
}
.btn_viewmore:hover::after {
  filter: grayscale(1) brightness(10);
}

.main_doctor {
  background: url("../img/main_doctor_bg.jpg") no-repeat center/cover;
  padding: 200px 0;
  height: 1080px;
  position: relative;
  overflow: hidden;
}
.main_doctor .main_ttl_grp .main_sm_ttl,
.main_doctor .main_ttl_grp .main_big_ttl,
.main_doctor .main_ttl_grp .desc {
  color: #fff;
}
.main_doctor_info {
  color: #fff;
  margin-top: 170px;
}
.main_doctor_info h4 {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.main_doctor_info h4 span {
  font-size: 26px;
}
.main_doctor_info h4 b {
  font-size: 48px;
  font-weight: 800;
  margin-left: 10px;
}
.main_doctor_info h5 {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
}
.main_doctor_info .desc {
  color: #fff;
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.main_doctor .btn_viewmore {
  margin-top: 40px;
  border-color: #fff;
  color: #fff;
}
.main_doctor .btn_viewmore::after {
  filter: grayscale(1) brightness(10);
}
.main_doctor .btn_viewmore:hover {
  background: #fff;
  color: var(--laon-blue);
}
.main_doctor .btn_viewmore:hover::after {
  filter: grayscale(0) brightness(0);
}
.main_doctor .swiper {
  width: calc(50% - 90px);
  position: absolute;
  right: 0;
  top: 220px;
  overflow: hidden;
}
.main_doctor .swiper .swiper-slide {
  width: 498px;
  position: relative;
  background: #17253a;
  border-radius: 20px;
  overflow: hidden;
  transition-delay: 0;
}
.main_doctor .swiper .swiper-slide:not(.swiper-slide-active) img {
  mix-blend-mode: soft-light;
}
.main_doctor .swiper .swiper-slide.swiper-slide-active ul {
  display: block;
}
.main_doctor .swiper .swiper-slide ul {
  display: none;
  position: absolute;
  bottom: 40px;
  right: 0;
  padding: 0 30px;
  text-align: right;
}
.main_doctor .swiper .swiper-slide ul li {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #323743;
  font-size: 18px;
}
.main_doctor .swiper-button-next,
.main_doctor .swiper-button-prev {
  display: inline-block;
  position: static;
  width: auto;
  height: auto;
  margin: 80px 10px 0;
  opacity: 1;
}
.main_doctor .swiper-button-prev img {
  transform: rotate(180deg);
}

.main_clinic {
  padding: 300px 0;
  position: relative;
  overflow: hidden;
}
.main_clinic .main_clinic_swiper {
  width: calc(50% + 54px);
  min-width: 1090px;
  position: absolute;
  left: calc(50% - 54px);
  top: 320px;
  overflow: hidden;
  padding-top: 90px;
}
.main_clinic .main_clinic_swiper .swiper-slide {
  width: 346px;
  height: 450px;
  overflow: hidden;
  border-radius: 20px;
  transition: all ease 0.5s;
}
.main_clinic .main_clinic_swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.main_clinic .main_clinic_swiper .swiper-slide a span {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.main_clinic .main_clinic_swiper .swiper-slide a span.main_clinic_img_off {
  z-index: 3;
}
.main_clinic .main_clinic_swiper .swiper-slide a span.main_clinic_img_on {
  z-index: 2;
}
.main_clinic .main_clinic_swiper .swiper-slide-active {
  position: relative;
  transform: translateY(-90px);
}
.main_clinic .main_clinic_swiper .swiper-slide-active .main_clinic_img_off {
  opacity: 0;
}
.main_clinic .swiper-pagination {
  position: absolute;
  bottom: 225px;
  left: calc(50% - 700px);
  display: inline-block;
  width: initial;
  color: var(--laon-blue);
  font-weight: 600;
}
.main_clinic .swiper-pagination-total {
  margin-left: 150px;
}
.main_clinic .swiper-pagination-bar {
  position: absolute;
  bottom: 232px;
  left: calc(50% - 670px);
  width: 120px;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  z-index: 5;
  transition: all ease 3s;
  transition-timing-function: linear;
}
.main_clinic .swiper-pagination-bar::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--laon-blue);
  transform-origin: left center;
}
.main_clinic .swiper-pagination-bar.active::after {
  transition: all ease 4s;
  width: 100%;
}
.main_clinic .swiper-buttons {
  position: absolute;
  bottom: 225px;
  left: calc(50% - 620px);
  padding-left: 120px;
  display: flex;
}
.main_clinic .swiper-buttons .swiper-button-next,
.main_clinic .swiper-buttons .swiper-button-prev {
  color: var(--laon-blue);
  position: static;
  margin: 0;
  height: initial;
}

.main_research {
  padding: 200px 0;
  background: url("../img/main_research_bg.jpg") no-repeat center/cover;
}
.main_research .main_ttl_grp .main_sm_ttl,
.main_research .main_ttl_grp .main_big_ttl,
.main_research .main_ttl_grp .desc {
  color: #fff;
}
.main_research .main_research_swiper {
  position: relative;
  margin-top: 150px;
}
.main_research .main_research_swiper .swiper {
  overflow: hidden;
}
.main_research .main_research_swiper .swiper .swiper-slide {
  width: 307px;
  color: #fff;
}
.main_research .main_research_swiper .swiper .swiper-slide p {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 24px;
}
.main_research .main_research_swiper .swiper .swiper-slide h6 {
  font-size: 20px;
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  margin-bottom: 30px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  transition: color 0.2s ease;
}
.main_research .main_research_swiper .swiper .swiper-slide .tooltip.show {
  opacity: 1;
}
.main_research .main_research_swiper .swiper .swiper-slide p {
  line-height: 1.3;
  word-break: keep-all;
}
.main_research .main_research_swiper .swiper-button-prev {
  transform: rotate(180deg);
  left: calc(50% - 700px - 58px - 20px);
  top: 150px;
  width: 58px;
  height: 58px;
  margin-top: 0;
}
.main_research .main_research_swiper .swiper-button-next {
  right: calc(50% - 700px - 58px - 20px);
  top: 150px;
  width: 58px;
  height: 58px;
  margin-top: 0;
}

.main_retina {
  padding: 320px 0;
  background: url("../img/main_retina_bg.jpg") no-repeat center/cover;
}
.main_retina .main_ttl_grp .main_sm_ttl,
.main_retina .main_ttl_grp .main_big_ttl,
.main_retina .main_ttl_grp .desc {
  color: #fff;
}
.main_retina_blink {
  width: 370px;
  height: 68px;
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 32px;
  border-radius: 12px;
  color: #fff;
  background: #1e4787;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  /* 초기 배경 */
  background: linear-gradient(to bottom, #0056c2, #003e8c);
  /* 애니메이션 */
  animation: blinkBg 4s infinite alternate;
}

@keyframes blinkBg {
  0% {
    background: linear-gradient(to bottom, #0056c2, #003e8c);
  }
  50% {
    background: linear-gradient(to bottom, #ffd700, #d4af37); /* 금색 계열 */
  }
  100% {
    background: linear-gradient(to bottom, #0056c2, #003e8c);
  }
}
.main_equip {
  padding: 200px 0;
  overflow: hidden;
}
.main_equip .flex {
  align-items: flex-start;
}
.main_equip .btn_viewmore {
  margin-top: 30px;
}
.main_equip_info {
  width: 50%;
  padding-right: 98px;
  padding-top: 40px;
  padding-bottom: 40px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.main_equip_sm {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  width: 100%;
  margin-top: auto;
  position: relative;
}
.main_equip_sm .swiper {
  width: 567px;
  overflow: hidden;
}
.main_equip_sm .swiper .swiper-slide {
  width: 180px;
}
.main_equip_sm .swiper .swiper-slide em {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 16px;
}
.main_equip_sm .swiper .swiper-slide span {
  display: block;
  border-radius: 12px;
  height: 126px;
  overflow: hidden;
}
.main_equip_sm .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_equip_sm .swiper-button-prev,
.main_equip_sm .swiper-button-next {
  color: #17253a;
  width: auto;
  height: auto;
  margin: 0;
}
.main_equip_sm .swiper-button-prev {
  left: -30px;
  top: 60px;
}
.main_equip_sm .swiper-button-next {
  right: 0px;
  top: 60px;
}
.main_equip_sm .swiper-scrollbar {
  width: calc(100% - 38px);
  height: 4px;
  margin-top: 40px;
  opacity: 1 !important;
}
.main_equip_big {
  width: 50%;
  overflow: hidden;
}

.main_news {
  padding: 130px 0;
}
.main_news .main_notice {
  position: relative;
  width: 870px;
}
.main_news .main_notice a.btn_viewmore {
  position: absolute;
  right: 0;
  top: -60px;
}
.main_news .main_notice ul {
  width: 100%;
  border-top: 1px solid #1b1b1b;
}
.main_news .main_notice ul li {
  height: 110px;
  border-bottom: 1px solid #e6e6e6;
}
.main_news .main_notice ul li.notice_fix {
  background: #e5ecf4;
}
.main_news .main_notice ul li a {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 30px;
  font-size: 24px;
  color: #1b1b1b;
}
.main_news .main_notice ul li .notice_badge {
  display: inline-block;
  padding: 10px 26px;
  background: var(--laon-blue);
  border-radius: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-right: 10px;
}
.main_news .main_notice ul li .notice_date {
  font-size: 16px;
  color: #b3b3b3;
  margin-left: auto;
}
.main_news .main_links div {
  border-radius: 20px;
  overflow: hidden;
  transition: all ease 0.3s;
}
.main_news .main_links div:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 6px 4px rgba(0, 0, 0, 0.18);
}
.main_news .main_links .main_links_online {
  margin-bottom: 18px;
}

.main_btm {
  width: 100%;
  background: url("../img/main_btm_bg.jpg") no-repeat center top/cover;
  padding: 250px 0;
}
.main_btm_icons {
  display: flex;
  justify-content: space-between;
  padding: 0 120px;
}
.main_btm_icons span:nth-child(2) {
  margin-top: -80px;
}
.main_btm_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 100px;
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.main_btm_ttl h4 {
  font-size: 70px;
  font-weight: 800;
  color: var(--laon-blue);
  opacity: 0.27;
}
.main_btm_ttl h3 {
  font-size: 48px;
  line-height: 1.5;
  font-weight: 500;
  color: #1b1b1b;
  margin-top: 30px;
}

.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #1e4787, #6c99e0);
}
.footer_top {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  padding: 40px 0;
  border-bottom: 1px solid #b2b2b2;
}
.footer_info {
  position: relative;
  padding: 40px 0;
}
.footer_info .footer_menu {
  display: flex;
  gap: 20px;
  margin-bottom:20px;
}
.footer_info .footer_menu a {
  font-size: 18px;
  color: #424242;
}
.footer_info .footer_copyright {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 14px;
  opacity: 0.5;

}
.footer_info .footer_copyright + .footer_copyright {
	 margin-top: 10px;
}
.footer_info .footer_sns {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 0;
  bottom: 40px;
}

/***** //main *****/
.sub_visual .sub_visual_ttl .sub_title {
  padding-bottom: 163px;
}
.sub_visual .sub_visual_ttl .sub_sm_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  padding-bottom: 47px;
}

.flowing-container {
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  line-height: 1.3;
  margin-bottom: 180px;
}
.flowing-container .flowing-text {
  font-family: "Gmarket", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 65px;
  font-weight: bold;
  color: #f4f4f4;
  position: absolute;
  animation: scrollLeft 20s linear infinite;
  height: 70px;
  overflow: hidden;
}
.flowing-container .text-item + .text-item {
  padding-left: 75px;
}

@keyframes scrollLeft {
  0% {
    left: 0%;
  }
  100% {
    left: -100%;
  }
}
.hero_section {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.hero_section .sub_md_txt {
  line-height: 1.4;
  font-weight: 800;
}
.hero_section .sub_sm_txt {
  padding-top: 45px;
  padding-bottom: 65px;
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.hero_section .sub_top_img_wrap {
  width: 998px;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
}
.hero_section .sub_top_img_wrap .sub_top_img {
  /* 초기 상태 (멈춰있는 상태) */
  width: 0;
  height: 100%;
  opacity: 0;
  transform: translateX(160px);
  border-radius: 18px;
  overflow: hidden;
  /* 애니메이션은 active일 때만 실행 */
}
.hero_section .sub_top_img_wrap .sub_top_img.ani.active {
  animation: subTopImg 1s ease forwards;
}
.hero_section .sub_top_img_wrap .sub_top_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
@keyframes subTopImg {
  0% {
    width: 0;
    opacity: 0;
    transform: translateX(160px);
  }
  100% {
    width: 998px;
    opacity: 1;
    transform: translateX(0);
  }
}
.hero_section .description {
  text-align: center;
  max-width: 600px;
  margin: 50px auto 0;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.hero_section .footer-spacer {
  height: 100vh;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.5rem;
  text-align: center;
}
.hero_section ul {
  padding-top: 70px;
  display: flex;
  justify-content: center;
  gap: 134px;
}
.hero_section ul li {
  display: flex;
  flex-direction: column;
}
.hero_section ul li em {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 26px;
  color: #1e4787;
  font-weight: 800;
}
.hero_section ul li b {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  font-weight: 800;
  padding-top: 30px;
  padding-bottom: 20px;
}
.hero_section ul li span {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  color: #5a5a5a;
  font-weight: 400;
  line-height: 1.4;
}

.scrolling_area {
  padding-top: 320px;
}
.scrolling_area .txt_box {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 170px;
}
.scrolling_area .txt_box .sub_md_txt {
  padding-bottom: 40px;
}
.scrolling_area .txt_box .sub_sm_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.scrolling_area .tab_wrap .tab_buttons {
  padding-bottom: 60px;
}
.scrolling_area .tab_wrap .tab_buttons .tab_btn {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 22px;
  color: #636363;
  padding: 14px 37px;
  border-radius: 50px;
  background: #f2f2f2;
  border: none;
  text-align: center;
}
.scrolling_area .tab_wrap .tab_buttons .tab_btn + .tab_btn {
  margin-left: 22px;
}
.scrolling_area .tab_wrap .tab_buttons .tab_btn.active {
  background: #1e4787;
  color: #fff;
  padding: 14px 37px;
  border-radius: 50px;
}
.scrolling_area .tab_wrap .tab_contents .tab_content {
  display: none;
}
.scrolling_area .tab_wrap .tab_contents .tab_content.active {
  display: block;
}

.sub1-1 {
  background: #101010 url("../img/sub1-1_bg.jpg") no-repeat top center;
  background-size: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.sub1-1 .video-section {
  position: absolute;
  overflow: hidden;
  top: 0;
  width: 1241px;
  height: 699px;
  left: calc(50% - 281px);
  z-index: -1;
}
.sub1-1 .video-container {
  position: relative;
}
.sub1-1 .video-container video {
  width: 100%;
  height: auto;
  display: block;
}
.sub1-1 .para_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 21px;
  color: #fff;
  line-height: 1.4;
}
.sub1-1 .bg_parallax {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 1739px;
  z-index: 1;
  background: url("../img/sub1-1-1bg.png") no-repeat top center;
  background-size: auto;
}
.sub1-1 .about_swiper_wrap {
  max-width: 1000px;
  top: 210px;
  position: absolute;
  left: calc(50% + 30px);
  overflow: hidden;
}
.sub1-1 .about_swiper_wrap .swiper-slide img {
  border-radius: 10px;
}
.sub1-1 .cont1 {
  padding-top: 350px;
}
.sub1-1 .cont1 .parall_ttl {
  position: relative;
  z-index: 5;
  font-size: 66px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
  position: relative;
  z-index: 9;
}
.sub1-1 .cont1 .para_txt {
  position: relative;
  z-index: 5;
}
.sub1-1 .cont2 {
  background: url(../img/sub1-1_af.png) no-repeat;
  width: 1920px;
  padding-top: 250px;
  margin-top: 200px;
  height: 605px;
  position: relative;
  z-index: 9;
  left: 50%;
  transform: translateX(-50%);
}
.sub1-1 .cont2 .txt_po {
  margin-left: calc(50% - 703px);
}
.sub1-1 .cont2 .parall_ttl {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
}
.sub1-1 .cont2 .parall_ttl em {
  color: #de3713;
}
.sub1-1 .cont2 .para_txt {
  color: rgba(255, 255, 255, 0.6);
}
.sub1-1 .cont3 {
  margin-top: 200px;
  min-height: 600px;
  padding-top: 540px;
  position: relative;
}
.sub1-1 .cont3 .sm_txt {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  color: #fff;
}
.sub1-1 .cont3 .fixed_box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1070px;
  background: url("../img/sub1-1-2.png") no-repeat center;
  background-attachment: fixed;
}
.sub1-1 .cont3 .scm {
  position: relative;
  z-index: 5;
  top: 140px;
}
.sub1-1 .cont3 .parall_ttl {
  font-size: 66px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
  margin-top: 40px;
}
.sub1-1 .cont3 .para_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.6);
}
.sub1-1 .cont3 .dda {
  display: flex;
  justify-content: flex-end;
  font-size: 32px;
  font-size: #fff;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
  margin-top: 200px;
  position: relative;
}
.sub1-1 .cont3 .dda::before {
  content: url("../img/icon_dda.png");
  position: relative;
  left: -30px;
  top: -30px;
}
.sub1-1 .cont4 {
  margin-top: 200px;
  display: flex;
  align-items: center;
  position: relative;
  height: 615px;
  /* 공통 궤도 */
}
.sub1-1 .cont4 .triangle-wrap {
  position: relative;
  margin-left: calc(50% - 703px);
}
.sub1-1 .cont4 .triangle-img {
  width: 100%;
  display: block;
}
.sub1-1 .cont4 .orbit {
  position: absolute;
  top: 61%;
  left: 50%;
  transform-origin: center center;
  animation: orbitRotate 9s infinite ease-in-out;
}
.sub1-1 .cont4 .label {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -250px);
  font-weight: bold;
  color: #00aaff;
  white-space: nowrap;
  font-size: 28px;
  animation: keepUpright 9s infinite ease-in-out;
}
.sub1-1 .cont4 .orbit1 {
  transform: rotate(-90deg);
  animation-delay: 0s;
}
.sub1-1 .cont4 .orbit2 {
  transform: rotate(30deg);
  animation-delay: -3s;
}
.sub1-1 .cont4 .orbit3 {
  transform: rotate(150deg);
  animation-delay: -6s;
}
.sub1-1 .cont4 .orbit1 .label {
  animation-delay: 0s;
}
.sub1-1 .cont4 .orbit2 .label {
  animation-delay: -3s;
}
.sub1-1 .cont4 .orbit3 .label {
  animation-delay: -6s;
}
@keyframes orbitRotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(120deg);
  }
  35% {
    transform: rotate(120deg);
  } /* 멈춤 */
  60% {
    transform: rotate(240deg);
  }
  70% {
    transform: rotate(240deg);
  } /* 멈춤 */
  100% {
    transform: rotate(360deg);
  }
}
@keyframes keepUpright {
  0% {
    transform: translate(-50%, -250px) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -250px) rotate(-120deg);
  }
  35% {
    transform: translate(-50%, -250px) rotate(-120deg);
  } /* 멈춤 */
  60% {
    transform: translate(-50%, -250px) rotate(-240deg);
  }
  70% {
    transform: translate(-50%, -250px) rotate(-240deg);
  } /* 멈춤 */
  100% {
    transform: translate(-50%, -250px) rotate(-360deg);
  }
}
.sub1-1 .cont4 .txt {
  position: absolute;
  left: 50%;
  width: 50%;
  padding-left: 40px;
}
.sub1-1 .cont4 .box_txt {
  color: #de3713;
  border-radius: 10px;
  border: 2px solid #de3713;
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  padding: 10px 20px;
  margin-bottom: 40px;
}
.sub1-1 .cont4 .parall_ttl {
  position: relative;
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 25px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
}
.sub1-1 .cont4 .parall_ttl::before {
  content: "";
  position: absolute;
  background: url(../img/sub1-1a.png) no-repeat;
  width: 100%;
  height: 26px;
  top: -40px;
  left: -50px;
}
.sub1-1 .cont4 .para_txt {
  color: rgba(255, 255, 255, 0.6);
}
.sub1-1 .cont4 .txt_p {
  margin-left: calc(50% - 300px);
}
.sub1-1 .cont5 {
  margin-top: 200px;
}
.sub1-1 .cont5 .parall_ttl {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
  text-align: center;
}
.sub1-1 .cont5 .parall_ttl em {
  color: #de3713;
}
.sub1-1 .cont5 .sub_sm_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  text-align: center;
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 150px;
}
.sub1-1 .cont6 {
  background: url(../img/sub1-1_rebg.jpg) no-repeat;
  width: 1920px;
  height: 754px;
  display: flex;
  align-items: center;
  position: relative;
  margin: auto;
  margin-top: 281px;
}
.sub1-1 .cont6 .img {
  position: absolute;
  left: calc(50% + 100px);
  top: 0;
}
.sub1-1 .cont6 .box_txt {
  color: #de3713;
  border-radius: 10px;
  border: 2px solid #de3713;
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  padding: 10px 20px;
  margin-bottom: 40px;
}
.sub1-1 .cont6 .parall_ttl {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
}
.sub1-1 .cont6 .para_txt {
  color: rgba(255, 255, 255, 0.6);
}
.sub1-1 .cont7 {
  margin-top: 320px;
}
.sub1-1 .cont7 .parall_ttl {
  text-align: center;
}
.sub1-1 .cont7 .box_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  gap: 45px;
}
.sub1-1 .cont7 .box_wrap > div {
  width: 48%;
  background: rgba(255, 255, 255, 0.01);
  padding: 80px 50px;
  text-align: center;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px) brightness(1.5);
  transition: all ease 0.3s;
}
.sub1-1 .cont7 .box_wrap > div:hover {
  backdrop-filter: blur(20px) brightness(2.5);
}
.sub1-1 .cont7 .box_wrap .icon {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: screen;
}
.sub1-1 .cont7 .box_wrap h4 {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 29px;
  line-height: 1.4;
  color: #fff;
  margin: 90px 0;
  margin-bottom: 0;
}
.sub1-1 .cont7 .box_wrap .para_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}
.sub1-1 .cont7 .ph {
  text-align: center;
}
.sub1-1 .cont7 .parall_ttl {
  margin-top: 40px;
  font-size: 45px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
}
.sub1-1 .cont8 {
  margin-top: 200px;
  display: flex;
  align-items: center;
  position: relative;
  height: 615px;
}
.sub1-1 .cont8 .img {
  position: absolute;
  right: calc(50% + 100px);
  top: 0;
}
.sub1-1 .cont8 .txt {
  position: absolute;
  left: 50%;
  width: 50%;
  padding-left: 40px;
}
.sub1-1 .cont8 .box_txt {
  color: #de3713;
  border-radius: 10px;
  border: 2px solid #de3713;
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  padding: 10px 20px;
  margin-bottom: 40px;
}
.sub1-1 .cont8 .parall_ttl {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
}
.sub1-1 .cont8 .para_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 21px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}
.sub1-1 .cont9 {
  display: flex;
  align-items: center;
  position: relative;
  height: 1116px;
  background: url(../img/sub1-1_docbg.png) no-repeat;
  width: 100%;
  background-position: bottom;
}
.sub1-1 .cont9 .img {
  position: absolute;
  right: calc(50% + 100px);
  top: 0;
}
.sub1-1 .cont9 .parall_ttl {
  font-size: 39px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
}
.sub1-1 .cont9 .para_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 21px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

.sub1-2 .doctor_box:first-child {
  padding-bottom: 140px;
}
.sub1-2 .doctor_box:nth-child(2) .doctor-info {
  gap: 90px !important;
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.sub1-2 .doctor_box + .doctor_box {
  border-top: 1px solid #e6e6e6;
  padding-top: 160px;
  padding-bottom: 140px;
}
.sub1-2 .doc_sub_title {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 36px;
  color: var(--laon-blue);
}
.sub1-2 .doc_title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.4;
  padding-top: 40px;
  padding-bottom: 180px;
}
.sub1-2 .intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 130px;
}
.sub1-2 .intro .right .ul_wrap {
  min-width: 702px;
}
.sub1-2 .intro .right .ul_wrap li:nth-child(1) {
  padding-bottom: 40px;
}
.sub1-2 .intro .right .ul_wrap li:nth-child(1) b {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 21px;
  color: #fff;
  background: var(--laon-blue);
  padding: 5px 15px;
  border-radius: 50px;
}
.sub1-2 .intro .right .ul_wrap li:nth-child(1) b + b {
  margin-left: 10px;
}
.sub1-2 .intro .right .ul_wrap li:nth-child(2) {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 30px;
  font-weight: 600;
}
.sub1-2 .intro .right .ul_wrap li:nth-child(2) em {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 60px;
  font-weight: 800;
  padding-right: 15px;
}
.sub1-2 .intro .right .ul_wrap li:nth-child(3) {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 21px;
  color: var(--laon-blue);
  line-height: 1.4;
  border-bottom: 2px solid #cecece;
  padding-top: 25px;
  padding-bottom: 54px;
}
.sub1-2 .intro .right .ul_wrap li:nth-child(3) b {
  width: 112px;
  display: inline-block;
}
.sub1-2 .intro .right .ul_wrap li:nth-child(4) {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  padding-top: 50px;
  padding-bottom: 56px;
}
.sub1-2 .intro .right .ul_wrap li .doctor-info {
  display: flex;
  gap: 157px;
}
.sub1-2 .intro .right .ul_wrap .ul_wrap2 {
  border: 1px solid var(--laon-blue);
  border-bottom-right-radius: 50px;
  padding: 40px 35px;
  display: flex;
  gap: 60px;
}
.sub1-2 .intro .right .ul_wrap .ul_wrap2 li {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 15px;
  font-weight: 400;
  color: #5a5a5a;
  line-height: 2;
}
.sub1-2 .intro .right .ul_wrap .ul_wrap2 li:nth-child(1) {
  padding-bottom: 0;
}
.sub1-2 .intro .right .ul_wrap .ul_wrap2 li:nth-child(2) {
  border-bottom: none;
  padding-top: 30px;
  padding-bottom: 0;
}

.sub1-3 {
  /* 카드 그리드 */
  /* 팝업 스타일 */
  /* Swiper 네비게이션 커스텀 */
  /* 슬라이드 페이지네이션 */
  /* 섹션 구분 */
}
.sub1-3 .scrolling_area {
  padding-top: 100px;
}
.sub1-3 .link_arrow_bk {
  position: absolute;
  top: 270px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.5) url("../img/icon_arrow_sm.png") no-repeat center center;
  border-radius: 50%;
  font-weight: 600;
  transition: all ease 0.2s;
}
.sub1-3 .pop-layer {
  display: none;
  position: fixed;
  left: 0;
  top: 0px;
  z-index: 99999999;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}
.sub1-3 .pop-layer-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub1-3 .pop-layer-inner > div {
  position: relative;
  height: 800px;
  overflow-y: auto;
  overflow-x: hidden;
  top: 43px;
}
.sub1-3 .pop-layer-close {
  width: 100%;
  justify-content: flex-end;
  display: flex;
  font-size: 46px;
  font-weight: 600;
  color: transparent;
  background: none;
  border: none;
  z-index: 999;
  position: absolute;
  max-width: 1560px;
  min-width: 1560px;
  left: 50%;
  transform: translateX(-50%);
  top: 46px;
}
.sub1-3 .pop-layer-close2 {
  max-width: 1320px;
  min-width: 1320px;
}
.sub1-3 .equipment-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  row-gap: 200px;
  margin-bottom: 40px;
}
.sub1-3 .staff-card {
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.sub1-3 .staff-card:hover {
  transform: translateY(-10px);
}
.sub1-3 .staff-card:hover .link_arrow_bk {
  background: #1e4787 url("../img/icon_arrow_sm.png") no-repeat center center;
}
.sub1-3 .staff-image-container {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.sub1-3 .staff-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.sub1-3 .staff-card:hover .staff-image {
  transform: scale(1.05);
}
.sub1-3 .staff-card:hover .staff-overlay {
  opacity: 1;
}
.sub1-3 .medical-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  display: none;
  backdrop-filter: blur(5px);
}
.sub1-3 .medical-popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.sub1-3 .popup-container {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1400px;
  color: #fff;
  text-align: center;
}
.sub1-3 .popup-close {
  font-size: 2.5rem;
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 99;
}
.sub1-3 .popup-close:hover {
  transform: scale(1.1);
}
.sub1-3 .medical-swiper {
  width: 100%;
  max-height: 780px;
  --swiper-theme-color: #fff;
  --swiper-navigation-size: 30px;
  border-radius: 15px;
  overflow: hidden;
}
.sub1-3 .medical-swiper .swiper-slide {
  border-radius: 15px;
  overflow: hidden;
  width: auto;
}
.sub1-3 .slide-image-container {
  width: 100%;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.sub1-3 .slide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sub1-3 .swiper-button-next,
.sub1-3 .swiper-button-prev {
  width: 65px;
  height: 65px;
  margin-top: -25px;
  transition: all 0.3s ease;
}
.sub1-3 .swiper-button-next:hover,
.sub1-3 .swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
}
.sub1-3 .swiper-button-next:after,
.sub1-3 .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}
.sub1-3 .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 8px;
}
.sub1-3 .swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.2);
}
.sub1-3 .section {
  margin-bottom: 50px;
}
.sub1-3 .section-subtitle {
  font-size: 1.8rem;
  color: #34495e;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}
.sub1-3 .section-subtitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #fcaf17, #ff8c00);
  border-radius: 2px;
}
.sub1-3 .swiper-container-horizontal > .swiper-pagination-bullets,
.sub1-3 .swiper-pagination-custom,
.sub1-3 .swiper-pagination-fraction {
  bottom: 0px;
}
.sub1-3 .swiper-button-next,
.sub1-3 .swiper-container-rtl .swiper-button-prev {
  margin-left: calc(50% + 710px);
  left: auto;
  right: auto;
}
.sub1-3 .swiper-button-prev,
.sub1-3 .swiper-container-rtl .swiper-button-next {
  margin-left: calc(50% - 780px);
  left: auto;
  right: auto;
}

.sub1-4 .custom-prev_1.swiper-button-prev,
.sub1-4 .custom-next_1.swiper-button-next,
.sub1-4 .custom-prev_2.swiper-button-prev,
.sub1-4 .custom-next_2.swiper-button-next {
  position: absolute !important;
  top: 30% !important;
}
.sub1-4 .tab_buttons {
  border-bottom: 1px solid #dddddd;
  margin-bottom: 140px;
}
.sub1-4 .around1 {
  text-align: center;
  padding-bottom: 300px;
  position: relative;
}
.sub1-4 .around1 p {
  padding-bottom: 75px;
}
.sub1-4 .around1 .inner {
  position: relative;
  overflow: hidden;
}
.sub1-4 .around1 .inner .around-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1080px;
  overflow: hidden;
  margin: 0 auto;
  /* 첫 번째 스와이퍼 네비게이션 */
  /* 두 번째 스와이퍼 네비게이션 */
}
.sub1-4 .around1 .inner .around-wrapper .around_swiper_1 {
  width: 100%;
  max-width: 1080px;
  position: relative;
}
.sub1-4 .around1 .inner .around-wrapper .around_swiper_1 .swiper-slide {
  width: 100%;
  height: 600px;
}
.sub1-4 .around1 .inner .around-wrapper .around_swiper_1 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.sub1-4 .around1 .inner .around-wrapper .around_swiper_2 {
  width: 100%;
  max-width: 1080px;
  position: relative;
}
.sub1-4 .around1 .inner .around-wrapper .around_swiper_2 .swiper-slide {
  width: 100%;
  height: 600px;
}
.sub1-4 .around1 .inner .around-wrapper .around_swiper_2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_1 {
  user-select: none;
  -webkit-user-drag: none;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 50px;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_1 .swiper-wrapper {
  display: flex;
  align-items: center;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_1 .swiper-slide {
  flex: 0 0 auto;
  width: auto;
  height: 100px;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_1 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_1 .swiper-slide.thumb-active {
  opacity: 1;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_1 .swiper-slide.thumb-active img {
  border: 2px solid #1e4787;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_2 {
  user-select: none;
  -webkit-user-drag: none;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 50px;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_2 .swiper-wrapper {
  display: flex;
  align-items: center;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_2 .swiper-slide {
  flex: 0 0 auto;
  width: auto;
  height: 100px;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_2 .swiper-slide.thumb-active {
  opacity: 1;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_2 .swiper-slide.thumb-active img {
  border: 2px solid #1e4787;
}
.sub1-4 .around1 .inner .around-wrapper .custom-prev_1,
.sub1-4 .around1 .inner .around-wrapper .custom-next_1 {
  position: absolute;
  top: 295px;
  z-index: 10;
  width: 50px;
  height: 50px;
  margin-top: -20px;
  cursor: pointer;
  color: #979797;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_2 {
  user-select: none;
  -webkit-user-drag: none;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 50px;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_2 .swiper-wrapper {
  display: flex;
  align-items: center;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_2 .swiper-slide {
  flex: 0 0 auto;
  width: auto;
  height: 100px;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_2 .swiper-slide.thumb-active {
  opacity: 1;
}
.sub1-4 .around1 .inner .around-wrapper .thumb-swiper_2 .swiper-slide.thumb-active img {
  border: 2px solid #1e4787;
}
.sub1-4 .around1 .inner .around-wrapper .custom-prev_2,
.sub1-4 .around1 .inner .around-wrapper .custom-next_2 {
  position: absolute;
  top: 295px;
  z-index: 10;
  width: 50px;
  height: 50px;
  margin-top: -20px;
  cursor: pointer;
  color: #979797;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%;
}
.sub1-4 .around1 .inner .around-wrapper .custom-prev_2 {
  left: calc(50% - 700px);
}
.sub1-4 .around1 .inner .around-wrapper .custom-next_2 {
  right: auto;
  margin-left: calc(50% + 620px);
}
.sub1-4 .around1 .inner .around-wrapper .swiper-button-prev,
.sub1-4 .around1 .inner .around-wrapper .swiper-button-next {
  background: none;
  color: inherit;
}
.sub1-4 .around1 .custom-prev_1 {
  left: calc(50% - 700px);
}
.sub1-4 .around1 .custom-next_1 {
  right: auto;
  margin-left: calc(50% + 620px);
}
.sub1-4 .around1 .custom-next_2 {
  right: auto;
  margin-left: calc(50% + 620px);
}
.sub1-4 .around1 .swiper-progress-wrapper {
  width: 100%;
  height: 4px;
  background: #eee;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}
.sub1-4 .around1 .swiper-progress-wrapper .swiper-progress-bar_1 {
  width: 0%;
  height: 100%;
  background: #3a3a3a;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.3s ease;
}
.sub1-4 .around1 .swiper-progress-wrapper .swiper-progress-bar_2 {
  width: 0%;
  height: 100%;
  background: #3a3a3a;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.3s ease;
}

.sub1-5 .scrolling_area {
  padding-top: 100px;
}

.sub2-1 .bg_se {
  background: #030b1e;
}
.sub2-1 .sub_md_txt,
.sub2-1 .sub_sm_txt {
  color: #fff;
}
.sub2-1 .sub_visual {
  color: #fff;
}
.sub2-1 .sub_visual .sub_visual_ttl .sub_sm_txt {
  color: #fff;
}
.sub2-1 .flowing-container .flowing-text {
  color: rgb(27, 36, 59);
}
.sub2-1 .sub_sm_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.sub2-1 .hero_section {
  padding-bottom: 300px;
}
.sub2-1 .hero_section .flex_box {
  display: flex;
  align-items: center;
}
.sub2-1 .hero_section .flex_box .flex_se {
  display: flex;
  flex-direction: column;
}
.sub2-1 .hero_section .flex_box .flex_se .sub_md_txt,
.sub2-1 .hero_section .flex_box .flex_se .sub_sm_txt {
  text-align: start;
}
.sub2-1 .bg_box {
  background: #030b1e url(../img/sub2-1bg.png) no-repeat;
  width: 100%;
  height: 949px;
  background-size: cover;
}
.sub2-1 .txt_box {
  display: flex;
  flex-direction: column;
  padding-bottom: 160px;
  align-items: center;
}
.sub2-1 .txt_box .sub_md_txt {
  padding-bottom: 40px;
}
.sub2-1 .txt_box em {
  font-size: 22px;
  color: #0e7aff;
  font-weight: 600;
  padding-bottom: 21px;
}
.sub2-1 .box_wrap {
  display: flex;
  justify-content: space-between;
  gap: 45px;
}
.sub2-1 .box_wrap > div {
  width: 48%;
  background: rgba(255, 255, 255, 0.1);
  padding: 110px 50px;
  text-align: center;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px) brightness(1.5);
  transition: all ease 0.3s;
}
.sub2-1 .box_wrap > div:hover {
  backdrop-filter: blur(20px) brightness(2.5);
}
.sub2-1 .box_wrap .icon {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: screen;
}
.sub2-1 .box_wrap h4 {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 29px;
  line-height: 1.4;
  color: #fff;
  margin: 90px 0;
  margin-bottom: 0;
}
.sub2-1 .box_wrap .para_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}
.sub2-1 .sub_eye {
  background: url(../img/sub2-1con1_bg.jpg) no-repeat;
  background-size: cover;
  height: 1069px;
}
.sub2-1 .sub_eye .sub_md_txt,
.sub2-1 .sub_eye .sub_sm_txt {
  color: #000;
}
.sub2-1 .sub_eye .scm {
  padding-top: 250px;
}
.sub2-1 .sub_eye .txt_box {
  align-items: flex-start;
}
.sub2-1 .sub_eye .txt_box .sub_md_txt {
  padding-bottom: 69px;
}
.sub2-1 .scrolling_area {
  background-color: #fff;
}
.sub2-1 .scrolling_area .sub_md_txt {
  color: #000;
}
.sub2-1 .scrolling_area .sub_sm_txt {
  color: #5a5a5a;
}
.sub2-1 .section_box:nth-child(2) ul li:nth-child(2) {
  padding-top: 130px;
}
.sub2-1 .section_box:nth-child(3) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 70px;
  column-gap: 70px;
}
.sub2-1 .smile {
  background: url(../img/sub2-1smilebg.jpg) no-repeat;
  width: 100%;
  height: 842px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub2-1 .spa {
  background: url(../img/sub2-1lastbg.jpg) no-repeat;
  width: 100%;
  height: 2482px;
  background-size: cover;
}
.sub2-1 .spa .scm {
  padding-top: 256px;
}
.sub2-1 .spa .sub_md_txt {
  padding-bottom: 115px;
}
.sub2-1 .spa .flex-sb {
  align-items: center;
}
.sub2-1 .spa .flex-sb + .flex-sb {
  padding-top: 150px;
}
.sub2-1 .section_box22 ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 24px;
}
.sub2-1 .last {
  background: url(../img/sub2-1labg.jpg) no-repeat;
  width: 100%;
  height: 937px;
  background-size: cover;
}
.sub2-1 .last .scm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.sub2-1 .last p {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 28px;
  color: #fff;
  line-height: 1.6;
}
.sub2-1 .sub4_footer {
  padding: 30px;
  margin-top: 0;
  background-color: #17171b;
}
.sub2-1 .sub4_footer .footer_lg_txt {
  line-height: 1.4;
}
.sub2-1 .sub2_footer {
  margin-top: 0;
}

.sub2-2 .txt_boxc {
  display: flex;
  flex-direction: column;
  text-align: start;
  padding-bottom: 170px;
}
.sub2-2 .txt_boxc .sub_md_txt {
  padding-bottom: 40px;
}
.sub2-2 .txt_boxc .sub_sm_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.sub2-2 .hero_section ul {
  gap: 94px;
}
.sub2-2 .hero_section ul li + li {
  border-left: 1px solid #d4d4d4;
  padding-left: 94px;
}
.sub2-2 .container .section_box .card3 .custom-card {
  height: auto;
}
.sub2-2 .container .section_box .card3 .custom-card .card-number {
  font-weight: 400;
}
.sub2-2 .container .section_box .card3 .card-text {
  font-size: 19px;
}
.sub2-2 .section_box:nth-child(2) .img_box {
  padding-top: 120px;
}
.sub2-2 .section_box:nth-child(4) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 41px;
  column-gap: 34px;
}

.sub2-3 {
  /* 팝업 스타일 */
}
.sub2-3 .txt_boxc {
  display: flex;
  flex-direction: column;
  text-align: start;
  padding-top: 270px;
  padding-bottom: 170px;
}
.sub2-3 .txt_boxc .sub_md_txt {
  padding-bottom: 40px;
}
.sub2-3 .txt_boxc .sub_sm_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.sub2-3 .list_wrap {
  position: relative;
  background: url(../img/sub2-3bg.jpg) no-repeat;
  width: 100%;
  height: 1339px;
  background-size: cover;
}
.sub2-3 .list_wrap::before {
  content: "";
  position: absolute;
  background: url(../img/sub2-3bg_icon.png) no-repeat;
  width: 533px;
  height: 516px;
  left: calc(50% + 418px);
}
.sub2-3 .list_wrap .scm {
  padding-top: 160px;
  color: #fff;
}
.sub2-3 .list_wrap .scm .sub_sm_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  padding-top: 59px;
  color: #fff;
}
.sub2-3 .list_wrap .scm ul {
  padding-top: 120px;
}
.sub2-3 .list_wrap .scm ul img {
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sub2-3 .list_wrap .scm ul img:hover {
  transform: translateY(-8px);
}
.sub2-3 .comparison-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  width: 100%;
  margin-top: 130px;
}
.sub2-3 .comparison-container .card {
  flex: 1;
  position: relative;
}
.sub2-3 .comparison-container .card:has(.premium-title) .details-button {
  background: #1e4787;
}
.sub2-3 .comparison-container .card .card-header {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 25px;
  text-align: center;
  margin-bottom: 30px;
}
.sub2-3 .comparison-container .card .card-title {
  padding: 25px 0;
  width: 430px;
  height: 70px;
  border-radius: 10px;
  color: white;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}
.sub2-3 .comparison-container .card .general-title {
  background: #687c9d;
}
.sub2-3 .comparison-container .card .premium-title {
  background: #1e4787;
}
.sub2-3 .comparison-container .card .card_bg {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 48px 50px;
}
.sub2-3 .comparison-container .card .feature-section {
  margin-bottom: 37px;
  text-align: center;
}
.sub2-3 .comparison-container .card .feature-section + .feature-section {
  padding-top: 37px;
  border-top: 2px dotted #cdcdcd;
}
.sub2-3 .comparison-container .card .feature-section .feature-label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.sub2-3 .comparison-container .card .feature-section .feature-content {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 22px;
  color: #5a5a5a;
  line-height: 1.5;
}
.sub2-3 .comparison-container .card ul {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  margin-top: 180px;
  text-align: center;
}
.sub2-3 .comparison-container .card ul li {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 22px;
  line-height: 1;
}
.sub2-3 .comparison-container .card ul li + li {
  padding-top: 112px;
}
.sub2-3 .comparison-container .card .details-button {
  display: flex;
  justify-content: space-between;
  width: 132px;
  height: 41px;
  padding: 12px 16px;
  background: #687c9d;
  color: white;
  border: none;
  border-radius: 25px;
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin: auto;
  transition: all 0.3s ease;
  line-height: 1.2;
}
.sub2-3 .comparison-container .card .details-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.sub2-3 .comparison-container .card .details-button::after {
  content: " →";
  margin-left: 8px;
}
.sub2-3 .comparison-container .premium-card .details-button {
  background: #1e4787;
}
.sub2-3 .popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  backdrop-filter: blur(4px);
}
.sub2-3 .popup-overlay .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.sub2-3 .popup-overlay .popup-content .popup-header {
  text-align: center;
  margin-bottom: 30px;
}
.sub2-3 .popup-overlay .popup-content .popup-title {
  padding: 10px 20px;
  border-radius: 20px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.sub2-3 .popup-overlay .popup-content .popup-feature {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}
.sub2-3 .popup-overlay .popup-content .popup-feature .popup-feature-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.sub2-3 .popup-overlay .popup-content .popup-feature .popup-feature-desc {
  color: #666;
  line-height: 1.5;
}
.sub2-3 .popup-overlay .popup-content .close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub2-3 .popup-overlay .popup-content .close-button:hover {
  color: #333;
}
.sub2-3 .hero_section ul {
  gap: 94px;
}
.sub2-3 .hero_section ul li + li {
  border-left: 1px solid #d4d4d4;
  padding-left: 94px;
}
.sub2-3 .section_box:nth-child(2) .img_box {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.sub2-3 .section_box:nth-child(3) ul li:nth-child(even) {
  padding-top: 220px;
}
.sub2-3 .section_box:nth-child(4) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 41px;
  column-gap: 32px;
}

.sub3-1 .section_box:nth-child(2) ul {
  display: flex;
  justify-content: space-between;
}
.sub3-1 .section_box:nth-child(2) i {
  display: inline-block;
  position: relative;
  top: -260px;
  margin-left: calc(50% - 35px);
}
.sub3-1 .section_box:nth-child(3) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 27px;
  column-gap: 24px;
}
.sub3-1 .section_box:nth-child(4) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 41px;
  column-gap: 34px;
}
.sub3-1 .section_box:nth-child(5) ul {
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  padding-left: 50px;
}
.sub3-1 .section_box:nth-child(5) ul li:nth-child(even) {
  padding-left: 60px;
}
.sub3-1 .section_box:nth-child(6) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: 20px;
}

.sub3-2 .hero_section {
    .sub_top_img_wrap {
	height: 443px;
        .sub_top_img {
            width: 0;
            height: 100%;
            opacity: 0;
            transform: translateX(160px);
            
            &.ani.active {
                animation: subTopImg 1s ease forwards;
            }
        }
    }
}

.sub3-2 .section_box:nth-child(3) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 27px;
  column-gap: 24px;
}
.sub3-2 .section_box:nth-child(4) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 41px;
  column-gap: 33px;
}
.sub3-2 .section_box:nth-child(5) ul {
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  padding-left: 50px;
}
.sub3-2 .section_box:nth-child(5) ul li:nth-child(even) {
  padding-left: 60px;
}
.sub3-2 .section_box:nth-child(6) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: 20px;
}

.sub3-3 .section_box:nth-child(2) ul {
  display: flex;
  justify-content: space-between;
}
.sub3-3 .section_box:nth-child(3) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 27px;
  column-gap: 24px;
}
.sub3-3 .section_box:nth-child(4) ul {
  display: flex;
  justify-content: space-between;
}
.sub3-3 .section_box:nth-child(5) ul {
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  padding-left: 50px;
}
.sub3-3 .section_box:nth-child(5) ul li:nth-child(even) {
  padding-left: 60px;
}
.sub3-3 .section_box:nth-child(6) ul {
  display: flex;
  justify-content: space-between;
}

.sub4-1 .section_box:first-child {
  position: relative;
}
.sub4-1 .section_box:nth-child(2) ul {
  display: flex;
  justify-content: space-between;
}
.sub4-1 .section_box:nth-child(2) .sub_pa_txt {
  padding-top: 200px;
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 32px;
}
.sub4-1 .section_box:nth-child(2) .sub_pa_txt em {
  font-weight: 800;
}
.sub4-1 .section_box:nth-child(2) .three_ul {
  padding-top: 60px;
}
.sub4-1 .section_box:nth-child(3) .treatment-container {
  display: flex;
  gap: 20px;
}
.sub4-1 .section_box:nth-child(3) .treatment-item {
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 1;
}
.sub4-1 .section_box:nth-child(3) .treatment-item:hover {
  transform: translateY(-8px);
}
.sub4-1 .section_box:nth-child(3) .treatment-item:hover .treatment-title {
  background: #2c5aa0;
  color: white;
}
.sub4-1 .section_box:nth-child(3) .treatment-item:hover .treatment-image {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}
.sub4-1 .section_box:nth-child(3) .treatment-title {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 25px;
  background: #ffffff;
  color: #1e4787;
  border: 2px solid #1e4787;
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  margin: 0 0 15px 0;
  transition: all 0.3s ease;
}
.sub4-1 .section_box:nth-child(3) .treatment-image {
  margin: 0;
  text-align: center;
}
.sub4-1 .section_box:nth-child(3) .treatment-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.sub4-1 .section_box:nth-child(4) ul {
  display: flex;
}

.sub4-2 .section_box:nth-child(2) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 110px;
  column-gap: 34px;
}
.sub4-2 .section_box:nth-child(3) .treatment-container {
  display: flex;
  gap: 20px;
}
.sub4-2 .section_box:nth-child(3) .treatment-item {
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 1;
}
.sub4-2 .section_box:nth-child(3) .treatment-item:hover {
  transform: translateY(-8px);
}
.sub4-2 .section_box:nth-child(3) .treatment-item:hover .treatment-title {
  background: #2c5aa0;
  color: white;
}
.sub4-2 .section_box:nth-child(3) .treatment-item:hover .treatment-image {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}
.sub4-2 .section_box:nth-child(3) .treatment-title {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 25px;
  background: #ffffff;
  color: #1e4787;
  border: 2px solid #1e4787;
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  margin: 0 0 15px 0;
  transition: all 0.3s ease;
}
.sub4-2 .section_box:nth-child(3) .treatment-image {
  margin: 0;
  text-align: center;
}
.sub4-2 .section_box:nth-child(3) .treatment-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.sub4-2 .section_box:nth-child(5) ul li + li {
  padding-top: 50px;
}

.sub5-1 .section_box:nth-child(2) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 42px;
  column-gap: 30px;
}

.sub5-2 .section_box:nth-child(4) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 27px;
  column-gap: 24px;
}
.sub5-2 .section_box:nth-child(5) ul li + li {
  padding-top: 50px;
}

.sub6-1 .main_branding_roll {
  margin-top: 250px;
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: relative;
}
.sub6-1 .main_branding_roll .swiper {
  width: 100%;
  height: 100%;
}
.sub6-1 .main_branding_roll .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.sub6-1 .main_branding_roll .swiper-slide {
  padding: 170px 0;
}
.sub6-1 .main_branding_roll .slide1 {
  background: url("../img/sub6-1sl1.jpg") no-repeat center/cover;
}
.sub6-1 .main_branding_roll .slide2 {
  background: url("../img/sub6-1sl2.jpg") no-repeat center/cover;
}
.sub6-1 .main_branding_roll .swiper-button-prev,
.sub6-1 .main_branding_roll .swiper-button-next {
  font-size: 40px;
  color: #fff;
  font-weight: 100;
}
.sub6-1 .main_branding_roll .swiper-button-prev {
  left: calc(50% - 780px);
}
.sub6-1 .main_branding_roll .swiper-button-next {
  right: calc(50% - 780px);
  left: auto;
}
.sub6-1 .main_branding_roll .txtbox {
  width: 768px;
  height: 540px;
  background: #fff;
  border-radius: 30px;
  padding: 70px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
.sub6-1 .main_branding_roll .txtbox h6 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
.sub6-1 .main_branding_roll .txtbox h6 b {
  color: #de3713;
}
.sub6-1 .main_branding_roll .txtbox p {
  color: #5a5a5a;
  font-size: 20px;
  line-height: 1.4;
}
.sub6-1 .main_branding_roll .txtbox .link_arrow_bk {
  margin-top: auto;
}
.sub6-1 .main_branding_roll .link_arrow_bk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 38px;
  height: 38px;
  background: #1b1b1b url("../img/icon_arrow_sm.png") no-repeat center center;
  border-radius: 50%;
  font-weight: 600;
  transition: all ease 0.2s;
}
.sub6-1 .main_branding_roll .link_arrow_bk:hover {
  background: #ca3717 url("../img/icon_arrow_sm.png") no-repeat center center;
}
.sub6-1 .section_box:nth-child(3) .kind_wrap {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: 24px;
}
.sub6-1 .section_box:nth-child(3) .kind_wrap .kind_box {
  position: relative;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 54px 16px 0 29px;
  min-height: 320px;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 488px;
}
.sub6-1 .section_box:nth-child(3) .kind_wrap .kind_box .sub_sm_txt {
  font-size: 20px;
}
.sub6-1 .section_box:nth-child(3) .kind_wrap .kind_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.sub6-1 .section_box:nth-child(3) .kind_wrap .kind_box:hover span {
  transform: scale(1.05);
}
.sub6-1 .section_box:nth-child(3) .kind_wrap .kind_box:hover em {
  transform: rotate(10deg);
}
.sub6-1 .section_box:nth-child(3) .kind_wrap .kind_box:hover .sub_sm_txt {
  transform: translateY(-2px);
}
.sub6-1 .section_box:nth-child(3) .kind_wrap .kind_box span {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 24px;
  color: #ffffff;
  background: var(--laon-blue);
  padding: 11px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.sub6-1 .section_box:nth-child(3) .kind_wrap .kind_box em {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 55px;
  color: #e4e4e4;
  position: absolute;
  top: 20px;
  right: 29px;
  font-style: normal;
  transition: all 0.3s ease;
}
.sub6-1 .section_box:nth-child(3) .kind_wrap .kind_box .sub_sm_txt {
  padding-top: 42px;
  padding-bottom: 0;
  transition: all 0.3s ease;
}
.sub6-1 .section_box:nth-child(4) .tab_wrap {
  padding-top: 160px;
}
.sub6-1 .section_box:nth-child(5) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 41px;
  column-gap: 34px;
}

.sub6-2 .section_box:nth-child(1) .img_box {
  padding-left: 200px;
}
.sub6-2 .section_box:nth-child(3) .img_box {
  padding-bottom: 150px;
}
.sub6-2 .section_box:nth-child(4) ul li + li {
  padding-top: 55px;
}

.sub6-3 .section_box:nth-child(1) .content {
  padding-left: 50px;
}
.sub6-3 .section_box:nth-child(2) .sub_md_txt {
  width: 380px !important;
}
.sub6-3 .section_box:nth-child(2) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 83px;
  column-gap: 24px;
}
.sub6-3 .section_box:nth-child(3) .img_box {
  padding-bottom: 50px;
}

.sub7-1 .section_box:nth-child(3) ul {
  display: flex;
  justify-content: space-between;
}
.sub7-1 .section_box:nth-child(3) .tab_wrap {
  padding-top: 160px;
}
.sub7-1 .section_box:nth-child(4) ul {
  display: flex;
  justify-content: space-between;
}
.sub7-1 .section_box:nth-child(4) i {
  display: inline-block;
  position: relative;
  top: -260px;
  margin-left: calc(50% - 35px);
}
.sub7-1 .section_box:nth-child(5) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: 35px;
}

.sub7-2 .section_box:nth-child(2) .kind_wrap {
  display: flex;
  align-items: center;
  gap: 22px;
}
.sub7-2 .section_box:nth-child(2) .kind_wrap .kind_box {
  position: relative;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 54px 16px 0 29px;
  min-height: 233px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sub7-2 .section_box:nth-child(2) .kind_wrap .kind_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.sub7-2 .section_box:nth-child(2) .kind_wrap .kind_box:hover span {
  transform: scale(1.05);
}
.sub7-2 .section_box:nth-child(2) .kind_wrap .kind_box:hover em {
  transform: rotate(10deg);
}
.sub7-2 .section_box:nth-child(2) .kind_wrap .kind_box:hover .sub_sm_txt {
  transform: translateY(-2px);
}
.sub7-2 .section_box:nth-child(2) .kind_wrap .kind_box span {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 24px;
  color: #ffffff;
  background: var(--laon-blue);
  padding: 11px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.sub7-2 .section_box:nth-child(2) .kind_wrap .kind_box em {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 55px;
  color: #e4e4e4;
  position: absolute;
  top: 20px;
  right: 29px;
  font-style: normal;
  transition: all 0.3s ease;
}
.sub7-2 .section_box:nth-child(2) .kind_wrap .kind_box .sub_sm_txt {
  padding-top: 42px;
  padding-bottom: 0;
  transition: all 0.3s ease;
}
.sub7-2 .section_box:nth-child(3) {
  width: 1440px;
}
.sub7-2 .section_box:nth-child(3) .check_ul {
  width: 1000px;
  padding-bottom: 72px;
}
.sub7-2 .section_box:nth-child(5) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 27px;
  column-gap: 24px;
}
.sub7-2 .section_box:nth-child(5) ul li {
  transition: all 0.3s ease;
  border-radius: 20px;
  cursor: pointer;
}
.sub7-2 .section_box:nth-child(5) ul li img {
  border-radius: 20px;
}
.sub7-2 .section_box:nth-child(5) ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sub7-3 .hero_section .sub_md_txt {
  font-size: 49px;
}
.sub7-3 .section_box:nth-child(2) ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 44px;
  align-items: center;
}
.sub7-3 .section_box:nth-child(2) ul .arrow {
  padding-bottom: 100px;
}
.sub7-3 .section_box:nth-child(5) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 27px;
  column-gap: 24px;
}
.sub7-3 .section_box:nth-child(5) ul li {
  transition: all 0.3s ease;
  border-radius: 20px;
  cursor: pointer;
}
.sub7-3 .section_box:nth-child(5) ul li img {
  border-radius: 20px;
}
.sub7-3 .section_box:nth-child(5) ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sub7-4 .section_box:nth-child(1) {
  width: 1490px;
}
.sub7-4 .section_box:nth-child(1) .sub_sm_txt em {
  font-weight: 800;
}
.sub7-4 .section_box:nth-child(5) ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 27px;
  column-gap: 24px;
}
.sub7-4 .section_box:nth-child(5) ul li {
  transition: all 0.3s ease;
  border-radius: 20px;
  cursor: pointer;
}
.sub7-4 .section_box:nth-child(5) ul li img {
  border-radius: 20px;
}
.sub7-4 .section_box:nth-child(5) ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sub7-5 .tab_wrap:has(.age_ul) .tab_buttons {
  padding-bottom: 146px;
}
.sub7-5 .tab_contents .tab_content {
  position: relative;
}
.sub7-5 .tab_contents .tab_content:has(.age_ul) {
  height: auto;
  position: relative;
}
.sub7-5 .tab_contents .tab_content .age_ul {
  display: flex;
}
.sub7-5 .tab_contents .tab_content .age_ul::before {
  content: "";
  position: absolute;
  background: url(../img/sub7-5_tab1.jpg) no-repeat;
  width: 74px;
  height: 88px;
  left: -110px;
  top: 0;
}
.sub7-5 .tab_contents .tab_content .age_ul li {
  padding: 0 23px;
}
.sub7-5 .tab_contents .tab_content .age_ul li + li {
  margin-left: -2px;
}
.sub7-5 .tab_contents .tab_content .graph_img {
  position: absolute;
  top: 0;
  z-index: -1;
}
.sub7-5 .tab_contents .tab_content .tab_con {
  margin-top: 720px;
}

.sub8-6 .sub_visual .sub_visual_ttl .sub_title {
  padding-bottom: 60px;
}
.sub8-6 .table_box {
  padding-top: 187px;
}
.sub8-6 .table_box .table_title {
  font-size: 45px;
  font-weight: 800;
  padding-bottom: 62px;
}
.sub8-6 .table-container {
  padding-bottom: 150px;
}
.sub8-6 .table-container table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.sub8-6 .table-container table thead {
  border-top: 2px solid var(--laon-blue);
}
.sub8-6 .table-container table thead tr {
  background-color: #f6f8fa;
  border-bottom: 1px solid #dee2e6;
}
.sub8-6 .table-container table thead th {
  padding: 36px 8px;
  text-align: center;
  font-weight: 600;
  color: #333;
  font-size: 21px;
  border-right: 1px solid #dee2e6;
}
.sub8-6 .table-container table thead th:last-child {
  border-right: none;
}
.sub8-6 .table-container table tbody tr {
  border-bottom: 1px solid #e9ecef;
}
.sub8-6 .table-container table tbody td {
  padding: 36px 8px;
  text-align: center;
  font-size: 21px;
  color: #555;
  font-weight: 400;
  border-right: 1px solid #f1f3f4;
}
.sub8-6 .table-container table tbody td:last-child {
  border-right: none;
}

.container {
  width: 100%;
}
.container .section_box {
  display: flex;
  height: auto;
  padding-top: 172px;
  padding-bottom: 160px;
}
.container .section_box + .section_box {
  border-top: 1px solid #e6e6e6;
}
.container .section_box:first-child {
  padding-top: 0;
}
.container .section_box .check_ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 26px;
  justify-content: space-between;
}
.container .section_box .check_ul li {
  font-size: 22px;
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 31px 21px;
  background: #f5f5f5;
  border-radius: 10px;
  min-width: 488px;
  height: 82px;
}
.container .section_box .row {
  display: flex;
  width: 100%;
}
.container .section_box .row .txt {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.container .section_box .row .txt em {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 18px;
  color: #024097;
}
.container .section_box .row .sub_md_txt {
  width: 400px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  font-size: 48px;
  background: white;
}
.container .section_box .row .content {
  flex: 1; /* 오른쪽 영역 */
}
.container .section_box .row .content .sub_sm_txt {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  line-height: 1.6;
  padding-bottom: 87px;
}
.container .section_box .card_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  /* 번호 */
  /* 텍스트 */
}
.container .section_box .card_wrap.card2 .custom-card {
  width: 488px;
}
.container .section_box .card_wrap .custom-card {
  position: relative;
  width: 308px;
  height: 168px;
  padding: 36px 30px 43px 36px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #e5e5e5;
  border-top-left-radius: 50px;
  transition: all 0.3s ease;
}
.container .section_box .card_wrap .custom-card::before {
  position: absolute;
  content: "";
  background: url(../img/line_blue.png) no-repeat;
  width: 55px;
  height: 55px;
  left: -2px;
  top: -2px;
  z-index: 99;
}
.container .section_box .card_wrap .custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.container .section_box .card_wrap .card-number {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  position: relative;
  color: #004098;
  font-size: 21px;
  margin-bottom: 24px;
}
.container .section_box .card_wrap em {
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 27px;
  padding-bottom: 25px;
  display: inline-block;
}
.container .section_box .card_wrap .card-text {
  font-family: "suit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  position: relative;
  font-size: 20px;
  color: #5a5a5a;
  line-height: 1.5;
}
.container .section_box .card_wrap.auto_card .custom-card {
  height: 279px;
}
.container .section_box .card_wrap.auto_card .custom-card .card-number {
  font-weight: 500;
  margin-bottom: 17px;
}
.container .section_box .card_wrap.auto_card .custom-card:last-child {
  width: 65%;
}
.container .section_box.sec7last ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 35px;
  column-gap: 35px;
}
.container .section_box.sec5last ul li + li {
  padding-top: 80px;
}

.sub_footer {
  margin-top: 240px;
  background-size: cover;
  width: 100%;
  height: 787px;
  text-align: center;
  color: #fff;
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.sub_footer .footer_lg_txt {
  font-size: 38px;
  padding-top: 140px;
  line-height: 1.5;
}
.sub_footer ul {
  padding-top: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 123px;
}

.sub1_footer {
  background: url(../img/sub1-1footer.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 543px;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.sub1_footer .footer_md_txt {
  font-size: 38px;
  padding-top: 20px;
  line-height: 1.8;
}
.sub1_footer .footer_lg_txt {
  font-size: 28px;
  padding-top: 36px;
}

.sub2_footer {
  margin-top: 240px;
  background: url(../img/footer2_banner.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 428px;
  text-align: center;
  color: #fff;
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.sub2_footer .footer_md_txt {
  font-size: 38px;
  padding-top: 20px;
}
.sub2_footer .footer_lg_txt {
  font-size: 28px;
  padding-top: 36px;
}

.sub4_footer {
  margin-top: 240px;
  background: url(../img/footer_banner.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 428px;
  text-align: center;
  color: #fff;
  font-family: "Paperlogy", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.sub4_footer .footer_md_txt {
  padding-top: 66px;
  font-size: 28px;
}
.sub4_footer .footer_lg_txt {
  font-size: 38px;
  padding-top: 20px;
}

.sub5_footer {
  background: url(../img/footer5_banner.jpg) no-repeat;
  background-size: cover;
}

.sub6_footer {
  background: url(../img/footer6_banner.jpg) no-repeat;
  background-size: cover;
}

.sub6_1footer {
  background: url(../img/footer6_1banner.jpg) no-repeat;
  background-size: cover;
}

.sub6_3footer {
  background: url(../img/footer6_3banner.jpg) no-repeat;
  background-size: cover;
}

.sub7_footer {
  background: url(../img/footer7_banner.jpg) no-repeat;
  background-size: cover;
}

.sub7_5footer {
  background: url(../img/footer7_5banner.jpg) no-repeat;
  background-size: cover;
}

.gradient {
  font-size: 38px;
  font-weight: bold;
  margin: 20px 0;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #89adff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#bo_v_con {
  font-family: "SUIT", sans-serif;
}

.qick {
  position: fixed;
  bottom: 0;
  z-index: 997;
}

.qick ul {
  width: 100%;
  height: 165px;
  position: absolute;
  top: 0;
}

.qick ul li {
  position: absolute;
  width: 20%;
  height: 165px;
}

.qick ul li:nth-child(2) {
  left: 20%;
}

.qick ul li:nth-child(3) {
  left: 40%;
}

.qick ul li:nth-child(4) {
  left: 60%;
}

.qick ul li:nth-child(5) {
  left: 80%;
}

.qick ul li a {
  display: block;
  width: 100%;
  height: 165px;
}

.sub8-6 .table-container table tbody td {
  font-size: 25px;
}

.sub8-6 .table-container table thead th {
  font-size: 25px;
}/*# sourceMappingURL=style.css.map */