@charset "UTF-8";
/* 전역 변수 */
.vi_hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}


:root {
  --color-main: #066bfd;
  --color-sub: #1e293b;
  --color-error: #ef4444;
  --color-gray: #555;
  --color-base: #222;
  --color-border: #ccc;
}

.blind {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.point {
  color: var(--color-error) !important;
}

.dim {
  color: var(--color-gray) !important;
}

.mb-1 {
  margin-bottom: 1rem;
}

/* ELLIPSIS */
/*
 * 파일명 : common.scss
 * 역할   : 공통 레이아웃
 */
.header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 1px 0 #e5e7eb;
  padding: 0 2rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header {
    height: 70px;
    padding: 0 1rem;
  }
}
.header__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__logo a {
  display: flex;
  align-items: center;
}
.header__logo a img {
  height: 35px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .header__logo a img {
    height: 30px;
  }
}
.header .nav {
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header .nav {
    width: 100%;
    height: auto;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 2rem;
    z-index: 95;
  }
}
.header .nav.is-active {
  display: flex;
}
.header .nav__list {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .header .nav__list {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .header .nav__list {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}
.header .nav__list > li {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .nav__list > li a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
@media screen and (max-width: 1200px) {
  .header .nav__list > li a {
    font-size: 1rem;
  }
}
.header .nav__list > li a:hover {
  color: var(--color-main);
}
.header .nav__btn {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header .nav__btn {
    display: flex;
  }
}
.header .nav__btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #222;
  border-radius: 2px;
}

.header__notice {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
.header__notice > span {
  width: 100%;
  max-width: 1200px;
  height: auto;
  font-size: 0.95rem;
}
@media screen and (max-width: 767px) {
  .header__notice > span {
    font-size: 0.85rem;
  }
}

.cs {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 90;
}
@media screen and (max-width: 1200px) {
  .cs {
    position: static;
  }
}
.cs__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-main);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 6px 2px;
  border-radius: 5px;
  padding: 1rem 2rem;
}
@media screen and (max-width: 1200px) {
  .cs__inner {
    border-radius: 0;
    padding: 2rem 10rem;
  }
}
@media screen and (max-width: 767px) {
  .cs__inner {
    padding: 2rem;
  }
}
.cs__title p {
  font-size: 0.95rem;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .cs__title p {
    font-size: 0.9rem;
    text-align: center;
    word-break: keep-all;
  }
}
.cs__wrap {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .cs__wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.cs__inputs {
  width: calc(100% - 200px - 1rem);
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
@media screen and (max-width: 1200px) {
  .cs__inputs {
    width: 100%;
    gap: 1rem;
  }
}
.cs__input {
  width: calc(36% - 20px);
  height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .cs__input {
    width: 100%;
    height: 45px;
    order: 3;
  }
  .cs__input.m-o1 {
    order: 1;
  }
  .cs__input.m-o2 {
    order: 2;
  }
}
.cs__input.min {
  width: 25%;
}
@media screen and (max-width: 1200px) {
  .cs__input.min {
    width: 100%;
    padding-left: 40px;
  }
}
.cs__input > span {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  line-height: normal;
}
.cs__input > input {
  width: 100%;
  height: 100%;
  font-size: 0.9rem;
  transition: all 0.2s ease-in-out;
  padding: 0 1rem;
}
.cs__input > input:focus {
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.cs__input #csSelect {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../img/caret-down-solid.svg") no-repeat right 1rem center;
  background-size: 12px;
  background-color: #fff;
  border: none;
  padding: 10px 1rem;
  position: relative;
}
.cs__input #csSelect option {
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  padding: 10px;
}
.cs__input #csGender {
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #fff;
  border-radius: 2rem;
  padding: 6px;
}
@media screen and (max-width: 1200px) {
  .cs__input #csGender {
    border-radius: 0;
    padding: 3px;
  }
}
.cs__input #csGender input[type=radio] {
  display: none;
}
.cs__input #csGender input[type=radio] + label {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #888;
  border-radius: 2rem;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .cs__input #csGender input[type=radio] + label {
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .cs__input #csGender input[type=radio] + label {
    font-size: 0.95rem;
  }
}
.cs__input #csGender input[type=radio]:checked + label {
  font-weight: 500;
  background-color: var(--color-main);
  border: none;
  color: #fff;
}
.cs__info {
  width: 100%;
  height: auto;
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 1200px) {
  .cs__info {
    justify-content: center;
  }
}
.cs__info label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs__info label > input {
  width: 16px;
  height: 16px;
}
.cs__info label > span {
  font-size: 0.95rem;
  color: #fff;
}
.cs__info button {
  font-size: 0.95rem;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}
.cs__btn {
  width: 200px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .cs__btn {
    width: 100%;
  }
}
.cs__btn > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-main);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border-radius: 0.5rem;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .cs__btn > a {
    height: 50px;
    font-size: 1rem;
  }
  .cs__btn > a > br {
    display: none;
  }
}
.cs__btn > a.katalk {
  color: #000;
  background-color: #fee500;
}

