@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: "Noto Sans TC", system-ui, -apple-system;
  color: #1f2937;
  background: #ffffff;
  font-size: 16px;
  height: 100%;
}
@media (max-width: 960px) {
  body {
    font-size: 14px;
  }
}

h2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  color: rgb(0, 145, 58);
  font-size: 1.5em;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1845px;
  padding: 0 20px;
  margin: auto;
  width: 100%;
}
@media (min-width: 1400px) {
  .container {
    width: 1320px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  background: linear-gradient(120deg, #002b5c 0%, #004f9f 100%);
  color: #fff;
  padding: 60px 0;
}
.hero h1 {
  margin: 0;
  font-size: 28px;
}

.hero-bn {
  display: flex;
  justify-content: center;
  background-color: #d4f5fe;
}
.hero-bn .is-pc {
  display: block;
}
@media (max-width: 767px) {
  .hero-bn .is-pc {
    display: none;
  }
}
.hero-bn .is-mb {
  display: none;
}
@media (max-width: 767px) {
  .hero-bn .is-mb {
    display: block;
  }
}

.section {
  padding: 50px 0;
}
.section.alt {
  background: #f4f6f9;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.grid {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  background: #002b5c;
  color: #fff;
  font-size: 14px;
}
.btn-outline {
  background: #fff;
  border: 1px solid #002b5c;
  color: #002b5c;
}

.download-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.download-list li {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.gallery img {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  justify-content: space-between;
}
@media (max-width: 979px) {
  .header-row {
    justify-content: flex-end;
    min-height: auto;
  }
}

.brand {
  position: relative;
  display: block;
  height: 70px;
  width: unset;
  background-color: #009fe8;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .brand {
    height: 50px;
  }
}
@media (max-width: 512px) {
  .brand {
    height: 40px;
  }
}
.brand img {
  display: block;
  height: 100%;
  width: unset;
  max-width: unset;
}
.brand__logo {
  height: 26px;
  width: auto;
  display: block;
}
.brand__title {
  font-weight: 800;
  white-space: nowrap;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
@media (min-width: 980px) {
  .header-actions {
    margin-left: 0;
  }
}
@media (max-width: 979px) {
  .header-actions {
    display: none;
  }
}

.icon-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
}

.icon-img {
  width: 18px;
  height: 18px;
  display: block;
}

.nav-toggle {
  margin: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  padding: 9px 10px;
  line-height: 1;
  cursor: pointer;
}
.nav-toggle .icon-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background-color: #111827;
}
.nav-toggle .icon-bar + .icon-bar {
  margin-top: 5px;
}
@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }
}

.site-nav {
  display: none;
}
.site-nav.is-open {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  top: 76px;
  flex-direction: column;
  gap: 6px;
  padding: 12px 16px 16px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 950;
  animation: navDrop 0.18s ease-out;
}
@media (max-width: 1024px) {
  .site-nav.is-open {
    top: 103px;
  }
}
@media (max-width: 512px) {
  .site-nav.is-open {
    top: 93px;
  }
}
@media (min-width: 980px) {
  .site-nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #374151;
  white-space: nowrap;
  word-break: normal !important;
  overflow-wrap: normal !important;
  writing-mode: horizontal-tb !important;
}
@media (max-width: 960px) {
  .nav-link {
    font-size: 16px;
  }
}
.nav-link[aria-current=page] {
  background: #f3f4f6;
  font-weight: 700;
  color: #111827;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 900;
}
.nav-backdrop[style*="display: block"] {
  display: block;
}
@media (min-width: 980px) {
  .nav-backdrop {
    display: none !important;
  }
}

.nav-social {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 8px;
}
@media (min-width: 980px) {
  .nav-social {
    display: none;
  }
}

.video-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
}
.video-container iframe {
  width: 100%;
  height: 100%;
}

.poster_content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1200px) {
  .poster_content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 960px) {
  .poster_content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 512px) {
  .poster_content {
    grid-template-columns: 1fr;
  }
}
.poster_content img {
  width: 100%;
}

footer {
  margin-top: 20px;
  color: #6b7280;
  width: 100%;
}

.footer-container {
  padding: 20px;
}

.footer-btn {
  cursor: pointer;
  padding: 1rem 0;
  font-size: 16px;
  background-color: #e00037;
  color: #FFF;
  width: 100%;
  text-align: center;
}
@media (max-width: 960px) {
  .footer-btn {
    padding: 0.5rem 0;
    font-size: 14px;
  }
}
.footer-btn:after {
  margin: 0 5px;
  position: relative;
  content: " ＋ ";
  display: inline-block;
}
.footer-btn.open:after {
  position: relative;
  content: " － ";
  display: inline-block;
}

.top {
  position: fixed;
  bottom: 50px;
  right: 57px;
  cursor: pointer;
  opacity: 0.6;
  z-index: 999;
  display: none;
  background: rgba(102, 102, 102, 0.6);
  color: #fff;
  border-radius: 5px;
  width: 40px;
  height: 40px;
}
.top.show {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: top 0.2s linear;
}
@media screen and (min-width: 1025px) {
  .top:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 576px) {
  .top {
    right: 10px;
    bottom: 10px;
    font-size: 12px;
  }
}

@keyframes navDrop {
  from {
    transform: translateY(-6px);
    opacity: 0.6;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes top {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.6;
  }
}/*# sourceMappingURL=style.css.map */