/* --------------------------------- reset --------------------------------- */

@import url(reset.css);

/* root 변수 */
@import url(variables.css);

/* --------------------------------- reset --------------------------------- */

/* --------------------------------- common --------------------------------- */

html {
  font-size: clamp(10px, calc(10px + (22 - 10) * var(--fluid-280-1920)), 22px);
  font-weight: 500;
  letter-spacing: -1px;
}
html,
body {
  height: 100%;
}
body.scroll-lock {
  overflow: hidden;
  touch-action: none;
}

.wrap {
  position: relative;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-align {
  display: flex;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mx1349 {
  max-width: 1349px;
  margin: 0 auto;
  padding: 0 10px;
}
.fw_light {
  font-weight: 300;
}

.fw_demiLight {
  font-weight: 400;
}
.fw_semibold {
  font-weight: 600;
}
.fw_bold {
  font-weight: 700;
}
.fw_extBold {
  font-weight: 800;
}
.letter_spc50 {
  letter-spacing: -1px;
}
.letter_spc30 {
  letter-spacing: -0.6px;
}
.letter_spc25 {
  letter-spacing: -0.55px;
}
.letter_spc20 {
  letter-spacing: -0.5px;
}

.lineH34 {
  line-height: 1.7;
}

.f_noto_sans {
  font-family: var(--noto-sans);
}

.f-suit {
  font-family: var(--suit);
}
.googleIcon {
  font-family: "Material Icons";
}
.f_64 {
  /* 64 → 28 */
  font-size: clamp(28px, calc(28px + (64 - 28) * var(--fluid-280-1920)), 64px);
}
.f_60 {
  /* 60 → 26 */
  font-size: clamp(26px, calc(26px + (60 - 26) * var(--fluid-280-1920)), 60px);
}
.f_54 {
  /* 54 → 24 */
  font-size: clamp(24px, calc(24px + (54 - 24) * var(--fluid-280-1920)), 54px);
}
.f_50 {
  /* 50 → 22 */
  font-size: clamp(22px, calc(22px + (50 - 22) * var(--fluid-280-1920)), 50px);
}
.f_45 {
  /* 45 → 20 */
  font-size: clamp(35px, calc(35px + (45 - 35) * var(--fluid-280-1920)), 45px);
}
.f_36 {
  /* 36 → 16 */
  font-size: clamp(30px, calc(30px + (36 - 30) * var(--fluid-280-1920)), 36px);
}
.f_32 {
  font-size: clamp(30px, calc(30px + (32 - 30) * var(--fluid-280-1920)), 32px);
}
.f_30 {
  font-size: clamp(25px, calc(25px + (30 - 25) * var(--fluid-280-1920)), 30px);
}
.f_28 {
  font-size: clamp(12px, calc(12px + (28 - 12) * var(--fluid-280-1920)), 28px);
}
.f_26 {
  font-size: clamp(18px, calc(18px + (26 - 18) * var(--fluid-280-1920)), 26px);
}
.f_25 {
  font-size: clamp(
    10.5px,
    calc(10.5px + (25 - 10.5) * var(--fluid-280-1920)),
    25px
  );
}
.f_23 {
  font-size: clamp(10px, calc(10px + (23 - 10) * var(--fluid-280-1920)), 23px);
}
.f_20 {
  font-size: 20px;
}
.f_18 {
  font-size: 18px;
}
.f_17 {
  font-size: 17px;
}
.f_16 {
  font-size: 16px;
}

.lineH80 {
  line-height: 1.65;
}

.lineH24 {
  line-height: 1.35;
}

.mgTop50 {
  margin-top: 50px;
}

.mgTop25 {
  margin-top: 25px;
}
.textCenter {
  text-align: center;
}
.textLeft {
  text-align: left;
}
.maxWfit {
  max-width: fit-content !important;
  padding: 0 10px;
}
.mo_br.pc_br {
  display: block;
}
.mo_br,
.menu_mobile {
  display: none !important;
}

.mainPage > section {
  margin: 0 auto;
  margin-top: 60px;
}

.btn_box {
  text-align: center;
  margin-top: 50px;
}
.detail_btn {
  font-size: 32px;
  font-weight: 600;
  font-family: var(--suit);
  background: #014a98;
  color: #fff;
  width: 330px;
  height: 87px;
  display: inline-block;
  line-height: 87px;
  letter-spacing: -0.3px;
  border: 1px solid #014a98;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  box-sizing: border-box;
}

.detail_btn:hover {
  background: transparent;
  color: #014a98;
}
.right_arrow {
  position: relative;
}
.right_arrow:after {
  font-family: "Material Symbols Outlined";
  font-variation-settings:
    "FILL" 0,
    "wght" 200,
    "GRAD" 0,
    "opsz" 24;
  display: inline-block;
  content: "\f1df";
  /* content:"arrow_forward"; */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  aspect-ratio: 1/1;
  max-width: 35px;
  line-height: 35px;
  width: 100%;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-out 0s;
}
.facebook {
  background: #4268b3;
}

/* --------------------------------- common --------------------------------- */

/* --------------------------------- header --------------------------------- */

header {
  width: 100%;
  height: 123px;
  position: absolute;
  position: sticky;
  font-family: var(--noto-sans);
  will-change: transform;
  transform: translateY(0);
  z-index: 1000;
  border-bottom: 1px solid #c6c6c6;
  top: 0;
  background: #fff;
}

/* 메뉴 열릴 때 스타일 */
header.show {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

/* 헤더 스크롤 시 스타일 */
header.scroll {
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: rgb(255, 255, 255);
}

header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  margin: 0 auto;
  height: 100%;
  column-gap: 20px;
}

/* 메뉴 드롭 배경 */
header::after {
  content: "";
  display: inline-block;
  background-color: #fff;
  position: absolute;
  top: 123px;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease 0s;
}
header.show::after {
  height: 262px;
}

/* 로고 */
.logo {
  max-width: 307px;
  aspect-ratio: 307 / 32;
  width: 100%;
  transition-delay: 0.3s;
  display: flex;
  align-items: center;
}

.logo a {
  display: block;
  background: url("/img/logo/logo.svg") no-repeat center / contain;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}

header > div nav ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
}

/* 주요 메뉴 */
nav[aria-label="주요 메뉴"] {
  width: 60%;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease 0s;
  position: relative;
}
nav[aria-label="주요 메뉴"]:hover .dep2,
header.show .dep2 {
  opacity: 1;
  height: 262px;
  gap: 10px;
  padding: 30px 0;
}
.dep1 {
  position: relative;
  width: 33.333%;
  height: 100%;
  font-weight: var(--bold);
}

.dep1 > a {
  color: #262626;
}

/* 1뎁스 hover, 스타일 */
header.show .dep1:hover > a {
  color: #f87c48;
}

/* 2뎁스 hover, 스타일  */
.dep2 li:hover {
  color: #f87c48;
  font-weight: var(--normal);
}
/* 1뎁스 hover 2뎁스 스타일  */
.dep1:hover .dep2 {
  background: #262943;
  color: #fff;
}

/* 2뎁스 스타일 */
.dep2 {
  justify-content: flex-start;
  top: 100%;
  font-family: var(--noto-sans);
  font-size: 18px;
  letter-spacing: -2px;
  color: #717171;
  line-height: 1.8;
  padding: 15px 0;
  bottom: 50px;
  transform: translateY(1px);
  position: absolute;
  text-align: center;
  background: #fff;
  z-index: 2;
  height: 0;
  padding: 0;
  opacity: 0;
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

.dep2 li {
  width: 100%;
}
.dep2 li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* SNS 모음 */
nav.sns ul {
  column-gap: clamp(10px, 1vw, 20px);
}
.sns li {
  flex: 0 0 calc(40% / 6);
}
.sns img {
  max-width: 23px;
  max-height: 23px;
  object-fit: contain;
  margin: 0 auto;
}

nav.sns ul li {
  max-width: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

nav.sns ul a {
  height: 100%;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.sns ul .facebook img {
  width: 100%;
}

.sns .youtube img,
.sns .blog img {
  width: 50%;
}

header.show .changeColor,
:is(header.scroll, header.brightVar) .changeColor {
  filter: brightness(0.31);
}

/* 우측 메뉴 아이콘 */
.menu {
  row-gap: 5px;
  cursor: pointer;
  display: grid;
  grid-template-rows: repeat(3, 2px);
  box-sizing: border-box;
  line-height: 30px;
}
.menu span {
  display: block;
  width: 27px;
  border-top: 2px solid #464646;
  transition: width 0.3s;
  text-align: left;
  box-sizing: border-box;
  pointer-events: cursor;
}
header.show .menu {
  pointer-events: none;
}
:is(header.scroll, header.brightVar) .menu span {
  border-top: 2px solid #4f4f4f;
}
header.show .menu span {
  border-top: 2px solid #fff;
}

.menu:hover span:nth-of-type(2) {
  width: 20px;
}

.menu:hover span:last-of-type {
  width: 13px;
  text-align: left;
  transform-origin: right;
}

/* --------------------------------- header --------------------------------- */

/* --------------------------------- main --------------------------------- */
/* main01 */
#main01 {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: clamp(17.5px, 1.9vw, 35px);
  margin: clamp(35px, 1.9vw, 60px) auto;
}
#main01 > div {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  width: 70%;
}
#main01 > div .swiper-slide img {
  width: 100%;
  height: 100%;
}
#main01 div:has(.service) {
  background: #f8f8f8;
  height: -webkit-fill-available;
  width: calc(40% - 35px);
  padding: clamp(15px, 1vw, 30px);
}
.banner_nav {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #202322;
  z-index: 10;
  display: flex;
  border-radius: 22px 0 0 0;
  padding: 10px 20px;
  color: #fff;
  font-family: var(--Pretendard);
  font-size: 15px;
  letter-spacing: -1px;
  font-weight: var(--normal);
  gap: 20px;
}
.navi_banner {
  font-size: 15px;
  display: grid;
  align-items: center;
  color: #cdcece;
  font-size: 20px;
  grid-template-columns: repeat(3, 21px);
  gap: 5px;
}
.navi_banner span {
  cursor: pointer;
  display: inline-block;
}
.arrow {
  width: 10px;
  height: 10px;
  border: solid #cdcece;
  border-width: 3px 3px 0 0;
  display: inline-block;
  border-radius: 2px;
}

