.contact-sections {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  line-height: 1.8;
  font-size: 15px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* タイトル */
.contact-sections h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

/* 注意書き全体 */
.contact-sections .contact-notes {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 40px;
}

/* ※ 行 */
.contact-sections .contact-notes p {
  text-align: left;
  margin: 0 0 12px;
  font-size: 14px;
}

/* ボタン */
.contact-sections .about-button {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;

  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;

  color: var(--color-text, #403234);
  background: var(--color-button-bg, #d8d0c8);
  border-radius: var(--radius-sm, 6px);

  transition: opacity 0.2s ease;
}

.contact-sections .about-button:hover {
  opacity: 0.8;
}

/* SP */
@media (max-width: 768px) {
  .hero--contact {
    height: 40vh;
  }

  .contact-sections {
    font-size: 14px;
    padding: 48px 20px 64px;
  }

  .contact-sections h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
