@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,
.table-link td {
  border: 0 !important;
  background-color: transparent !important;
}

.table-link tbody {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(10px, 1.2vw, 25px);
}

.table-link tbody tr {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 1vw 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.table-link tbody tr:hover {
  box-shadow: 0 35px 32px -30px rgb(0 0 0 / 30%);
}

.table-link tbody tr:nth-child(1n) {
  background-color: #3b90a5;
}
.table-link tbody tr:nth-child(2n) {
  background-color: #30948d;
}
.table-link tbody tr:nth-child(3n) {
  background-color: #76b8b3;
}
.table-link tbody tr:nth-child(4n) {
  background-color: #5078ad;
}
.table-link tbody tr:nth-child(5n) {
  background-color: #82a5d4;
}
.table-link tbody tr:nth-child(6n) {
  background-color: #9594ca;
}
.table-link tbody tr:nth-child(7n) {
  background-color: #e6b26e;
}

.table-link tbody tr:nth-child(8n) {
  background-color: #e78787;
}

.table-link tbody tr td {
  color: #fff;
  text-align: center;
  padding: 0px;
}

.table-link tbody tr td a,
.table-link tbody tr td a:hover {
  color: #fff !important;
  text-decoration: none;
}

.table-link tbody tr td:nth-child(1) {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  width: 90px;
  aspect-ratio: auto 1 / 1;
  margin: 5px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px !important;
}

.table-link tbody tr td:nth-child(2) {
  font-size: 18px;
  font-weight: 700;
}
.table-link tbody tr td:nth-child(3) {
  font-size: 12px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}