.process-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.process-modal.active {
  visibility: visible;
  opacity: 1;
}
.process-modal .modal-head {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  display: flex;
  padding: 100px 48px 0;
}
@media (max-width: 1280px) {
  .process-modal .modal-head {
    padding: 80px 24px 0;
  }
}
@media (max-width: 768px) {
  .process-modal .modal-head {
    padding: 52px 20px 0;
  }
}
@media (max-width: 480px) {
  .process-modal .modal-head {
    padding: 52px 16px 0;
  }
}
.process-modal .modal-head .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .process-modal .modal-head .modal-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 768px) {
  .process-modal .modal-head .modal-close {
    width: 28px;
    height: 28px;
  }
}
.process-modal .modal-head .modal-close > svg {
  width: 100%;
  height: 100%;
  fill: #0F185D;
}
.process-modal .modal-head .modal-tit {
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #0F185D;
  font-size: 30px;
  font-weight: 600;
  color: white;
  word-break: keep-all;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 768px) {
  .process-modal .modal-head .modal-tit {
    height: 52px;
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .process-modal .modal-head .modal-tit {
    height: 48px;
    font-size: 18px;
  }
}
.process-modal .modal-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
}
@media (max-width: 1280px) {
  .process-modal .modal-body {
    padding: 32px 24px;
  }
}
.process-modal .modal-body .process-modal-grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 1rem;
}
@media (max-width: 768px) {
  .process-modal .modal-body .process-modal-grid {
    gap: 24px 12px;
  }
}
@media (max-width: 540px) {
  .process-modal .modal-body .process-modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.process-modal .modal-body .process-modal-grid .step {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-modal .modal-body .process-modal-grid .step .step-number {
  position: relative;
  width: 80px;
  height: auto;
  margin-bottom: -40px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 1000rem;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: white;
  background: lime;
  z-index: 2;
}
@media (max-width: 768px) {
  .process-modal .modal-body .process-modal-grid .step .step-number {
    width: 64px;
    margin-bottom: -32px;
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .process-modal .modal-body .process-modal-grid .step .step-number {
    width: 56px;
    margin-bottom: -28px;
    font-size: 20px;
  }
}
.process-modal .modal-body .process-modal-grid .step .step-content-box {
  width: 100%;
  height: 300px;
  padding: 80px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 36px;
  background: #ddd;
}
@media (max-width: 768px) {
  .process-modal .modal-body .process-modal-grid .step .step-content-box {
    height: 280px;
    padding: 64px 1rem 0;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .process-modal .modal-body .process-modal-grid .step .step-content-box {
    height: 200px;
    padding: 56px 1rem 0;
    gap: 20px;
  }
}
.process-modal .modal-body .process-modal-grid .step .step-content-box .step-icon {
  position: relative;
  width: 80px;
  height: auto;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .process-modal .modal-body .process-modal-grid .step .step-content-box .step-icon {
    width: 52px;
  }
}
@media (max-width: 480px) {
  .process-modal .modal-body .process-modal-grid .step .step-content-box .step-icon {
    width: 48px;
  }
}
.process-modal .modal-body .process-modal-grid .step .step-content-box .step-icon > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.process-modal .modal-body .process-modal-grid .step .step-content-box .step-name {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 768px) {
  .process-modal .modal-body .process-modal-grid .step .step-content-box .step-name {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .process-modal .modal-body .process-modal-grid .step .step-content-box .step-name {
    font-size: 16px;
  }
}
.process-modal .modal-body .process-modal-grid .step.ps01 .step-number {
  background: #9EEAF3;
}
.process-modal .modal-body .process-modal-grid .step.ps01 .step-content-box {
  background: #D8FAFF;
}
.process-modal .modal-body .process-modal-grid .step.ps01 .step-content-box .step-name {
  color: #0F185D;
}
.process-modal .modal-body .process-modal-grid .step.ps02 .step-number {
  background: #66CDF3;
}
.process-modal .modal-body .process-modal-grid .step.ps02 .step-content-box {
  background: #95E2FF;
}
.process-modal .modal-body .process-modal-grid .step.ps02 .step-content-box .step-name {
  color: #0F185D;
}
.process-modal .modal-body .process-modal-grid .step.ps03 .step-number {
  background: #1C9BCB;
}
.process-modal .modal-body .process-modal-grid .step.ps03 .step-content-box {
  background: #1FBEF9;
}
.process-modal .modal-body .process-modal-grid .step.ps03 .step-content-box .step-name {
  color: white;
}
.process-modal .modal-body .process-modal-grid .step.ps04 .step-number {
  background: #0F69AE;
}
.process-modal .modal-body .process-modal-grid .step.ps04 .step-content-box {
  background: #0191FF;
}
.process-modal .modal-body .process-modal-grid .step.ps04 .step-content-box .step-name {
  color: white;
}
.process-modal .modal-body .process-modal-grid .step.ps05 .step-number {
  background: #1D3564;
}
.process-modal .modal-body .process-modal-grid .step.ps05 .step-content-box {
  background: #1447AC;
}
.process-modal .modal-body .process-modal-grid .step.ps05 .step-content-box .step-name {
  color: white;
}
.process-modal .modal-body .process-modal-grid .step.ps06 .step-number {
  background: #000000;
}
.process-modal .modal-body .process-modal-grid .step.ps06 .step-content-box {
  background: #0A1065;
}
.process-modal .modal-body .process-modal-grid .step.ps06 .step-content-box .step-name {
  color: white;
}

.fee-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.fee-modal.active {
  visibility: visible;
  opacity: 1;
}
.fee-modal .modal-head {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  display: flex;
  padding: 100px 48px 0;
}
@media (max-width: 1280px) {
  .fee-modal .modal-head {
    padding: 80px 24px 0;
  }
}
@media (max-width: 768px) {
  .fee-modal .modal-head {
    padding: 52px 20px 0;
  }
}
@media (max-width: 480px) {
  .fee-modal .modal-head {
    padding: 52px 16px 0;
  }
}
.fee-modal .modal-head .fee-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .fee-modal .modal-head .fee-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 768px) {
  .fee-modal .modal-head .fee-close {
    width: 28px;
    height: 28px;
  }
}
.fee-modal .modal-head .fee-close > svg {
  width: 100%;
  height: 100%;
  fill: #0F185D;
}
.fee-modal .modal-head .modal-tit {
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #0F185D;
  font-size: 30px;
  font-weight: 600;
  color: white;
  word-break: keep-all;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 768px) {
  .fee-modal .modal-head .modal-tit {
    height: 52px;
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .fee-modal .modal-head .modal-tit {
    height: 48px;
    font-size: 18px;
  }
}
.fee-modal .modal-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
}
@media (max-width: 1280px) {
  .fee-modal .modal-body {
    padding: 32px 24px;
  }
}
.fee-modal .modal-body .fee-box {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  margin-bottom: 36px;
  display: flex;
}
.fee-modal .modal-body .fee-box > img {
  width: 100%;
  height: auto;
}
.fee-modal .modal-body .fee-bottom-close {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  height: 70px;
  max-width: 628px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #0F185D;
}
.fee-modal .modal-body .fee-bottom-close > span {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
.fee-modal .modal-body .fee-bottom-close > svg {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 50%;
  fill: white;
}

.jt-outer-container {
  position: relative;
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
}

#header {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  height: auto;
  padding: 36px 48px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1280px) {
  #header {
    padding: 24px;
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  #header {
    padding: 1rem 1rem 0;
  }
}
#header .container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  #header .container {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  #header .container {
    gap: 16px;
  }
}
#header .container .h-top {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#header .container .h-top .inner-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#header .container .h-top .inner-wrapper .h-logo-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 70px;
}
@media (max-width: 768px) {
  #header .container .h-top .inner-wrapper .h-logo-wrap {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    height: 64px;
  }
}
@media (max-width: 480px) {
  #header .container .h-top .inner-wrapper .h-logo-wrap {
    height: 56px;
  }
}
#header .container .h-top .inner-wrapper .h-logo-wrap > img {
  width: auto;
  height: 100%;
}
#header .container .h-top .inner-wrapper .h-right-wrap {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1280px) {
  #header .container .h-top .inner-wrapper .h-right-wrap {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  #header .container .h-top .inner-wrapper .h-right-wrap {
    width: 148px;
    flex-direction: column;
    gap: 8px;
  }
}
#header .container .h-top .inner-wrapper .h-right-wrap .h-phone {
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  color: white;
  background: #0F185D;
  border-radius: 10000rem;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  #header .container .h-top .inner-wrapper .h-right-wrap .h-phone {
    padding: 9px 10px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #header .container .h-top .inner-wrapper .h-right-wrap .h-phone {
    width: 100%;
    padding: 4px 8px;
    font-size: 12px;
    text-align: center;
  }
}
#header .container .h-top .inner-wrapper .h-right-wrap .kakaotalk {
  padding: 10px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: #fbe300;
  border-radius: 100000rem;
  white-space: nowrap;
}
@media (max-width: 1280px) {
  #header .container .h-top .inner-wrapper .h-right-wrap .kakaotalk {
    padding: 9px 10px;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  #header .container .h-top .inner-wrapper .h-right-wrap .kakaotalk {
    width: 100%;
    padding: 4px 8px;
    justify-content: center;
    gap: 6px;
  }
}
#header .container .h-top .inner-wrapper .h-right-wrap .kakaotalk > span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: #3c2622;
}
@media (max-width: 1280px) {
  #header .container .h-top .inner-wrapper .h-right-wrap .kakaotalk > span {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #header .container .h-top .inner-wrapper .h-right-wrap .kakaotalk > span {
    font-size: 12px;
  }
}
#header .container .h-top .inner-wrapper .h-right-wrap .kakaotalk > img {
  flex: 0 0 auto;
  width: auto;
  height: 20px;
}
@media (max-width: 1280px) {
  #header .container .h-top .inner-wrapper .h-right-wrap .kakaotalk > img {
    height: 18px;
  }
}
@media (max-width: 768px) {
  #header .container .h-top .inner-wrapper .h-right-wrap .kakaotalk > img {
    height: 13px;
  }
}
#header .container .h-body {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#header .container .h-body .current-page-subject {
  width: 100%;
  height: auto;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
