@media (min-width: 922px) {
    .site-content .ast-container {
        display: block;
    }
	}

/* よくある質問 */

.faq-section {
  padding: 80px 20px;
  background: #fff;
  color: #222;
}

.faq-section__inner {
  max-width: 920px;
  margin: 0 auto;
}

.faq-section__title {
  margin: 0 0 36px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.04em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid #ddd;
  background: #fff;
}

.faq-item[open] {
  border-color: #cfcfcf;
}

.faq-item__question {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 22px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
}

.faq-item__question::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: #555;
}

.faq-item[open] .faq-item__question::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 22px 24px 22px;
  border-top: 1px solid #eee;
}

.faq-item__answer p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 2;
}

.faq-item__answer p:first-child {
  margin-top: 18px;
}

@media (max-width: 767px) {
  .faq-section {
    padding: 56px 16px;
  }

  .faq-section__title {
    margin-bottom: 24px;
    font-size: 24px;
    text-align: left;
  }

  .faq-item__question {
    padding: 18px 48px 18px 16px;
    font-size: 15px;
  }

  .faq-item__question::before {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    font-size: 12px;
  }

  .faq-item__question::after {
    right: 16px;
    font-size: 22px;
  }

  .faq-item__answer {
    padding: 0 16px 18px 16px;
  }

  .faq-item__answer p {
    font-size: 14px;
    line-height: 1.9;
  }
}
	

/* 特定商取引法に基づく表記 */

.law-page {
  padding: 80px 20px;
  background: #fff;
  color: #222;
}

.law-page__inner {
  max-width: 960px;
  margin: 0 auto;
}

.law-page__title {
  margin: 0 0 40px;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.law-table {
  margin: 0;
  border-top: 1px solid #ddd;
}

.law-table__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-bottom: 1px solid #ddd;
}

.law-table__head,
.law-table__body {
  margin: 0;
  padding: 24px 20px;
  line-height: 1.9;
  font-size: 15px;
  box-sizing: border-box;
}

.law-table__head {
  background: #f7f7f7;
  font-weight: 700;
}

.law-table__body a {
  color: inherit;
  text-decoration: underline;
  word-break: break-all;
}

@media (max-width: 767px) {
  .law-page {
    padding: 56px 16px;
  }

  .law-page__title {
    margin-bottom: 28px;
    font-size: 24px;
    text-align: left;
  }

  .law-table__row {
    grid-template-columns: 1fr;
  }

  .law-table__head,
  .law-table__body {
    padding: 16px 14px;
    font-size: 14px;
  }

  .law-table__head {
    padding-bottom: 10px;
  }

  .law-table__body {
    padding-top: 0;
  }
}