/* 왼쪽 */
.prev {
  transform: rotate(-135deg) translate(-60%, 60%);
}

/* 오른쪽 */
.next {
  transform: rotate(45deg) translate(20%, -20%);
}
/* 재생멈춤 */
.pause {
  border-left: 3px solid #cecfce;
  border-right: 3px solid #cecfce;
  height: 14px;
  width: 9px;
  margin: 0 auto;
}
.toggle.play {
  position: relative;
}
.toggle.play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 10px solid #bebfbf;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
}
.service li {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 15px;
  aspect-ratio: 128 / 129;
  max-width: 128px;
  width: 100%;
  transition: all 0.3s ease 0s;
  color: #000;
}
.service li:hover {
  background: #273582;
  color: #fff;
}
.service li:hover .icon {
  color: #fff;
}

/* hover 시 svg 배경 스타일 */
.service li:hover .iconHoverFill {
  fill: #273582;
}
.service li a {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: end;
  text-align: center;
  gap: 15px;
  padding: 15px 0;
}
.service li a p {
  font-size: clamp(16px, 1vw, 18px);
  font-family: var(--Pretendard);
  font-weight: 600;
  color: inherit;
  letter-spacing: -2px;
}
.service svg {
  max-height: 54px;
  max-width: 49px;
  width: 33.333%;
  margin: 0 auto;
}
.service svg.move {
  transform: translateX(7px);
}
.banner-swiper {
  height: 100%;
}
.icon {
  color: #514d4e;
}

