@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 客製化預設樣式 */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #ffffff;
}
a:hover {
  color: #ffffff !important;
}


body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  background-color: #171717;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.font-stack-line {
  font-family: "LINE Seed TW_TTF", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.fz-12 {
  font-size: 12px;
}

.fz-14 {
  font-size: 14px;
}

.fz-18 {
  font-size: 18px;
}

.w-100 {
  width: 100%;
}

.w-560p {
  width: 560px;
}

.h-485p {
  height: 485px;
}

.color-fff {
  color: #ffffff;
}

.color-fffE0 {
  color: rgba(255, 255, 255, 0.8784313725);
}

.bg-black-202020 {
  background-color: #202020;
}

.bg-blue-288DE8 {
  background-color: #288de8;
}

.bg-00000040 {
  background-color: rgba(0, 0, 0, 0.2509803922);
}

.bg-second {
  background-color: rgba(29, 62, 121, 0.6);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.gap-8p {
  gap: 8px;
}

.gap-20p {
  gap: 20px;
}

.gap-60p {
  gap: 60px;
}

.px-20 {
  padding: 0 20px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.me-8 {
  margin-right: 8px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-24 {
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.border-white-thin {
  border: 1px solid #ffffff;
}

.radius-8p {
  border-radius: 8px;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.btn-sm {
  padding: 8px 30px;
  font-weight: 500;
  display: block;
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

.main-animation {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #1e2022;
  overflow: hidden;
}

.animation-lottie {
  width: 100vw;
  height: 90vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.4);
  transform-origin: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}
.animation-lottie .animation-lottie > svg {
  width: 100%;
  height: 100%;
}

.animation-photo {
  display: none;
  width: min(70vw, 100vh, 1000px);
  height: min(70vw, 100vh, 1000px);
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  filter: blur(5px);
  animation: fadeAnim 2.67s forwards, scaleAnim 2.67s forwards, blurAnim 2.67s forwards;
}

.animation-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}

.title_EN {
  text-align: center;
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 767px) {
  .title_EN {
    font-size: 20px;
  }
}
@media (max-width: 567px) {
  .animation-lottie {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
/* 影格動畫 */
@keyframes fadeAnim {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  87% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 圖片縮放偏移動畫 */
@keyframes scaleAnim {
  3% {
    transform: translate(-50%, -50%) scale(1.05);
  }
  5% {
    transform: translate(-50%, -50%) scale(1);
  }
  12% {
    transform: translate(-50%, -50%) scale(1.01);
  }
  44% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes blurAnim {
  31% {
    filter: blur(5px);
  }
  44% {
    filter: blur(0px);
  }
  100% {
    filter: blur(0px);
  }
}
.header {
  position: fixed;
  width: 100%;
  padding: 18px 0;
  background-color: rgba(29, 62, 121, 0.6);
  -webkit-backdrop-filter: blur(64px);
          backdrop-filter: blur(64px);
  z-index: 100;
}
.header .nav-bar {
  gap: 32px;
}

@media (max-width: 992px) {
  .header {
    padding-left: 12px;
    padding-right: 12px;
  }
  .nav-bar {
    font-size: 12px;
    gap: 20px !important;
  }
  .nav-bar .btn-sm {
    font-size: 12px;
    padding: 8px 16px;
  }
}
@media (max-width: 768px) {
  .ezfly-logo a {
    font-size: 12px;
  }
  .nav-bar {
    gap: 12px !important;
  }
}
@media (max-width: 576px) {
  .header {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .nav-bar .btn-sm {
    padding: 4px 8px;
  }
}
.banner {
  position: relative;
  width: 100%;
  height: 750px;
  background-image: url("https://img.ezfly.com/ims/I000/078/752.jpg");
  background-repeat: no-repeat;
  background-position: center 68px;
  background-size: cover;
  aspect-ratio: 16/9;
}
.banner .banner-text {
  font-size: 16px;
}
.banner .float-img {
  width: 483px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding-top: 224px;
}

@media (max-width: 768px) {
  .banner-text {
    font-size: 14px !important;
  }
}
@media (max-width: 576px) {
  .banner {
    aspect-ratio: 9/16;
    background-image: url("https://img.ezfly.com/ims/I000/078/751.jpg");
    background-size: cover;
    height: 768px;
  }
}
.event-desc {
  padding: 88px 20px;
  display: flex;
  justify-content: center;
}
.event-desc__inner {
  width: 100%;
  max-width: 920px;
  text-align: center;
  color: #d9d9d9;
}
.event-desc__eyebrow {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.28);
}
.event-desc__title {
  margin: 0 0 28px;
  font-size: clamp(28px, 4.6vw, 48px);
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}
.event-desc__body p {
  margin: 0 0 28px;
  font-size: clamp(15px, 2.1vw, 18px);
  line-height: 1.95;
}
.event-desc__highlight {
  margin-top: 6px;
  font-weight: 700;
  color: #e6e6e6;
}
.event-desc__cta {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 26px;
  background: #288de8;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(40, 141, 232, 0.28);
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.event-desc__cta:hover {
  background: #3a9bf0;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(40, 141, 232, 0.35);
}
.event-desc__cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(40, 141, 232, 0.3);
}

.picture-description {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 0;
  /* 四格中右上小圖 */
}
.picture-description .picture-grid {
  display: grid;
  width: 50% !important;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.picture-description .picture-grid img {
  width: 100%;
  height: auto;
}
.picture-description .row {
  display: contents;
  width: 50%;
}
.picture-description .row img {
  padding-right: 0px !important;
  padding-left: 0px !important;
  border-radius: 8px;
}
.picture-description .picture-text {
  color: #fff;
  line-height: 1.8;
  font-size: 16px;
}
.picture-description .row:nth-child(1) img:nth-child(2) {
  align-self: end;
}

.picture-description .picture-grid .row:nth-child(2) img:nth-child(1) {
  width: 80%;
  display: block;
}
.picture-description .row:nth-child(2) img:nth-child(2) {
  margin-left: -4rem;
}

@media (max-width: 992px) {
  .picture-description {
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
  }
  .picture-description .picture-grid {
    width: 100% !important;
    padding: 0 20px;
  }
  .picture-text {
    width: 100%;
    padding: 0 20px;
    order: -1;
  }
  .picture-description .row:nth-child(2) img:nth-child(2) {
    margin-left: -6rem;
  }
}
@media (max-width: 767px) {
  .event-desc {
    padding: 64px 16px;
  }
  .event-desc__body p {
    font-size: 14px !important;
  }
  .picture-description {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .picture-text {
    font-size: 14px !important;
    padding: 0;
  }
  .picture-description .picture-grid {
    padding: 0;
  }
  .picture-description .row:nth-child(2) img:nth-child(2) {
    margin-left: -3rem;
  }
}
.masonry {
  width: 100%;
  margin: 0 auto;
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding: 0 20px;
}

.masonry .item {
  margin-bottom: 16px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  overflow: hidden;
  border-radius: 8px;
}

.masonry .item img {
  width: 100%;
  display: block;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.masonry .item img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .masonry {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (max-width: 767px) {
  .masonry {
    -moz-column-count: 2;
         column-count: 2;
  }
}
/* ===== Popup ===== */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9998;
}

.popup__content {
  position: relative;
  background: #1e1e1e;
  color: #fff;
  display: flex;
  border-radius: 12px;
  width: 70%;
  position: relative;
  height: 600px;
}

.popup__image {
  flex: 0 0 75%;
  max-width: 60%;
  display: flex;
  padding: 0 20px;
  justify-content: center;
  border-radius: 4px;
}
.popup__image img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px !important;
}

.popup__text {
  flex-direction: column;
  font-size: 14px;
  flex: 1 1 40%;
  max-width: 40%;
  display: flex;
  border-left: 1px solid #252525;
  scrollbar-width: none;
  -ms-overflow-style: none;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.popup__text::-webkit-scrollbar {
  display: none;
}

.popup-desc {
  overflow-y: auto;
  /* 隱藏預設捲動條（Chrome / Safari / Edge）*/
  /* 隱藏 Firefox 捲動條 */
  scrollbar-width: none;
  /* 隱藏 IE/Edge Legacy */
  -ms-overflow-style: none;
}
.popup-desc::-webkit-scrollbar {
  display: none;
}

.popup__btn {
  margin-top: auto;
  background: #288de8;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.popup__close {
  position: absolute;
  font-size: 30px;
  top: 0;
  right: -5.5%;
  cursor: pointer;
}

.popup-desc {
  padding: 20px;
}

.author__text {
  font-size: 12px;
  padding: 20px 20px 0;
}

.author__name {
  border-bottom: 1px solid #252525;
  padding: 0 20px 20px 20px;
}

.popup__arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10002;
  transform: translateY(-50%);
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;
}

.popup__arrow--left {
  left: -6%;
}

.popup__arrow--right {
  right: -6%;
}

.btn-product-Link {
  padding: 20px;
}

@media (max-width: 992px) {
  .popup__content {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    gap: 16px;
    padding-top: 60px;
    height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .popup__content::-webkit-scrollbar {
    display: none;
  }
  .popup__image {
    width: 100% !important;
    height: 50%;
    max-width: none;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    position: relative;
    border-radius: 4px;
    flex: 0 0 40%;
  }
  .popup__image img {
    width: 100%;
    height: auto;
    max-height: 40vh;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 4px !important;
  }
  .popup__close {
    position: fixed;
    top: 0.5%;
    right: 3%;
  }
  .popup__arrow {
    font-size: 20px;
  }
  .popup__text {
    width: 100% !important;
    max-width: none;
  }
  .popup__arrow--left {
    top: 35%;
    left: -1%;
  }
  .popup__arrow--right {
    top: 35%;
    right: -1%;
  }
}
@media (max-width: 767px) {
  .popup {
    align-items: center;
    overflow-y: auto;
  }
  .popup__content {
    overflow-y: auto;
  }
  .popup__image {
    width: 100%;
  }
  .popup__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .popup__text {
    width: 100%;
  }
  .popup__btn {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
  }
  .author__text {
    padding-top: 0 !important;
  }
  .author__name {
    padding-top: 0 !important;
  }
  .popup-desc {
    padding: 16px 20px;
  }
}
@media (max-width: 767px) {
  .popup__arrow--left {
    top: 30%;
    left: -1%;
  }
  .popup__arrow--right {
    top: 30%;
    right: -1%;
  }
}
@media (max-width: 400px) {
  .popup__content {
    padding-top: 40px;
  }
}
.camera-map .bg-camera-map {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.camera-map .bg-camera-map .map-marker {
  position: absolute;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  transform: translate(-50%, -100%);
}
.camera-map .bg-camera-map .tourist-destinations {
  width: 24px;
  height: 24px;
  margin-right: 11px;
  aspect-ratio: 1/1;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.camera-map .bg-camera-map .map-legend {
  position: absolute;
  bottom: 10px;
  left: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 5;
}
.camera-map .bg-camera-map .map-legend li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.camera-map .camera-location {
  height: 35px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateX(-14%);
}

.bg-camera-map-inner {
  width: 100%;
  height: 100%;
  background: url("https://img.ezfly.com/ims/I000/078/753.png") center/contain no-repeat;
  position: relative;
}

.bg-camera-map::-webkit-scrollbar {
  display: none;
}

.map-marker {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -100%);
}

/* 圖示本體 */
.map-marker__img {
  display: block;
  width: 24px;
  height: auto;
  position: relative;
  z-index: 2;
}

.map-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 123, 255, 0.5);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 2s ease-out infinite;
  z-index: 1;
}

/* 相機圖示，置於正中央 */
.camera-location-extra {
  position: absolute;
  top: -25%;
  left: 50%;
  height: auto;
  transform: translate(-5%, -50%) scale(0);
  opacity: 0;
  z-index: 3;
  max-width: initial;
}

.camera-location-extra.animate {
  animation: popInOut 3s ease-in-out forwards;
}

.camera-location-extra.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* 擴散動畫 : 旅遊地點 icon */
/* 浮現動畫：由小到大出現，最後再消失 */
@keyframes popInOut {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  20% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  80% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .md-fontSize {
    font-size: 12px;
  }
  .md-spacing {
    padding-left: 4px !important;
  }
  .bg-camera-map {
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .bg-camera-map-inner {
    width: 125%;
    height: 100%;
    background-size: contain !important;
    background-position: left center;
  }
}
@media screen and (max-width: 576px) {
  .camera-location-extra {
    max-width: 140%;
    top: -1%;
  }
}
.faq {
  background: #171717;
  padding: 80px 20px;
  color: #fff;
  max-width: 920px;
  margin: 0 auto;
}

.faq__title_EN {
  text-align: center;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.28);
}

.faq__title {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 40px;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq__icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  transition: max-height 0.35s ease;
  background-color: rgba(34, 34, 34, 0.5019607843);
  border-radius: 12px;
}

.faq__item.active .faq__answer {
  max-height: 600px;
  margin-bottom: 20px;
}

.cus-wrap {
  padding: 24px 16px;
}

@media (max-width: 576px) {
  .faq__question,
  .faq__answer {
    font-size: 14px;
  }
}
.footer {
  padding: 20px 0;
}
.footer #globalFooter p {
  font-size: 14px !important;
}

.footer-note-line {
  position: relative;
  color: #bfbfbf;
  font-size: 14px;
  line-height: 140%;
  padding-left: 10px;
  max-width: 960px;
  margin-bottom: 16px;
}

.footer-note-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: #999;
  border-radius: 2px;
}

.footer-note a {
  color: #fff;
  text-decoration: none;
}

.footer-note a:hover {
  text-decoration: underline;
}

.faq__list {
  margin-bottom: 42px;
}

@media (max-width: 767px) {
  .footer p {
    font-size: 14px;
  }
  .footer-note-line::before {
    top: 10%;
    transform: translateY(10%) !important;
  }
}
@media (max-width: 567px) {
  .footer p {
    font-size: 12px;
  }
  .footer-note-line {
    padding-left: 10px;
  }
}