@charset "UTF-8";
/*--------------- 顯示與隱藏 ---------------*/
.visible-desktop {
  display: block;
}
@media (max-width: 1200px) {
  .visible-desktop {
    display: none;
  }
}
.visible-tablet {
  display: none;
}
@media (max-width: 1200px) {
  .visible-tablet {
    display: block;
  }
}
.visible-mobile {
  display: none;
}
@media (max-width: 768px) {
  .visible-mobile {
    display: block;
  }
}

.hidden-desktop {
  display: none;
}
@media (max-width: 768px) {
  .hidden-desktop {
    display: inline;
  }
}
.hidden-tablet {
  display: inline;
}
@media (max-width: 1200px) {
  .hidden-tablet {
    display: none;
  }
}
.hidden-mobile {
  display: inline;
}
@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
}

.hide-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

/*--------------- 排版與定位 ---------------*/
.flex {
  display: flex;
}

.clearfix::after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.flt-r {
  float: right;
}

.flt-l {
  float: left;
}

.pos-a {
  position: absolute;
}

.pos-f {
  position: fixed;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

/*--------------- 邊框 ---------------*/
.rounded {
  overflow: hidden;
}
.rounded-default {
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .rounded-default {
    border-radius: 20px;
  }
}
@media (max-width: 768px) {
  .rounded-default {
    border-radius: 2.6041666667vw;
  }
}

/*--------------- 文字 ---------------*/
.color-primary {
  color: #ffffff;
}
.color-secondary {
  color: #aaaaaa;
}

.weight-400 {
  font-weight: 400;
}
.weight-500 {
  font-weight: 500;
}
.weight-600 {
  font-weight: 600;
}
.weight-900 {
  font-weight: 900;
}

.kerning-0 {
  letter-spacing: 0px !important;
}
@media (max-width: 768px) {
  .kerning-0 {
    letter-spacing: 0vw !important;
  }
}

.kerning-1 {
  letter-spacing: 1px !important;
}
@media (max-width: 768px) {
  .kerning-1 {
    letter-spacing: 0.1302083333vw !important;
  }
}

.kerning-2 {
  letter-spacing: 2px !important;
}
@media (max-width: 768px) {
  .kerning-2 {
    letter-spacing: 0.2604166667vw !important;
  }
}

.kerning-3 {
  letter-spacing: 3px !important;
}
@media (max-width: 768px) {
  .kerning-3 {
    letter-spacing: 0.390625vw !important;
  }
}

.kerning-4 {
  letter-spacing: 4px !important;
}
@media (max-width: 768px) {
  .kerning-4 {
    letter-spacing: 0.5208333333vw !important;
  }
}

.kerning-5 {
  letter-spacing: 5px !important;
}
@media (max-width: 768px) {
  .kerning-5 {
    letter-spacing: 0.6510416667vw !important;
  }
}

.text {
  color: #004a98;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.text span {
  display: inline-block;
  transform-origin: center top;
  transform: scaleX(1.2);
}
.text-normal {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .text-normal {
    font-size: 18px;
    line-height: 32px;
  }
}
.text-xs {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
}
.text-sm {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
}
.text-lg {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .text-lg {
    font-size: 18px;
    line-height: 25px;
  }
}
.text-gray {
  color: #ffffff;
}
.text-white {
  color: #ffffff;
}
.text-red {
  color: #FF3B3B;
}
.text-black {
  color: #1c1c1c;
}
.text-blue {
  color: #4472C4;
}
.text-underline {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: #ffffff 1px solid;
}
@media (max-width: 768px) {
  .text-underline {
    padding-bottom: 0.5208333333vw;
  }
}
.text-underline.text-red {
  border-color: #de0b1c;
}
.text-center {
  text-align: center;
}
.text-hide {
  font-size: 0;
  text-indent: -5000px;
}

strong {
  font-weight: 500;
}

html,
body {
  scroll-behavior: smooth;
  color: #000;
  background: #e2e2e2;
}

.style-en {
  font-family: Arial;
}
.style-en-B {
  font-family: Arial;
  font-weight: bold;
}

strong {
  font-weight: bold;
}

#app {
  max-width: 640px;
  width: 100%;
  width: 100%;
  margin: 0 auto;
  background: #fff;
}
@media (max-width: 768px) {
  #app {
    width: 95%;
  }
}

.banner img {
  width: 100%;
}

h1 {
  margin: 25px 0;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  h1 {
    font-size: 23px;
  }
}

article {
  padding: 0 20px;
  font-size: 14px;
}

