@charset "UTF-8";
/* -------------------------------
   SUIT (Light → ExtraBold)
-------------------------------- */
@font-face {
  font-family: "SUIT";
  src: url("/ko/fonts/SUIT-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SUIT";
  src: url("/ko/fonts/SUIT-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SUIT";
  src: url("/ko/fonts/SUIT-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SUIT";
  src: url("/ko/fonts/SUIT-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SUIT";
  src: url("/ko/fonts/SUIT-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SUIT";
  src: url("/ko/fonts/SUIT-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* -------------------------------
   Noto Sans KR (Light → Black)
-------------------------------- */
@font-face {
  font-family: "Noto Sans KR";
  src: url("/ko/fonts/NotoSansKR-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url("/ko/fonts/NotoSansKR-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url("/ko/fonts/NotoSansKR-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url("/ko/fonts/NotoSansKR-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url("/ko/fonts/NotoSansKR-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  /* 폰트 사이즈 */
  --fs-big: 32px;
  --fs-mid: 24px;
  --fs-semi: 22px;
  --fs-body: 20px;
  --fs-sm: 16px;
  --fs-capt: 14px;
}

@media (max-width: 1024px) {
  /* 태블릿 */
  :root {
    --fs-big: 28px;
    --fs-mid: 21px;
    --fs-semi: 20px;
    --fs-body: 18px;
    --fs-sm: 15px;
    --fs-capt: 13px;
  }
}
@media (max-width: 768px) {
  /* 모바일 */
  :root {
    --fs-big: 24px;
    --fs-mid: 20px;
    --fs-semi: 18px;
    --fs-body: 16px;
    --fs-sm: 14px;
    --fs-capt: 12px;
  }
}
.fs_big {
  font-size: var(--fs-big);
}

.fs_mid {
  font-size: var(--fs-mid);
}

.fs_sm {
  font-size: var(--fs-sm);
}

.fs_semi {
  font-size: var(--fs-semi);
}

.fs_body {
  font-size: var(--fs-body);
}

.fs_capt {
  font-size: var(--fs-capt);
}

.wrap {
  overflow: initial;
}

.scm {
  width: 1400px;
}

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

.mo_br, .mo_img {
  display: none;
}

.header {
  background: rgba(0, 0, 0, 0.4);
}

/********** 헤더 **********/
/* =============================
   HEADER 기본 스타일 (PC)
============================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999;
  width: 100%;
  height: 80px;
  transition: height ease 0.3s, background ease 0.3s;
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
}
.header_inner {
  width: 1400px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header .logo {
  transition: all ease 0.1s;
}
.header .header-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f6840a;
  top: 18px;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.header .gnb_wrap {
  margin-left: auto;
  display: flex;
}
.header .gnb {
  display: flex;
}
.header .gnb > li {
  position: relative;
  padding-right: 30px;
  transition: all ease 0.3s;
}
.header .gnb .gnb_main a {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 8px 4px;
}
.header .gnb_sub {
  position: absolute;
  width: 100%;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  padding-top: 40px;
  transition: all 0.3s ease;
}
.header .gnb_sub li {
  margin-bottom: 20px;
}
.header .gnb_sub a {
  font-size: 15px;
  color: #000;
}
.header .login_menu {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 45px;
}
.header .login_menu li.lang {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: -5px;
  left: 0;
}
.header .login_menu li.lang::after {
  display: none;
}
.header .login_menu li.lang a {
  width: 30px;
  height: 30px;
  display: none;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.header .login_menu li.lang a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header .login_menu li.lang a:first-child {
  display: block;
  margin-top: 0;
}
.header .login_menu li::after {
  content: "|";
  color: #fff;
  margin: 0 4px;
}
.header .login_menu li:last-child::after {
  display: none;
}
.header .login_menu a {
  color: #fff;
  font-size: 16px;
}
.header .btn_hamburger {
  padding: 10px;
  border: none;
  background: none;
  display: none;
  position: relative;
}
.header .hamburger {
  width: 28px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
.header .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header .hamburger span:nth-child(1) {
  top: 0;
}
.header .hamburger span:nth-child(2) {
  top: 10px;
}
.header .hamburger span:nth-child(3) {
  top: 20px;
}
.header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}
.header.open {
  background: #fff;
  height: 330px;
}
.header.open .logo {
  transform: scale(0.8);
  transform-origin: left center;
}
.header.open .gnb > li {
  padding-right: 45px;
}
.header.open .header-dot {
  opacity: 1;
}
.header.open .gnb_main a {
  color: #000;
}
.header.open .gnb_sub {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.header.open .login_menu a {
  color: #000;
}

.menu-open .header {
  background: #333;
}

/* =============================
   반응형 : 1400px 이하
============================= */
@media (max-width: 1400px) {
  .header_inner {
    width: 100%;
    padding: 0 30px;
  }
  .header .logo {
    transform: scale(0.8);
    transform-origin: left center;
  }
  .header .gnb_sub a {
    font-size: 14px;
  }
  .header.open .gnb > li {
    padding-right: 30px;
  }
  .header-dot {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .header .logo {
    width: 120px;
  }
  .header .logo img {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .header_inner {
    padding: 0 20px;
  }
  .header .gnb .gnb_main a {
    font-size: 15px;
  }
  .header .login_menu a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1080px) {
  .header .logo {
    width: 90px;
  }
}
/* =============================
   반응형 : 1024px 이하
============================= */
@media (max-width: 1024px) {
  .header {
    height: 70px;
    background: rgba(0, 0, 0, 0.8);
    transition: initial;
  }
  .header .logo {
    width: 8vw;
    min-width: 140px;
  }
  .header .logo img {
    width: 100%;
  }
  .header .header_inner {
    height: 70px;
    justify-content: space-between;
    padding: 0 20px;
  }
  .header .btn_hamburger {
    display: block;
    z-index: 1001;
  }
  .header .hamburger {
    display: block;
    z-index: 1001;
  }
  .header .gnb_wrap {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    overflow-y: auto;
    padding: 0 0 40px;
  }
  .header .gnb_wrap.active {
    display: block;
  }
  .header .gnb {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .header .gnb > li {
    padding-right: 0;
  }
  .header .gnb .gnb_col {
    width: 100%;
    border-bottom: 1px solid rgba(66, 66, 66, 0.1);
  }
  .header .gnb .gnb_col .gnb_main a {
    display: flex;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #333;
    padding: 20px 40px;
    text-align: left;
    justify-content: space-between;
    font-weight: 600;
  }
  .header .gnb .gnb_col .gnb_main a::after {
    content: "↓";
    color: #3d3d3d;
  }
  .header .gnb .gnb_col.open .gnb_main a::after {
    content: "↑";
    color: #3d3d3d;
  }
  .header .gnb .gnb_col .gnb_sub {
    position: static;
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 10px 0;
    display: none;
    background: #f9f9f9;
  }
  .header .gnb .gnb_col .gnb_sub li {
    margin: 8px 0;
  }
  .header .gnb .gnb_col .gnb_sub a {
    font-size: 18px;
    color: #666;
    padding: 14px 40px;
    display: block;
    text-align: left;
  }
  .header .gnb .gnb_col.open .gnb_sub {
    display: block;
  }
  .header .login_menu {
    position: static;
    text-align: center;
    padding: 20px 20px;
    gap: 20px;
  }
  .header .login_menu ul {
    flex-direction: column;
    padding-left: 0;
  }
  .header .login_menu a {
    color: #1a1a1a;
    font-size: 16px;
  }
  .header .login_menu li::after {
    display: none;
  }
  .header .login_menu li.lang {
    position: fixed;
    top: 21px;
    left: auto;
    right: 70px;
  }
}
/* =============================
   반응형 : 480px 이하 (모바일)
============================= */
@media (max-width: 480px) {
  .header {
    z-index: 9999999999;
  }
  .header .header_inner {
    padding: 0 20px;
  }
  .header .logo img {
    width: 120px;
  }
  .header .hamburger {
    width: 26px;
    height: 20px;
  }
  .header .hamburger span {
    height: 2px;
  }
  .header .gnb_main a {
    font-size: 16px;
  }
  .header .gnb .gnb_col .gnb_main a {
    padding: 20px 20px;
  }
  .header .gnb .gnb_col .gnb_sub a {
    padding: 14px 20px;
  }
}
/********** footer **********/
.mainFullpage .swiper-slide.main-footer {
  height: auto;
  background: #252525;
}

.footer {
  width: 100%;
  height: 100%;
  background: #252525;
}

.footer_inner {
  width: 1120px;
  height: 100%;
  padding: 100px 50px;
  margin: 0 auto;
  display: flex;
  color: #fff;
}
.footer_inner .ft_logo {
  margin-right: 40px;
}
.footer_inner .ft_info p {
  line-height: 1.4;
  margin-top: 30px;
  font-size: var(--fs-capt);
  color: #ccc;
}
.footer_inner .ft_info p.copyright {
  opacity: 0.6;
  margin-top: 30px;
}
.footer_inner .ft_menu {
  display: flex;
}
.footer_inner .ft_menu li {
  color: #Fff;
}
.footer_inner .ft_menu li a {
  color: #Fff;
  font-size: var(--fs-body);
}
.footer_inner .ft_menu li:last-child::after {
  display: none;
}
.footer_inner .ft_menu li::after {
  content: "|";
  margin: 0 20px;
}

/********** //footer **********/
/******************************************************/
.text-body, .iol_lens_info .iol_lens_text, .icl_step li .icl_step_text, .icl_type .icl_lens_text, .surgery_step_txt, .light_check_list li, .recommend_list li .icon_reco_txt, .text-body-white {
  font-family: "SUIT", "Noto Sans KR", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.4;
  font-weight: 400;
  color: #5a5a5a;
  word-break: keep-all;
}
.text-body-white {
  color: #fff;
}

.text-small {
  font-size: var(--fs-sm);
  line-height: 1.4;
  font-weight: 400;
  color: #5a5a5a;
  word-break: keep-all;
}

.text-mid, .text-mid-black {
  font-size: var(--fs-mid);
  line-height: 1.4;
  font-weight: 500;
  color: #5a5a5a;
  word-break: keep-all;
}
.text-mid-black {
  color: #000;
}

.text-big, .text-big-orange, .text-big-white, .text-big-black {
  font-family: "SUIT", "Noto Sans KR", sans-serif;
  font-size: var(--fs-big);
  line-height: 1.4;
  font-weight: 800;
  color: #5a5a5a;
  word-break: keep-all;
}
.text-big-black {
  color: #000;
}
.text-big-white {
  color: #fff;
}
.text-big-orange {
  color: #fd8204;
}

.c-orange {
  color: #fd8204;
}

.hero_marquee {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  color: #f5f5f5; /* 텍스트 색상 */
  padding: 10px 0;
  margin-bottom: 80px;
}

.marquee_text {
  display: inline-block;
  animation: marquee 120s linear infinite;
}

.marquee_text .item {
  display: inline-block;
  margin-right: 4rem; /* 항목 간 간격 */
  letter-spacing: 0.05em;
  font-weight: 900;
  font-size: 120px;
}

/* 애니메이션 정의 */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.subpage_container {
  font-family: "SUIT", "Noto Sans KR", sans-serif;
  margin-top: 180px;
}
.subpage_container .hero_area {
  text-align: center;
  margin-bottom: 120px;
}
.subpage_container .hero_area .hero_title {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #000;
}
.subpage_container .hero_area .hero_subtxt {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-top: 20px;
  color: #2c2c2c;
  word-break: keep-all;
  padding: 0 3vw;
}
.subpage_container .hero_area .hero_img {
  width: 1000px;
  height: 400px;
  margin: 60px auto 0;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  /* 닦이는 마스크 효과 */
}
.subpage_container .hero_area .hero_img img {
  width: 100%;
  transform: scale(1.1); /* 약간 확대된 상태에서 시작 */
  opacity: 0;
  animation: revealImage 1.5s ease forwards;
  max-width: 100%;
}
.subpage_container .hero_area .hero_img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(0);
  animation: wipeMask 1.5s ease forwards;
  animation-delay: 0.2s;
  z-index: 2;
}
.subpage_container .hero_area .hero_img + p.text-body, .subpage_container .hero_area .iol_lens_info .hero_img + p.iol_lens_text, .iol_lens_info .subpage_container .hero_area .hero_img + p.iol_lens_text, .subpage_container .hero_area .icl_step li .hero_img + p.icl_step_text, .icl_step li .subpage_container .hero_area .hero_img + p.icl_step_text, .subpage_container .hero_area .icl_type .hero_img + p.icl_lens_text, .icl_type .subpage_container .hero_area .hero_img + p.icl_lens_text, .subpage_container .hero_area .hero_img + p.surgery_step_txt, .subpage_container .hero_area .recommend_list li .hero_img + p.icon_reco_txt, .recommend_list li .subpage_container .hero_area .hero_img + p.icon_reco_txt, .subpage_container .hero_area .hero_img + p.text-body-white {
  margin-top: 60px;
  padding: 0 20px;
}

/* 이미지 페이드 + 확대 해제 */
@keyframes revealImage {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* 흰색 마스크가 왼→오로 닦이며 사라지는 효과 */
@keyframes wipeMask {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.sub_section {
  width: 1400px;
  margin: 0 auto;
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
  border-bottom: 1px solid #eee;
}
.sub_section:last-child {
  border-bottom: none;
}

.sub_flex {
  display: flex;
}
.sub_flex .sub_section_cont {
  width: 1000px;
  padding: 0 10px;
}
.sub_flex .sub_section_cont img {
  max-width: 100%;
}

.sub_section_ttl {
  width: 400px;
  padding: 0 10px;
  align-self: flex-start;
  position: sticky;
  top: 90px;
}
.sub_section_ttl .sub_mid_ttl {
  color: #fd8204;
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 10px;
  font-weight: 600;
}
.sub_section_ttl h3 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.3;
}

.num_boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.num_boxes.vertical {
  flex-direction: column;
}
.num_boxes.vertical li {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 16px 32px;
  margin: 10px 0;
}
.num_boxes.vertical li .icon_check {
  margin-right: 12px;
  margin-bottom: 0;
}
.num_boxes .icon_check {
  margin-bottom: 10px;
  width: 26px;
}
.num_boxes.cols-4 li {
  width: 22%;
}
.num_boxes li {
  width: 30%;
  min-height: 170px;
  border-radius: 20px;
  margin: 0 1.5% 20px;
  border: 4px solid #f3f3f3;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  word-break: keep-all;
  padding: clamp(20px, 2.5vw, 32px);
  line-height: 1.3;
  transition: all ease 0.2s;
}
.num_boxes li span {
  display: block;
  color: #fd8204;
  font-weight: 900;
  margin-bottom: 20px;
}
.num_boxes li:hover {
  background: #f3f3f3;
}

.box-round {
  border-radius: 20px;
  overflow: hidden;
}

.badge_title, .badge_title_orange {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 60px; */
  background: #363c54;
  color: #fff;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 10px;
  padding: 15px 20px;
  font-size: clamp(20px, 3vw, 18px);
  line-height: 1.4;
  font-weight: 600;
}
.badge_title_orange {
  background: #fd8204;
}

.bar_title {
  font-size: var(--fs-semi);
  font-weight: 600;
  margin-bottom: 12px;
}
.bar_title::before {
  content: "| ";
  font-weight: 900;
  color: #fd8204;
}

.tab_menu {
  display: flex;
  gap: 8px;
}
.tab_menu.row-2 {
  flex-wrap: wrap;
}
.tab_menu.row-2 button {
  flex: auto;
  width: calc(33% - 16px);
}

.tab_menu button {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  font-size: var(--fs-semi);
}

.tab_menu button.active {
  background: #333;
  color: #fff;
}

.tab_content {
  display: none;
  margin-top: 20px;
}

.tab_content.active {
  display: block;
}

.recommend_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 20px;
  flex-wrap: wrap;
}
.recommend_list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  text-align: center;
  background: #f9f9f9;
  padding: 20px 30px;
  border-radius: 16px;
  transition: all ease 0.3s;
}
.recommend_list li:hover {
  box-shadow: 0 10px 8px 0px rgba(0, 0, 0, 0.1);
  margin-top: -4px;
}
.recommend_list li .icon_reco_img {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 80px;
  text-align: center;
}
.recommend_list li .icon_reco_txt {
  margin-top: 10px;
  line-height: 1.3;
}

.light_check_list li {
  margin: 10px 0;
  text-indent: -30px;
  padding-left: 30px;
  word-break: keep-all;
}
.light_check_list .icon_check img {
  width: 24px;
}

.surgery_step {
  display: flex;
  flex-wrap: wrap;
}
.surgery_step li {
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.surgery_step_img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 10px;
}
.surgery_step_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.surgery_step_num {
  font-size: 20px;
  color: #fd8204;
  font-weight: 800;
}
.surgery_step_txt {
  margin-top: 8px;
}

/* 하단공통 - 원장님 두분 서명있는 디자인 */
.btm_common_doctors {
  width: 100%;
  height: 580px;
  background: #f9f9f9;
}
.btm_common_doctors .flex {
  height: 100%;
  justify-content: space-between;
}
.btm_common_doctors .doctors_ment {
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.4;
  font-weight: 500;
  word-break: keep-all;
}
.btm_common_doctors .doctors_signature {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 30px;
}
.btm_common_doctors .doctors_signature p {
  margin: 0 20px;
  text-align: right;
}
.btm_common_doctors .doctors_img {
  align-self: flex-end;
}

/* //하단공통 - 원장님 두분 서명있는 디자인 */
/* 스마일 프로 */
.smilepro .video {
  width: 480px;
}
.smilepro .video div {
  width: 100%;
}
.smilepro_video2 {
  width: 440px;
}

.smilepro_moon {
  width: 100%;
  height: 380px;
  background: url("../img/img_smeilpro_02.jpg") repeat-x center;
  text-align: center;
  padding-top: 250px;
}

.smile-doc-profile2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 90px auto 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.smile-doc-profile2 .item {
  width: 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.smile-doc-profile2 .item img {
  width: 170px;
}

.smile-doc-profile2 .item img.logo_su {
  width: 150px;
}

.smile-doc-profile2 .item img.logo_zeiss {
  width: 150px;
}

.smile-doc-profile2 .item span {
  font-size: var(--fs-mid);
  margin-top: 30px;
  font-weight: 500;
  text-align: center;
}

.smile-doc-img2 {
  width: 100%;
  height: 420px;
  margin: 80px auto 0;
  background: #e8e9e1 url("/eyeplus/img/smile_doc2.jpg") no-repeat center;
  background-size: cover;
  padding: 50px 60px 40px 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.smile-doc-img2.choi {
  background: #e8e9e1 url("/eyeplus/img/cataract_doc2.jpg") no-repeat center/cover;
}

.smile-doc-img2 .smile-doc-name2 {
  margin-bottom: 40px;
  font-size: 40px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.smile-doc-img2 .smile-doc-name2 p {
  font-size: 24px;
  margin-bottom: 8px;
}

.smile-doc-img2 .smile-doc-name2 b {
  font-weight: 700;
  font-size: 40px;
}

.smile-doc-img2 .smile-doc-ment {
  font-size: var(--fs-semi);
  font-family: "Noto Serif KR", serif;
  line-height: 1.4;
  color: #666;
  word-break: keep-all;
}

.smile-doc-img2 .smile-doc-link {
  margin-top: auto;
}

.smile-doc-img2 .smile-doc-link a {
  color: #111;
  -webkit-box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.2);
}

.smile-doc {
  width: 1124px;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 120px auto 0;
  color: #000;
}

.smile-doc-img {
  margin-right: 50px;
}

.smile-doc-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px 0 0 0;
}

.smile-doc-profile {
  font-size: 38px;
}

.smile-doc-profile .item {
  margin-bottom: 40px;
  letter-spacing: -1px;
  text-indent: -40px;
  margin-left: 38px;
  line-height: 1.2;
}

.smile-doc-profile .item img {
  width: 30px;
  margin-right: 4px;
}

.smile-doc-name {
  margin-top: auto;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 40px;
  font-size: 44px;
}

.smile-doc-name p {
  font-size: 24px;
  margin-bottom: 8px;
}

.smile-doc-name b {
  font-weight: 700;
  font-size: 44px;
}

.smile-doc-link a {
  display: inline-block;
  padding: 10px 22px;
  font-size: 20px;
  border-radius: 12px;
  font-weight: 500;
  color: #363c54;
  border: 1px solid #363c54;
  background: transparent;
  -webkit-box-shadow: 0 2px 10px 1px rgba(26, 33, 75, 0.4);
  box-shadow: 0 2px 10px 1px rgba(26, 33, 75, 0.4);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.smile-doc-link a:hover {
  background: #363c54;
  color: #fff;
}

.smilepro .sub_btm_visual {
  width: 100%;
  height: 298px;
  background: #040842 url("../img/smilepro_btm.jpg") no-repeat center;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 900;
  color: #fff;
}

/* //스마일 프로 */
/* 스마일라식 */
.smile_zeiss_card {
  width: 100%;
  height: 620px;
  background: url("../img/img_smilelasik_10.jpg") no-repeat center/cover;
}
.smile_zeiss_card .scm {
  width: 1200px;
  height: 100%;
}

.smile_zeiss_btm {
  padding: 120px 0;
}
.smile_zeiss_btm em {
  background: #fd8204;
  color: #fff;
}

/* //스마일라식 */
/* 라섹 */
.lasek_amaris {
  width: 100%;
  padding: 50px 0;
  background: #121e44 url("../img/img_lasek_02.jpg") no-repeat center/cover;
}
.lasek_amaris h3 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.3;
}
.lasek_amaris .scm {
  height: 100%;
}
.lasek_amaris .flex {
  align-items: center;
  justify-content: space-between;
}

/* //라섹 */
/* 렌즈삽입술 */
.icl_type {
  display: flex;
  text-align: center;
}
.icl_type > div {
  flex: 1;
}
.icl_type_img {
  margin-top: 20px;
}
.icl_type_lens {
  margin-top: 30px;
}
.icl_type .icl_lens_name {
  font-size: var(--fs-mid);
  font-weight: 700;
  margin-top: 10px;
}
.icl_type .icl_lens_text::before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #fd8204;
  margin: 8px auto;
}

.icl_step {
  display: flex;
  margin-top: 50px;
}
.icl_step li {
  width: 20%;
  padding: 0 10px;
  text-align: center;
}
.icl_step li img {
  max-width: 100%;
}
.icl_step li .icl_step_num {
  font-size: var(--fs-mid);
  font-weight: 700;
  display: block;
  margin-top: 20px;
  color: #363c54;
}
.icl_step li .icl_step_num .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #363c54;
}
.icl_step li .icl_step_text {
  margin-top: 8px;
}

/* //렌즈삽입술 */
/* 안구건조 */
.m22 .flex > p, .m22 .flex > div {
  flex: 1;
  text-align: center;
}
.m22 .m22_name {
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.3;
}
.m22 .m22_name strong {
  font-size: 30px;
}
.m22 ul li {
  width: 100%;
  display: flex;
  align-items: center;
  background: #f4f4f4;
  padding: 20px 30px;
  text-align: left;
  margin-bottom: 20px;
  border-radius: 20px;
  font-size: 20px;
}
.m22 ul li img {
  width: 28px;
  margin-right: 10px;
}

.dryeye_chart {
  width: 100%;
  padding: 80px 0;
  background: url("../img/img_dryeye_02.jpg") no-repeat center/cover;
  text-align: center;
}
.dryeye_chart .text-body-white {
  font-size: 26px;
  margin-bottom: 40px;
}
.dryeye_chart .text-body-white:last-child {
  display: inline-block;
  padding: 20px 60px;
  margin-top: 50px;
  border: 1px solid #fff;
}

.ipl_bna .ipl_bna_box {
  margin: 0 20px;
}
.ipl_bna .ipl_bna_box p {
  font-size: var(--fs-mid);
  font-weight: 700;
  color: #121e44;
  text-align: center;
  line-height: 1.5;
  margin-top: 14px;
}

/* //안구건조 */
/* 노안 */
.presby_treatment {
  padding: 150px 0;
  background: url("../img/bg_presby_treatment.jpg") no-repeat center;
  background-size: cover;
}
.presby_treatment_ttl h3 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #fff;
}
.presby_treatment a {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  height: 60px;
  line-height: 58px;
  font-size: 24px;
  margin-top: 40px;
  transition: all ease 0.3s;
}
.presby_treatment a:hover {
  color: #000;
  background: #fff;
  font-weight: 500;
}
.presby_treatment .flex div {
  margin: 0 20px;
}

/* //노안 */
/* 백내장 */
.cataract_symptom ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
}
/* 노안 백내장 비포앤에프터 */
.iol_bna_wrap {
  position: relative;
  padding: 0 2px;
  margin-bottom: 120px;
}
.iol_bna_wrap .twentytwenty-container {
  height: 341px;
}
.iol_bna_wrap .twentytwenty-overlay {
  display: none;
}
.iol_bna_wrap .twentytwenty-handle {
  background: #fff;
  width: 44px;
  height: 44px;
}
.iol_bna_wrap .iol_bna_label_after {
  width: 90px;
  height: 40px;
  color: #fff;
  font-size: var(--fs-semi);
  text-align: center;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  background: #fe8204;
  border-radius: 0 0 12px 0;
  line-height: 40px;
}
.iol_bna_wrap .iol_bna_label_before {
  width: 90px;
  height: 40px;
  color: #fff;
  font-size: var(--fs-semi);
  text-align: center;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  background: #363c54;
  border-radius: 0 0 0 12px;
  line-height: 40px;
}
.iol_bna_wrap .twentytwenty-left-arrow {
  background: url("../img/icon_arrow.png") no-repeat center;
  border: none;
  width: 12px;
  height: 21px;
  margin-top: -10px;
  margin-left: -18px;
}
.iol_bna_wrap .twentytwenty-right-arrow {
  background: url("../img/icon_arrow2.png") no-repeat center;
  border: none;
  width: 12px;
  height: 21px;
  margin-top: -10px;
  margin-left: -12px;
}
.iol_bna_wrap .iol_bna_ttl {
  width: 100%;
  display: flex;
  margin-top: 30px;
}
.iol_bna_wrap .iol_bna_ttl li {
  flex: 1;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.iol_lens_info {
  width: 100%;
  border: 1px solid #ddd;
  padding: 30px;
}
.iol_lens_info_img {
  width: 50%;
  text-align: center;
}
.iol_lens_info_cont {
  width: 50%;
}
.iol_lens_info .iol_lens_name {
  font-size: var(--fs-mid);
  font-weight: 600;
}
.iol_lens_info .iol_lens_name::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #fd8204;
  display: block;
  margin: 14px 0;
}
.iol_lens_info_point {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
}
.iol_lens_info_point li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: var(--fs-body);
  text-align: center;
  background: #f9f9f9;
  padding: 20px 30px;
  border-radius: 16px;
  line-height: 1.2;
}
.iol_lens_info_point li span {
  display: flex;
  align-items: center;
  height: 56px;
  word-break: keep-all;
}
.iol_lens_info_point li::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("../img/icon_check_orange.svg");
  background-size: 100%;
  margin-bottom: 10px;
}

/* //백내장 */
/* 녹내장 */
.glaucoma_step {
  display: grid;
  margin-top: 50px;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.glaucoma_step li {
  text-align: center;
  border: 1px solid #eee;
  padding: 30px 10px;
}
.glaucoma_step li img {
  max-width: 100%;
}
.glaucoma_step li .glaucoma_step_num {
  font-size: var(--fs-mid);
  font-weight: 700;
  display: block;
  margin-top: 20px;
  color: #363c54;
}
.glaucoma_step li .glaucoma_step_num .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #363c54;
}
.glaucoma_step li .glaucoma_step_text {
  font-size: var(--fs-mid);
  color: #363c54;
  font-weight: 800;
  margin-top: 8px;
  margin-bottom: 12px;
}

/* //녹내장 */
/* 재수술 */
.reoperation_full1 {
  background: url("../img/bg_reoperation_01.jpg") no-repeat center/cover;
  padding: 100px 0;
}
.reoperation_full1 .text-big-white {
  font-size: clamp(34px, 4vw, 42px);
}
.reoperation_full1 .text-body-white {
  font-size: clamp(20px, 3vw, 28px);
}
.reoperation_full1 img {
  margin-top: 40px;
  max-width: 70vw;
}

/* //재수술 */
/* 아이플러스안과소개 */
.aboutus .award-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.aboutus .aboutus_01 {
  text-align: center;
}
.aboutus .aboutus_01 h2 {
  font-size: clamp(38px, 3.5vw, 80px);
  font-weight: 800;
  margin-top: 20px;
}
.aboutus .aboutus_01 .aboutus_eng {
  font-size: clamp(32px, 3vw, 50px);
}
.aboutus .aboutus_01 .aboutus_eng em {
  color: #fe8204;
  font-weight: 800;
}
.aboutus .aboutus_01_img {
  margin-top: 100px;
}
.aboutus .aboutus_01_img img {
  max-width: 100%;
}
.aboutus .aboutus_01_text {
  margin-top: 100px;
  font-size: var(--fs-big);
  line-height: 1.4;
  word-break: keep-all;
}
.aboutus .aboutus-roll {
  margin: 180px 0;
}
.aboutus .aboutus-roll .award-txt {
  font-size: var(--fs-mid);
  margin-top: 10px;
}
.aboutus .aboutus-roll .award-txt::before {
  content: "";
  width: 30px;
  height: 3px;
  background: #464646;
  display: block;
  margin: 20px 0;
}
.aboutus .aboutus-parall {
  width: 100%;
  background: url("../img/sub1-1_pbg.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0;
}
.aboutus .aboutus-parall-txt {
  text-align: center;
  color: #fff;
  line-height: 1.3;
  font-size: var(--fs-big);
}
.aboutus .aboutus-parall-txt b {
  color: #f38b0f;
}
.aboutus .aboutus-parall-txt div {
  margin-top: 80px;
}
.aboutus .aboutus-roll {
  width: 100%;
  overflow: hidden;
}

/* //아이플러스안과소개 */
/* 의료진소개 */
.aboutdrs .doctor_box:first-child {
  padding-bottom: 140px;
}
.aboutdrs .doctor_box:last-child .intro {
  flex-direction: row-reverse;
}
.aboutdrs .doctor_box + .doctor_box {
  padding-top: 160px;
  padding-bottom: 140px;
}
.aboutdrs .doc_sub_title {
  font-size: 36px;
  color: #f38b0f;
}
.aboutdrs .doc_title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.4;
  padding-top: 40px;
  padding-bottom: 180px;
}
.aboutdrs .intro {
  display: flex;
  align-items: flex-start;
  gap: 130px;
}
.aboutdrs .intro .doctor_cont {
  padding-top: 20px;
}
.aboutdrs .intro .doctor_cont .ul_wrap li:nth-child(1) {
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.aboutdrs .intro .doctor_cont .ul_wrap li:nth-child(1) b {
  font-size: var(--fs-semi);
  color: #fff;
  background: #f38b0f;
  padding: 5px 15px;
  border-radius: 50px;
}
.aboutdrs .intro .doctor_cont .ul_wrap li:nth-child(2) {
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 600;
}
.aboutdrs .intro .doctor_cont .ul_wrap li:nth-child(2) em {
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 800;
  padding-right: 12px;
}
.aboutdrs .intro .doctor_cont .ul_wrap li:nth-child(3) {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.8;
  padding-top: 50px;
  padding-bottom: 56px;
}
.aboutdrs .intro .doctor_cont .ul_wrap .ul_wrap2 {
  border: 1px solid #f38b0f;
  border-bottom-right-radius: 50px;
  padding: 40px 35px;
  display: flex;
  gap: 60px;
}
.aboutdrs .intro .doctor_cont .ul_wrap .ul_wrap2 li {
  font-size: 15px;
  font-weight: 400;
  color: #5a5a5a;
  line-height: 2;
}
.aboutdrs .intro .doctor_cont .ul_wrap .ul_wrap2 li:nth-child(1) {
  padding-bottom: 0;
}
.aboutdrs .intro .doctor_cont .ul_wrap .ul_wrap2 li:nth-child(2) {
  border-bottom: none;
  padding-top: 30px;
  padding-bottom: 0;
}

/* //의료진소개 */
/* 진료안내 */
.consultation-guide .main_number {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
}
.consultation-guide .hours_ul {
  background: #f6f6f6;
  padding: 30px 50px;
  font-size: var(--fs-semi);
  line-height: 2;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 80px;
}
.consultation-guide .hours_ul li {
  display: flex;
  align-items: center;
}
.consultation-guide .hours_ul li .guide_day {
  margin-right: 30px;
  background: #363c54;
  color: #fff;
  padding: 0px 14px;
  border-radius: 40px;
}
.consultation-guide .hours_ul li .guide_time {
  font-weight: 800;
}
.consultation-guide .cs_links {
  display: flex;
  gap: 30px;
}
.consultation-guide .cs_links .link {
  background: #f38b0f;
  font-size: var(--fs-mid);
  border-radius: 16px;
  transition: all ease 0.3s;
}
.consultation-guide .cs_links .link:hover {
  box-shadow: 0 10px 8px 0px rgba(0, 0, 0, 0.1);
  margin-top: -4px;
}
.consultation-guide .cs_links .link:last-child {
  background: #363c54;
}
.consultation-guide .cs_links .link a {
  color: #fff;
  font-weight: 600;
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 60px;
}

/* //진료안내 */
/* 둘러보기 */
/* 둘러보기 슬라이드 */
.interior_container {
  width: 1124px;
  margin: 0 auto 100px;
  overflow: hidden;
}
.interior_container .interior-swiper {
  height: 632px;
  margin-bottom: 20px;
}
.interior_container .interior-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interior_container .interior-thumb-swiper .swiper-slide-thumb-active {
  border: 2px solid #fe8204;
}
.interior_container .interior-thumb-swiper .swiper-slide {
  width: 25%;
}
.interior_container .interior-thumb-swiper .swiper-slide img {
  width: 100%;
}

/* //둘러보기 */
/* 오시는길 */
.location .map_wrap {
  width: 100%;
  height: 0;
  padding-top: 50%;
  position: relative;
}
.location .map_wrap .map_position {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.location .map_wrap #map {
  width: 100%;
  height: 100%;
}

.transport-info {
  color: #333;
  line-height: 1.6;
  margin-top: 60px;
}
.transport-info .transport-block {
  margin-bottom: 48px;
}
.transport-info .transport-block h3 {
  font-size: var(--fs-semi);
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.transport-info .transport-block h3 .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
}
.transport-info .transport-block h3 .icon.subway {
  background-image: url("/img/icon-subway.svg");
}
.transport-info .transport-block h3 .icon.bus {
  background-image: url("/img/icon-bus.svg");
}
.transport-info .transport-block h3 .icon.car {
  background-image: url("/img/icon-car.svg");
}
.transport-info .transport-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.transport-info .transport-block ul li {
  font-size: var(--fs-body);
  margin-bottom: 6px;
}
.transport-info .transport-block .subway-list .line {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-right: 6px;
}
.transport-info .transport-block .subway-list .line.line2 {
  background-color: #3CB44A;
}
.transport-info .transport-block .subway-list .line.line9 {
  background-color: #B58500;
}
.transport-info .transport-block .subway-list .line.line_sin {
  width: initial;
  padding: 0 10px;
  border-radius: 14px;
  background-color: #b61614;
}
.transport-info .transport-block .bus-list .bus-type {
  display: inline-block;
  min-width: 70px;
  font-weight: 600;
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  margin-right: 6px;
  margin-top: 10px;
  font-size: var(--fs-sm);
  text-align: center;
}
.transport-info .transport-block .bus-list .bus-type.green {
  background: #00a84d;
}
.transport-info .transport-block .bus-list .bus-type.blue {
  background: #3b80ef;
}
.transport-info .transport-block .bus-list .bus-type.red {
  background: #d92d2d;
}
.transport-info .transport-block .bus-list .bus-type.orange {
  background: #f7a600;
}
.transport-info .transport-block .bus-list .bus-type.purple {
  background: #9b59b6;
}
.transport-info .transport-block .bus-list .bus-type.gray {
  background: #666;
}
.transport-info .transport-block .car-info p {
  font-size: var(--fs-body);
  margin: 4px 0;
}
.transport-info .transport-block .car-info p.note {
  color: #666;
  font-size: var(--fs-sm);
  line-height: 1.5;
}
.transport-info .transport-block .car-info strong {
  display: block;
  font-weight: 700;
  margin-top: 10px;
}

/* //오시는길 */
/********** 메인 상담신청 **********/
.ft-cs {
  width: 100%;
  height: 100%;
  background: url("../img/bg_main_cs.jpg") no-repeat top center;
  background-size: cover;
}
.ft-cs h2 {
  font-size: clamp(36px, 4vw, 50px);
}

.ft-cs .main_section_inner {
  padding: 140px 50px 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main_cs_container {
  background: rgba(54, 60, 84, 0.93);
  padding: 30px;
  margin-top: 40px;
  /* 상담 분야 */
  /* 이름 / 연락처 */
  /* 내용 입력 */
  /* 체크박스 + 버튼 */
}
.main_cs_container li {
  height: 50px;
  margin-bottom: 10px;
}
.main_cs_container li > div {
  border-bottom: 1px solid #fff;
}
.main_cs_container input[type=text] {
  height: 50px;
  font-size: var(--fs-semi);
  background: transparent;
  border: none;
  color: #fff;
}
.main_cs_container .cs_label {
  font-size: var(--fs-semi);
  font-weight: 300;
  color: #fff;
  margin-right: 20px;
  line-height: 50px;
}
.main_cs_container .cs_li_1 div {
  width: 48%;
}
.main_cs_container .cs_li_1 select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: var(--fs-semi);
  width: 320px;
}
.main_cs_container .cs_li_1 select option {
  color: #000;
}
.main_cs_container .cs_li_2 {
  display: flex;
  justify-content: space-between;
}
.main_cs_container .cs_li_2 div {
  width: 48%;
}
.main_cs_container .cs_li_3 {
  height: 150px;
}
.main_cs_container .cs_li_3 div {
  display: flex;
  height: 100%;
  flex-wrap: wrap;
}
.main_cs_container .cs_li_3 textarea {
  width: calc(100% - 100px);
  height: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: var(--fs-semi);
  padding: 10px;
}
.main_cs_container .cs_li_4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main_cs_container .cs_li_4 input[type=checkbox] {
  display: none;
}
.main_cs_container .cs_li_4 input[type=checkbox] + label {
  padding: 3px 0 3px 34px;
  background: url("../img/icon_check_off.png") no-repeat left center;
  background-size: 20px;
  font-size: var(--fs-semi);
  color: #fff;
}
.main_cs_container .cs_li_4 input[type=checkbox]:checked + label {
  background: url("../img/icon_check_on.png") no-repeat left center;
  background-size: 20px;
}
.main_cs_container .cs_li_4 a {
  font-size: 24px;
  color: #fff;
  margin-left: 8px;
}
.main_cs_container .cs_li_4 button {
  display: inline-block;
  padding: 8px 30px 10px;
  background: #fff;
  color: #363c54;
  font-weight: 700;
  font-size: var(--fs-semi);
}

/********** //메인 상담신청 **********/
.terms_txt pre {
  font-family: "SUIT", sans-serif;
  font-size: 16px;
}/*# sourceMappingURL=seo-style.css.map */