@import url(../fonts/flaticon/flaticon.css);
@import url(../css/revise.css);

.wow {
  visibility: hidden;
}
.wow.animate__animated {
  visibility: visible;
}

/*========================================================
                         基本設定
=========================================================*/

/* 基礎重置 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans TC", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 32px;
  font-size: 1rem;
  color: #000;
  overflow-x: hidden;
  background-color: #fff;
}
h2 {
  color: #10808e;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  margin: unset;
  transform: scaleX(1.05);
  transform-origin: left;
}
h3 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
  margin: 5% 0 10% 0;
}
p {
  margin: unset;
  font-size: 14.4px;
  line-height: 28px;
}
/* google recaptcha 隱藏 */
.grecaptcha-badge {
  visibility: hidden;
}
.pc {
  display: none;
}
.mb {
  display: block;
}
section {
  min-height: 820px;
}
@media screen and (min-width: 540px) {
  section {
    min-height: unset;
  }
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 40px;
    line-height: 1.3;
  }
  h3 {
    font-size: 36px;
    margin: 4% 0 8% 0;
  }
  p {
    font-size: 18px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 32px;
  }
  p {
    font-size: 16px;
    line-height: 30px;
  }
  .pc {
    display: block;
  }
  .mb {
    display: none;
  }
}

/*========================================================
                          nav
=========================================================*/

.navbar {
  padding: 0;
  position: fixed;
  z-index: 9999;
  top: 8%;
  right: 2%;
  transform: translateY(-5%);
  display: flex;
  justify-content: end;

  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.navbar.Sticky {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-3%);
}