#main01 h3 {
  text-align: center;
  font-family: var(--Pretendard);
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: -2px;
}

/* 공지사항 스타일 */
.titleBox {
  display: flex;
  position: relative;
  border-bottom: 1px solid #696969;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.title_sub {
  font-size: 20px;
  font-family: var(--noto-sans);
  font-weight: var(--bold);
  color: #ef7d2d;
}
.titleBox .title {
  font-size: var(--f_50);
  font-family: var(--Pretendard);
  font-weight: var(--bold);
  color: #3e3a39;
  letter-spacing: -4px;
}
.more {
  font-size: var(--f_50);
  font-family: var(--Pretendard);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.more a {
  display: inline-block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease 0s;
}
.more:hover a {
  transform: rotate(180deg);
}

.newsBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(30px, 1vw, 60px);
}
.newsBox > div {
  aspect-ratio: 380 / 519;
  max-width: 380px;
  max-height: 519px;
  width: 100%;
  height: 100%;
}
.notice_list {
  width: 70%;
  height: -webkit-fill-available;
}

.notice_list li {
  display: flex;
  gap: 45px;
  font-size: clamp(16px, 1vw, 20px);
  text-align: center;
  font-family: var(--noto-sans);
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
  height: 25%;
  cursor: pointer;
}
.notice_list li a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
}
.notice_tag {
  font-size: clamp(15px, 1vw, 16px);
  padding: clamp(7px, 0.6vw, 10px) clamp(13px, 1.5vw, 20px);
  border-radius: 40px;
  color: #000;
  height: fit-content;
  font-weight: var(--normal);
  width: 95px;
  text-wrap-style: pretty;
}

