/* 全体ラッパー */
.condolence-scene {
  padding: 32px 16px;
  background-color: #f9f9f9;
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  box-sizing: border-box;
}

/* ページタイトル */
.page-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
  color: #2e2e2e;
}

/* セクション共通 */
.section {
  margin-bottom: 40px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* 見出し */
.section h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #1a1a1a;
  border-left: 4px solid #007acc;
  padding-left: 10px;
}

.section h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #444;
}

/* 段落・リスト */
.section p {
  margin-bottom: 16px;
}

.section ul,
.section ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.section ul li::marker {
  color: #007acc;
}

/* 商品リスト */
.item_list {
  margin-top: 16px;
}

.append_scroll_data {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* リンク装飾 */
.section a {
  color: #007acc;
  text-decoration: underline;
}

.section a:hover {
  text-decoration: none;
}

/* レスポンシブ対応（モバイル） */
@media screen and (max-width: 600px) {
  .page-title {
    font-size: 22px;
  }

  .section h2 {
    font-size: 18px;
  }

  .section h3 {
    font-size: 16px;
  }

  .section {
    padding: 16px;
  }

  .append_scroll_data {
    flex-direction: column;
  }
}

/*# sourceMappingURL=how-to-write.map */
