@charset "UTF-8";
/* ▼▼▼ terms ▼▼▼ */
.terms {
  max-width: 960px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .terms {
    gap: 32px;
    margin-top: 32px;
  }
}
.terms .mt8 {
  margin-top: 8px;
}
.terms .mt16 {
  margin-top: 16px;
}
.terms .mt24 {
  margin-top: 24px;
}
.terms .mt32 {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .terms .mt32 {
    margin-top: 24px;
  }
}
.terms.pb60 {
  padding-bottom: 60px;
}
.terms .section_title {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .terms .section_title {
    margin-bottom: 24px;
  }
}
.terms .terms_text {
  line-height: 1.6;
}
.terms .terms_text.--flex {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(4, -webkit-max-content);
  grid-template-columns: repeat(4, max-content);
}
.terms .terms_text.--flex > span {
  min-width: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 4;
}
.terms .terms_text.--flex > span span:last-child {
  text-align: right;
}
.terms .terms_contents {
  padding: 48px;
  border-radius: 20px;
  background: var(--Background-Secondary);
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .terms .terms_contents {
    padding: 24px;
    margin-top: 32px;
  }
}
.terms .terms_contents + .terms_contents {
  margin-top: 16px;
}
.terms .terms_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.terms .terms_list li {
  padding-left: 29px;
  padding-bottom: 3px;
  position: relative;
}
.terms .terms_list li::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--Line-Quarterly);
  position: absolute;
  top: 9px;
  left: 9px;
}
.terms .terms_list li span {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, currentColor, transparent 50%);
}
.terms .terms_list_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  counter-reset: number 0;
}
.terms .terms_list_number > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  line-height: 1.4;
  counter-increment: number;
}
.terms .terms_list_number > li::before {
  content: counter(number) ".";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 19px;
  height: 22px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .terms .terms_list_number > li::before {
    height: 21px;
  }
}
.terms .btn {
  max-width: 528px;
  width: 100%;
  margin-inline: auto;
  line-height: 1.2;
}
.terms .btn.--pdf::after {
  height: 20px;
  background-image: url(../img/icon_pdf_white.svg);
  border-left: unset;
}
.terms .btn.--pdf span {
  width: 100%;
  padding-right: 16px;
  border-right: 1px solid currentColor;
}
@media (any-hover: hover) {
  .terms .btn.--pdf:hover::after {
    background-image: url(../img/icon_pdf.svg);
  }
}
.terms .btn.--contact::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--Object-Primary-Reverse);
  -webkit-mask: url(../img/icon_mail.svg) no-repeat center/contain;
  mask: url(../img/icon_mail.svg) no-repeat center/contain;
  position: relative;
  top: 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 374px) {
  .terms .btn.--contact {
    gap: 3px;
  }
}
.terms .terms_line {
  display: inline-block;
  width: 100%;
  height: 1px;
  background: var(--Line-Primary);
  margin-block: 32px;
}
@media screen and (max-width: 767px) {
  .terms .terms_line {
    margin-block: 24px 32px;
  }
}
.terms .terms_contents_title {
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
}
.terms .terms_remark {
  font-size: 14px;
  line-height: 1.4;
}