@import url(./global/_variable.css);

/* legal（policy/terms 共通） */
/* ============================================ */

/* legal-article */
/* ============================================ */
.legal-article {
  padding-block: clamp(3.75rem, 2.6295rem + 2.9279vw, 5.625rem); /* 90~60(1920~896) */
  background-color: #FFF;
  border-radius: 50px 50px 0 0;
  position: relative;
  @media (width <= 896px) {
    border-radius: 30px 30px 0 0;
    padding-block: 30px 60px;
  }
}
.legal-article__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 20px;
}
.legal-article__lead {
  font-family: 'Zen Kaku Gothic New', var(--font_normal);
  font-size: clamp(0.875rem, 0.6227rem + 0.4505vw, 1rem); /* 16~14(1340~896) */
  font-weight: 500;
  line-height: 1.9;
  color: var(--font_c);
}
.legal-article__ttl {
  margin-top: 60px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bg02_c);
  font-family: 'Zen Kaku Gothic New', var(--font_normal);
  font-size: clamp(1.125rem, 0.8636rem + 0.4505vw, 1.375rem); /* 22~18(1340~896) */
  font-weight: 700;
  line-height: 1.6;
  color: var(--font_c);
  word-break: keep-all;
  @media (width <= 896px) {
    margin-top: 45px;
    word-break: normal;
  }
}
.legal-article__txt {
  margin-top: 20px;
  font-family: 'Zen Kaku Gothic New', var(--font_normal);
  font-size: clamp(0.875rem, 0.6227rem + 0.4505vw, 1rem); /* 16~14(1340~896) */
  font-weight: 500;
  line-height: 1.9;
  color: var(--font_c);
  word-break: break-word;
  > a {
    color: var(--main_c);
    text-decoration: underline;
    &:hover {
      @media (hover: hover) {
        opacity: .7;
      }
    }
  }
}
.legal-article__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding-left: 1.4em;
  list-style: decimal;
  > li {
    font-family: 'Zen Kaku Gothic New', var(--font_normal);
    font-size: clamp(0.875rem, 0.6227rem + 0.4505vw, 1rem); /* 16~14(1340~896) */
    font-weight: 500;
    line-height: 1.9;
    color: var(--font_c);
  }
}
.legal-article__list--nested {
  margin-top: 8px;
  list-style: lower-alpha;
}
.legal-article__table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  border-top: 1px solid var(--bg02_c);
  > tbody > tr {
    border-bottom: 1px solid var(--bg02_c);
    @media (width <= 896px) {
      display: flex;
      flex-direction: column;
    }
    > th {
      width: 280px;
      padding: 18px 20px;
      background: var(--bg02_c);
      font-family: 'Zen Kaku Gothic New', var(--font_normal);
      font-size: clamp(0.875rem, 0.6227rem + 0.4505vw, 1rem); /* 16~14(1340~896) */
      font-weight: 700;
      line-height: 1.7;
      color: var(--font_c);
      text-align: left;
      vertical-align: top;
      @media (width <= 896px) {
        width: 100%;
      }
    }
    > td {
      padding: 18px 20px;
      font-family: 'Zen Kaku Gothic New', var(--font_normal);
      font-size: clamp(0.875rem, 0.6227rem + 0.4505vw, 1rem); /* 16~14(1340~896) */
      font-weight: 500;
      line-height: 1.7;
      color: var(--font_c);
    }
  }
}
.legal-article__revision {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--bg02_c);
  font-family: 'Zen Kaku Gothic New', var(--font_normal);
  font-size: clamp(0.75rem, 0.6237rem + 0.2252vw, 0.875rem); /* 14~13(1340~896) */
  font-weight: 500;
  line-height: 1.9;
  color: var(--font_c);
  opacity: .7;
  text-align: right;
  @media (width <= 896px) {
    margin-top: 45px;
  }
}
