@charset "utf-8";
/*table faq
========================================== */
.table-faq {
  border: 0px !important;
  padding-left: 4vw;
}

.document .table-faq tr:nth-child(1) td {
  background-color: transparent !important;
}

.table-faq tr {
  display: flex;
  flex-direction: column;
}

.table-faq tr td {
  width: 100%;
  position: relative;
  padding-left: 50px;
  border: 0px !important;
  border-radius: 0px !important;
}

.table-faq tr td ul {
  margin-top: 0;
}

.table-faq tr td::before {
  position: absolute;
  margin-left: -40px;
  padding: 0px 9px;
  border-radius: 5px;
  background-color: #666;
  color: #fff;
}

.table-faq tr td:nth-child(1) {
  border-top: 1px solid var(--border-color) !important;
}

.table-faq tr td:nth-child(2) {
  border-bottom: 2px solid #666 !important;
}

.table-faq tr td:nth-child(1)::before {
  content: "Q";
}

.table-faq .open {
  font-weight: 700;
  cursor: pointer;
}

.table-faq .open::before {
  background-color: var(--primary-color);
  color: #fff;
  z-index: 1;
}

.table-faq .open::after {
  content: "";
  width: 2px;
  height: 50px;
  border-left: 2px dotted var(--primary-color);
  position: absolute;
  left: 25px;
  z-index: 0;
}

.table-faq tr td:nth-child(2)::before {
  content: "A";
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 700;
}

.table-faq .closed {
  cursor: pointer;
}

/* table-link
========================================== */
.table-link {
  width: 100%;
}

.table-link tbody {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 30px);
}
.table-link tr {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: clamp(10px, 3vw, 50px);
  padding: clamp(20px, 1.5vw, 30px);
  background-color: #fff;
  border-radius: 10px;
}

.table-link tr td:nth-child(1) img {
  width: 180px;
  height: 180px;
  border-radius: 100px;
}

.table-link tr td strong {
  font-size: 130%;
  font-family: Roboto Condensed, Arial, Microsoft Yahei, Noto Sans TC,
    Microsoft JhengHei, fantasy, Helvetica, sans-serif !important;
  letter-spacing: 1px;
}

.table-link tr td a {
  background-color: var(--primary-color-400);
  color: #fff!important;
  padding: 3px 15px;
  border-radius: 50px;
  margin-top: 20px;
  display: inline-block;
  font-size: 90%;
}

.table-link tr td a::after {
  content: ' ❯❯';
}

.table-link tr td a:hover {
  background-color: var(--primary-color);
}


@media only screen and (max-width: 480px) {
.table-link tr {
  display: flex;
  flex-direction: column;
}

}