@charset "UTF-8";

/* seo h1 숨김처리 */
.metaH1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* header */
.global_header {
  position: fixed;
  top: 0;
  z-index: 999999;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.gnb {
  width: 90%;
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.gnb .nav_menu {
  position: relative;
}
.gnb .nav_menu:hover > a {
  color: var(--color-primary);
  position: relative;
}
.gnb .nav_menu > a::after {
  width: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  display: block;
  transition: 0.45s;
  height: 2px;
  background: var(--color-primary);
}
.gnb .nav_menu:hover > a::after {
  width: 100%;
}
.gnb .nav_menu > a {
  display: block;
  box-sizing: border-box;
  padding: 30px 0;
  color: #404040;
  text-align: center;
  transition: 0.45s;
  font-family: 'NEXON Lv1 Gothic OTF';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.gnb .nav_menu:last-child .drop {
  right: 0;
}
.gnb .nav {
  display: flex;
  gap: 2.1vw;
  align-items: center;
}
.nav_menu .drop_tit {
  white-space: nowrap;
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 700;
  display: block;
  margin-bottom: 30px;
}
.nav_menu .drop_menu:not(:last-child) {
  margin-bottom: 16px;
}
.nav_menu .drop_menu a {
  white-space: nowrap;
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  transition: 0.45s;
  position: relative;
}
.nav_menu .drop_menu a::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background: #404040;
  opacity: 0;
  transition: 0.45s;
}
.nav_menu .drop_menu a:hover::after {
  opacity: 1;
}
.burger,
.mnav_wrap {
  display: none;
}
.burger > div {
  transition: 0.3s;
}
.burger.on div:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.on div:nth-child(2) {
  opacity: 0;
}
.burger.on div:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
[class*='ico'] {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.ico_close {
  background: url('/img/common/ico_close.svg') center center / 100% no-repeat;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 1250px) {
  .gnb .logo {
    width: 110px;
  }
  .gnb .logo img {
    width: 100%;
  }
  .gnb .nav {
    align-items: center;
    gap: 0.8vw;
  }
  .gnb .nav_menu {
    flex: 1;
  }
  .gnb .nav_menu > a {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .global_header {
    height: 60px;
  }
  .gnb .nav {
    display: none;
  }
  .gnb {
    height: 100%;
  }
  .burger {
    display: flex;
    border: none;
    background: none;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
  }
  .burger > div {
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: #1c6d40;
  }
  .burger > div:nth-child(2) {
    background: #84bc59;
    width: 12px;
  }
  .mnav_wrap {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .ico_close {
    width: 16px;
    height: 16px;
  }
}
/* gnb 호버액션 */
.nav_menu .drop {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in;
  position: absolute;
  top: calc(100% + 10px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  box-sizing: border-box;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.15);
}
.nav_menu:hover .drop {
  visibility: visible;
  opacity: 1;
}

/* 모바일네비 */
.mnav_wrap {
  position: fixed;
  right: 0;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -99999;
  visibility: hidden;
}
.mnav_wrap::before {
  /* display: none; */
  content: '';
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100vw;
  height: 100%;
  z-index: -1;
  transition: 0.3s;
}
.mnav_wrap.on::before {
  display: block;
}
.mnav_wrap .inner {
  position: fixed;
  background: #fff;
  width: 80%;
  height: 100%;
  margin-left: auto;
  padding-top: 100px;
  box-sizing: border-box;
  overflow-y: auto;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition-delay: 0.3s;
  transition: 0.3s;
}
.mnav_wrap.on {
  z-index: 1;
  visibility: visible;
}
.mnav_wrap.on .inner {
  transform: translateX(0);
}
.mnav_wrap .mdrop {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.mnav_wrap .mnav_menu > a,
.mnav_wrap .mnav_menu > button {
  background: transparent;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  /* 공통 스타일 */
  border-bottom: 1px solid var(--color-border-light);
  box-sizing: border-box;
  padding: 15px 3vw;
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  align-items: center;
}
.mnav_wrap .mnav_menu > a:after,
.mnav_wrap .mnav_menu > button:after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(/img/common/mnav_arrow.png) center center / 100% no-repeat;
  transition: 0.5s;
}

.mnav_wrap .mdrop_menu > a {
  display: block;
  border-bottom: 1px solid var(--color-border-light);
  padding: 15px 5vw;
  color: var(--grayscale-60001, #525252);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
  background: var(--grayscale-10001, #f5f5f5);
  box-sizing: border-box;
  transition: 0.3s;
}
.mnav_wrap .mnav_menu > a.on::after,
.mnav_wrap .mnav_menu > button.on::after {
  transform: rotate(180deg);
}
/* 사이드네비 */
.quick_menu_wrap {
  position: fixed;
  right: 5vw;
  z-index: 99999;
  top: 50%;
  transform: translateY(-50%);
}
.quick_menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.quick_item {
  border-radius: 34px;
  border: 1px solid #c6a865;

  background: linear-gradient(180deg, #2d4b41 0%, rgba(12, 12, 12, 0.3) 80%);

  box-shadow: 0px 4px 10px 0px rgba(79, 140, 87, 0.25);
}
.quick_menu .icon {
  /* padding: 8px; */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(149deg, #6e7685 12.74%, #292b30 84.83%);
  transition: 0.45s;
}
.quick_item a {
  display: flex;
  align-items: center;
  padding: 10px 9px;
}
.quick_item .txt {
  width: 0;
  transition: 0.45s;
  overflow: hidden;
  color: #fff;
  font-family: 'Pretendard';
  font-size: 16px;
  font-weight: 700;
  line-height: 1;

  margin-left: 0;
}
.quick_item .txt p {
  white-space: nowrap;
  font-family: 'Pretendard';
}
.quick_item a:hover {
  padding: 10px 24px 10px 9px;
}
.quick_item a:hover .icon {
  background: linear-gradient(149deg, var(--color-primary-medium) 12.74%, var(--color-primary-dark) 84.83%);
}
.quick_item a:hover .txt {
  width: var(--width);
  margin-left: 10px;
}
.quick_menu_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .quick_menu_wrap {
    top: auto;
    transform: translate(0);
    bottom: 20vw;
    transition: 0.45s;
  }
  .quick_menu_wrap.up {
    bottom: 260px;
  }
  .quick_menu_btn {
    width: 45px;
    height: 45px;
    border-radius: 999px;
    background: linear-gradient(149deg, var(--color-primary-medium) 12.74%, var(--color-primary-dark) 84.83%);
    /* display: flex; */
    display: none;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 0;
    margin-left: auto;
    margin-top: 18px;
  }
  .quick_menu_btn img {
    transition: 0.45s;
  }
  .quick_menu_wrap.on .quick_menu_btn .open {
    transform: scale(1);
  }
  .quick_menu_wrap .quick_menu_btn .open {
    transform: scale(0);
    position: absolute;
  }
  .quick_menu_wrap.on .quick_menu_btn .close {
    transform: scale(0);
    position: absolute;
  }
  .quick_menu {
    opacity: 1;
    transition: 0.45s;
    transition-delay: height 0.45s;
    pointer-events: auto;
    gap: 10px;
    transform: translateY(0px);
    position: absolute;
    bottom: 65px;
    right: 0;
    /* height: 0; */
    /* overflow: hidden; */
  }
  .quick_menu a {
    padding: 6px 16px 6px 6px;
    gap: 10px;
  }
  .quick_item a:hover {
    padding: 6px 16px 6px 6px;
  }
  .quick_menu_wrap.on .quick_menu {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    /* height: 206px; */
    /* overflow: hidden; */
  }
  .quick_menu .icon {
    padding: 6px;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    background: linear-gradient(149deg, var(--color-primary-medium) 12.74%, var(--color-primary-dark) 84.83%);
  }
  .quick_menu .icon img {
    width: 18px;
  }
  .quick_item .txt {
    width: fit-content;
    /* width: var(--width); */
    /* margin-left: 10px; */
    font-size: 13px;
    text-align: right;
    overflow: visible;
  }
  .quick_item .txt p {
    font-size: 13px;
    /* width: 100%; */
  }
  .quick_item a:hover .txt {
    width: fit-content;
    margin-left: 0;
  }
}
/* top버튼 */
.go_top {
  position: fixed;
  right: 5vw;
  bottom: 100px;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  z-index: 999;
}

/* footer */
.footer .pri_wrap {
  display: flex;
  justify-content: center;
  border-top: 1px solid #474747;
  background: #272727;
}
.footer .pri_wrap li a {
  display: block;
  box-sizing: border-box;
  padding: 16px 23px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
}
.footer .pri_wrap li:not(:last-child) a {
  border-right: 1px solid #474747;
}
.footer_t {
  background: #212121;
  padding: 60px 0;
  color: #fff;
}
.footer_t .w_1360 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_t .time_wrap {
  max-width: 400px;
}
.footer_t .time p {
  color: #a9a9a9;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.8px;
}
.footer_t .time h3 {
  font-size: 24px;
  font-weight: 400;
  color: #4d9d53;
  line-height: 150%;
  margin-bottom: 12px;
}
.footer_t .time .tit {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}
.footer_t .time ul {
  margin-bottom: 12px;
}
.footer_t .time ul li {
  display: flex;
  gap: 20px;
}
.footer_t .time ul li b {
  font-size: 20px;
  height: 30px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 4px;
  display: block;
  min-width: 90px;
  text-align: justify;
}
.footer_t .time ul li b::after {
  content: '';
  display: inline-block;
  width: 100%;
}
.footer_t .time ul li span {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 1px;
}
.footer_t .time ul li .small {
  font-size: 15px;
}
.footer_t .time_n1,
.footer_t .time_1 {
  margin-bottom: 16px;
}
.footer_t .time_n1 a {
  color: #fff;
  font-family: 'NEXON Lv1 Gothic OTF';
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 42px */
  letter-spacing: 3px;
}
.footer_t .time_2 a {
  border-radius: 50px;
  background: #343434;
  color: #fff;
  font-family: Pretendard;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  box-sizing: border-box;
  width: fit-content;
}
.footer_t .time_2 a::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: url('/img/common/naver.png') center center / 100% no-repeat;
}
.footer_t .map_wrap {
  width: 52%;
}
.footer_t .map_wrap img {
  width: 100%;
  border-radius: 20px;
}
.footer_b {
  border-top: 1px solid #474747;

  background: #171717;
  padding: 40px 0 120px;
}
.footer_b .w_1360 {
  display: flex;
  gap: 5.2vw;
}
.footer_b .f_info {
}
.footer_b .f_info ul {
  display: flex;
  column-gap: 10px;
  row-gap: 3px;
  flex-wrap: wrap;
}
.footer_b .f_info ul li {
  color: #ccc;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.64px;
  line-height: 1.3;
}
.footer_b .f_info ul li:not(:last-child)::after {
  content: '|';
  color: #ccc;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.64px;
  margin-left: 10px;
}
.footer_b .f_info ul:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .go_top {
    bottom: 10vw;
    transition: 0.45s;
  }
  .go_top.up {
    bottom: 200px;
  }
  .footer .pri_wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0 8px;
  }
  .footer .pri_wrap li a {
    padding: 11px 10px;
    text-decoration: underline;
    font-size: 14px;
    letter-spacing: 0.7px;
  }
  .footer .pri_wrap li:not(:last-child) a {
    border-right: 0;
  }
  .footer_t {
    padding: 40px 0;
  }
  .footer_t .w_1360 {
    flex-direction: column;
    gap: 40px;
  }
  .footer_t .time_wrap {
    max-width: unset;
  }
  .footer_t .map_wrap {
    width: 100%;
  }
  .footer_t .time_n1,
  .footer_t .time_1 {
    margin-bottom: 16px;
  }
  .footer_t .time h3 {
    font-size: 20px;
  }
  .footer_t .time .tit {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  .footer_t .time ul li b {
    font-size: 14px;
    letter-spacing: 2.8px;
    min-width: 63px;
  }
  .footer_t .time ul li span {
    font-size: 14px;

    letter-spacing: 0.7px;
  }
  .footer_t .time p {
    font-size: 12px;
    letter-spacing: 0.6px;
  }
  .footer_t .time_2 a {
    font-size: 16px;
  }
  .footer_b .w_1360 {
    flex-direction: column;
    gap: 40px;
  }
  .footer_b .f_logo {
    max-width: 120px;
  }
  .footer_b .f_logo img {
    width: 100%;
  }
  .footer_b .f_info ul li {
    font-size: 12px;
    letter-spacing: -0.48px;
  }
  .footer_b .f_info ul li:not(:last-child)::after {
    font-size: 12px;
  }
  .footer_b .f_info ul:not(:last-child) {
    margin-bottom: 6px;
  }
  .footer_b {
    padding: 40px 0 150px;
  }
}

/* 빠른상담 */
.inquiry {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  color: #fff;
  z-index: 9999;
  /* padding: 20px 0; */
}
.inquiry .w_1360 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inquiry .tel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  padding-right: 1.5vw;
}
.inquiry .tel::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background: url('/img/common/inquiry_tel.png') center center / 100% no-repeat;
}
.inquiry .input_wrap {
  display: flex;
  gap: 10px;
  flex: 1;
  padding-right: 10px;
}
.inquiry .input_box {
  flex: 1;
}
.inquiry .input_box input,
.inquiry .input_box select {
  display: block;
  width: 100%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  border: none;
  box-sizing: border-box;
  color: #fff;
  font-family: Pretendard;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.inquiry .input_box select option {
  color: #333;
  text-align: center;
}
.inquiry .input_box input::placeholder {
  color: #fff;
  font-family: Pretendard;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.inquiry .button_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.inquiry .button_wrap .check_box {
  display: flex;
  align-items: center;
  gap: 6px;
}
.inquiry .button_wrap .check_box label {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.inquiry .button_wrap .check_box input {
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
}
.inquiry .button_wrap .check_box input:checked {
  background: url('/img/common/inquiry_check.png') center center / 100% 100%
    no-repeat;
  border: 1px solid var(--color-primary-dark);
}
.inquiry .button_wrap .check_box span,
.inquiry .button_wrap .check_box a {
  color: #fff;
  font-family: Pretendard;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}
.inquiry .button_wrap button {
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  background: linear-gradient(149deg, var(--color-primary-medium) 12.74%, var(--color-primary-dark) 84.83%);
  line-height: 150%;
  border: none;
  padding: 12px 15px;
  box-sizing: border-box;
}
.inquiry .m_btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .inquiry {
    padding: 10px 0;
    transform: translateY(100%);
    transition: 0.45s;
  }
  .inquiry.on {
    transform: translateY(0);
  }
  .inquiry .m_btn {
    cursor: pointer;
    display: block;
    overflow: hidden;
    position: absolute;
    width: 136px;
    height: 36px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0px 0px;
    background: linear-gradient(149deg, var(--color-primary-medium) 12.74%, var(--color-primary-dark) 84.83%),
      var(--Color, var(--color-primary));
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.8px;
  }
  .inquiry .m_btn span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 24px;
    position: absolute;
    z-index: 1;
  }
  .inquiry .m_btn span:before {
    content: '';
    display: block;
    width: 20px;
    height: 18px;
    background: url('/img/common/inquiry_icon.png') center center / 100%
      no-repeat;
  }
  .inquiry .w_1360 {
    flex-direction: column;
    gap: 10px;
  }
  .inquiry .tel {
    font-size: 20px;
  }
  .inquiry .tel::before {
    width: 26px;
    height: 26px;
  }
  .inquiry .input_box input,
  .inquiry .input_box select {
    padding: 6px 15px;
    font-size: 14px;
  }
  .inquiry .input_box input::placeholder {
    font-size: 14px;
  }
  .inquiry .button_wrap {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .inquiry .button_wrap .check_box label {
    flex-direction: row;
    gap: 5px;
  }
  .inquiry .button_wrap button {
    font-size: 16px;
    padding: 6px 15px;
    width: 100%;
    max-width: 350px;
  }
  .inquiry .button_wrap .check_box span,
  .inquiry .button_wrap .check_box a {
    font-size: 12px;
  }
  .inquiry .m_btn_bg {
    display: flex;
    width: 100%;
    height: 100%;
    animation: bgflow 1s linear infinite forwards;
  }
}
@keyframes bgflow {
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 768px) {
  .inquiry {
    border-radius: 30px 30px 0 0;
    transform: translateY(0);
    padding: 20px 0 10px;
  }
  .inquiry.on {
    transform: translateY(0);
  }
  .inquiry .m_quick {
    transition: 0.3s;
    height: 63px;
  }
  .inquiry.change .m_quick {
    height: 0;
    opacity: 0;
    overflow: hidden;
  }
  .m_quick ul {
    display: flex;
    justify-content: center;
    gap: 25px;
  }
  .m_quick ul li .icon {
    margin: 0 auto 10px;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background: linear-gradient(149deg, var(--color-primary-medium) 12.74%, var(--color-primary-dark) 84.83%);
  }
  .m_quick ul li p {
    font-family: Pretendard;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
  }
  .inquiry form {
    transition: 0.3s;
    height: 151px;
  }
  .inquiry.on form {
    height: 0;
    opacity: 0;
    overflow: hidden;
  }
}

/* 비급여,개인정보 처리방침,환자의 의무와권리 */

.required_info_se {
  padding: 100px 0;
}

.required_info_se .cont_01 .tab_menu2 {
  display: flex;
  gap: 20px;
}

.sub_title_box h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  padding-bottom: 40px;
  line-height: 70px;
  font-family: var(--font-noto-sans-kr), sans-serif;
  border-bottom: solid 1px #a9c9f2;
  margin-bottom: 20px;
}

.obligations_box h3 {
  font-family: var(--font-noto-sans-kr), sans-serif;
  font-size: 30px;
  line-height: 40px;
  color: #a9c9f2;
  font-weight: 700;
  margin-bottom: 30px;
}

.required_info_se .cont_01 .tab_menu2 li {
  font-size: 20px;
  font-family: var(--font-noto-sans-kr), sans-serif;
  line-height: 30px;
  font-weight: 500;
  color: #a9c9f2;
  border-bottom: none;
  cursor: pointer;
}

.required_info_se .cont_01 .tab_menu2 li:hover {
  border-bottom: solid 2px #a9c9f2;
}

.required_info_se .cont_01 .tab_menu2 li.on {
  color: #222;
  border-bottom: solid 2px #a9c9f2;
}

.w_1350 {
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
}

.obligations_box .small_text {
  font-size: 16px;
  line-height: 25px;
  color: #222;
  margin-bottom: 30px;
  font-family: var(--font-noto-sans-kr), sans-serif;
}

.obligations_box h4 {
  font-family: var(--font-noto-sans-kr), sans-serif;
  font-size: 22px;
  line-height: 30px;
  color: #222;
  font-weight: 600;
  margin-bottom: 20px;
}

.bg_layout {
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25);
  background: #fff;
  padding: 5%;
  box-sizing: border-box;
}

.left_fixed_se {
  background: #ecf4ff;
}

@media screen and (max-width: 1350px) {
  .w_1350 {
    width: 90%;
  }
}

@media screen and (max-width: 900px) {
  .subvs .bgtxt p {
    margin-bottom: 90px;
  }
}

@media screen and (max-width: 768px) {
  .required_info_se {
    padding: 50px 0;
  }

  .sub_title_box h2 {
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 20px;
  }

  .obligations_box h3 {
    font-size: 20px;
    line-height: 30px;
  }
}

.tab_container2 {
  margin-top: 40px;
}

.tab_container2 .table_1 table {
  width: 100%;
  border: solid 1px #a9c9f2;
}

.tab_container2 .table_1 table tr {
}

.tab_container2 .table_1 table th {
  border: solid 1px #a9c9f2;
  padding: 10px 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  background-color: #a9c9f2;
  color: #ccc;
  font-family: var(--font-noto-sans-kr), sans-serif;
}

.tab_container2 .table_1 table td {
  font-size: 16px;
  line-height: 20px;
  padding: 10px 0;
  border: solid 1px #a9c9f2;
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
  color: #333;
  font-family: var(--font-noto-sans-kr), sans-serif;
}

.obligations_box h3 {
  font-size: 30px;
  line-height: 40px;
  color: #333;
  font-weight: 700;
  margin-bottom: 30px;
}

.obligations_box h4 {
  font-size: 22px;
  line-height: 30px;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
}

.obligations_box .small_text {
  font-size: 16px;
  line-height: 25px;
  color: #333;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .tab_container2 .table_1 table th {
    font-size: 16px;
    line-height: 20px;
  }

  .tab_container2 .table_1 table td {
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
  }

  .required_info_se {
    padding-top: 50px 0;
  }

  .obligations_box h3 {
    font-size: 20px;
  }

  .obligations_box .small_text {
    font-size: 14px;
  }

  .obligations_box h4 {
    font-size: 18px;
  }
}

/* ===== Popup Overlay ===== */
.popup_group_1 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999999;
  width: 90%;
  max-width: 1024px;
  color: #212121;
  display: none;
  max-height: 80vh;
}
.popup_group_1::before {
  position: absolute;
  content: '';
  width: 200vw;
  height: 200vh;
  background-color: #00000050;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.group_1_remote_gr {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
}
.group_1_remote_list {
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
  border-left: 1px solid #d9d9d9;
  color: #212121;
}
.group_1_remote_list.on {
  color: #f38200;
  font-weight: 600;
}
.group_1_remote_list:first-child {
  border-left: none;
}
.group_1_bottom_gr {
  width: 100%;
  background-color: rgb(0, 0, 0, 0.8);
  color: #fff;
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close_btn {
  cursor: pointer;
  padding: 0 15px;
  font-size: 14px;
}
.group_1_bottom_gr button {
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  font-size: 14px;
  padding: 0 15px;
  border: none;
}
.group_1_swi_gr {
  height: fit-content;
}
.group_1_swi_gr .swiper {
  height: fit-content;
}
.group_1_swi_gr .swiper ._cover {
  height: 100%;
}
.popup_group_1 .swiper-slide img {
  width: 100%;
}
.popup_group_1 .pop_pc {
  display: block;
}
.popup_group_1 .mb {
  display: none;
}
@media screen and (max-width: 1024px) {
  .popup_group_1 .mb {
    display: block;
  }
  .popup_group_1 .pop_pc {
    display: none;
  }
  .popup_group_1 {
    width: 80%;
    max-width: 500px;
    height: auto;
  }
  .group_1_remote_gr {
    position: absolute;
    bottom: 45px;
    height: 2px;
    z-index: 99;
    display: flex;
    gap: 5px;
    justify-content: center;
  }
  .group_1_remote_list {
    height: 100%;
    width: 15px;
    opacity: 0.6;
  }
  .group_1_remote_list.on {
    opacity: 1;
  }
  .group_1_swi_gr {
    height: auto;
  }
}