.title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.preface {
  padding: 20px 0;
  border-bottom: #e2e2e2 3px solid;
}
.preface p {
  letter-spacing: 1px;
  line-height: 25px;
  text-align: justify;
}
.preface-text {
  text-underline-offset: 3px;
  text-decoration: underline;
}
.preface-space {
  margin-top: 20px;
}
.preface img {
  width: 100%;
}

.form__block {
  padding: 20px 0;
  border-bottom: #e2e2e2 3px solid;
}
.form__block p {
  letter-spacing: 0.5px;
}
.form__block .form-remind {
  color: #ff0000;
  font-size: 12px;
  text-align: right;
  line-height: 20px;
  width: 100%;
}
.form__block label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .form__block label {
    width: 100%;
  }
}
.form__block input,
.form__block select {
  border: 1px solid #9d9d9d;
  padding: 1px 5px;
  max-width: 165px;
  width: 100%;
}
@media (max-width: 768px) {
  .form__block input,
  .form__block select {
    max-width: none;
  }
}
.form__block select {
  max-width: 185px;
}
.form__block select:focus-visible {
  border-radius: 0;
  outline: none;
}
.form__block .form-input {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  flex-direction: column;
  margin-bottom: 10px;
}
.form__block .form-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 150px;
  font-weight: bold;
}
.form__block .form-title-must {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 150px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .form__block .form-title-must {
    min-width: 120px;
  }
}
.form__block .form-title-must::after {
  content: "*";
  display: block;
  color: #ff0000;
  margin-left: 2px;
}
.form__block .not-must::after {
  content: "";
}
.form__block .form-example {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .form__block .form-example {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
}
.form__block .form-example-text {
  font-size: 12px;
}
.form__block .form-text {
  letter-spacing: 1px;
  line-height: 18px;
  text-align: justify;
}
.form__block .form-car label.label-column {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.form__block .form-car .form-car-date {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
.form__block .form-car .form-car-date label {
  display: inline-flex;
}
.form__block .form-car .form-car-date label + label {
  margin-left: 10px;
}
.form__block .choice {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.form__block .choice label {
  min-height: 20px;
}
@media (max-width: 768px) {
  .form__block .choice label {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.form__block .choice .join-other,
.form__block .choice .food-other {
  height: 15px;
}
.form__block .choice .choice-radio {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
  flex-direction: column;
}
.form__block .choice.day2 strong {
  line-height: 20px;
}
.form__block .choice .choice-column {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  flex-direction: column;
}
.form__block .space-block {
  padding-top: 15px;
}
@media (max-width: 768px) {
  .form__block .company-phone {
    width: 100%;
  }
}
.form__block .company-phone .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .form__block .company-phone .content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
  }
}
.form__block .company-phone .content .input-sytle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .form__block .company-phone .content .input-sytle {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .form__block .company-phone .content .input-02 {
    width: 50%;
  }
}

.time__block {
  padding: 20px 0;
}
.time__block table {
  width: 100%;
}
.time__block table tr {
  border-bottom: 1px solid #eaeaea;
}
.time__block table th,
.time__block table td {
  padding: 10px 5px;
  text-align: left;
  vertical-align: middle;
  font-family: Arial;
  line-height: 20px;
}
.time__block table th:nth-child(2),
.time__block table td:nth-child(2) {
  text-align: left;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .time__block table th,
  .time__block table td {
    padding: 5px;
  }
}
.time__block table th {
  background: #575757;
  color: #fff;
  font-family: "微軟正黑體";
}
.time__block table th:nth-child(1) {
  width: 100px;
}
@media (max-width: 768px) {
  .time__block table th:nth-child(1) {
    width: 50px;
    text-align: center;
  }
}
.time__block table th:nth-child(2) {
  width: 300px;
}
@media (max-width: 768px) {
  .time__block table th:nth-child(2) {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .time__block table td:nth-child(1) {
    text-align: center;
  }
}

.btn__block {
  margin-top: 10px;
}
.btn__block .btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding-bottom: 0;
}
.btn__block .btn-container input {
  padding: 10px 20px;
  cursor: pointer;
  max-width: 100px;
  width: 100%;
}
.btn__block .btn-container input.submitBtn {
  background: #175ac6;
  color: #fff;
}

.notion__block {
  padding-bottom: 10px;
  margin-top: 10px;
}
.notion__block .statement {
  margin: 20px 0;
  letter-spacing: 0.5px;
  color: #707070;
  line-height: 20px;
  font-size: 12px;
}
.notion__block .statement ul {
  list-style-type: disc;
  margin-left: 24px;
}/*# sourceMappingURL=main.css.map */