#header .container .h-body .current-page-subject .subject {
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #0F185D;
  font-size: 30px;
  font-weight: 600;
  color: white;
  word-break: keep-all;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 768px) {
  #header .container .h-body .current-page-subject .subject {
    height: 52px;
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  #header .container .h-body .current-page-subject .subject {
    height: 48px;
    font-size: 18px;
  }
}
#header .container .h-body .current-page-subject > svg {
  width: 70px;
  height: auto;
  fill: #0F185D;
}
@media (max-width: 768px) {
  #header .container .h-body .current-page-subject > svg {
    width: 40px;
  }
}

#footer {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #F2F9FF;
}
@media (max-width: 768px) {
  #footer {
    height: 100px;
  }
}
@media (max-width: 480px) {
  #footer {
    height: 70px;
  }
}
#footer .f-nav-bar {
  width: 100%;
  height: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: row;
}
#footer .f-nav-bar .f-nav-item {
  position: relative;
  flex: 1 1 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
#footer .f-nav-bar .f-nav-item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(1px, -50%);
  width: 2px;
  height: 60%;
  background: #374DFF;
}
#footer .f-nav-bar .f-nav-item .item-icon {
  width: auto;
  height: 44px;
}
@media (max-width: 768px) {
  #footer .f-nav-bar .f-nav-item .item-icon {
    height: 36px;
  }
}
@media (max-width: 480px) {
  #footer .f-nav-bar .f-nav-item .item-icon {
    height: 28px;
  }
}
#footer .f-nav-bar .f-nav-item .item-icon img {
  width: auto;
  height: 100%;
}
#footer .f-nav-bar .f-nav-item .item-name {
  font-size: 20px;
  font-weight: 700;
  color: #374DFF;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 768px) {
  #footer .f-nav-bar .f-nav-item .item-name {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  #footer .f-nav-bar .f-nav-item .item-name {
    font-size: 13px;
  }
}/*# sourceMappingURL=common.css.map */