@charset "UTF-8";
body.modal-open {
  height: 100vh;
  overflow-y: hidden;
}
body.modal-open #modalBg {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
body.modal-open .modal {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

#modalBg {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.modal {
  position: fixed;
  width: 70%;
  max-width: 819px;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.1);
  transform: translate(-50%, -50%) scale(0.1);
  padding: 73px 140px 80px;
  background-color: #fff;
  position: relative;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.modal .closebtn {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 30px;
  right: 20px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.modal .closebtn .close {
  display: inline-block;
  width: 22px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -11px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  background: #002c59;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.modal .closebtn .close::after {
  content: "";
  height: 22px;
  width: 2px;
  margin: -11px 0 0 -1px;
  background: #002c59;
  left: 50%;
  top: 50%;
  position: absolute;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media (min-width: 768px) {
  .modal .closebtn:hover {
    opacity: 0.6;
  }
}
.modal .modal-title {
  font-weight: 700;
  margin-bottom: 55px;
}
.modal .modal-title .welcome {
  margin-bottom: 4px;
}
.modal .modal-title .event-title {
  color: #002c59;
}
.modal .modal-content {
  width: 100%;
  text-align: center;
  margin-bottom: 65px;
}
.modal .modal-content .name {
  border-bottom: 1px solid #7e7e7e;
  padding-bottom: 12px;
  margin-bottom: 25px;
}
@media (max-width: 1440px) {
  .modal .modal-content .name {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  .modal .modal-content .name {
    font-size: 1.5rem;
  }
}
@media (min-width: 1441px) {
  .modal .modal-content .name {
    font-size: 1.375rem;
  }
}
.modal .modal-content .info {
  color: #002c59;
}
.modal .modal-content .info div:first-child {
  font-weight: 700;
  margin-bottom: 5px;
}
.modal .modal-content .info div:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.modal .modal-content .test-info .info-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #002c59;
  margin-bottom: 15px;
}
.modal .modal-content .test-info .info-time {
  position: relative;
}
.modal .modal-content .test-info .info-time::after {
  content: "〕";
  font-size: 76px;
  position: absolute;
  font-weight: 300;
  color: #002c59;
  right: 17%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .modal .modal-content .test-info .info-time::after {
    right: 0;
  }
}
.modal .modal-content .test-info .info-time::before {
  content: "〔";
  font-size: 76px;
  position: absolute;
  font-weight: 300;
  color: #002c59;
  left: 17%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .modal .modal-content .test-info .info-time::before {
    left: 0;
  }
}
.modal .modal-content .test-info .info-time .date {
  font-size: 1.125rem;
  font-weight: 900;
  color: #002c59;
}
.modal .modal-content .test-info .info-time .time {
  font-size: 1.625rem;
}
.modal .modal-footer .btnwrap {
  text-align: center;
  margin-bottom: 26px;
}
.modal .modal-footer .btn.disabled {
  background-color: #7e7e7e;
  pointer-events: none;
}
.modal .modal-footer .note {
  font-size: 0.75rem;
  color: #7e7e7e;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.modal .modal-footer .blue-note {
  font-size: 1rem;
  color: #002c59;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 991px) {
  .modal {
    padding: 40px 70px;
  }
}
@media (max-width: 767px) {
  .modal {
    width: 90%;
    padding: 45px 15px 62px;
    border-radius: 5px;
  }
  .modal .closebtn {
    width: 40px;
    height: 40px;
    top: 5px;
    right: 5px;
  }
  .modal .modal-title {
    margin-bottom: 35px;
  }
  .modal .modal-content {
    margin-bottom: 45px;
  }
  .modal .modal-content .name {
    margin-bottom: 20px;
  }
  .modal .modal-footer .btnwrap {
    margin-bottom: 15px;
  }
}
.whitebg {
  max-width: 817px;
  margin: 0 auto;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 35px 0 rgba(0, 44, 89, 0.1);
          box-shadow: 0 0 35px 0 rgba(0, 44, 89, 0.1);
  background-color: white;
  padding: 32px 120px 35px;
  margin-bottom: 120px;
}

.f26-24 {
  font-weight: 700;
  text-align: center;
}

.welcome {
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.card-title {
  color: #002c59;
  margin-bottom: 50px;
}

.form-group {
  margin-bottom: 50px;
}

label {
  color: #002c59;
  display: block;
}
@media (max-width: 1440px) {
  label {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  label {
    font-size: 1.125rem;
  }
}
@media (min-width: 1441px) {
  label {
    font-size: 1.375rem;
  }
}

small {
  font-size: 0.75rem;
  color: #d40303;
  line-height: 1;
  display: block;
  margin-top: 10px;
}

input {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #7e7e7e;
  width: 100%;
  padding: 12px 0;
  color: #000;
}
input::-webkit-input-placeholder {
  color: #7e7e7e;
  font-weight: 500;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.05em;
}
input::-moz-placeholder {
  color: #7e7e7e;
  font-weight: 500;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.05em;
}
input:-ms-input-placeholder {
  color: #7e7e7e;
  font-weight: 500;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.05em;
}
input::-ms-input-placeholder {
  color: #7e7e7e;
  font-weight: 500;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.05em;
}
input::placeholder {
  color: #7e7e7e;
  font-weight: 500;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  input {
    padding: 10px 0;
  }
}

select,
select option {
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 20px;
  color: black;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  width: 100%;
  padding: 12px 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/select.png) 96%/21px no-repeat;
  background-color: #f4f4f4;
  font-weight: 700;
}
@media (max-width: 767px) {
  select,
select option {
    margin-top: 15px;
    background: url(../images/select.png) 93%/16px no-repeat;
    background-color: #f4f4f4;
    font-size: 0.9375rem;
    border-radius: 2px;
    padding: 14px 20px;
  }
}

select:invalid,
select option[value=""] {
  color: #c6c6c6;
}

form .btnwrap {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 26px;
}
form .note {
  font-size: 0.75rem;
  color: #7e7e7e;
  width: 75%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

@media (max-width: 991px) {
  .whitebg {
    padding: 32px 20px 35px;
    border-radius: 5px;
    margin-bottom: 80px;
  }
  .card-title {
    margin-bottom: 45px;
  }
  .form-group {
    margin-bottom: 45px;
  }
  form .btnwrap {
    margin-top: 52px;
    margin-bottom: 18px;
  }
  form .note {
    width: 100%;
  }
}
.modal {
  padding: 60px 140px;
}
@media (max-width: 991px) {
  .modal {
    padding: 40px 70px;
  }
}
@media (max-width: 767px) {
  .modal {
    padding: 45px 15px 62px;
  }
}
.modal .modal-content {
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
}
.modal .modal-content .name {
  border-bottom: 1px solid #7e7e7e;
  padding-bottom: 12px;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .modal .modal-content .name {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  .modal .modal-content .name {
    font-size: 1.5rem;
  }
}
@media (min-width: 1441px) {
  .modal .modal-content .name {
    font-size: 1.375rem;
  }
}
.modal .modal-content .test-info .info-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #002c59;
  margin-bottom: 15px;
}
.modal .modal-content .test-info .info-time {
  position: relative;
}
.modal .modal-content .test-info .info-time::after {
  content: "〕";
  font-size: 76px;
  position: absolute;
  font-weight: 300;
  color: #002c59;
  right: 17%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .modal .modal-content .test-info .info-time::after {
    right: 0;
  }
}
.modal .modal-content .test-info .info-time::before {
  content: "〔";
  font-size: 76px;
  position: absolute;
  font-weight: 300;
  color: #002c59;
  left: 17%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .modal .modal-content .test-info .info-time::before {
    left: 0;
  }
}
.modal .modal-content .test-info .info-time .date {
  font-size: 1.125rem;
  font-weight: 900;
  color: #002c59;
}
.modal .modal-content .test-info .info-time .time {
  font-size: 1.625rem;
}
.modal .modal-footer .btnwrap {
  text-align: center;
  margin-bottom: 10px;
}
.modal .modal-footer .blue-note {
  font-size: 1rem;
  color: #002c59;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.modal .modal-footer .btn.disabled {
  background-color: #7e7e7e;
  pointer-events: none;
}