@charset "UTF-8";
/* template 별 커스텀 css */
.pageTit {
  margin-bottom: 16px;
}

.termsTitle {
  display: grid;
  grid-template-columns: 100px 1fr 122px 88px;
  height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--gray_70);
  border-top: 3px solid var(--point);
}

.accordionTable {
  border-top: 0;
}
.accordionTable .accTitle {
  grid-template-columns: 100px 1fr 122px 88px;
}

.termsWrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.termsWrap h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.054px;
  margin-bottom: 8px;
  word-break: break-all;
}
.termsWrap h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.042px;
  word-break: break-all;
}
.termsWrap p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.042px;
  word-break: break-all;
}
.termsWrap p + ol {
  margin-top: 20px;
}
.termsWrap .caption {
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.036px;
  color: var(--gray_20);
  word-break: break-all;
}
.termsWrap span {
  word-break: break-all;
}
.termsWrap > ul {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.termsWrap ol {
  margin-left: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.termsWrap ol > li {
  list-style: decimal;
  padding-left: 4px;
}
.termsWrap ol > li:has(table) + li {
  margin-top: 8px;
}
.termsWrap ol > li::marker {
  font-weight: 600;
}
.termsWrap table {
  text-align: center;
  table-layout: fixed;
}
.termsWrap table thead {
  border-top: 1px solid var(--gray_70);
  background-color: var(--gray_90);
}
.termsWrap table tr {
  border-bottom: 1px solid var(--gray_70);
}
.termsWrap table td, .termsWrap table th {
  height: 40px;
  padding: 9px 10px;
  border-right: 1px solid var(--gray_70);
}
.termsWrap table td:last-child, .termsWrap table th:last-child {
  border-right: 0;
}

/*** tablet ***/
@container (min-width: 760px) and (max-width: 1015px) {
  .termsTitle {
    display: none;
  }
  .accordionTable {
    border-top: 3px solid var(--point);
  }
  .accordionTable .accTitle {
    grid-template-columns: 1fr 24px;
    grid-template-rows: 1fr;
  }
}
/*** mobile ***/
@container (max-width: 759px) {
  .termsTitle {
    display: none;
  }
  .accordionTable {
    border-top: 3px solid var(--point);
  }
  .accordionTable .accTitle {
    grid-template-columns: 1fr 24px;
    grid-template-rows: 1fr;
  }
}