@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
body * {
  font-family: "Pretendard", serif;
}

/* common */
body {
  overflow-x: hidden;
}

input.custom-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

input.custom-checkbox + label {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    display: inline-block;
    line-height: 20px;
    user-select: none;
}

input.custom-checkbox + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.2s ease;
}

input.custom-checkbox:checked + label::before {
    background-color: #007bff;
    border-color: #007bff;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 10.8L3.2 8 2 9.2l4 4 8-8L12.8 4l-6.8 6.8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

input.custom-checkbox:focus + label::before {
    outline: 2px solid #80bdff;
    outline-offset: 2px;
}

input.custom-checkbox:disabled + label {
    color: #aaa;
    cursor: not-allowed;
}

input.custom-checkbox:disabled + label::before {
    background-color: #eee;
    border-color: #ddd;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 40px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrap {
  max-width: 596px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

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

.mo_only {
  display: none !important;
}

.btn.flex {
  display: flex;
  gap: 10px;
}

.btn button,
.btn a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
}

.btn .btn_primary {
  background: #7c0019;
  box-sizing: border-box;
  color: #fff;
}

.btn .btn_white {
  background: transparent;
  box-sizing: border-box;
  color: #7c0019;
  border: 1px solid #7c0019;
}

.input_wrap {
  position: relative;
  width: 100%;
}
.input_wrap.dropdown input {
  color: inherit;
  font-weight: 400;
  padding-right: 38px;
}
.input_wrap.dropdown input + button.i_dropdown {
  margin: 12px 0;
}
.input_wrap.dropdown.active .i_dropdown img {
  transform: rotate(0deg);
}
.input_wrap.dropdown.active ul.dropdown_list {
  opacity: 1;
  visibility: visible;
}
.input_wrap.dropdown button.i_dropdown {
  position: absolute;
  right: 16px;
}
.input_wrap.dropdown button.i_dropdown img {
  transform: rotate(180deg);
}
.input_wrap.dropdown ul.dropdown_list {
  width: 100%;
  position: absolute;
  z-index: 1;
  border-radius: 12px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.0588235294);
  box-sizing: border-box;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  height: 168px;
}
.input_wrap.dropdown ul.dropdown_list li {
  width: 100%;
}
.input_wrap.dropdown ul.dropdown_list li:hover button {
  background: #EBF4FF;
  color: #0B3565;
}
.input_wrap.dropdown ul.dropdown_list li button {
  font-size: 18px;
  padding: 0 16px;
  height: 56px;
  text-align: left;
  width: 100%;
}
.input_wrap input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #D4D4D8;
  background: #FFF;
  padding: 0 16px;
  box-sizing: border-box;
  height: 56px;
  font-size: 18px;
}
.input_wrap input.price {
  color: #0B3565;
  font-weight: 600;
}
.input_wrap input::placeholder {
  color: #767676;
  font-weight: 400;
}
.input_wrap select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #D4D4D8;
  background: #FFF;
  padding: 0 20px;
  box-sizing: border-box;
  height: 56px;
  font-size: 16px;
}
.input_wrap select::placeholder {
  color: #767676;
}

/* 라디오 */
input[type=radio] {
  display: none;
}

input[type=radio] + label.radio_style1 {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 18px;
  line-height: 26px;
}

input[type=radio] + label.radio_style1:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  background-color: #fff;
  border-radius: 2px;
  background: url("../images/radio_off.svg");
}

input[type=radio]:checked + label.radio_style1:before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("../images/radio_on.svg");
}

/* 체크박스 */
input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label.check_style1 {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 16px;
}

input[type=checkbox] + label.check_style1::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 2px;
  background: url("../images/check_off.png");
}

input[type=checkbox]:checked + label.check_style1::before {
  content: "";
  width: 21px;
  height: 21px;
  background: url("../images/check_on.png");
}

/* header */
header {
  background: #fff;
}
header .wrap .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B3565;
  height: 80px;
}
header .wrap .logo a p {
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
}

