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

html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

h1.seo-h1 {
  height: 0px;
  width: 0px;
  padding: 0px;
  margin: 0px;
  transform: scale(0);
}

.kv {
  position: relative;
  display: block;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0 auto;
  background: #e6fbff;
  padding: 30px 0px;
}
.kv .kv_box {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 70px auto 0px;
  justify-content: center;
  align-items: center;
}
.kv .kv_box .kv_word {
  width: 95%;
  max-width: 537px;
  display: block;
}
.kv .kv_box .kv_word img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.kv .kv_box .kv_dec {
  width: 95%;
  display: block;
  max-width: 640px;
  /* 定義閃爍動畫名稱為 'blink' */
}
@keyframes blink {
  /* 在動畫的開始與結束時，設定透明度為 0 (完全透明/消失) */
  0%, 100% {
    opacity: 0;
  }
  /* 在動畫的中間點 (50%)，設定透明度為 1 (完全不透明/出現) */
  50% {
    opacity: 1;
  }
}
.kv .kv_box .kv_dec {
  /* 選取 SVG 中 ID 為 'star-icon' 的元素 */
}
.kv .kv_box .kv_dec #star-icon {
  /* 套用動畫 */
  /* 動畫名稱: blink */
  /* 持續時間: 1.5秒 (可依需求調整快慢) */
  /* 時間函數: ease-in-out (讓淡入淡出效果更平滑) */
  /* 重複次數: infinite (無限循環) */
  animation: blink 1.5s ease-in-out infinite;
  /* (選用) 確保動畫運作流暢，這會強制瀏覽器使用 GPU 加速 */
  will-change: opacity;
}

.content {
  position: relative;
  margin: 0 auto;
  background: #d2f4f9;
  overflow-x: hidden;
  padding: 40px 0px;
}
@media (max-width: 768px) {
  .content {
    padding: 16px 0px;
  }
}
.content .bg_dec {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.content .bg_dec img {
  position: absolute;
  max-width: 15%;
  height: auto;
}
.content .bg_dec .star-1 {
  top: 5%;
  right: -2%;
}
.content .bg_dec .star-2 {
  bottom: 10%;
  left: -2%;
}
.content .bg_dec .star-3 {
  bottom: 5%;
  right: 5%;
}
.content .info {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}
.content .info hr.divider {
  display: none;
}
.content .info .info-card-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.content .info .info-card-wrapper h2, .content .info .info-card-wrapper p, .content .info .info-card-wrapper div, .content .info .info-card-wrapper ol, .content .info .info-card-wrapper h3, .content .info .info-card-wrapper h4 {
  margin: 0;
}
.content .info .info-card-wrapper .title {
  color: #00a4ef;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.content .info .info-card-wrapper .title img {
  width: 20px;
  height: 20px;
}
.content .info .info-card-wrapper .content-text {
  color: #003057;
  font-size: 18px;
  text-align: center;
  line-height: 2;
}
.content .info .info-card-wrapper .note {
  color: #d15900;
  font-size: 16px;
  text-align: center;
}
.content .info .info-card-wrapper .card-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content .info .info-card-wrapper .card-container .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.content .info .info-card-wrapper .card-container .card, .content .info .info-card-wrapper .card-container .card-full {
  border: 1px solid #28c0fc;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
}
.content .info .info-card-wrapper .card-container .card .btn-open-modal, .content .info .info-card-wrapper .card-container .card-full .btn-open-modal {
  cursor: pointer;
  text-decoration: underline;
  color: #00a19b;
}
.content .info .info-card-wrapper .card-container .card {
  line-height: 2;
}
.content .info .info-card-wrapper .card-container .card img {
  width: 100%;
  margin: 0 auto;
  max-width: 268px;
}
.content .info .info-card-wrapper .card-container .card h3 {
  color: #00497d;
  font-size: 20px;
  text-align: center;
}
.content .info .info-card-wrapper .card-container .card p {
  color: #595959;
  font-size: 18px;
  text-align: left;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content .info .info-card-wrapper .card-container .card hr {
  border: none;
  border-top: 1px solid #28c0fc;
  margin: 0;
}
.content .info .info-card-wrapper .card-container .card h4 {
  color: #00497d;
  font-size: 20px;
  text-align: center;
}
.content .info .info-card-wrapper .card-container .card ul {
  color: #595959;
  font-size: 18px;
  text-align: left;
  padding-left: 20px;
  margin: 0 auto;
}
.content .info .info-card-wrapper .card-container .card .m-none {
  display: block;
}
.content .info .info-card-wrapper .card-container .card-full h4 {
  color: #00497d;
  font-size: 20px;
  text-align: center;
}
.content .info .info-card-wrapper .card-container .card-full p {
  color: #595959;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 1024px) {
  .content .info {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin: 0 16px;
    width: calc(100% - 32px);
  }
  .content .info .info-card-wrapper {
    background: transparent;
    border-radius: 0;
    padding: 16px 0;
    margin-bottom: 0;
    gap: 16px;
  }
  .content .info .info-card-wrapper .card-container .card .m-none {
    display: none;
  }
  .content .info hr.divider {
    display: block;
    border: none;
    border-top: 1px solid #a4d9ea;
    margin: 16px 0;
    width: 100%;
  }
  .content .info .card-grid {
    grid-template-columns: 1fr !important;
  }
}
.content img {
  max-width: 100%;
  height: auto;
}
.content img {
  max-width: 100%;
  height: auto;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  justify-content: center;
  align-items: center;
  justify-content: center;
  align-items: center;
}
.modal-overlay .modal-content {
  display: none;
  background: #fff;
  border: 1px solid #28c0fc;
  padding: 24px;
  width: 90%;
  max-width: 600px;
  position: relative;
  border-radius: 8px;
}
.modal-overlay .modal-content h3 {
  text-align: center;
  font-size: 18px;
  color: #003057;
}
.modal-overlay .modal-content img {
  display: block;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
.modal-overlay .modal-content .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #28c0fc;
  font-size: 20px;
}

/* --- 整合後的注意事項區塊樣式 --- */
.notice-container {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin: 0 auto 40px;
  max-width: 960px;
  width: calc(100% - 32px);
  z-index: 2;
}
.notice-container .notice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  color: #00497d;
  font-weight: bold;
}
.notice-container .notice-header .arrow-icon {
  width: 20px;
  height: 12px;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.notice-container .notice-header .arrow-icon::before, .notice-container .notice-header .arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 2px;
  background-color: #595959;
}
.notice-container .notice-header .arrow-icon::before {
  left: 0;
  transform: rotate(45deg);
}
.notice-container .notice-header .arrow-icon::after {
  right: 0;
  transform: rotate(-45deg);
}
.notice-container .notice-header.active .arrow-icon {
  transform: rotate(180deg);
}
.notice-container .notice-content {
  display: none;
  margin-top: 15px;
  font-size: 16px;
  color: #595959;
  line-height: 2;
}
.notice-container .notice-content ol {
  padding-left: 30px;
  margin: 0;
}
.notice-container .notice-content li {
  margin-bottom: 8px;
  text-align: justify;
}
.notice-container .notice-content a {
  color: #00a19b;
  text-decoration: underline;
}
.notice-container {
  /* --- 手機版響應式微調 --- */
}
@media (max-width: 1024px) {
  .notice-container {
    padding: 16px;
    border-radius: 8px;
    margin: 20px auto;
  }
}/*# sourceMappingURL=style.css.map */