.notice_list li.active .notice_tag {
  background: #1f4573;
  color: #fff;
}

.notice_txt {
  font-weight: var(--normal);
  color: #000;
  height: fit-content;
  text-align: left;
  width: 100%;
  max-width: 570px;
  transition: all 0.3s ease 0s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.notice_list li:hover .notice_txt {
  color: #ef7d2d;
}
.notice_date {
  font-size: 18px;
  color: #868686;
}

/* 공지 모바일 더보기 버튼 스타일 */
.mo_more {
  text-align: center;
  margin: 0 auto;
}
.mo_more a {
  display: flex;
  background: #1f4b93;
  color: #fff;
  font-family: var(--noto-sans);
  font-weight: var(--normal);
  font-size: 15px;
  letter-spacing: -2px;
  padding: 15px 20px;
  border-radius: 60px;
  margin-top: 10px;
  max-width: 130px;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 20px;
  gap: 5px;
}
.seeIcon {
  position: relative;
  width: 15px;
  display: inline-block;
}
.seeIcon:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid #ffffff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
/* 공지 - 모바일 슬라이드 카드 스타일 */
#main02 .card {
  border: none;
  row-gap: 10px;
  padding-bottom: 20px;
}
#main02 .card a img {
  width: 100%;
  margin: 0 auto;
}

/* 페이지네이션-바 스타일(모바일) */
#main02 .swiper-pagination-progressbar {
  background: #3b3b3b !important;
}
#main02 .swiper-pagination-progressbar-fill {
  background: #f87c48 !important;
}
#main02
  .swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal {
  bottom: 0 !important;
  top: unset !important;
}

#main03 {
  background: url("/img/asset/recuit_bg.jpg") no-repeat center center / cover;
  padding: 100px 0;
}
#main03 .mx1349 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: -webkit-fill-available;
}
.recruit {
  flex-direction: column;
  align-items: flex-start;
  border-bottom: none;
}
.recruit .title_sub {
  position: unset;
}
.recruit .title {
  color: #fff;
  margin-bottom: 30px;
}
.recruit p {
  color: #fff;
  font-family: var(--Pretendard);
  font-size: 25px;
  letter-spacing: -2px;
}
.recruit_list {
  display: flex;
  color: #fff;
  gap: 15px;
}
.recruit_list li {
  border-radius: 13px;
  aspect-ratio: 194 / 164;
  max-width: 194px;
  max-height: 164px;
  width: 100%;
  height: 100%;
  background: #46495f;
  padding: 30px;
  font-family: var(--Pretendard);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -2px;
  transition: all 0.3s ease 0s;
}
.recruit_list li:hover {
  background: #ffffff;
  color: #262943;
}

