@charset "UTF-8";
#refund {
  background-color: var(--color-white);
}

.c-refund {
  max-width: 1000px;
  margin-inline: auto;
  padding-top: 3.2rem;
  text-align: left;
}

.c-refund__lead {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 800;
  color: var(--color-black);
}

.c-refund__list {
  display: inline-block;
  /* 中央に“塊”として置く */
  text-align: left;
  margin: 3.2rem auto 0;
  padding: 0;
  list-style: none;
}

.c-refund__item {
  position: relative;
  padding-left: 2.2rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-black);
}

.c-refund__item + .c-refund__item {
  margin-top: 1.2rem;
}

/* 黒い丸（カンプの点） */
.c-refund__item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.8;
  color: var(--color-black);
}

.c-refund__label {
  font-weight: 800;
}

.c-refund__text {
  font-weight: 400;
}

.c-refund__note {
  margin: 2.8rem 0 0;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  color: var(--color-black);
}

.c-refund__note strong {
  font-weight: 800;
}

/* SP */
@media (max-width: 768px) {
  .c-refund {
    padding-top: 2.4rem;
    text-align: left;
  }
  .c-refund__lead,
  .c-refund__note {
    font-size: 1.4rem;
  }
  .c-refund__item {
    font-size: 1.4rem;
  }
  .c-refund__list {
    display: block;
    margin-top: 2.4rem;
  }
}