@charset "UTF-8";
header.site-header {
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.2); /* 半透明背景色 */
  backdrop-filter: blur(10px); /* 磨砂模糊效果 */
  -webkit-backdrop-filter: blur(10px); /* Safari 支援 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* 可選：微白邊框 */
  display: none;
}
@media (max-width: 768px) {
  header.site-header {
    display: unset;
  }
}

.site-main {
  position: relative;
  overflow: hidden;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  animation: animateBackground 50s ease-in-out infinite;
}
.site-main::after {
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(24, 31, 30, 0) 0%, rgb(24, 31, 30) 100%);
}
@media (max-width: 768px) {
  .site-main {
    height: 100vh;
    background-size: cover !important;
  }
}
.site-main > div:first-child {
  margin: 0 auto;
  width: 83.33%;
  max-width: 100%;
  aspect-ratio: 1440/800;
  z-index: 10;
}
@media (max-width: 768px) {
  .site-main > div:first-child {
    aspect-ratio: unset;
    height: 100%;
    padding-top: 115px;
  }
}
.site-main > div:first-child > div h1 {
  color: var(--white, #fff);
  /* Headline 1 */
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  /* 48px */
  letter-spacing: 0.384px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .site-main > div:first-child > div h1 {
    font-size: 24px;
  }
}
.site-main > div:first-child > div p {
  color: #f4f4f4;
  /* H2 Bold */
  font-family: "DM Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 26.4px */
  letter-spacing: 0.24px;
}
@media (max-width: 768px) {
  .site-main > div:first-child > div p {
    font-size: 16px;
  }
}
.site-main > div:first-child > div .btn-group {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .site-main > div:first-child > div .btn-group {
    width: 100%;
  }
}
.site-main > div:first-child > div .btn-group input {
  width: 510px;
  max-width: 100%;
  padding: 15px 24px 15px 64px;
  border-radius: 100px;
  border: 2px solid #fff;
  background: rgba(242, 242, 242, 0.2);
  transition: all 0.8s ease;
  color: #fff;
}
@media (max-width: 768px) {
  .site-main > div:first-child > div .btn-group input {
    width: 100%;
  }
}
.site-main > div:first-child > div .btn-group input::placeholder {
  color: var(--white, #fff);
  /* body */
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* 18.2px */
  letter-spacing: 0.28px;
}
.site-main > div:first-child > div .btn-group input:focus {
  outline: 2px solid #fff;
}
.site-main > div:first-child > div .btn-group button {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: transparent;
  border: none;
  font-size: 24px;
}
.site-main > div:last-child {
  width: 83.33%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.site-main > div:last-child > div {
  padding: 32px 0;
  color: var(--white, #fff);
  /* small */
  font-family: "DM Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* 15.6px */
}
#dialog-search {
  width: 50%;
  border-radius: 10px;
  border: 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media (max-width: 768px) {
  #dialog-search {
    width: 90%;
  }
}
#dialog-search > div h2 {
  color: var(--gray-2, #595959);
  /* btn */
  font-family: "DM Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
}
#dialog-search > div button[type=submit] {
  background-color: #ea9712;
  color: #fff;
  border-radius: 10px;
  border: 0;
  padding: 10px 20px;
}
#dialog-search > div button[type=button] {
  background-color: #c0392b;
  color: #fff;
  border: none !important;
}
#dialog-search > div input {
  height: 50px;
  border-radius: 10px;
  border: 0;
  padding: 10px 20px;
  border: 1px solid #1b1b1b;
}
#dialog-search > div .tag-container {
  margin-top: 10px;
}
#dialog-search > div .tag-container li {
  padding: 10px 16px;
  border: 1px solid #1b1b1b;
  border-radius: 99px;
}
#dialog-search > div .tag-container li a {
  color: #1b1b1b;
}

#close-search-dialog {
  border-radius: 44px;
  width: 30px;
  height: 30px;
  border: 0;
  margin-right: 0;
}
#close-search-dialog > duv {
  padding: 20px;
}
#close-search-dialog > duv menu {
  padding: 0;
}

@keyframes animateBackground {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 150%;
  }
  100% {
    background-size: 100%;
  }
}
@keyframes noise {
  0% {
    transform: translate3d(2%, -2%, 0);
  }
  10% {
    transform: translate3d(-6%, -4%, 0);
  }
  20% {
    transform: translate3d(10%, 5%, 0);
  }
  30% {
    transform: translate3d(6%, -10%, 0);
  }
  40% {
    transform: translate3d(-12%, -6%, 0);
  }
  50% {
    transform: translate3d(10%, 9%, 0);
  }
  60% {
    transform: translate3d(12%, 0%, 0);
  }
  70% {
    transform: translate3d(-10%, 8%, 0);
  }
  80% {
    transform: translate3d(8%, 4%, 0);
  }
  90% {
    transform: translate3d(4%, 6%, 0);
  }
  100% {
    transform: translate3d(0%, 5%, 0);
  }
}
.bg-text {
  padding-bottom: 40px;
}

@media (max-width: 1400px) {
  .site-main {
    background-size: cover;
  }
}
.hamburger {
  position: fixed;
  display: block;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  top: 20px;
  right: 20px;
  z-index: 12;
}
.hamburger span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger span::before {
  top: -8px;
}
.hamburger span::after {
  bottom: -8px;
}
.hamburger:hover span, .hamburger.active span {
  background: transparent;
  transform: rotate(45deg);
}
.hamburger:hover span::before, .hamburger.active span::before {
  transform: rotate(-90deg) translate(-7px, 0px);
}
.hamburger:hover span::after, .hamburger.active span::after {
  transform: rotate(-180deg) translate(-1px, 8px);
}
.hamburger.active span {
  background: transparent;
}
.hamburger.active span::before, .hamburger.active span::after {
  background: #333;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

.pc-menu {
  position: fixed;
  height: 100vh;
  width: 300px;
  background: #F2F2F2;
  z-index: 11;
  right: -500px;
  top: 0;
  transition: all 0.5s ease;
}
.pc-menu.show {
  right: 0;
}
@media (max-width: 768px) {
  .pc-menu {
    display: none;
  }
}
.pc-menu nav {
  padding: 60px 20px 20px 20px;
}
.pc-menu nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pc-menu nav ul li a {
  text-decoration: none;
  color: var(--gray-1, #333);
  font-family: "DM Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0.28px;
}
.pc-menu nav ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.pc-menu .social-container {
  position: absolute;
  width: 100%;
  bottom: 20px;
}

.photo-note {
  padding-left: 30px;
  z-index: 10;
}

.nesSwiper-container {
  height: 150px;
  width: 500px;
  max-width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: 0;
}
.nesSwiper-container .newsSwiper {
  height: 150px;
}
.nesSwiper-container .newsSwiper .swiper-slide .post-slide {
  height: 150px;
}
.nesSwiper-container .newsSwiper .swiper-slide .post-slide .post-image {
  width: 120px;
  aspect-ratio: 3/1;
  border-radius: 8px;
}
.nesSwiper-container .newsSwiper .swiper-slide .post-slide .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}
.nesSwiper-container .newsSwiper .swiper-slide .post-slide .post-title {
  line-height: 18px;
}
.nesSwiper-container .newsSwiper .swiper-slide .post-slide .post-title a {
  color: #fff;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.nesSwiper-container .newsSwiper .swiper-slide .post-slide .category {
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--white, #fff);
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0.28px;
}
.nesSwiper-container .newsSwiper .swiper-slide .post-slide date {
  color: #fff;
  text-align: justify;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  letter-spacing: 0.28px;
}

header.site-header {
  background: #fff;
}