.recruit_list li a {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
}
.recruit_list li a p:has(.right_icon) {
  margin-top: auto;
  text-align: right;
}
.right_icon {
  background: url(/img/icons/right_icon.svg) no-repeat 0 0 / contain;
  aspect-ratio: 9 / 2;
  max-width: 45px;
  width: 100%;
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.recruit_list li:hover .right_icon {
  filter: brightness(0.31);
  transform: translateX(10%);
}

/* 파트너 */
#main04 {
  padding-top: 40px;
  margin-bottom: 100px;
}
#main04 .titleBox {
  border-bottom: none;
  margin-bottom: 0;
}
.titleBox .partner {
  border-bottom: none;
}
.partnerSlide {
  display: flex;
  gap: 30px;
}
.partnerSwiper {
  align-items: center;
}
.partnerSwiper li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20% !important;
}
.partnerSwiper li img {
  max-height: 38px;
  width: 100%;
  object-fit: contain;
  width: 100%;
  max-width: 170px;
}
#main04 .navi_banner {
  grid-template-columns: repeat(3, 1fr);
}
#main04 .banner_nav {
  position: unset;
  background: none;
  padding-left: 0;
}

#main04 .navi_banner em {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #eff0f5;
  text-align: center;
  display: flex;
  justify-content: end;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
#main04 .navi_banner em:hover {
  border: 1px solid #46495f;
}
#main04 .navi_banner span {
  margin: 0 auto;
}
#main04 .navi_banner span.prev {
  transform: rotate(-135deg);
}
#main04 .navi_banner span.next {
  transform: rotate(45deg);
}
#main04 .arrow,
.pause {
  border-color: #7a7c7f;
}
#main04 .toggle.play::before {
  border-left: 10px solid #7a7c7f;
}

/* main02 */
.mainPage > section#main02 {
  padding-top: 40px;
  margin-bottom: 100px;
}

/* --------------------------------- footer --------------------------------- */
/* 푸터 style */
footer {
  background: #1d212e;
  padding: 65px 0;
}
footer h2 {
  padding-bottom: 30px;
  border-bottom: 1px solid #8b8f99;
  margin-bottom: 30px;
}
footer h2 picture {
  aspect-ratio: 101 / 32;
  max-width: 101px;
  width: 100%;
}
.address {
  font-family: var(--Pretendard);
  letter-spacing: -2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: var(--normal);
}
.address ul {
  color: #cdcfd3;
  font-size: 16px;
}

.siteBox {
  position: relative;
  border-radius: 10px;
  background: #292c39;
  color: #fff;
  font-family: var(--Pretendard);
  letter-spacing: -2px;
  font-size: 20px;
  border: none;
  aspect-ratio: 300 / 50;
  max-width: 300px;
  width: 100%;
  overflow: hidden;
}
.siteBox::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-weight: bold;
  color: #fff;
  font-size: 25px;
}
.site_select {
  appearance: none;
  padding-right: 30px;
  background: inherit;
  border: none;
  width: 100%;
  padding: 10px 20px;
}
.site_select:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.site_select option {
  background: inherit;
  color: inherit;
}

@media (max-width: 1480px) {
  #f_info .fWidth {
    padding: 80px 10px;
  }
  #f_info .fWidth > div:nth-of-type(1) {
    width: calc(40% - 50px);
  }
  #f_info .fWidth > div:nth-of-type(3) {
    width: calc(60% - 50px);
    justify-content: flex-start;
    column-gap: 30px;
  }
  div[aria-label="푸터 메뉴"] nav,
  .f_address {
    padding: 50px 10px;
  }
}

@media (max-width: 1411px) {
  .f_address ul li,
  div[aria-label="푸터 메뉴"] nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 10px;
  }
  div[aria-label="푸터 메뉴"] nav ul:not(.f_sns) li a {
    flex-wrap: wrap;
    font-size: 16px;
  }
}

@media (max-width: 1222px) {
  .lineH24 {
    line-height: 1.25;
  }
  .mgTop50 {
    margin-top: 5px;
  }
  .mgTop25 {
    margin-top: 15px;
  }
}
@media (max-width: 1114px) {
  header::before {
    width: 19%;
  }
}

