@charset "UTF-8";
/* =====================
  ご利用ガイド
 ======================= */
.p-guide_credit {
  margin: 10px 0 20px;
  display: flex;
  flex-wrap: wrap;
}
.p-guide_credit > li {
  flex: 0 1 58px;
}

.p-guide_pointList {
  display: grid;
  grid-template-columns: repeat(auto-fit, 150px);
  justify-content: center;
  gap: 20px;
  text-align: center;
  line-height: 1.5;
}
.p-guide_pointList .icon {
  width: 64px;
  margin: 0 auto 10px;
}
.p-guide_pointList .title {
  font-weight: 700;
  color: var(--c_blue);
  margin: 10px 0;
}
.p-guide_pointList .text > span {
  font-size: 1.3rem;
}

.p-guide_privacyLink {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  justify-content: center;
}
.p-guide_privacyLink > li {
  flex: 0 1 320px;
}

/* スマホのみ
  ------------------------ */
@media (max-width: 1199px) {
  .p-guide_rankTable {
    width: 100%;
    line-height: 1.5;
    margin-top: 20px;
  }
  .p-guide_rankTable tbody tr {
    display: block;
    margin-bottom: 40px;
  }
  .p-guide_rankTable tbody tr:last-child {
    margin-bottom: 0;
  }
  .p-guide_rankTable tbody th {
    display: block;
    background: #F7F8FB;
    padding: 10px;
  }
  .p-guide_rankTable tbody td {
    display: block;
    border-bottom: 1px solid var(--c_border);
    padding: 10px;
    display: grid;
    align-items: center;
    grid-template-columns: 125px 1fr;
  }
  .p-guide_rankTable tbody td:before {
    content: attr(data-label);
    font-weight: 700;
  }
}
/* PC
  ------------------------ */
@media (min-width: 1200px) {
  .p-guide_credit {
    gap: 8px;
  }
  .p-guide_pointList {
    justify-content: space-between;
  }
  .p-guide_rankTable {
    width: 100%;
    border-collapse: collapse;
    line-height: 1.5;
    margin-top: 20px;
  }
  .p-guide_rankTable thead th {
    background: #F7F8FB;
    border-bottom: 1px solid var(--c_border);
    padding: 20px;
    text-align: left;
  }
  .p-guide_rankTable tbody th {
    text-align: left;
    padding: 20px;
    border-bottom: 1px solid var(--c_border);
  }
  .p-guide_rankTable tbody td {
    padding: 8px 20px;
    border-bottom: 1px solid var(--c_border);
  }
}