.qna {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}
.qna__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.qna__title {
  line-height: normal;
  margin-bottom: 1rem;
}
.qna__title > h2 {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .qna__title > h2 {
    font-size: 1.2rem;
  }
}
.qna__title > h2 > em {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .qna__title > h2 > em {
    font-size: 1rem;
  }
}
.qna__title > h2 > b {
  font-weight: inherit;
  color: var(--color-main);
}
.qna__list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .qna__list {
    gap: 1rem;
  }
}
.qna__list > li {
  width: calc(50% - 1rem);
  height: auto;
  min-height: 210px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 6px 2px;
}
@media screen and (max-width: 1200px) {
  .qna__list > li {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 767px) {
  .qna__list > li {
    width: 100%;
  }
}
.qna__list > li .q {
  width: 100%;
  height: 50px;
  background-color: var(--color-main);
  padding: 10px 1.5rem;
}
.qna__list > li .q h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .qna__list > li .q h3 {
    font-size: 1rem;
  }
}
.qna__list > li .a {
  width: 100%;
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem;
}
.qna__list > li .a > p {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .qna__list > li .a > p {
    font-size: 0.95rem;
  }
}
.qna__list > li .a > a {
  font-size: 0.95rem;
  font-weight: 500;
  align-self: flex-end;
}

.call {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .call {
    border-top: 1px solid #ccc;
  }
}
.call__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
.call__btn {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .call__btn {
    flex-direction: column;
  }
}
.call__btn a {
  font-size: 0.95rem;
  font-weight: 500;
}
.call__btn hr {
  width: 1px;
  height: 18px;
  border: none;
  margin: 0;
  background-color: #444;
}
@media screen and (max-width: 767px) {
  .call__btn hr {
    width: 100%;
    height: 1px;
    background-color: #ebebeb;
  }
}

.footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #404040;
  padding: 2rem 1rem 280px;
}
@media screen and (max-width: 1200px) {
  .footer {
    padding: 2rem 1rem;
  }
}
.footer__inner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__inner > ul > li {
  font-size: 0.95rem;
  color: #bfbfbf;
}
.footer__btn {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__btn button {
  color: #bfbfbf;
  cursor: pointer;
}
.footer__btn hr {
  width: 1px;
  height: 60%;
  border: none;
  margin: 0;
  background-color: #bfbfbf;
}

.agreement {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.agreement.is-active {
  display: flex;
}
.agreement__inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  background-color: #fff;
  border-radius: 1rem;
  padding: 5rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.agreement__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}
.agreement__close img {
  width: 100%;
  height: auto;
}
.agreement__txt {
  overflow-y: auto;
  padding-right: 10px;
}
.agreement__txt::-webkit-scrollbar {
  width: 6px;
}
.agreement__txt::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}
.agreement__txt .box {
  margin-bottom: 25px;
}
.agreement__txt .box:last-child {
  margin-bottom: 0;
}
.agreement__txt .box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  word-break: keep-all;
}
.agreement__txt .box h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.agreement__txt .box p {
  font-size: 0.95rem;
  color: #555;
  word-break: keep-all;
}
.agreement__txt .box ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.agreement__txt .box ul li {
  font-size: 0.9rem;
  color: #666;
}

.essential {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.essential.is-active {
  display: flex;
}
.essential__inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  background-color: #fff;
  border-radius: 1rem;
  padding: 5rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.essential__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}
.essential__close img {
  width: 100%;
  height: auto;
}
.essential__txt {
  overflow-y: auto;
  padding-right: 10px;
}
.essential__txt::-webkit-scrollbar {
  width: 6px;
}
.essential__txt::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}
.essential__txt .box {
  margin-bottom: 25px;
}
.essential__txt .box:last-child {
  margin-bottom: 0;
}
.essential__txt .box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  word-break: keep-all;
}
.essential__txt .box h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.essential__txt .box p {
  font-size: 0.95rem;
  color: #555;
  word-break: keep-all;
}
.essential__txt .box ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.essential__txt .box ul li {
  font-size: 0.9rem;
  color: #666;
}

.depositor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.depositor.is-active {
  display: flex;
}
.depositor__inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  background-color: #fff;
  border-radius: 1rem;
  padding: 5rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.depositor__close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}
.depositor__close img {
  width: 100%;
  height: auto;
}
.depositor__txt {
  overflow-y: auto;
  padding-right: 10px;
}
.depositor__txt::-webkit-scrollbar {
  width: 6px;
}
.depositor__txt::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}
.depositor__txt .box {
  margin-bottom: 25px;
}
.depositor__txt .box:last-child {
  margin-bottom: 0;
}
.depositor__txt .box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  word-break: keep-all;
}
.depositor__txt .box h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.depositor__txt .box p {
  font-size: 0.95rem;
  color: #555;
  word-break: keep-all;
}
.depositor__txt .box ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.depositor__txt .box ul li {
  font-size: 0.9rem;
  color: #666;
}
.depositor__txt .box .img {
  display: block;
  margin-bottom: 1rem;
}
.depositor__txt .box .img img {
  width: 70px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}