.navbar .navbar-Link {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.navbar .navbar-Link .btn {
  position: relative;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  background: #f4e827;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;
  text-shadow: none;
  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.navbar .navbar-Link .btn i {
  color: #01807a;
  position: relative;
  z-index: 2;
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.navbar .navbar-Link .btn:hover,
.navbar .navbar-Link .btn:active {
  background: #f0e76d;
  border: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transform: scale(1.06);
}
.navbar .navbar-Link .btn:hover i,
.navbar .navbar-Link .btn:active i {
  transform: scale(1.05);
}
.navbar .navbar-Link .btn span {
  display: none;
}

@media (max-width: 991px) {
  .navbar {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    transform: translateY(0);
    background-color: rgba(252, 252, 252, 0.62);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0px -6px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar.Sticky {
    transform: translateY(0);
  }

  .navbar .navbar-Link {
    width: 100%;
    flex-direction: row;
    gap: 0;
  }

  .navbar .navbar-Link .btn {
    width: 25%;
    height: 68px;
    min-width: auto;
    font-size: 14px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #01807a;
    border-left: 1px solid rgba(118, 114, 114, 0.18);

    /* 🔥 這兩個是關鍵 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .navbar .navbar-Link .btn:first-child {
    border-left: none;
  }

  .navbar .navbar-Link .btn::before {
    display: none;
  }

  .navbar .navbar-Link .btn i {
    font-size: 1rem;
  }

  .navbar .navbar-Link .btn span {
    display: block;
    font-size: 14px;
    margin-top: 2px;
  }
  .navbar .navbar-Link .btn:hover,
  .navbar .navbar-Link .btn:active {
    background: unset;
    border: unset;
    box-shadow: unset;
    transform: unset;
  }

  .navbar .navbar-Link .btn:hover i,
  .navbar .navbar-Link .btn:active i {
    transform: unset;
  }
}

/*========================================================
                          區塊1
=========================================================*/

.section1 {
  min-height: unset;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: #10808e;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.s1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 100%;
}
.s1 .box {
  width: 100%;
  height: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
}
.s1 .box img {
  width: 100%;
  object-fit: cover;
}
.s1 .logo-block {
  position: relative;
  width: 100%;
  margin-bottom: 8%;
}
.s1-deer,
.s1-hill {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .s1 {
    width: 65%;
  }
  .s1 .box {
    height: 65%;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section1 {
    aspect-ratio: 16 / 9;
    height: 100%;
    min-height: unset;
  }
  .s1 {
    width: 40%;
  }
}
@media screen and (min-width: 1500px) {
  .s1 {
    width: 35%;
  }
}

/*========================================================
                          video block
=========================================================*/
.video {
  min-height: unset;
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  pointer-events: none;
}
.video > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*========================================================
                          區塊3
=========================================================*/
.section3 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
}
.section3 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/s3-bg-mb.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.section3 .box {
  position: relative;
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-shadow: 0 0 5px rgba(67, 66, 66, 0.5);
}
.section3 h2 {
  color: #fff;
}
.section3 span {
  position: absolute;
  right: 0;
  bottom: 2%;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .section3 {
    height: 100vh;
  }
  .section3 h2 {
    font-size: 54px;
  }
  .section3 span {
    left: 0;
    right: unset;
    bottom: 5%;
    font-size: 16px;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section3 .bg {
    background: url(../img/s3-bg.png) no-repeat;
    background-size: cover;
    background-position: 80%;
  }
  .section3 .box {
    width: 80%;
  }
  .section3 h2 {
    font-size: 64px;
  }
  .section3 h3 {
    margin: 3% 0;
  }
  .section3 p {
    font-size: 16px;
  }
  .section3 span {
    bottom: 10%;
    font-size: 12px;
  }
}
/*========================================================
                         區塊4
=========================================================*/
.section4 {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.section4 .box {
  position: relative;
  width: 85%;
  display: flex;
  flex-direction: column;
}
.pic {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.pic .pic-swiper {
  width: 100%;
}
.pic .pic-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pic .pic-swiper .pic-txt {
  width: 100%;
  text-align: center;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-shadow:
    1px 1px 2px #000,
    1px 1px 2px #000;
  position: absolute;
  color: #fff;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 26px !important;
  font-weight: 700;
  color: #fff;
}

.swiper-button-prev {
  left: 4% !important;
}

.swiper-button-next {
  right: 4% !important;
}

.swiper-button-disabled {
  opacity: 0.28;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .section4 {
    height: 100vh;
  }
  .pic .pic-swiper .pic-txt {
    font-size: 16px;
    top: 55%;
  }
  .pic .pic-swiper .swiper-slide {
    width: 85%;
  }
  .swiper-button-prev {
    left: 10% !important;
  }

  .swiper-button-next {
    right: 10% !important;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section4 {
    flex-direction: row;
  }
  .section4 .box {
    width: 45%;
    padding: 0 5% 0 10%;
  }
  .pic {
    width: 55%;
    height: 100%;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 32px !important;
  }
}

/*========================================================
                         區塊5
=========================================================*/
.section5 {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.section5 .box {
  position: relative;
  width: 85%;
  display: flex;
  flex-direction: column;
}
.section5 .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section5 .pic span,
.section6 .sky span {
  z-index: 1;
  color: #fff;
  position: absolute;
  right: 2%;
  top: 1%;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .section5 {
    height: 100%;
  }
  .section5 .box {
    margin-bottom: 15%;
  }
  .section5 .pic span,
  .section6 .sky span {
    font-size: 14px;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section5 {
    flex-direction: row;
    height: 100vh;
  }
  .section5 .box {
    margin-bottom: unset;
    width: 45%;
    padding: 0 5% 0 10%;
  }
}
/*========================================================
                         區塊6
=========================================================*/
.section6 {
  min-height: unset;
  position: relative;
  width: 100%;
  height: 100%;
}

.sky {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sky::-webkit-scrollbar {
  display: none;
}

.sky.is-drag-mode {
  overflow-x: auto;
}

.sky .pic {
  width: fit-content;
  position: relative;
}

.sky img {
  width: auto;
  height: auto;
  max-height: 80vh;
  display: block;
  pointer-events: none;
}

.sky-drag-toggle {
  position: absolute;
  left: 4%;
  bottom: 6%;
  z-index: 30;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  animation: dragHintSwipe 1.6s ease-in-out infinite;
}

.sky-drag-toggle img {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.sky-drag-toggle.is-hidden {
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  pointer-events: none;
}

.sky-tip {
  position: absolute;
  left: 4%;
  bottom: calc(6% + 82px);
  z-index: 30;
  margin: 0;
  padding: 8px 12px;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.sky-tip.is-hidden {
  opacity: 0;
  transform: translateY(8px);
}

@keyframes dragHintSwipe {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

.aerial_light_wrapper {
  position: absolute;
  left: 40%;
  top: 73%;
  transform: translate(-50%, -50%);
  width: 3%;
  height: 30%;
  pointer-events: none;
}
.aerial_light_col {
  position: absolute;
  width: 75%;
  height: 85%;
  background: linear-gradient(
    0deg,
    rgba(255, 251, 177, 0.3),
    rgba(255, 251, 177, 0.1)
  );
  border-radius: 0 0 10px 10px;
  animation: flash 2s linear infinite;
}
.aerial_light_content {
  position: relative;
  width: 75%;
  height: 75%;
}
.aerial_light {
  position: absolute;
  top: 100%;
  width: 2px;
  height: 2px;
  background-color: #fffbb1;
}
.aerial_light:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 251, 177, 1);
  box-shadow:
    0 0 15px 3px #fffbb1,
    0 0 10px 2px #fffbb1,
    0 0 15px 3px #fffbb1,
    0 0 5px 1px #fff,
    0 0 15px 3px #fff,
    0 0 10px 2px #fff;
}
.aerial_light1 {
  left: 0;
  animation: light 4s linear infinite;
  animation-delay: -1s;
}
.aerial_light2 {
  left: 20%;
  animation: light 6s linear infinite;
  animation-delay: -2s;
}
.aerial_light3 {
  left: 40%;
  animation: light 8s linear infinite;
  animation-delay: -3s;
}
.aerial_light4 {
  left: 80%;
  animation: light 10s linear infinite;
  animation-delay: -4s;
}
.aerial_light5 {
  left: 100%;
  animation: light 12s linear infinite;
  animation-delay: -5s;
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes light {
  0% {
    opacity: 1;
    margin-top: 0%;
  }
  12% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    margin-top: -800%;
    opacity: 0;
  }
}
.s6-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #01807a;
  padding: 9% 3%;
}
.s6-p1 {
  position: relative;
  width: 100%;
  object-fit: contain;
  padding: 10% 30% 8% 5%;
}
.s6-block .text {
  color: #fff;
  padding: 0 0 10% 5%;
}
.s6-block p {
  font-size: 13px;
  line-height: 26px;
}
.s6-block h3 {
  font-size: 20px;
  line-height: 40px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .s6-block {
    flex-direction: row;
    justify-content: center;
    padding: 10% 5%;
  }
  .s6-block .text {
    display: block;
    width: 100%;
    position: relative;
    padding: 0 0 0 5%;
    border-left: 1.5px solid #fff;
  }
  .s6-p1 {
    padding: 0 5% 0 0;
    width: 48%;
  }
}
@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .sky {
    overflow: hidden;
  }
  .sky img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: unset;
  }
  .sky-drag-toggle,
  .sky-tip {
    display: none;
  }
  .s6-p1 {
    padding: 0 8% 0 5%;
    width: 48%;
  }
  .s6-block {
    padding: 12% 6%;
  }
  .s6-block .text {
    width: 45%;
    padding: 0 0 0 8%;
  }
  .s6-block h3 {
    font-size: 32px;
    line-height: 64px;
    margin: 0 0 5% 0;
  }
  .s6-block p {
    font-size: 16px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1500px) {
  .s6-block h3 {
    font-size: 36px;
    line-height: 72px;
  }
  .s6-block p {
    font-size: 18px;
    line-height: 36px;
  }
}
/*========================================================
                          區塊7
=========================================================*/
.section7 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section7 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/s7-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.section7 .box {
  position: relative;
  width: 90%;
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-shadow: 0 0 5px rgba(67, 66, 66, 0.5);
}
.section7 h2 {
  color: #fff;
  transform-origin: center;
}
.section7 .eng {
  text-align: center;
}
.section7 .eng span {
  font-size: 10px;
}
.section7 .pic-txt {
  z-index: 1;
  color: #fff;
  position: absolute;
  left: 2%;
  bottom: 1%;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .section7 .eng span {
    font-size: 14px;
  }
  .section7 .pic-txt {
    font-size: 14px;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section7 h2 {
    font-size: 32px;
  }
  .section7 .eng span {
    font-size: 12px;
  }
  .section7 .box {
    flex-direction: row;
    width: 80%;
  }
  .section7 .box .txt {
    align-self: flex-end;
  }
  .section7 .pic-txt {
    font-size: 12px;
    left: 10%;
    bottom: 10%;
  }
}

/*========================================================
                         區塊8
=========================================================*/
.section8 {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.section8 .box {
  position: relative;
  width: 85%;
  display: flex;
  flex-direction: column;
  margin-top: 20%;
}
.section8 .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section8 .pic span {
  z-index: 1;
  position: absolute;
  right: 2%;
  bottom: 1%;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .section8 {
    height: 100%;
  }
  .section8 .box {
    margin: 15% 0;
  }
  .section8 .pic span {
    font-size: 14px;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section8 {
    flex-direction: row;
    height: 100vh;
  }
  .section8 .box {
    width: 45%;
    padding: 0 5% 0 10%;
    margin: unset;
  }
}

/*========================================================
                          區塊9
=========================================================*/
.section9 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section9 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/s9-bg-mb.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.section9 .box {
  position: relative;
  width: 95%;
  height: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-shadow: 0 0 5px rgba(67, 66, 66, 0.5);
  text-align: center;
}
.section9 .eng {
  position: absolute;
  top: 42%;
  right: 8%;
}
.section9 .text {
  position: absolute;
  left: 5%;
  bottom: 30%;
  display: flex;
  width: 100%;
}
.section9 h2 {
  color: #fff;
  transform-origin: center;
  font-size: 18px;
  line-height: 16px;
}
.section9 h3 {
  font-size: 20px;
  letter-spacing: 2px;
  writing-mode: vertical-lr;
  margin: 0 5% 0 0;
}
.section9 p {
  align-self: end;
  text-align: left;
  font-size: 11px;
}
.section9 span {
  font-size: 8px;
  line-height: 16px;
}

@media screen and (min-width: 768px) {
  .section9 {
    min-height: 1500px;
  }
  .section9 h2 {
    font-size: 28px;
    line-height: 32px;
  }
  .section9 h3 {
    font-size: 26px;
    letter-spacing: 4px;
  }
  .section9 p {
    font-size: 16px;
    line-height: 32px;
  }
  .section9 span {
    font-size: 11px;
  }
}
@media screen and (min-width: 991px) {
  .section9 {
    min-height: 1800px;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section9 {
    min-height: unset;
  }
  .section9 .bg {
    background: url(../img/s9-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .section9 .eng {
    position: relative;
    top: unset;
    right: unset;
  }
  .section9 .text {
    width: unset;
    position: relative;
    left: unset;
    bottom: unset;
    flex-direction: column;
    align-items: center;
  }
  .section9 h2 {
    font-size: 32px;
  }
  .section9 .eng span {
    font-size: 12px;
  }
  .section9 h3 {
    font-size: 28px;
    margin: 6% 0;
  }
  .section9 p {
    text-align: center;
  }
  .section9 .box {
    width: 85%;
    height: 80%;
    justify-content: center;
  }
}
@media screen and (min-width: 1500px) {
  .section9 h3 {
    margin: 8% 0;
  }
}

/*========================================================
                         區塊10
=========================================================*/
.section10 {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.section10 .box {
  position: relative;
  width: 85%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.section10 h2 {
  transform-origin: center;
}
.section10 .pic .pic-swiper .pic-txt {
  width: unset;
  text-shadow: unset;
  font-size: 20px;
  font-weight: 500;
  top: unset;
  bottom: 1%;
  left: unset;
  right: 3%;
  transform: unset;
}

@media screen and (min-width: 768px) {
  .section10 {
    height: 100vh;
  }
  .section10 .pic .pic-swiper .pic-txt {
    font-size: 32px;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section10 {
    height: 100%;
  }
  .section10 .pic {
    margin-top: 5%;
    width: 100%;
  }
  .section10 .pic .pic-swiper .swiper-slide {
    width: 60%;
  }
  .section10 .pic .pic-swiper .pic-txt {
    font-size: 40px;
  }
  .section10 .box {
    margin: 5% 0 8% 0;
  }
  .section10 h3 {
    margin: 1.5% 0 3% 0;
  }
  .section10 .swiper-button-prev {
    left: 22% !important;
  }

  .section10 .swiper-button-next {
    right: 22% !important;
  }
}

@media screen and (min-width: 1500px) {
  .section10 .pic .pic-swiper .pic-txt {
    font-size: 44px;
  }
}

/*========================================================
                          區塊11
=========================================================*/
.section11 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section11 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/s11-bg.png) no-repeat;
  background-size: cover;
  background-position: 48%;
}
.section11 .box {
  position: relative;
  width: 90%;
  height: 75%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-shadow: 0 0 5px rgba(67, 66, 66, 0.5);
}
.section11 h3 {
  font-size: 28px;
}
.section11 .books {
  width: 90%;
}
.section11 span {
  z-index: 1;
  color: #fff;
  position: absolute;
  right: 2%;
  top: 1%;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .section11 {
    height: 100vh;
  }
  .section11 .box {
    height: 80%;
  }
  .section11 h3 {
    font-size: 40px;
  }
  .section11 span {
    font-size: 14px;
  }
}
@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section11 .bg {
    background-position: center;
  }
  .section11 h3 {
    font-size: 32px;
    margin: 4% 0 2% 0;
  }
  .section11 .books {
    width: 80%;
  }
}

@media screen and (min-width: 1500px) {
  .section11 .box {
    height: 75%;
  }
}

/*========================================================
                          區塊12
=========================================================*/
.section12 {
  background-color: #01807a;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 0;
}
.s12 {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.section12 h3 {
  font-weight: 500;
  font-size: 26px;
  line-height: 40px;
  margin: unset;
}
.section12 p {
  margin: 10% 0 4% 0;
}
.section12 span {
  color: #f4e827;
}
.info-block {
  margin-bottom: 10%;
}
.map-block {
  width: 100%;
  height: 350px;
}

@media screen and (min-width: 768px) {
  .s12 {
    width: 85%;
  }
  .section12 h3 {
    font-size: 36px;
    line-height: 48px;
    margin: unset;
  }
  .section12 p {
    font-size: 20px;
    line-height: 36px;
    margin: 10% 0 4% 0;
  }
  .section12 span {
    font-size: 22px;
    line-height: 40px;
  }
  .info-block {
    margin: 10% 0;
  }
  .map-block {
    height: 450px;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .section12 {
    height: 100vh;
    min-height: 800px;
    align-items: center;
  }
  .s12 {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 85%;
    max-width: 1300px;
  }
  .section12 h3 {
    font-size: 32px;
    line-height: 48px;
    margin: unset;
  }
  .section12 p {
    font-size: 16px;
    margin: 5% 0 2% 0;
  }
  .section12 span {
    font-size: 18px;
  }
  .info-block {
    width: 40%;
    margin: 0;
    padding-right: 3%;
  }
  .map-block {
    width: 60%;
    height: 500px;
  }
}

/*========================================================
                         預約賞屋
=========================================================*/
.contact-block {
  margin: 5% 0 10% 0;
}
.contact {
  font-size: 32px;
  color: #01807a;
}

input,
select {
  background-color: transparent;
  border-radius: 50px;
  color: #10808e;
  outline-color: #00a29a;
  border: 1px solid #10808e;
  padding-left: 15px;
  opacity: 0.8;
}
input:focus,
select:focus {
  scale: 1.01;
  opacity: 1;
}
input[type="text"],
input[type="phone"],
select {
  height: 45px;
  width: 100%;
}
select {
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-position: 97%;
  background-size: 24px auto;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
::placeholder {
  color: #10808e !important;
}
:-ms-input-placeholder {
  color: #10808e !important;
}
::-ms-input-placeholder {
  color: #10808e !important;
}
.reservation {
  width: 100%;
  height: 100%;
  min-height: 800px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px 0;
}
.reservation .box {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}
#myform {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reservation .input-block {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
/* 所有欄位預設一列寬 */
.reservation .input-block input,
.reservation .input-block select {
  flex: 1 1 100%;
}
.reservation .form_check_txt {
  color: #606060;
  font-size: 14.4px;
  margin-left: 3px;
  line-height: 1.8;
}
.reservation .form_check_txt a {
  text-decoration: none;
  color: #606060;
}
.reservation .reg_btn {
  width: 100%;
  background-color: #f4e827;
  color: #10808e;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  margin-top: 20px;
  padding: 10px 20px;
  line-height: normal;
}
.reservation .reg_disabled {
  cursor: no-drop;
  opacity: 0.6;
}
.reservation .reg_btn:hover {
  background-color: #f4e627c9;
  opacity: 0.8;
}
.reservation .reg_btn:focus {
  outline: unset;
}
.reservation .reg_disabled:hover {
  background-color: #f4e627c9;
  opacity: 0.6;
}
.reservation .msgerror {
  color: #c40101;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
.input-error {
  border: 2px solid #ee7878 !important;
}
.input-error:focus {
  outline: 0;
  box-shadow: 0 0 10px 3px rgb(149 149 149) !important;
}
.priv {
  color: #606060;
  margin-bottom: 2%;
}

/* 平板以上：兩欄排版邏輯 */
@media screen and (min-width: 768px) {
  .reservation .input-block .field-group-half {
    flex: 1 1 calc(50% - 7px); /* 兩欄，中間 gap 是14px */
  }

  .reservation .input-block .field-group-full {
    flex: 1 1 100%;
  }
  .contact {
    font-size: 48px;
    line-height: 48px;
  }
}

@media screen and (min-width: 1100px),
  screen and (min-width: 1024px) and (max-height: 650px) {
  .reservation {
    height: 100%;
    justify-content: center;
    padding: unset;
  }
  .reservation .box {
    display: flex;
    justify-content: center;
    width: 85%;
    max-width: unset;
    gap: 5%;
  }
  #myform {
    flex-direction: row;
    width: 100%;
  }
  .contact-block {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    height: 100%;
    margin: unset;
  }
  .contact-block::after {
    content: "";
    width: 1.5px;
    height: 100%;
    background-color: #606060;
    position: absolute;
    right: 15%;
  }
  .contact {
    font-size: 54px;
    line-height: 54px;
    transform: scaleX(1.1);
    transform-origin: left;
    color: #01807a;
  }
  .reservation .input-block {
    width: 50%;
    margin-bottom: unset;
  }
  .priv {
    font-size: 17px;
  }
  .reservation .form_check_txt {
    font-size: 16px;
  }
  .btn-block {
    display: flex;
  }
  .btn-block > div {
    width: 100%;
  }
  .reservation .reg_btn {
    margin-top: 10px;
  }
}

@media screen and (min-width: 1500px) {
  .reservation .box {
    max-width: 1200px;
  }
}

/*========================================================
                         隱私權聲明
=========================================================*/

.fancybox-container {
  z-index: 9999999;
}

.modal-body {
  overflow-y: auto;
  padding: 20px;
}

.modal-header {
  border-bottom: none;
}

.modal-body h2 {
  text-align: center;
  margin-bottom: 20px;
}

.modal-body p span {
  font-weight: bold;
  font-size: 1.1rem;
}

.modal-dialog {
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .modal-body {
    padding: 20px 40px;
  }

  .modal-dialog {
    max-width: 1000px;
  }
}

@media (min-width: 1024px) {
  .modal-body {
    padding: 20px 80px;
  }

  .modal-dialog {
    max-width: 1200px;
    margin-bottom: 0;
  }
}

/*========================================================
                         footer
=========================================================*/

footer {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4e827;
  color: #01807a;
  margin-bottom: 60px;
}

footer p {
  margin: unset;
  font-size: 0.75rem;
}

@media screen and (min-width: 992px) {
  footer {
    height: 50px;
    margin-bottom: unset;
  }
}

[data-aos="custom-zoom-out"] {
  transform: scale(1.2);
  opacity: 1;
  transition-property: transform, opacity;
  transition:
    transform 5s ease,
    opacity 3s ease !important;
}

[data-aos="custom-zoom-out"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos="custom-fade-up"] {
  transform: translateY(30px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="custom-fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="custom-fade-down"] {
  transform: translateY(-30px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="custom-fade-down"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="fade"] {
  opacity: 0;
  transition: opacity 2s ease;
}

[data-aos="fade"].aos-animate {
  opacity: 1;
}
