@charset "UTF-8";
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

ul,
ol,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

input,
button,
select,
textarea {
  font: inherit;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  font-family: "Microsoft Jhenghei", 微軟正黑體, Verdana, sans-serif;
  font-size: large;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
}

.htmlInner {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background-image: url("../img/bg.png");
  align-items: center;
}
.htmlInner header {
  width: 100%;
  max-width: 1400px;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}
.htmlInner header .top {
  display: flex;
  width: 100%;
}
.htmlInner header .top > a {
  height: fit-content;
  display: flex;
}
.htmlInner header .top img {
  border-radius: 30px 30px 0 0;
}
.htmlInner header nav {
  display: flex;
  width: 100%;
  border: 1px solid #f2f2f2;
  background-color: white;
  border-radius: 0 10px 10px 10px;
  padding: 0 1.5rem;
}
.htmlInner header nav .button {
  flex: 1;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 1rem;
  color: #2b2b2b;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.htmlInner header nav .button a {
  padding: 1.2rem 0;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.htmlInner header nav .button.active {
  border-radius: 0;
  border-bottom: 3px solid #5cb774;
}
.htmlInner header nav .button:hover {
  background-color: #5cb774;
  color: white;
}
.htmlInner main {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}
.htmlInner main > nav {
  display: flex;
  background-color: #404040;
  border-radius: 5px 5px 0 0;
  width: fit-content;
}
.htmlInner main > nav .button {
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 3px 3px 0 0;
}
.htmlInner main > nav .button a {
  padding: 1.25rem;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.htmlInner main > nav .button.active {
  background-color: #f2f2f2;
  color: #404040;
}
.htmlInner main > nav .button:hover {
  background-color: white;
  color: #404040;
}
.htmlInner main .info {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #f2f2f2;
  padding: 0 2rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}
.htmlInner main .info h3 {
  font-size: 1.9rem;
  font-weight: bold;
  color: #e45b1f;
  padding-bottom: 4px;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.htmlInner main .info h3::after {
  content: "";
  display: block;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  width: 120%;
  height: 1px;
  background-color: #e45b1f;
}
.htmlInner main .info .table {
  display: flex;
  width: 100%;
  flex-direction: column;
  background-color: white;
  border-radius: 5px;
  padding: 3rem 2rem;
  margin-bottom: 1rem;
}
.htmlInner main .info .table > span {
  font-size: 1.2rem;
  background-color: #6493aa;
  color: white;
  padding: 0.5rem 1rem;
  font-weight: bold;
  margin-bottom: 1px;
  border-radius: 3px 3px 0 0;
}
.htmlInner main .info .table > .list {
  display: flex;
  width: 100%;
  border-bottom: solid 1px #dddddd;
}
.htmlInner main .info .table > .list.tag {
  padding: 0.5rem 1rem;
  background-color: #6493aa;
}
.htmlInner main .info .table > .list.tag > div {
  font-weight: bold;
  font-size: 1.2rem;
  padding-right: 1rem;
  align-items: center;
  color: white;
  display: flex;
}
.htmlInner main .info .table > .list.list-info {
  padding: 0.5rem 1rem;
}
.htmlInner main .info .table > .list.list-info > div {
  font-size: 1.2rem;
  color: #181818;
  padding: 0.5rem 0;
  padding-right: 1rem;
  align-items: flex-start;
  display: flex;
  text-align: left;
}
.htmlInner main .info .table > .list.list-info > div p {
  width: 100%;
}
.htmlInner main .info .table > .list.list-info a {
  display: inline;
  margin: initial;
  font-size: 1rem;
  word-break: break-all;
}
.htmlInner main .info .table > .list .name {
  flex: 1;
}
.htmlInner main .info .table > .list .number {
  flex: 0.5;
  word-break: break-all;
}
.htmlInner main .info .table > .list .date {
  flex: 0.3;
}
.htmlInner main .info .table > .list .where {
  flex: 0.8;
}
.htmlInner main .info .table > .list .city {
  flex: 0.2;
}
.htmlInner main .info .table > .list .sign {
  flex: 0.3;
}
.htmlInner main .info .table > .list .start {
  flex: 0.5;
}
.htmlInner main .info .table > .list .what {
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}
.htmlInner main .info .table > .list .toll {
  flex: 1;
}
.htmlInner main .info .table .button {
  display: flex;
  cursor: pointer;
  width: 100%;
  max-width: 15rem;
  justify-content: center;
  height: fit-content;
  position: relative;
}
.htmlInner main .info .table .button p {
  background-color: #243e5d;
  font-weight: bold;
  width: 100%;
  text-align: center;
  padding: 0.7rem 0;
  color: white;
  font-size: 1rem;
  border-radius: 3px;
  transition: all 0.25s;
}
.htmlInner main .info .table .button a {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.htmlInner main .info a {
  text-decoration: underline;
  font-size: 1.2rem;
  color: #2879d6;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-bottom: 1rem;
  align-self: center;
}
.htmlInner main .info a:has(img) {
  align-self: center;
}
.htmlInner main .info img {
  align-self: center;
  width: 100%;
  max-width: 1000px;
}
.htmlInner main .info > p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #181818;
  background-color: white;
  padding: 1rem;
  border-radius: 5px;
  width: 100%;
  max-width: 1000px;
  align-self: center;
}
.htmlInner main .info iframe {
  margin-top: 0rem;
  width: 100%;
  align-self: center;
  max-width: 1000px;
}
.htmlInner main .info .main-info {
  display: flex;
  width: 100%;
}
.htmlInner main .info .main-info > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-bottom: 1px;
}
.htmlInner main .info .main-info > div > div {
  display: flex;
  justify-content: flex-start;
}
.htmlInner main .info .main-info > div > div p {
  font-size: 1.2rem;
}
.htmlInner main .info .main-info > div > div p:nth-child(2) {
  padding: 1rem 0rem 1rem 0rem;
  margin: 0 1rem;
  margin-bottom: 0px;
  border-bottom: 1px solid #d1d1d1;
  margin-bottom: 1rem;
  color: #424344;
  flex: 1;
}
.htmlInner main .info .main-info > div.left {
  flex: initial;
  width: 12rem;
}
.htmlInner main .info .main-info > div.left p:nth-child(1) {
  width: 5rem;
  background-color: #e1ebe8;
  height: fit-content;
  padding: 1rem 0.5rem 1rem 0rem;
  text-wrap: nowrap;
  text-align: right;
  font-size: 1.1rem;
  font-weight: bold;
  color: #383838;
}
.htmlInner main .info .main-info > div.right p:nth-child(1) {
  width: 16rem;
  background-color: #e1ebe8;
  height: fit-content;
  padding: 1rem 0.5rem 1rem 0rem;
  text-wrap: nowrap;
  text-align: right;
  font-size: 1.1rem;
  font-weight: bold;
  color: #383838;
}
.htmlInner footer {
  width: 100%;
  max-width: 1400px;
  display: flex;
  background-color: #404040;
  border-radius: 5px;
  padding: 3rem 5rem 1.5rem;
  flex-direction: column;
  margin-bottom: 1rem;
}
.htmlInner footer > p {
  color: #f2f2f2;
  margin: 2rem auto 0;
  font-size: 0.7rem;
  text-align: center;
}
.htmlInner footer > div {
  display: flex;
  gap: 3rem;
}
.htmlInner footer > div > div {
  display: flex;
  flex-direction: column;
}
.htmlInner footer > div > div h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.htmlInner footer > div > div p {
  color: white;
  font-size: 0.9rem;
  line-height: 1.5rem;
}

@media only screen and (max-width: 768px) {
  html,
  body {
    font-size: medium;
  }
  .htmlInner header {
    margin-top: initial;
  }
  .htmlInner header .top {
    background-color: white;
  }
  .htmlInner header .top img {
    width: 100%;
    border-radius: initial;
  }
  .htmlInner header nav {
    padding: initial;
    overflow-x: auto;
    border-radius: initial;
  }
  .htmlInner header nav .button {
    flex: 0 0 fit-content;
    border-radius: 3px;
    font-size: 0.9rem;
  }
  .htmlInner header nav .button a {
    padding: 1rem 0.8rem;
  }
  .htmlInner main {
    padding: 0 3%;
  }
  .htmlInner main nav {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .htmlInner main nav .button {
    padding: initial;
    flex: 1;
  }
  .htmlInner main nav .button a {
    padding: 1rem 0;
    display: flex;
    justify-content: center;
  }
  .htmlInner main .info {
    padding: 0 1rem 2rem;
    min-height: 100vh;
  }
  .htmlInner main .info .table {
    padding: 1rem 0.2rem;
    margin-bottom: 1rem;
  }
  .htmlInner main .info .table > span {
    font-size: 1rem;
  }
  .htmlInner main .info .table .list {
    font-size: 1rem;
    align-items: baseline;
  }
  .htmlInner main .info .table.over {
    overflow-x: auto;
  }
  .htmlInner main .info .table.over span {
    width: 900px;
  }
  .htmlInner main .info .table.over .list {
    width: 900px;
  }
  .htmlInner main .info .table.over .list > div {
    flex: 1 !important;
    width: initial;
  }
  .htmlInner main .info h3 {
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }
  .htmlInner footer {
    padding: 2.5rem 3%;
    flex-direction: column;
  }
  .htmlInner footer > div {
    flex-direction: column;
  }
  .htmlInner main .info .table > .list.tag > div {
    font-size: 1rem;
  }
  .htmlInner main .info .table > .list.list-info,
  .htmlInner main .info .table > .list.tag {
    gap: 0.3rem;
  }
  .htmlInner main .info .table > .list.list-info > div,
  .htmlInner main .info .table > .list.tag > div {
    font-size: 1rem;
    padding-right: 0rem;
    flex: initial;
  }
  .htmlInner main .info .table > .list .name,
  .htmlInner main .info .table > .list .toll {
    flex: 1 !important;
  }
  .htmlInner main .info .table > .list .number {
    width: 5rem;
  }
  .htmlInner main .info .table > .list .date {
    width: 5rem;
  }
  .htmlInner main .info .main-info {
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .htmlInner main .info .main-info > div.left {
    width: 100%;
  }
  .htmlInner main .info .main-info > div.right p:nth-child(1),
  .htmlInner main .info .main-info > div.left p:nth-child(1) {
    width: 9rem;
    text-wrap: initial;
    font-size: 1rem;
  }
  .htmlInner main .info .main-info > div > div p {
    font-size: 1rem;
  }
  .htmlInner main .info .table > .list.list-info.col {
    flex-direction: column;
    align-items: center;
  }
  .htmlInner main .info .table .button {
    margin-top: 0.5rem;
  }
  .htmlInner main .info .table .button p {
    padding: 0.4rem 0;
    font-size: 0.9rem;
  }
  .htmlInner main .info iframe {
    max-height: 15rem;
  }
}

/*# sourceMappingURL=main.css.map */


/* 舊站資料移轉後的共用顯示樣式 */
.htmlInner header .top img { max-width: 100%; height: auto; display: block; }
.legacy-content { width: 100%; max-width: 1100px; margin: 0 auto 1rem; }
.legacy-content > p, .legacy-content > div:not(.table-scroll) {
  background: #fff; padding: 0.9rem 1rem; line-height: 1.7; border-radius: 5px; margin: 0 0 0.75rem;
}
.legacy-content img { display: block; width: 100%; height: auto; max-width: 1000px; margin: 0 auto 1rem; }
.legacy-content a { display: inline; margin: 0; overflow-wrap: anywhere; }
.legacy-content > a:has(img) { display: block; margin: 0 auto 1rem; }
.table-scroll { width: 100%; overflow-x: auto; margin-bottom: 1.25rem; background: #fff; border-radius: 5px; }
.data-table { width: 100%; min-width: 760px; border-collapse: collapse; color: #181818; background: #fff; }
.data-table th, .data-table td { border: 1px solid #ddd; padding: 0.75rem; line-height: 1.55; vertical-align: top; }
.data-table tr:first-child td, .data-table th { background: #6493aa; color: #fff; font-weight: bold; }
.data-table tr:nth-child(even) td { background: #f8fafb; }
.qualifications-table { table-layout: auto; }
.qualifications-table .qualification-name,
.qualifications-table .qualification-age {
  width: 1%;
  white-space: nowrap;
}
.qualifications-table td:not(.qualification-name):not(.qualification-age) {
  width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}
.center-summary { width: 100%; background: #fff; border-radius: 5px; padding: 1.25rem 1.5rem; margin: 0 auto 1rem; }
.center-summary > div { display: flex; gap: 1rem; padding: 0.45rem 0; border-bottom: 1px solid #e4e4e4; line-height: 1.55; }
.center-summary > div:last-child { border-bottom: 0; }
.center-summary span { width: 7rem; flex: 0 0 7rem; font-weight: bold; color: #385b6d; }
.center-summary p { margin: 0; }
.empty-note { width: 100%; max-width: 1000px; align-self: center; margin: 0 auto 1rem; background: #fff; border-left: 5px solid #6493aa; border-radius: 5px; padding: 1.25rem; line-height: 1.7; color: #444; }
.schedule-card .what { overflow-wrap: anywhere; }
.news-list { width: 100%; max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.news-card { background: #fff; border-radius: 5px; padding: 1.25rem 1.5rem; line-height: 1.75; color: #181818; }
.news-card.notice { border-left: 5px solid #e45b1f; }
.news-card h4 { color: #385b6d; font-size: 1.2rem; font-weight: bold; margin-bottom: 0.75rem; }
.news-card p + p { margin-top: 0.65rem; }
.news-card .important { color: #d83d24; font-weight: bold; }
.news-card .year-label { color: #2879d6; font-weight: bold; }
.news-card a { display: inline; margin: 0; font-size: inherit; }
.news-video { position: relative; width: 100%; padding-top: 56.25%; overflow: hidden; border-radius: 5px; margin: 0.75rem 0; background: #222; }
.news-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; margin: 0; border: 0; }
.news-links { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.65rem; }
@media only screen and (max-width: 768px) {
  .center-summary > div { flex-direction: column; gap: 0.2rem; }
  .center-summary span { width: auto; flex-basis: auto; }
  .legacy-content { font-size: 0.95rem; }
  .news-card { padding: 1rem; }
  .htmlInner main > nav .button p { white-space: nowrap; font-size: 0.82rem; }
}
