html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
}

.dict {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 80px;
}
.dict .single-dict {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  position: relative;
  padding-left: 29px;
}
.dict .single-dict:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  display: inline-block;
  background-image: url(/assets/images/triangle.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
.dict .active {
  color: #4267de;
}

.two-col-table {
  border-top: 1px solid #cfcfcf;
  border-right: 1px solid #cfcfcf;
  border-left: 1px solid #cfcfcf;
}
.two-col-table .table-row {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  display: flex;
  border-bottom: 1px solid #cfcfcf;
}
.two-col-table .table-row .key {
  width: 50%;
  border-right: 1px solid #cfcfcf;
  padding: 10px 32px;
}
.two-col-table .table-row .value {
  width: 50%;
  padding: 10px 32px;
}
.two-col-table .table-row:first-child {
  text-align: center;
}
.two-col-table .table-row:first-child .key {
  background: linear-gradient(90deg, #eef4ff 0%, #f2f1ff 100%), #e2e2e2;
}
.two-col-table .table-row:first-child .value {
  background: linear-gradient(90deg, #eef4ff 0%, #f2f1ff 100%), #e2e2e2;
}
.two-col-table .table-row a {
  color: #0645ad;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.two-col-table .table-row:first-child {
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .dict {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 80px;
  }
  .dict .single-dict {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 28.8px */
    position: relative;
    padding-left: 20px;
  }
  .dict .single-dict:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    content: "";
    display: inline-block;
    background-image: url(/assets/images/triangle.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
  }
  .dict .active {
    color: #4267de;
  }
  .two-col-table {
    border-top: 1px solid #cfcfcf;
    border-right: 1px solid #cfcfcf;
    border-left: 1px solid #cfcfcf;
  }
  .two-col-table .table-row {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 28.8px */
    display: flex;
    border-bottom: 1px solid #cfcfcf;
  }
  .two-col-table .table-row .key {
    width: 50%;
    border-right: 1px solid #cfcfcf;
    padding: 10px 10px;
  }
  .two-col-table .table-row .value {
    width: 50%;
    padding: 10px 10px;
  }
  .two-col-table .table-row:first-child {
    text-align: center;
  }
  .two-col-table .table-row:first-child .key {
    background: linear-gradient(90deg, #eef4ff 0%, #f2f1ff 100%), #e2e2e2;
  }
  .two-col-table .table-row:first-child .value {
    background: linear-gradient(90deg, #eef4ff 0%, #f2f1ff 100%), #e2e2e2;
  }
  .two-col-table .table-row a {
    color: #0645ad;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 28.8px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
  .two-col-table .table-row:first-child {
    padding-top: 0;
  }
}/*# sourceMappingURL=partner.css.map */