* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.6 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
}

:root {
  --site-header-height: 82px;
}

ul {
  list-style: none;
}

/*popup css*/
.info-popup {
  position: relative;
  display: block;
}

.info-popup-bg {
  width: 100vw;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(14, 75, 39, 0.8);
}

.info-popup-content {
  background-color: #ffffff;
  width: 85vw;
  max-width: 500px;
  padding: 3rem 2rem;
  position: relative;
  border-radius: 0.7rem;
  font-size: 1.2rem;
}

.start_btn {
  padding: 7px 30px;
  font-size: 1.5rem;
  background-color: #037a0d;
  color: #fff;
  cursor: pointer;
  border-radius: 0.5rem;
  width: fit-content;
  margin: 0 auto;
}

.start_btn:hover {
  opacity: 0.7;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
  text-align: center;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.icon {
  width: 24px;
  height: 24px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-arrow {
  background-image: url(../images/icon-arrow.png);
}

.form-control {
  padding: 5px 10px;
  font-size: 1rem;
  color: #666;
  background: linear-gradient(0deg, rgba(241, 241, 241, 1) 0%, rgb(250, 250, 250) 100%);
  border: 1px solid #B2B2B2;
  width: 100%;
  border-radius: 0;
}

.form-control::placeholder {
  color: #bbb;
  opacity: 1;
}

.form-control:focus {
  border-color: #4BBBBD;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  margin-top: 13px;
  justify-content: center;
}

.checkbox-group .checkbox-item {
  margin-right: 10px;
}

.checkbox-group .checkbox-item:last-child {
  margin-right: 0;
}

.checkbox-item {
  position: relative;
  display: block;
}

.checkbox-item input {
  display: none;
}

.checkbox-item label {
  padding: 0 0 0 25px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  display: block;
  color: #666766;
}

.checkbox-item label:before {
  content: '';
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ccc;
  position: absolute;
  top: 5px;
  left: 0;
  box-sizing: border-box;
  border-radius: 0;
  width: 20px;
  height: 20px;
  transition: ease 0.5s;
  border-radius: 5px;
}

.checkbox-item label:after {
  content: '';
  background-image: url(../images/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  position: absolute;
  border-radius: 0;
  width: 20px;
  height: 20px;
  background-color: #19897b;
  box-sizing: border-box;
  top: 5px;
  left: 0;
  display: none;
  border-radius: 5px;
}

.checkbox-item input:checked+label:after {
  display: block;
}

.checkbox-item input+label {
  transition: .7s ease;
}

.custom-select {
  cursor: pointer;
  width: 100%;
  padding: 5px 50px 5px 10px;
  font-size: 16px;
  color: #666;
  border: 1px solid #B2B2B2;
  background: linear-gradient(0deg, rgba(241, 241, 241, 1) 0%, rgb(250, 250, 250) 100%);
  position: relative;
}

.custom-select:focus {
  border-color: #4BBBBD;
}

.select-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 16px;
  z-index: 2;
}

.form {
  position: relative;
}

.form .form-section {
  display: flex;
}

form .form-label {
  width: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  color: #007979;
}

.form .form-label.chinese {
  display: block;
  text-align: justify;
  justify-content: center;
}

.form .form-label.chinese::after {
  content: "";
  display: inline-block;
  width: 100%;
}

.form .form-label.last.pc {
  width: 12rem;
  align-items: start;
  flex-direction: column;
  justify-content: start;
}

.form .form-label.last div {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.form .form-label.last.sm {
  display: none;
}

.form .form-content {
  width: 100%;
  padding-left: 25px;
  position: relative;
}

a {
  outline: none;
  transition: color, opacity, background-color 0.5s ease;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

:focus {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;

  margin: 0 auto;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

textarea,
select,
input[type="text"],
input[type='number'],
input[type="button"],
input[type="search"],
input[type="submit"],
button,
input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  font-size: 15px;
  font-family: Arial, 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type='number']:focus,
input[type="button"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="radio"]:focus {
  outline: 0;
}

.scroll--hidden {
  overflow: hidden;
}

#container {
  overflow-x: hidden;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 30px;
  position: relative;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.lg1 {
  animation: kv-ani 1s forwards;
}

.lg2 {
  animation: kv-ani 1s forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

@keyframes kv-ani {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.is-toggle {
  display: block;
}

.in-view {
  opacity: 0;
}

.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
  transition: opacity 300ms;
  background: #f7f7f7;
}

/* menu區*/
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: white;
}

.site-header .container {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo {
  width: 273px;
  height: 39px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/logo.png);
}

.site-menu {
  position: absolute;
  top: 24px;
  right: 30px;
}

.site-menu .menu-close {
  display: none;
}

.site-menu .menu-toggle {
  display: none;
}

.main-menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.main-menu li {
  position: relative;
  padding: 0 10px;
}

.main-menu li::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 50%;
  border-right: 1px solid #3BD1B4;
  pointer-events: none;
}

.main-menu li:last-child::after {
  content: '';
  border-right: none;
}

.main-menu a {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 32px;
  color: #666766;
  letter-spacing: .025em;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  padding: 0 5px;
  transition: 0.5s;
}

.main-menu a:hover {
  transform: translateY(-5px);
  color: #196868;
}

/* kv區 */
.site-content {
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  z-index: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  font-size: 15px;
  line-height: 30px;
}

.section.in-view {
  opacity: 1;
  animation: none;
}

.section-anchor {
  position: absolute;
  top: -80px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section-anchor.down {
  top: -20px;
}

.section .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  pointer-events: none;
  background-color: transparent;
}

.section a {
  text-decoration: none;
}

.section .section-header {
  margin: 0 auto;
  opacity: 0;
  text-align: center;
}

.section .section-header img {
  max-height: 36px;
}

.section .section-content {
  margin: 0 auto;
  opacity: 0;
  margin-top: 65px;
}

.section.animated .section-header {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: .5s;
}

.section.animated .section-content {
  -moz-animation: fadeIn 0.8s both;
  -webkit-animation: fadeIn 0.8s both;
  animation: fadeIn 0.8s both;
  animation-delay: 1.5s;
}

.kv {
  margin-top: var(--site-header-height);
  /* 改這裡：和 header 高度一致 */
  height: calc(100vh - var(--site-header-height));
  /* 改這裡：同上 */
  position: relative;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #007979;
  background-image: url(../images/banner.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kv .container {
  padding: 0;
  max-width: 100%;
  width: 100%;
}

.kv .kv-img {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 0;
}

.kv .kv-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

.kv .kv-img .lg1,
.kv .kv-img .sm1 {
  z-index: 1;
}

.kv .kv-img .lg2,
.kv .kv-img .sm2 {
  z-index: 2;
}

.kv .kv-img .sm1,
.kv .kv-img .sm2 {
  display: none;
}

@media (max-width: 1420px) and (min-width: 1025px) {
  .kv {
    background-size: cover;
  }

  .kv .kv-img img {
    max-width: 95%;
    max-height: calc(100vh - var(--site-header-height) - 24px);
  }
}

@media (max-width: 1180px) and (min-width: 1025px) {
  .kv .kv-img img {
    max-width: 90%;
    max-height: calc(100vh - var(--site-header-height) - 36px);
  }
}

@media (min-width: 1025px) {
  .kv .kv-img img {
    max-width: none;
    max-height: none;
  }

  .kv .kv-img .lg1,
  .kv .kv-img .lg2 {
    height: calc(100vh - var(--site-header-height));
    width: auto;
  }
}

@media (max-width: 1024px) and (orientation: portrait),
(max-width: 767px) {
  .kv {
    margin-top: var(--site-header-height);
    height: calc(100vh - var(--site-header-height));
    background-image: url(../images/banner_s.png);
    background-size: 100% auto;
    align-items: center;
  }

  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .kv .kv-img .lg1,
  .kv .kv-img .lg2 {
    display: none;
  }

  .kv .kv-img .sm1,
  .kv .kv-img .sm2 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
  }

  .kv .kv-img .sm1 {
    z-index: 1;
  }

  .kv .kv-img .sm2 {
    z-index: 2;
  }
}

/* Global Section Title */
.section-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
}

.section-title-wrap .title {
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
  color: #377775;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title-wrap .title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background-color: #c7e8c4;
  margin-top: 15px;
}

.section-title-wrap .title-en {
  margin-top: 15px;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  color: #c7e8c4;
  font-weight: 500;
  line-height: 1;
  padding-left: 0.2rem;
}

/* White background variant for dark sections */
.section-title-wrap.white .title {
  color: #ffffff;
}

.section-title-wrap.white .title::after {
  background-color: #cccccc;
}

.section-title-wrap.white .title-en {
  color: #cccccc;
}

.sub-text {
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: .025em;
  color: #666766;
  text-align: justify;
}

.small-text {
  font-size: 0.75rem;
}

.bg-group-1 {
  background-image: url(../images/about-bg.svg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
}

.bg-group-2 {
  background-image: url(../images/report-bg.svg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
}

/* 論壇簡介 */
.about {
  width: 100%;
  height: 100%;
  background-size: cover;
}

.about .container {
  padding-top: 90px;
  padding-bottom: 90px;

}

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

/* 精彩議程 */
.agenda {
  width: 100%;
  height: 100%;
  background-size: cover;
}

.agenda .container {
  padding-top: 90px;
  padding-bottom: 90px;
}

.agenda .section-content {
  max-width: 1200px;
  position: relative;
}


.agenda .list {
  padding: 30px 35px 35px;
  position: relative;
  z-index: 2;
  background: transparent;
}

.agenda .list::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  z-index: -1;
}

.agenda .list::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  bottom: -10px;
  background: #c7e8c4;
  border-radius: 20px;
  z-index: -2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.agenda .list-shadow {
  display: none !important;
}

.agenda .item {
  display: flex;
  align-items: center;
  color: #4d4d4d;
  padding: 20px 0;
  border-bottom: 1px dashed #d3d3d3;
  font-size: 1rem;
}

.agenda .item.top {
  border-bottom: 1px solid #cccccc;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 15px;
}

.agenda .item .col-group {
  display: flex;
  align-items: center;
}

.agenda .item .col-group .item-col {
  width: calc(50% - 5px);
}

.agenda .item .col-group .col-agenda {
  margin-right: 5px;
}

.agenda .item .col-group .col-speaker {
  margin-left: 5px;
}

.agenda .col-left {
  width: 20%;
  text-align: center;
}

.agenda .col-right {
  width: calc(100% - 20%);
  margin-left: 10px;
}

.block-pc {
  display: inline-block;
  vertical-align: top;
}

.block-sm {
  display: none;
}

.agenda .list-content .item:last-child {
  border-bottom: none;
}

/* ===== 講者陣容 ===== */
.guest {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url(../images/guest-bg.svg);
  background-attachment: fixed;
  background-position: center top;
  position: relative;
  z-index: 0;
}

.guest .container {
  padding-top: 150px;
  padding-bottom: 90px;
  max-width: 1400px;
}

.guest .section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 28px;
  /* justify-content: center; */
  justify-content: flex-start;

}

.speaker-card {
  width: calc((100% - 28px * 4) / 5);
  min-width: 140px;
  display: flex;
  flex-direction: column;
}

.sc-photo-wrap {
  position: relative;
  padding-bottom: 0;
}

.sc-bg-white {
  display: none;
}

.sc-bg-green {
  position: relative;
  border-radius: 30px 30px 0 0;
  background: #c7e8c4;
  overflow: hidden;
  z-index: 1;
  padding-top: 112%;

}

.sc-photo {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100% !important;
  height: 106% !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  margin: 0 !important;
}

.sc-info {
  background: #ffffff;
  border-radius: 0 0 30px 30px;
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-height: unset;
  min-height: 110px;
  flex: 1;
}

.sc-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #196868;
  letter-spacing: 0.18em;
  line-height: 1.2;
  height: auto;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2px;
}

.sc-name.en {
  font-size: 1.1rem !important;
  letter-spacing: 0.03em;
  line-height: 1.1 !important;
}

.sc-title {
  font-size: 0.95rem;
  color: #196868;
  line-height: 1.4;
  margin-top: 0;
}



.spk-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.spk-modal.is-open {
  display: flex;
}

.spk-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.spk-modal-wrap {
  position: relative;
  z-index: 1;
  width: min(820px, 92vw);
  margin-top: 40px;
}

.spk-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.spk-modal-close img {
  width: 36px;
  height: 36px;
  display: block;
}

.spk-modal-close:hover {
  opacity: 0.6;
}

.spk-modal-box {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-height: 80vh;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.spk-modal-left {
  flex: 0 0 310px;
  background: #ffffff;
  position: relative;
  display: flex;
  padding: 36px 0 36px 36px;
}

.spk-modal-bg-green {
  display: none;
}

.spk-modal-photo-wrap {
  width: 100%;
  min-height: 280px;
  background: #c7e8c4;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

/* 講者照片 */
.spk-modal-photo {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: bottom center !important;
  margin: 0 !important;
  max-height: 105% !important;
}

.spk-modal-right {
  flex: 1;
  padding: 36px 40px 36px 36px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.spk-modal-name {
  font-size: 1.7rem;
  font-weight: 700;
  color: #196868;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.spk-modal-title {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 16px;
}

.spk-modal-bio {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.85;
  text-align: justify;
}

/* ── 響應式 ── */

@media (max-width: 1100px) {
  .speaker-card {
    width: calc((100% - 28px * 1) / 2);
  }
}

@media (max-width: 960px) {
  .speaker-card {
    width: 65% !important;
    max-width: 340px !important;
    flex: 0 0 auto !important;
    margin: 0 auto;
  }
}

@media (max-width: 580px) {
  .speaker-card {
    width: 100% !important;
    max-width: 320px !important;
    flex: 0 0 100% !important;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .spk-modal-wrap {
    width: 92vw;
  }

  .spk-modal-close {
    top: -42px;
    right: 0;
  }

  .spk-modal-box {
    flex-direction: column;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 12px;
  }

  .spk-modal-left {
    flex: 0 0 auto;
    min-height: 220px;
    padding: 20px 20px 0;
  }

  .spk-modal-photo-wrap {
    min-height: 200px;
  }

  .spk-modal-photo {
    max-height: 92% !important;
  }

  .spk-modal-right {
    padding: 24px 24px 28px;
  }

  .spk-modal-name {
    font-size: 1.35rem;
  }
}


/* 論壇報名 */
.registration {
  width: 100%;
  height: 100%;
  background-size: cover;
}

.registration .container {
  padding-top: 90px;
  padding-bottom: 90px;
}

.registration .section-content {
  margin-top: 65px;
}

.registration .block1 {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.registration .block2 {
  margin: 30px 0;
}

.btn-primary {
  font-size: 20px;
  line-height: 44px;
  border-radius: 44px;
  height: 44px;
  padding: 0 15px;
  font-weight: 500;
  width: 100%;
  color: #fff;
  background-color: #007979;
}

.btn-primary:active {
  filter: brightness(1.2);
}

@media (hover: hover) {
  .btn-primary:hover {
    filter: brightness(1.2);
  }
}

.registration .top-text {
  color: #7dd47d;
  font-weight: 700;
  margin-bottom: 14px;
}

.registration .required {
  color: #7dd47d;
  font-weight: 700;
}

.registration .section-group {
  display: flex;
  margin: 0 -15px;
}

.registration .section-group+.section-group {
  margin-top: 16px;
}

.registration .section-group .form-section {
  width: calc(50% - 15px * 2);
  margin: 0 15px;
}

.registration .action {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.registration .btn {
  margin: 0 auto;
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.registration .btn .icon-arrow {
  margin-left: 5px;
  margin-right: -12px;
}

/* 相關報導 */
.report {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.report .container {
  max-width: 1400px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.news-slider {
  padding: 0 45px;
}

.news-slider .slick-track {
  display: flex !important;
}

.news-slider .slick-slide {
  height: auto !important;
  display: flex !important;
}

.news-card {
  display: flex !important;
  flex-direction: column;
  background-color: #196868;
  border-radius: 8px;
  border: none;
  box-shadow: 0 0 0 4px #196868;
  /* ← 用 box-shadow 模擬外框，不會被 hover 清掉 */
  overflow: visible;
  margin: 10px 15px;
  text-decoration: none;
  width: 100%;
  position: relative;
}

.news-img {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0;
}

.news-content {
  background-color: #196868;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  border-radius: 0 0 8px 8px;
}

.news-content p {
  color: white;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  align-self: flex-end;
  background-color: #111;
  color: white;
  padding: 4px 4px 4px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.read-more:hover {
  background-color: #2c2c2c;
}

.read-more .arrow {
  background-color: #c7e8c4;
  color: #111;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 900;
}

/* Slick Arrows */
.report .slick-prev,
.report .slick-next {
  width: 35px;
  height: 80px;
  background-color: #196868;
  color: #c7e8c4;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.report .slick-prev:before,
.report .slick-next:before {
  display: none !important;
}

.report .slick-prev {
  left: -5px;
}

.report .slick-next {
  right: -5px;
}

.slick-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  padding: 0 !important;
  margin: 15px 0 0 0 !important;
  list-style: none !important;
  width: 100% !important;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button:before {
  font-size: 45px;
  color: #00797980;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: #007979;
}

/* 交通資訊 */
.transportation {
  width: 100%;
  height: 100%;
  background-image: url(../images/guest-bg.svg);
}

.transportation .container {
  padding-top: 90px;
  padding-bottom: 90px;
}



.transportation-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.transportation-map .map,
.transportation-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
  display: block;
  min-width: unset;
}

.transportation-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.t-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}

.t-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.t-block--full {
  width: 100%;
}

.t-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
}

.t-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.t-tag {
  background: #c7e8c4;
  color: #196868;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 3px;
  white-space: nowrap;
  font-size: 1rem;
  letter-spacing: 2px;
  flex-shrink: 0;
  width: fit-content;
  display: inline-block;
}

.t-desc {
  color: white;
  line-height: 1.7;
  font-size: 1rem;
  text-align: justify;
}

.t-desc .l-text {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  display: inline;
}

.t-desc .s-text {
  font-size: 0.9rem;
}

@media (max-width: 750px) {
  .t-row-two {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .transportation-map iframe {
    height: 220px;
  }

  .t-divider {
    display: none;
  }
}

.site-footer {
  background: linear-gradient(-90deg, rgba(203, 203, 203, 1) 0%, rgba(241, 241, 241, 1) 22%, rgba(241, 241, 241, 1) 83%, rgba(203, 203, 203, 1) 100%);
  padding: 25px 0;
  font-size: 14px;
  line-height: 28px;
  color: #666766;
  text-align: center;
}

.menu-toggle {
  display: block;
  position: fixed;
  top: 12px;
  right: 10px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 9;
  background-size: contain;
  background-image: url(../images/menu-toggle.png);
}

.menu-close {
  display: block;
  position: fixed;
  top: 12px;
  right: 10px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 12;
  background-size: contain;
  background-image: url(../images/menu-close.png);
}

.side-sticky {
  position: fixed;
  bottom: 60px;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.btn-Sign {
  pointer-events: visible;
  float: right;
  display: block;
  cursor: pointer;
  max-width: 250px;
  width: 30vw;
  transition: 0.5s;
  filter: drop-shadow(3px 3px 5px #36412788);
}

.btn-Sign:hover {
  transform: scale(1.05);
  filter: drop-shadow(3px 3px 5px rgba(31, 37, 22, 0.671));
}

@media (max-width: 1170px) {
  .block-pc {
    display: none;
  }

  .block-sm {
    display: block;
  }
}



@media (max-width: 1024px) {

  .site-header .container {
    height: 65px;
    max-width: 100%;
  }

  :root {
    --site-header-height: 65px;
  }

  .site-header .logo {
    width: 182px;
    height: 26px;
  }

  .site-menu {
    top: 0;
    right: 0;
  }

  .site-menu:before {
    display: none;
  }

  .site-menu .menu-toggle {
    display: block;
  }

  .site-menu .menu-close {
    display: block;
  }

  .site-menu.is-view .menu-panel {
    display: block;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    padding-top: 75px;
    padding-bottom: 75px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }

  .site-menu.is-view .menu-panel .main-menu li {
    -moz-animation: fadeInUp 0.3s both;
    -webkit-animation: fadeInUp 0.3s both;
    animation: fadeInUp 0.3s both;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(5) {
    animation-delay: 0.5s;
  }

  .site-menu.is-view .menu-panel .main-menu li:nth-child(6) {
    animation-delay: 0.6s;
  }



  .site-menu.is-view .menu-panel .menu-close {
    -moz-animation: fadeInDown 0.3s both;
    -webkit-animation: fadeInDown 0.3s both;
    animation: fadeInDown 0.3s both;
  }

  .menu-panel {
    display: none;
    background-color: #19897b;
  }

  .main-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
  }

  .main-menu li {
    position: relative;
    margin: 0;
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .main-menu li+li {
    margin-top: 40px;
  }

  .main-menu a {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    display: inline-block;
  }

  .main-menu .has-sub__tigger .icon-plus {
    display: inline-block;
  }
}

@media (max-width: 1024px) and (orientation: portrait),
(max-width: 767px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .pc-br {
    display: none;
  }
}

@media (max-width: 750px) {

  .section .section-content {
    margin-top: 40px;
  }

  .sm1 {
    animation: kv-ani 1s forwards;
  }

  .sm2 {
    animation: kv-ani 1s forwards;
    animation-delay: 0.5s;
    opacity: 0;
  }

  .container {
    max-width: 90%;
    padding: 0 15px;
  }

  .section-anchor {
    top: -22px;
  }

  .section-anchor.down {
    top: -2px;
  }

  .section .bg {
    background-size: cover;
  }

  /* .about .box {
    padding: 30px 20px;
  }

  .about .main-text {
    margin-bottom: 10px;
  } */
  .about .sub-text {
    text-align: justify;
  }

  .agenda .section-content {
    margin-top: 35px;
  }

  /* speaker-card 2欄（手機） */
  .speaker-card {
    width: calc((100% - 28px) / 2);
  }


  .agenda .item.top {
    display: none;
  }

  .agenda .item {
    display: block;
    padding: 15px 0;
  }

  .agenda .item .col-group {
    display: block;
  }

  .agenda .item .col-group .item-col {
    width: 100%;
  }

  .agenda .item .col-group .col-agenda {
    margin-right: 0;
  }

  .agenda .item .col-group .col-speaker {
    margin-left: 0;
  }

  .agenda .item .col-speaker {
    display: block;
    margin-top: 10px;
  }

  .agenda .item .col-speaker .block {
    border-left: 5px solid #3BD1B4;
    padding-left: 12px;
  }

  .agenda .item .col-speaker .block+.block {
    margin-top: 10px;
  }

  .agenda .col-left {
    width: 100%;
    text-align: left;
  }

  .agenda .col-right {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

  /* .block-left,.block-right{
    display: inline;
    width: fit-content;
  } */

  .registration .section-header {
    margin-bottom: 20px;
  }

  .registration .section-header img {
    max-height: 32px;
  }

  .registration .section-group {
    display: block;
    margin: 0;
  }

  .registration .section-group+.section-group {
    margin-top: 14px;
  }

  .registration .section-group .form-section {
    width: 100%;
    margin: 0;
  }

  .registration .section-group .form-section+.form-section {
    margin-top: 14px;
  }

  .registration .form-section {
    display: block;
  }

  .form .form-label {
    width: 100%;
    justify-content: start;
    line-height: 40px;
    padding: 0;
  }

  .form .form-label.last.pc {
    display: none;
  }

  .form .form-label.last.sm {
    display: block;
  }

  .registration .form-content {
    width: 100%;
    padding-left: 0;
  }

  .registration .action {
    margin-top: 34px;
  }

  .registration .checkbox-group {
    margin: 5px 0;
  }

  .transportation-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .transportation-map .map {
    min-height: 250px;
  }

  .site-footer {
    padding: 24px 0;
    font-size: 12px;
    line-height: 24px;
    text-align: left;
  }
}

/* @media (max-width:540px){
   .guest .item {
    width: 100%;
  }
} */

/* ===== 立即報名表單 ===== */


.registration .container {
  padding-top: 90px;
  padding-bottom: 90px;
}

.reg-form {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 48px 40px;
  box-shadow: 0 8px 40px rgba(0, 121, 121, 0.15), 0 2px 12px rgba(0, 121, 121, 0.08);
}

.reg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-bottom: 15px;
}

.reg-row--full {
  grid-template-columns: 1fr;
}

.reg-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reg-label {
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

textarea.reg-textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 300px;
  line-height: 1.6;
  font-family: inherit;
  font-size: 0.95rem;
}

.reg-char-count {
  font-size: 0.8rem;
  color: #999;
  text-align: right;
  margin-bottom: -20px;
}

.req {
  font-size: 0.95rem;
  color: #e04b4b;
  margin-right: 3px;
  font-weight: 600;
}

input.reg-input,
textarea.reg-textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: #444;
  border: 1px solid #c8c8c8;
  background: #fff;
  border-radius: 4px;
  transition: border-color 0.2s;
  font-family: inherit;
}

input.reg-input:focus,
textarea.reg-textarea:focus {
  border-color: #007979;
  outline: none;
}

input.reg-input::placeholder,
textarea.reg-textarea::placeholder {
  color: #bbb;
}

.reg-select-wrap {
  position: relative;
}

.reg-select-wrap::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  background-image: url('../images/selectarrow.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}

select.reg-select {
  width: 100%;
  padding: 10px 40px 10px 14px;
  font-size: 0.95rem;
  color: #444;
  border: 1px solid #c8c8c8;
  background: #fff;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s;
}

select.reg-select:focus {
  border-color: #007979;
  outline: none;
}

.reg-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  padding-top: 8px;
}

.reg-radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: #444;
  cursor: pointer;
}

.reg-radio-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.reg-radio-label input[type="radio"]:checked {
  background-color: #007979;
  border-color: #007979;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

input.reg-input-inline {
  width: 60px;
  padding: 4px 8px;
  font-size: 0.9rem;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  text-align: center;
  font-family: inherit;
}

.reg-policy {
  background: #f0f0f0;
  border: none;
  border-radius: 6px;
  padding: 20px 24px;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.8;
  overflow-wrap: break-word;
  word-break: break-all;
}

.reg-policy a {
  color: #007979;
  text-decoration: underline;
}

.reg-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.reg-action .btn-primary {
  background-color: #c7e8c4;
  color: #2d6b5e;
  border: 1.5px solid #5a9e8a;
  border-radius: 40px;
  padding: 10px 10px 10px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.05em;
  font-family: inherit;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: auto;
  min-width: unset;
  height: auto;
  line-height: normal;
}

.reg-action .btn-primary:hover {
  background-color: #daeee5;
}

.reg-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: #2d6b5e;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 8px;
}


@media (max-width: 768px) {
  .reg-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reg-form {
    padding: 28px 20px;
  }

  .reg-policy {
    padding: 16px;
    font-size: 0.82rem;
  }
}

/* ===== 固定側邊按鈕 ===== */
.side-btns {
  position: fixed;
  right: 15px;
  bottom: 120px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.side-btns.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.btn-signup-now {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  padding: 24px 0;
  background-color: #dcedc8;
  color: #3f6860;
  border: 3px solid #3f6860;
  border-radius: 40px;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.25em;
  text-align: center;
  text-decoration: none;
  writing-mode: vertical-rl;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.btn-signup-now:hover {
  background-color: #c5dfa8;
  color: #2b4b45;
  text-decoration: none;
}

.btn-go-top {
  display: block;
  width: 52px;
  height: 52px;
  margin-top: 15px;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-go-top img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}

.btn-go-top:hover {
  background-color: transparent;
  opacity: 0.8;
  transform: translateY(-3px);
  text-decoration: none;
}

@media (max-width: 768px) {
  .side-btns {
    bottom: 80px;
    right: 10px;
  }

  .btn-signup-now {
    width: 44px;
    font-size: 1rem;
    padding: 16px 0;
    border-width: 2px;
  }

  .btn-go-top {
    width: 44px;
    height: 44px;
    margin-top: 10px;
  }
}

/* ===== 報名成功彈窗 ===== */
.signup-modal-wrap {
  max-width: 480px;
}

.signup-modal-box {
  flex-direction: column !important;
  padding: 56px 48px 48px;
}

.signup-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
}

.signup-modal-sub {
  font-size: 1rem;
  color: #555;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.signup-modal-main {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d6b5e;
  line-height: 1.6;
  letter-spacing: 0.05em;
  /* width: 18em; */
}

.signup-modal-btn {
  margin-top: 8px;
  padding: 10px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2d6b5e;
  background-color: #c7e8c4;
  border: 1.5px solid #5a9e8a;
  border-radius: 40px;
  cursor: pointer;
  letter-spacing: 0.2em;
  font-family: inherit;
  transition: background-color 0.25s, color 0.25s;
}

.signup-modal-btn:hover {
  background-color: #fff;
}

@media (max-width: 540px) {
  .signup-modal-box {
    padding: 40px 24px 36px;
  }

  .signup-modal-main {
    font-size: 1.3rem;
  }
}