@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
@import url("../css/radio.css");
@import url("../grid.css");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
}
*::before, *::after {
  margin: 0;
  padding: 0;
}

:root {
  --top-nav-height: 73px;
  --first-page-height: 900px;
  --bdrs: 20px;
  --bxsh-width: 4px 4px;
  --card-bd: 3px;
  --innerbdrs: calc(var(--bdrs) - var(--card-bd));
  --gs-gap: 10px;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1.8em;
  color: rgb(70, 64, 116);
  vertical-align: top;
}

button, input {
  font-family: "Noto Sans TC";
}

img {
  vertical-align: bottom;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h2, .h2 {
  font-size: 32px;
  line-height: 1.3em;
}

h3, .h3 {
  font-size: 28px;
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 20px;
}

.bold {
  font-weight: bold;
}

.caption-regular {
  font-size: 14px;
}

.caption-bold {
  font-size: 14px;
  font-weight: bold;
}

p {
  text-align: justify;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: justify;
}

input {
  font-size: 18px;
}

a {
  text-decoration: none;
}

button {
  border-radius: 100px;
  padding: 5px 2px;
  margin-top: 6px;
  /* 是否可以選取或直接全選 | 不選取*/
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

mark {
  background-color: rgba(255, 255, 255, 0.8);
  color: #ffa700;
  border-radius: 5px;
  margin: 0 5px;
  padding: 0 5px;
  -webkit-text-decoration: underline double currentcolor auto;
          text-decoration: underline double currentcolor auto;
}

table {
  border-collapse: collapse;
}

td {
  vertical-align: middle;
  text-align: center;
  font-size: 18px;
}

sub {
  font-size: 14px;
}

section .title-item {
  margin-top: 80px;
  margin-bottom: 60px;
}
.out-container {
  z-index: 1;
  /* 半透明線性漸層 */
  background: linear-gradient(214.44deg, rgba(122, 203, 221, 0.5) -16.93%, rgba(160, 227, 242, 0.5) 26.21%, rgba(255, 204, 111, 0.5) 104.89%), #FFFFFF;
}

.avatars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 110px;
  height: 110px;
  border-radius: 60px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  aspect-ratio: 1/1;
}
.avatars img {
  height: auto;
}

img[alt*=背景] {
  pointer-events: none;
}

.next-page {
  height: content-fit;
}

.hidden {
  pointer-events: none;
  opacity: 0;
  -webkit-transition: max-height 1s, -webkit-transform 1s;
  transition: max-height 1s, -webkit-transform 1s;
  transition: transform 1s, max-height 1s;
  transition: transform 1s, max-height 1s, -webkit-transform 1s;
  -webkit-transform: translateY(5em);
          transform: translateY(5em);
  max-height: 0px;
}

.auto {
  pointer-events: auto;
  opacity: 1;
  -webkit-transition: max-height 1s, -webkit-transform 1s;
  transition: max-height 1s, -webkit-transform 1s;
  transition: transform 1s, max-height 1s;
  transition: transform 1s, max-height 1s, -webkit-transform 1s;
  -webkit-transform: translateY(0em);
          transform: translateY(0em);
  max-height: 2000px;
}