/* content */
.content .wrap .con_head {
  text-align: center;
  margin-top: 86px;
  margin-bottom: 40px;
}
.content .wrap .con_head.mb_32 {
  margin-bottom: 32px;
}
.content .wrap .con_head .logo {
  margin-top: 80px;
}
.content .wrap .con_head .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B3565;
}
.content .wrap .con_head .logo a p {
  font-size: 36px;
  line-height: 54px;
  font-weight: 600;
}
.content .wrap .con_head > h5 {
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
}
.content .wrap .con_head > p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 12px;
}
.content .wrap .con_box {
  background: #fff;
  border-radius: 40px 40px 0 0;
  padding: 48px;
  padding-bottom: 120px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.content .wrap .con_box.form {
  min-height: calc(100% - 170px);
}
.content .wrap .con_box.login {
  min-height: calc(100% - 190px);
}
.content .wrap .con_box .dot_left {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: absolute;
  bottom: 120px;
  left: -24px;
  background: #F4F7FA;
  border-radius: 100%;
}
.content .wrap .con_box .dot_right {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: absolute;
  bottom: 120px;
  right: -24px;
  background: #F4F7FA;
  border-radius: 100%;
}
.content .wrap .con_box .input_wrap:nth-child(n+2) {
  margin-top: 32px;
}
.content .wrap .con_box .input_wrap h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}
.content .wrap .con_box .input_wrap h5 span {
  color: #0E4D95;
}
.content .wrap .con_box .input_wrap p {
  font-size: 18px;
}
.content .wrap .con_box .input_wrap input.mt {
  margin-top: 12px;
}
.content .wrap .con_box .input_wrap small {
  display: inline-block;
  margin-top: 8px;
  color: #0B3565;
  font-size: 15px;
}
.content .wrap .con_box .input_wrap ul.radio_wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}
.content .wrap .con_box .input_wrap .card_number {
  display: flex;
  align-items: center;
  border: 1px solid #D4D4D8;
  height: 56px;
  border-radius: 12px;
}
.content .wrap .con_box .input_wrap .card_number input {
  border: none;
  height: 54px;
}
.content .wrap .con_box .input_wrap .card_number span {
  font-size: 18px;
}
.content .wrap .con_box .btn {
  margin-top: 70px;
}
.content .wrap .con_box .btn.mt40 {
  margin-top: 40px;
}
.content .wrap .con_box ul.find_list {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.content .wrap .con_box ul.find_list li:nth-child(2n) {
  width: 1px;
  height: 12px;
  background: #D4D4D8;
}
.content .wrap .con_box ul.find_list li a {
  font-size: 16px;
  font-weight: 400;
  color: #767676;
}
.content .wrap .con_box ul.find_list li a.sign_up {
  color: #0B3565;
}
.content .wrap .con_box .corp_info > h5 {
  text-align: center;
  font-size: 22px;
  margin-top: 20px;
  background: #ebebeb;
  border: 1px solid #D4D4D8;
  border-bottom: transparent;
  padding: 10px 0;
  font-weight: 700;
}
.content .wrap .con_box .corp_info table {
  width: 100%;
}
.content .wrap .con_box .corp_info table th {
  border: 1px solid #D4D4D8;
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
}
.content .wrap .con_box .corp_info table td {
  border: 1px solid #D4D4D8;
  padding: 10px;
  font-size: 17px;
}
.content .wrap .i_close {
  background: #7c0019;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .wrap .i_chk {
  background: #7c0019;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .wrap .i_alert {
  background: #7c0019;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 26%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .wrap .loading_con {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content .wrap .loading_con .con {
  text-align: center;
}
.content .wrap .loading_con .con img {
  animation: rotateImage 2s steps(8) infinite;
}
@keyframes rotateImage {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.content .wrap .loading_con .con p {
  margin-top: 48px;
  font-size: 32px;
  font-weight: 600;
}
.content .wrap .loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
}
.content .wrap .loading .con {
  text-align: center;
}
.content .wrap .loading .con img {
  animation: rotateImage 2s steps(8) infinite;
}
@keyframes rotateImage {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.content .wrap .loading .con p {
  margin-top: 48px;
  font-size: 32px;
  font-weight: 600;
}
.content .wrap .pay_alert {
  margin-top: 140px;
  padding-left: 48px;
  padding-right: 48px;
  box-sizing: border-box;
  text-align: center;
}
.content .wrap .pay_alert .txt {
  margin-top: 32px;
}
.content .wrap .pay_alert .txt h2 {
  font-size: 40px;
  line-height: 54px;
}
.content .wrap .pay_alert .txt h2 span {
  font-weight: 600;
}
.content .wrap .pay_alert .txt h2 span.blue {
  color: #0B3565;
}
.content .wrap .pay_alert .txt p {
  margin-top: 16px;
  font-size: 20px;
  line-height: 30px;
}
.content .wrap .pay_alert .txt p span {
  color: #0B3565;
}
.content .wrap .pay_alert .time {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 8px;
  background: #fff;
  border-radius: 16px;
  width: 556px;
  padding: 26px 0;
  position: relative;
  left: -48px;
}
.content .wrap .pay_alert .time p {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}
.content .wrap .pay_alert .time p.point {
  color: #0E4D95;
}
.content .wrap .pay_alert .btn {
  margin-top: 70px;
}

/* footer */
/* modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.modal_open {
  cursor: pointer;
}

.modal_overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 24;
}

.modal_content {
  background-color: white;
  text-align: left;
  position: relative;
  z-index: 25;
  border-radius: 8px;
  box-shadow: 0.125rem 0.125rem 1.25rem 0.25rem rgba(0, 0, 0, 0.2);
}

.modal_content .modalContWrap {
  font-size: 0.9375rem;
}

.modal .modal_close {
  position: absolute;
  z-index: 50;
  right: 1.0625rem;
  top: 1.0625rem;
  cursor: pointer;
}

.modal .modal_close img {
  width: 1.8125rem;
}

.modal_content .modalContWrap {
  font-size: 1.125rem;
  color: #000;
}

.modal .modal_close img {
  width: 1.8125rem;
}

.modal_content .modalContWrapTab {
  text-align: left;
}

.modal_content .modal_scroll {
  height: 31.25rem;
  overflow-y: scroll;
}

.modal_md {
  width: 46.25rem;
  max-height: 40.625rem;
  box-sizing: border-box;
}

.modal_md .modal_con {
  padding: 30px 24px;
  font-size: 15px;
  box-sizing: border-box;
}

.modal_sm {
  width: 300px;
  text-align: center;
}

.modal_sm .modal_con {
  padding: 30px;
  font-size: 15px;
}

.modal_btn {
  border-top: 1px solid #eeeeee;
}

.modal_btn.flex {
  display: flex;
}

.modal_btn button {
  color: #999999;
  font-size: 15px;
  width: 100%;
  height: 40px;
}

@media screen and (max-width: 596px) {
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  .input_wrap input {
    height: 46px;
    font-size: 15px;
  }
  .input_wrap.dropdown input + button.i_dropdown {
    margin: 6px 0;
    right: 8px;
  }
  .input_wrap.dropdown ul.dropdown_list {
    height: 120px;
  }
  .input_wrap.dropdown ul.dropdown_list li button {
    height: 40px;
    font-size: 14px;
  }
  .btn button, .btn a {
    height: 46px;
    font-size: 15px;
  }
  header .wrap .logo a {
    height: 56px;
  }
  header .wrap .logo a img {
    height: 40px;
  }
  header .wrap .logo a p {
    font-size: 24px;
    line-height: 34px;
  }
  .content .wrap .con_head {
    margin-top: 32px;
    margin-bottom: 20px;
  }
  .content .wrap .con_head.mb_32 {
    margin-bottom: 24px;
  }
  .content .wrap .con_head > h5 {
    font-size: 20px;
    line-height: 30px;
  }
  .content .wrap .con_head > p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    line-height: 20px;
  }
  .content .wrap .con_head .logo {
    margin-top: 76px;
  }
  .content .wrap .con_head .logo a img {
    height: 48px;
  }
  .content .wrap .con_head .logo a p {
    font-size: 32px;
    line-height: 44px;
  }
  .content .wrap .con_box {
    padding: 24px;
    padding-bottom: 70px;
  }
  .content .wrap .con_box.login {
    padding: 32px;
    padding-bottom: 70px;
  }
  .content .wrap .con_box.form {
    padding: 24px;
    padding-bottom: 70px;
  }
  .content .wrap .con_box .btn {
    margin-top: 40px;
  }
  .content .wrap .con_box .btn.mt40 {
    margin-top: 24px;
  }
  .content .wrap .con_box.login {
    min-height: calc(100% - 152px);
  }
  .content .wrap .con_box ul.find_list {
    margin-top: 20px;
  }
  .content .wrap .con_box .input_wrap:nth-child(n+2) {
    margin-top: 24px;
  }
  .content .wrap .con_box .input_wrap h5 {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 8px;
  }
  .content .wrap .con_box .input_wrap p {
    font-size: 13px;
  }
  .content .wrap .con_box .input_wrap input {
    font-size: 14px;
  }
  .content .wrap .con_box .input_wrap input.mt {
    margin-top: 8px;
  }
  .content .wrap .con_box .input_wrap small {
    font-size: 12px;
    line-height: 18px;
  }
  .content .wrap .con_box .input_wrap .card_number {
    height: 46px;
  }
  .content .wrap .con_box .input_wrap .card_number span {
    font-size: 14px;
  }
  .content .wrap .con_box .input_wrap .card_number input {
    height: 44px;
  }
  .content .wrap .con_box input[type=radio] + label.radio_style1 {
    font-size: 14px;
    margin-right: 6px;
  }
  .content .wrap .con_box input[type=radio] + label.radio_style1:before {
    width: 18px;
    height: 18px;
    background-size: cover;
  }
  .content .wrap .con_box .corp_info > h5 {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    background: #ebebeb;
    border: 1px solid #D4D4D8;
    border-bottom: transparent;
    padding: 10px 0;
    font-weight: 700;
  }
  .content .wrap .con_box .corp_info table {
    width: 100%;
  }
  .content .wrap .con_box .corp_info table th {
    border: 1px solid #D4D4D8;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    vertical-align: middle;
  }
  .content .wrap .con_box .corp_info table td {
    border: 1px solid #D4D4D8;
    padding: 10px;
    font-size: 14px;
    vertical-align: middle;
  }
  .content .wrap .loading_con .con img {
    width: 70px;
  }
  .content .wrap .loading_con .con p {
    margin-top: 24px;
    font-size: 20px;
  }
  .content .wrap .loading .con img {
    width: 70px;
  }
  .content .wrap .loading .con p {
    margin-top: 24px;
    font-size: 20px;
  }
  .content .wrap .pay_alert {
    margin-top: 40px;
    padding-left: 0px;
    padding-right: 0px;
    box-sizing: border-box;
    text-align: center;
  }
  .content .wrap .pay_alert .img img {
    width: 40px;
  }
  .content .wrap .pay_alert .txt {
    margin-top: 20px;
  }
  .content .wrap .pay_alert .txt h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .content .wrap .pay_alert .txt h2 span {
    font-weight: 600;
  }
  .content .wrap .pay_alert .txt p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
  }
  .content .wrap .pay_alert .time {
    flex-wrap: wrap;
    position: unset;
    left: 0;
    width: auto;
    padding: 12px;
    margin-top: 24px;
    gap: 2px;
  }
  .content .wrap .pay_alert .time i img {
    width: 20px;
  }
  .content .wrap .pay_alert .time p {
    font-size: 16px;
    line-height: 24px;
  }
  .content .wrap .pay_alert .time p.point {
    width: 100%;
  }
  .content .wrap .pay_alert .btn {
    margin-top: 40px;
  }
}/*# sourceMappingURL=common.css.map */