@import url("https://fonts.googleapis.com/css?family=Poppins|Noto+Sans+TC");
@import url("https://fonts.googleapis.com/css?family=Poppins|Noto+Serif+TC");
@font-face {
  font-family: BpmfIansui;
  src: url("/font/BpmfIansui-Regular.woff") format("woff");
}
@font-face {
  font-family: BpmfGen;
  src: url("/font/BpmfGenSekiGothic-R.ttf");
}
.flex_around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_center, .form_block .button_group, .form_block a,
.form_block button, .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_start, .letter_block, form, .form_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.background_template, .letter_block, form, .form_block, .main {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

body,
div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

body {
  clear: both;
  text-align: center;
  font-family: "Poppins", "Noto Sans TC", sans-serif, FontAwesome;
  font-size: 14px;
  color: #7A6955;
  padding: 0;
  margin: 0;
  font-weight: 500;
  position: relative;
  letter-spacing: 1px;
  background-color: #fff;
  line-height: 1.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: black;
}

.main {
  background-image: url("/images/bg.jpg");
  background-size: 100%;
  background-repeat: repeat;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
}
.main .banner {
  position: relative;
}
.main .banner img {
  width: 100%;
  max-width: 800px;
  height: auto;
}
.main .btn {
  position: absolute;
  width: 60%;
  max-width: 400px;
  height: auto;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.main .btn .link {
  display: block;
  cursor: pointer;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  -webkit-animation: btn_zoom 3s infinite 75ms;
  animation: btn_zoom 3s infinite 75ms;
  -webkit-animation-name: btn_zoom;
          animation-name: btn_zoom;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.main .btn .link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@-webkit-keyframes btn_zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  15% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  30% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes btn_zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  15% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  30% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.form_block {
  font-family: "BpmfGen";
  background-image: url("/images/bg.jpg");
  background-size: 100%;
  background-repeat: repeat;
  width: 100%;
  height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form_block .logo {
  margin: 20px auto;
  max-width: 150px;
}
.form_block .title {
  font-family: "BpmfGen";
  font-size: 32px;
  color: #7A6955;
  line-height: 0.8;
  margin-top: 20px;
  margin-bottom: 10px;
}
.form_block .footer {
  margin-top: auto;
}
.form_block a,
.form_block button {
  text-decoration: none;
  width: 300px;
  background: #3FB9B8;
  color: #fff;
  height: 45px;
  border: 2px solid #2074B1;
  border-radius: 50px;
  font-size: 18px;
  font-family: "BpmfGen";
  cursor: pointer;
}
.form_block a:hover,
.form_block button:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #2074B1;
  border-color: #3FB9B8;
  text-decoration: none;
  color: #fff;
}
.form_block .button_group a {
  width: 150px;
  margin: 10px;
}
.form_block #child {
  border-radius: 0;
  background: #fff;
  height: 40px;
  width: 150px;
  padding: 5px;
  text-align: center;
}

form {
  background-image: url("/images/letter.png");
  background-size: 100%;
  width: 10.5cm;
  height: 14.8cm;
  width: 320px;
  height: 448px;
  margin: 20px auto;
  font-family: "BpmfGen";
  font-size: 14px;
  text-align: left;
  padding: 30px 50px;
  padding-bottom: 55px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
form .form_item {
  width: 100%;
  margin: 0;
}
form input {
  border: none;
  border-radius: 0;
  background: #fff;
  height: 40px;
  width: 50px;
  padding: 5px;
  text-align: center;
}
form input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
  opacity: 1;
  font-size: 14px;
  /* Firefox */
}
form input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
  opacity: 1;
  font-size: 14px;
  /* Firefox */
}
form input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
  opacity: 1;
  font-size: 14px;
  /* Firefox */
}
form input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
  opacity: 1;
  font-size: 14px;
  /* Firefox */
}
form input::placeholder {
  color: rgba(0, 0, 0, 0.25);
  opacity: 1;
  font-size: 14px;
  /* Firefox */
}
form textarea {
  border: none;
  border-radius: 0;
  background: #fff;
  width: 100%;
  height: 185px;
  padding: 0 10px;
  resize: none;
  margin-top: 20px;
  font-size: 14px;
}
form textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
  opacity: 1;
  /* Firefox */
}
form textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
  opacity: 1;
  /* Firefox */
}
form textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
  opacity: 1;
  /* Firefox */
}
form textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.25);
  opacity: 1;
  /* Firefox */
}
form textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
  opacity: 1;
  /* Firefox */
}
form #parent {
  margin-top: auto;
  text-align: right;
  padding-right: 20px;
  font-size: 14px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  background: transparent;
}

.letter_block {
  background-image: url("/images/letter.png");
  background-size: 100%;
  width: 10.5cm;
  height: 14.8cm;
  width: 320px;
  height: 448px;
  margin: 20px auto;
  font-family: "BpmfGen";
  font-size: 14px;
  text-align: left;
  padding: 30px 60px;
  padding-bottom: 55px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.letter_block .form_item {
  width: 100%;
  margin: 0;
}
.letter_block #parent {
  margin-top: auto;
  text-align: right;
  padding-right: 20px;
}
.letter_block #content {
  max-width: 290px;
  overflow: hidden;
}
.letter_block #content .content {
  font-size: 14px;
  margin-top: 20px;
}

.bottom_text {
  font-family: "BpmfGen";
  font-size: 20px;
}/*# sourceMappingURL=bottle9.css.map */