@media (max-width: 1024px) {
  .mainPage > section {
    margin-top: 30px;
  }
  /* 상단 배너 */
  #main01 {
    flex-direction: column;
    gap: 65px;
    margin-top: 35px;
  }
  #main01 > div,
  #main01 div:has(.service) {
    width: 100%;
    height: 100%;
  }
  .service li {
    max-width: unset;
  }
  .service li a {
    justify-content: center;
  }
  #main01 div:has(.service) {
    background: none;
    padding: 0;
    width: 100%;
  }
  .service {
    background: #f8f8f8;
    height: auto;
    width: 100%;
    padding: clamp(15px, 1vw, 30px);
    border-radius: 22px;
  }
  .service li div {
    height: 100%;
    max-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #main01 h3 {
    font-size: 36px;
    font-weight: var(--bold);
    color: #000;
    letter-spacing: -4px;
    margin-bottom: 30px;
  }
  .service li {
    max-width: unset;
  }

  /* 공지사항 */
  .titleBox {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    border-bottom: none;
  }
  .title_sub {
    /* position: unset; */
    font-size: 18px;
    font-weight: 900;
  }
  .titleBox .title {
    font-size: 36px;
    margin-bottom: 35px;
  }
  .more {
    display: none;
  }

  /* recruit */
  #main03 {
    aspect-ratio: unset;
    padding: 60px 0;
  }
  #main03 .mx1349 {
    padding: clamp(15px, 2vw, 30px);
    height: 100%;
  }
  .recruit,
  .recruit_list {
    padding: 0 10px;
    justify-content: center;
  }
  .recruit .title {
    margin-bottom: 35px;
  }
  #main03 figure.mo_br img {
    width: 100%;
  }

  /* 파트너 */
  #main04 {
    margin-bottom: 35px;
  }
  #main04 .title_sub {
    color: #ef7d2d;
  }
  .partnerSlide {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .partnerSlide li {
    width: 33.333% !important;
  }

  nav[aria-label="주요 메뉴"],
  nav.sns,
  header::before,
  header.show nav[aria-label="상단 퀵메뉴"] {
    display: none;
  }
  .logo {
    max-width: 161px;
    aspect-ratio: 161 / 16;
    width: 100%;
    height: 70px;
    display: flex;
    z-index: 100;
    margin: 0 auto;
  }
  header.show .logo {
    margin: 0 auto;
  }
  header {
    height: 70px;
    border-bottom: none;
  }

  header > div {
    width: 100%;
    height: auto;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }
  .dep1:hover > a:after {
    transform: rotate(-90deg);
  }
  .dep1:hover .dep2 {
    background: #ffffff;
    color: #000000;
  }

  nav[aria-label="주요 메뉴"] {
    height: 0;
    overflow: hidden;
    opacity: 0;
  }
  header.show nav[aria-label="주요 메뉴"] {
    height: auto;
    opacity: 1;
  }
  nav[aria-label="주요 메뉴"]:hover .dep2,
  header.show .dep2 {
    padding: 0;
    height: auto;
  }
  .dep2 li {
    color: #000;
  }
  .dep2 li:hover {
    color: #323276;
    background: #f9f9f9;
  }
  .dep2 li:hover a:before {
    color: #323276;
  }

  .menu {
    grid-template-rows: repeat(3, 3px);
    transition: all 0.3s ease 0s;
    left: 10px;
    top: 23px;
    position: absolute;
  }
  .menu span {
    border-top: 3px solid #000000;
    width: 30px;
  }

  header.show .menu {
    width: 23px;
    height: 23px;
    z-index: 100;
    right: 20px;
    left: unset;
  }
  header.show .menu:hover {
    transform: rotate(180deg);
  }
  header.show .menu:hover span:nth-of-type(2) {
    width: 30px;
  }
  nav.sns {
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  nav.sns ul li:not(.facebook) {
    display: none;
  }

  header.show {
    /* height: calc(100vh + 48px); */
    height: 100vh;
    top: 110px;
    box-sizing: content-box;
  }
  header.show nav[aria-label="주요 메뉴"] {
    display: block;
    width: 100%;
  }

  header.show::after {
    top: 0;
    width: 100%;
    height: 100vh;
  }
  /* 모바일 메뉴 스타일 */
  header .mx1349 {
    padding: 0;
  }
  nav[aria-label="주요 메뉴"] {
    display: block;
    background: #ffffff;
    width: 100%;
    z-index: 10;
    border-top: 1px solid #dedede;
  }
  .dep1 > a,
  header.show .dep1 > a {
    height: 50px;
    line-height: 50px;
    padding-left: 25px;
    display: inline-block;
    width: 100%;
    text-align: left;
    color: #000000;
    font-size: 16px;
  }
  .dep1 {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: baseline;
    position: relative;
    border-bottom: 1px solid #dedede;
  }
  .dep1 > a:after,
  .dep2 a:before {
    content: "\e5cc";
    display: inline-block;
    right: 20px;
    position: absolute;
    color: #434343;
    font-size: 20px;
    font-family: "Material Icons";
  }
  .dep1 > a:after {
    transform: rotate(90deg);
  }
  .dep2 a:before {
    left: 30px;
    right: unset;
  }
  .dep2 a:hover:before {
    color: #1f286f;
  }
  .dep1:hover > a:after {
    color: #fff;
    font-weight: 500;
  }
  .dep1:hover {
    background: #323276;
    color: #fff;
  }
  header.show .dep1:hover > a {
    color: #fff;
  }

  .dep1 > a,
  header.show .dep1 > a {
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
    display: inline-block;
    width: 100%;
    text-align: left;
    color: #434343;
  }
  header.show .dep2,
  .dep2 {
    position: relative;
    flex-direction: column;
    position: unset;
    align-items: flex-start;
    background: #ececec;
    border-top: 1px solid #bbbbbb;
    border-right: none;
    padding: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out 0s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  .dep1:hover:after {
    display: none;
  }

  /* header.show .dep1:hover .dep2, */
  .dep1:hover .dep2 {
    color: #194d99;
    height: auto;
    max-height: 500px;
    height: auto;
  }
  .dep2 {
    gap: 0;
  }
  .dep2 li {
    text-align: left;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #bbbbbb;
    padding: 0;
    font-weight: var(--normal);
  }
  .dep2 a {
    font-size: 15px;
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%;
    line-height: 50px;
    padding-left: 60px;
  }
  header > div nav ul {
    flex-direction: column;
    align-items: flex-start;
    font-size: 16px;
  }
  header.show .menu span {
    border-top: 2px solid #323276;
    transform-origin: center;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  header.show .menu span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  header.show .menu span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  header.show .menu span:nth-child(3) {
    display: none;
  }
  header.show .menu {
    pointer-events: auto;
  }

  nav[aria-label="푸터 메뉴"] ul {
    justify-content: center;
    font-size: 20px;
  }

  /* 푸터 */
  #f_info .fWidth {
    padding: 20px 10px;
  }
  #f_info,
  #hospitals,
  .f_address,
  div[aria-label="푸터 메뉴"] nav {
    padding: calc(12.5px + (12.5 - 0) * ((100vw - 280px) / (1920 - 280)))
      calc(10px + (220 - 110) * ((100vw - 280px) / (1920 - 280)));
  }
  #f_info .fWidth,
  .f_infos {
    row-gap: 15px;
  }
  .f_map_info p {
    padding-left: 15px;
  }
  div[aria-label="푸터 메뉴"] nav .empty {
    display: none;
  }
  div[aria-label="푸터 메뉴"] nav ul.f_sns {
    transform: translateY(0);
    position: unset;
    width: 100%;
    margin-left: unset;
    justify-content: center;
  }

  div[aria-label="푸터 메뉴"] nav ul {
    margin-left: 0;
    flex-wrap: wrap;
    color: #f2f2f2;
    justify-content: center;
  }
  div[aria-label="푸터 메뉴"] nav ul:not(.f_sns) li a {
    border-right: 1px solid #f2f2f2;
    padding-left: 0;
    padding-right: 10px;
  }
  .f_address,
  .f_address ul,
  .f_address .f-suit {
    flex-direction: column;
    align-items: flex-start;
  }
  .f_address h2 {
    width: 30%;
    margin-bottom: 10px;
  }
  .f_address .f-suit {
    font-size: 14px;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 10px;
  }
  .f_address ul {
    row-gap: 30px;
    width: 100%;
  }
  .f_name,
  .f_hospital {
    grid-column: 1;
  }
  .f_hospital {
    grid-column: 1;
    grid-row: 1;
  }
  .f_address address {
    grid-row: 2;
    grid-column: 2;
  }
  .f_num {
    grid-row: 3;
    grid-column: 1 / 3;
  }
  .f_call,
  .f_fax {
    grid-row: 4;
  }
  .f_address ul li,
  .f_address ul li:nth-of-type(2) {
    font-size: 14px;
    color: #b5b5b5;
    font-weight: 500;
  }
  .f_address .f-suit,
  .f_address strong {
    color: #cdcdcd;
  }
  #f_info .fWidth > div:nth-of-type(3) {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .pc_br,
  .f_sns {
    display: none;
  }
  .mo_br {
    display: block !important;
  }
  .mainPage > section:not(#main01) {
    padding: 35px 0;
    margin-bottom: 35px;
  }

  header {
    top: 0;
  }

  header.show {
    top: 0;
  }
  header.show .dep2,
  .dep2 {
    font-size: 15px;
  }

  header.show .m_bottom_menu {
    display: grid;
    grid-template-columns: 50% 50%;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 58px;
    z-index: 2;
  }
  .flex-column {
    flex-direction: row;
  }

  #main01 > div,
  .bannerSwiper {
    height: 100%;
  }
  /* .bannerSwiper {
    aspect-ratio: 340 / 514;
  } */

  /* 공지 768px 스타일 */
  :is(.notice_txt, .notice_tag, .notice_date) {
    font-family: var(--noto-sans);
    font-weight: var(--normal);
  }
  :is(.notice_txt, .notice_tag) {
    font-size: clamp(18px, 3vw, 35px);
  }
  .notice_txt {
    color: #121212;
    width: 80%;
  }
  .notice_tag {
    color: #1f4573;
    padding: 0;
  }
  .notice_date {
    font-size: clamp(16px, 3vw, 30px);
    color: #868686;
  }

  .partnerSlide li {
    width: 50% !important;
  }
  #main03 {
    background: none;
    background-color: #05082e;
    aspect-ratio: unset;
    padding: 60px 0 !important;
  }
  #main03 .mx1349 {
    padding: clamp(15px, 2vw, 30px) 0;
  }
  .recruit_list {
    flex-direction: column;
  }
  .recruit_list li {
    max-width: unset;
    max-height: unset;
    padding: 15px 25px;
    aspect-ratio: unset;
    font-size: 18px;
  }
  .recruit_list li a {
    flex-direction: row;
    justify-content: space-between;
  }
  .recruit_list li a p:has(.right_icon) {
    max-width: 45px;
    width: 100%;
  }
  .recruit p {
    font-size: 26px;
    font-weight: var(--bold);
    text-align: center;
    letter-spacing: -4px;
    line-height: 130%;
    font-family: var(--noto-sans);
  }
  .titleBox {
    margin-bottom: 35px;
    gap: 10px;
  }

  #main02 .titleBox {
    padding-bottom: 0;
    margin-bottom: 10px;
  }
  .titleBox.recruit {
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  /* 하단 푸터 스타일 */
  .address {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 30px;
    color: #7f7f7f;
    font-weight: var(--semiLight);
  }
  .siteBox {
    background: #4e4e4e;
    font-size: 16px;
    aspect-ratio: 300 / 40;
  }
  .siteBox::after {
    right: 20px;
  }
  .site_select {
    padding: 8px 20px;
  }
  @media (max-width: 443px) {
    .service {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 425px) {
    .logo {
      transition: all 0.3s ease 0s;
    }
    nav[aria-label="푸터 메뉴"] ul {
      font-size: 14px;
    }
  }
}
