/*+++++++++++++++++++++++++++++++++++++++++
　共通
*+++++++++++++++++++++++++++++++++++++++++*/
.page--inner {
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  max-width: calc(950px + 30px);
}

.page--head {
  padding-top: 40px;
  margin-bottom: 80px;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 834px) {
  .page--head {
    margin-bottom: 40px;
    font-size: 20px;
  }

}


/* -----------------------------------------
　線のリスト
　<div class="borderList"><dl>
----------------------------------------- */
.borderList {
  padding: 3px 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-rightgrey);
  border-bottom: 1px solid var(--color-rightgrey);
  position: relative;
  margin-bottom: 150px;
}
.borderList::before, .borderList::after {
  content: "";
  border-style: solid;
  border-color: var(--color-rightgrey);
  border-width: 0;
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
}
.borderList::before {
  border-top-width: 1px;
  top: -3px;
}
.borderList::after {
  border-bottom-width: 1px;
  bottom: -3px;
}
.borderList > dl {
  padding: 30px 50px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 56px;
}
.borderList > dl:nth-child(n+2) {
  border-top: 1px solid var(--color-rightgrey);
}
.borderList > dl dd {
  color: var(--color-grey);
}
@media (max-width: 834px) {
  .borderList > dl {
    padding: 20px 15px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/*+++++++++++++++++++++++++++++++++++++++++
　特定商取引法に基づく表示
*+++++++++++++++++++++++++++++++++++++++++*/
.transaction {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 834px) {
  .transaction {
    font-size: 13px;
  }
}

/*+++++++++++++++++++++++++++++++++++++++++
　利用規約
*+++++++++++++++++++++++++++++++++++++++++*/
.terms p:nth-of-type(n+2) {
  margin-top: 40px;
}
.terms--right {
  text-align: right;
  margin-bottom: 150px;
}

/*+++++++++++++++++++++++++++++++++++++++++
　プライバシーポリシー
*+++++++++++++++++++++++++++++++++++++++++*/
.privacy {
  margin-bottom: 150px;
}
