@charset "UTF-8";
[data-overflowFlag=on] {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
a,
span,
div,
i,
input,
button,
select,
option,
textarea,
pre,
p {
  line-height: 1.3;
  font-weight: 500;
  font-family: "suite", Dotum, 돋움, Helvetica, "Apple SD Gothic Neo", sans-serif;
}

a:focus-visible,
button:focus-visible {
  -webkit-box-shadow: 0 0 0 3px #666;
  box-shadow: 0 0 0 3px #666;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #1d203a;
  opacity: 0;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
body .non-mobile {
  display: none;
}
@media (min-width: 1081px) {
  body .non-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background-color: #fff;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body .non-mobile h1 {
    font-size: 42px;
    text-align: center;
    font-weight: bold;
    color: #000;
    line-height: 1.6;
  }
}

/* .img {
    background-image: url("../images/first.png");
    width : 1080px;
    height : 2316px;
} */
main.wrap {
  width: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  height: auto;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  background-color: #1d203a;
}
@media (min-width: 1081px) {
  main.wrap {
    display: none;
  }
}

.backButtonWrap {
  width: 100%;
  height: 8%;
  min-height: 15vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

button.btn-back {
  width: 4.2592592593vw;
  height: 4.2592592593vw;
  display: block;
  background-image: url("../images/btn-back.png");
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 5.5555555556vw;
}

.btn-ok {
  width: 100%;
  height: 13.5185185185vw;
  border-radius: 2.7777777778vw;
  background-color: #2842bb;
  color: #fff;
  font-weight: 900;
  font-size: 4.8148148148vw;
}

.btn-next {
  width: 100%;
  height: 13.5185185185vw;
  border-radius: 2.7777777778vw;
  background-color: #2842bb;
  color: #fff;
  font-weight: 900;
  font-size: 4.8148148148vw;
}

.commonBtnWrap {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.commonBtnWrap.posiRelative {
  position: relative;
  padding-bottom: 3.7037037037vw;
  padding-top: 2.7777777778vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3vw;
}
.commonBtnWrap .btn {
  width: 100%;
  height: 13.5185185185vw;
  border-radius: 2.7777777778vw;
  background-color: #2842bb;
  color: #fff;
  font-weight: 900;
  font-size: 4.8148148148vw;
}
.commonBtnWrap .btn.red {
  background-color: #bb2828;
}
.commonBtnWrap .btn.half {
  width: 49%;
}

.userInfoWrap {
  width: 100%;
  height: 14.3518518519vw;
  min-height: 14.3518518519vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.8518518519vw 0vw;
  background-color: #fff;
  position: fixed;
  bottom: 0;
  z-index: 9999;
  border-top: 0vw solid #d4d4d4;
  -webkit-box-shadow: 0px -3px 20px 0px #d4d4d4;
          box-shadow: 0px -3px 20px 0px #d4d4d4;
}
.userInfoWrap .box {
  width: 21.2962962963vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.userInfoWrap .box .announcement-count,
.userInfoWrap .box .supportManagement-count {
  position: absolute;
  width: 5vw;
  font-size: 2.5925925926vw;
  font-weight: 900;
  background-color: #2842bb;
  border-radius: 2vw;
  top: -2vw;
  right: 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding-top: 0.1vw;
  height: 3.6vw;
}
.userInfoWrap .box i {
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  display: block;
}
.userInfoWrap .box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1vw;
}
.userInfoWrap .box a i.home {
  background-image: url("../images/nav-icon1.png");
}
.userInfoWrap .box a i.search {
  background-image: url("../images/nav-icon2.png");
}
.userInfoWrap .box a i.announcement {
  background-image: url("../images/nav-icon3.png");
}
.userInfoWrap .box a i.mypage {
  background-image: url("../images/nav-icon4.png");
}
.userInfoWrap .box a i.announcementSearch {
  background-image: url("../images/nav-icon5.png");
}
.userInfoWrap .box a i.supportManagement {
  background-image: url("../images/nav-icon6.png");
}
.userInfoWrap .box a i.chatlist {
  background-image: url("../images/nav-icon6.png");
}
.userInfoWrap .box a span {
  font-size: 2.962962963vw;
  color: #ababab;
  text-align: center;
  display: block;
}
.userInfoWrap .box a.active span {
  color: #2842bb;
  font-weight: bold;
}
.userInfoWrap .box a.active .announcement-count,
.userInfoWrap .box a.active .supportManagement-count {
  color: #fff;
}
.userInfoWrap .box a.active i.home {
  background-image: url("../images/nav-icon1-on.png");
}
.userInfoWrap .box a.active i.search {
  background-image: url("../images/nav-icon2-on.png");
}
.userInfoWrap .box a.active i.announcement {
  background-image: url("../images/nav-icon3-on.png");
}
.userInfoWrap .box a.active i.mypage {
  background-image: url("../images/nav-icon4-on.png");
}
.userInfoWrap .box a.active i.announcementSearch {
  background-image: url("../images/nav-icon5-on.png");
}
.userInfoWrap .box a.active i.supportManagement {
  background-image: url("../images/nav-icon6-on.png");
}
.userInfoWrap .box a.active i.chatlist {
  background-image: url("../images/nav-icon6-on.png");
}

.nav {
  width: 100%;
  min-height: 15vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4.6296296296vw 4.4444444444vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 99;
  background: #1d203a;
}
.nav__topMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.nav__topMenu__leftBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2vw;
}
.nav__topMenu__leftBox img {
  width: 6.9444444444vw;
  height: 6.9444444444vw;
  border-radius: 50%;
  border: 0.2777777778vw solid #fff;
}
.nav__topMenu__leftBox h3 {
  font-size: 5vw;
  font-weight: 900;
  color: #fff;
}
.nav__topMenu__leftBox .locationSelectBox {
  width: auto;
  max-width: 66.6666666667vw;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 4.6296296296vw;
  font-weight: 900;
  color: #1d203a;
  position: relative;
  background: url(../images/icon-bigSort-black.png) no-repeat right 1.7vw;
  background-size: 3.7037037037vw 2.037037037vw;
  padding-right: 6vw;
}
.nav .btn-recruitment-registration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 4.6296296296vw auto 0;
  width: 79.6296296296vw;
  height: 16.6666666667vw;
  background-color: #333653;
  font-size: 5.5555555556vw;
  font-weight: bold;
  color: #abafc1;
  border-radius: 2.7777777778vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav .searchBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav .searchBox input {
  width: 100%;
  margin-top: 3.7962962963vw;
  border-radius: 2.7777777778vw;
  border: 0;
  height: 12.7777777778vw;
  padding-left: 12vw;
  position: relative;
  color: #1d203a;
  font-size: 3.7037037037vw;
  padding-right: 20vw;
}
.nav .searchBox input::-webkit-input-placeholder {
  color: #9c9c9c;
}
.nav .searchBox input::-moz-placeholder {
  color: #9c9c9c;
}
.nav .searchBox input:-ms-input-placeholder {
  color: #9c9c9c;
}
.nav .searchBox input::-ms-input-placeholder {
  color: #9c9c9c;
}
.nav .searchBox input::placeholder {
  color: #9c9c9c;
}
.nav .searchBox input#searchBox {
  content: "";
  background: url(../images/icon-loupe.png) no-repeat 5vw center;
  background-size: 4.6296296296vw 4.6296296296vw;
  background-color: #f2f2f2;
}
.nav .searchBox--btn-filter {
  width: auto;
  background: url(../images/icon-filter.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 5vw;
  color: #2842bb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 8.5vw;
  height: 3.8888888889vw;
  font-size: 3.7037037037vw;
}
.nav .searchBox--btn-filter::after {
  content: "필터";
  padding-left: 6vw;
}
.nav .icon-pin {
  content: "";
  display: inline-block;
  width: 5.1851851852vw;
  height: 6.4814814815vw;
  background: url(../images/icon-pin.png) no-repeat;
  background-size: contain;
}

.commonContents {
  width: 100%;
  height: 92vh;
  max-height: 92vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 4.6296296296vw 4.6296296296vw 0 0;
  padding: 9.2592592593vw 6.4814814815vw 23.1481481481vw;
}

.btn-hamburgerMenu {
  display: inline-block;
  width: 4.1666666667vw;
  height: 3.7962962963vw;
  background: url(../images/btn-menu.png) no-repeat;
  background-size: 4.1666666667vw 3.7962962963vw;
}

.btn-alarm {
  display: inline-block;
  width: 7.7vw;
  height: 7.7vw;
  background: url(../images/alarm.svg) no-repeat;
  background-size: 7.7vw 7.7vw;
  margin-left: auto;
  margin-right: 4vw;
}

.btn-alarm2 {
  display: inline-block;
  width: 7.7vw;
  height: 7.7vw;
  background: url(../images/alarm2.svg) no-repeat;
  background-size: 7.7vw 7.7vw;
  margin-left: auto;
  margin-right: 4vw;
}

.btn-registration-isBottom {
  width: 21.2962962963vw;
  height: 10.5555555556vw;
  background: url(../images/btn-registration.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -14vw;
  right: 5vw;
  text-indent: -9999px;
  font-size: 0;
  display: none;
}

.btn-filter-isBottom {
  width: 22.2222222222vw;
  height: 10.5555555556vw;
  background: url(../images/btn-filter.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -14vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-indent: -9999px;
  font-size: 0;
  display: none;
}

.mb30 {
  margin-bottom: 2.7777777778vw;
}

.mb90 {
  margin-bottom: 8.3333333333vw;
}

i.asterisk {
  content: "";
  display: inline-block;
  background: url(../images/icon-asterisk.png) no-repeat;
  background-size: contain;
  width: 2.1296296296vw;
  height: 2.3148148148vw;
  margin-bottom: 1vw;
}

.headerMenuWrap {
  width: 65vw;
  position: fixed;
  height: 100vh;
  right: 0;
  background: #000;
  z-index: 10001;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  padding: 15vw 6vw;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.headerMenuWrap.menuOpen {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.headerMenuWrap .btn-closed {
  display: block;
  background-image: url(../images/btn-close.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 4.2592592593vw;
  height: 4.2592592593vw;
  position: fixed;
  right: 3vw;
  top: 3vw;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.headerMenuWrap__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2vw;
}
.headerMenuWrap__menu li {
  overflow: hidden;
}
.headerMenuWrap__menu a {
  color: #fff;
  font-size: 5.5vw;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.headerMenuWrap__menu a::after {
  content: "";
  background: url(../images/icon-arrow-right.png) no-repeat;
  width: 10vw;
  height: 10vw;
  background-size: 100% 100%;
  position: relative;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.blind {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-filter: brightness(0.5) blur(1px);
          filter: brightness(0.5) blur(1px);
  display: none;
  opacity: 0;
}

.btn-cancelApplication {
  background: #d52f2f !important;
}
.btn-cancelApplication.disabled {
  color: #7f7f7f;
  background-color: #efefef !important;
}