/* 長いページタイトル用の調整 */
.title h1.long-title {
  font-size: 24px;
}

/* 本文エリアの基本スタイル */
.main-content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  line-height: 1.7;
}

/* 各セクションの見出し (h2) */
.main-content-area h2 {
  text-align: left;
  font-size: 1.8em;
  color: var(--color-sub1);
  border-bottom: 2px solid var(--color-headline);
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* 本文の段落 */
.main-content-area p {
  margin-bottom: 1em;
}

/* 箇条書きリスト */
.main-content-area ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 1em;
  margin-bottom: 1.5em;
}

.main-content-area li {
  margin-bottom: 0.8em;
}

/* 注釈ボックス（本人確認方法など） */
.note-box {
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-left: 5px solid var(--color-main);
  padding: 20px;
  margin: 2em 0;
}

.note-box p {
  margin-bottom: 10px;
}

.note-box p:last-child {
  margin-bottom: 0;
}

/* 連絡先ブロック */
.contact-info-block {
  margin-top: 20px;
}

.established-date {
  margin-top: 30px;
  text-align: right;
}

/* 特定商取引法に基づく表記リストのスタイル */
.sctl-list dt {
  font-weight: bold;
  padding: 15px;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
}

.sctl-list dt:not(:first-child) {
  margin-top: 20px;
}

.sctl-list dd {
  padding: 20px 15px;
  margin-left: 0;
  border-bottom: 1px solid #eee;
}

.sctl-list dd p:last-child {
  margin-bottom: 0;
}


/* レスポンシブ対応 */
@media (max-width: 800px) {
  .title h1.long-title {
    font-size: 20px;
  }

  .main-content-area {
    padding: 20px;
  }

  .main-content-area h2 {
    font-size: 21px;
  }

}