  /* ▼専用クラス定義（他と競合しないようにプレフィックス付き） */
  .custom-section {
    width: 100%;
    max-width: 750px;
    margin: 5px auto;
  }

  .custom-section .custom-heading {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 2px solid #333;
    padding: 5px;
    margin-bottom: 10px;
  }

  .custom-section .custom-text-title {
    font-size: 20px;
    line-height: 1.5;
    padding: 10px;
    margin-bottom: 10px;
  }

  .custom-section .custom-text {
    font-size: 16px;
    line-height: 1.5;
    padding: 10px;
    margin-bottom: 5px;
  }

/* ▼テーブルデザイン */
  .custom-section .custom-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
  }

  .custom-section .custom-table th,
  .custom-section .custom-table td {
    border: 1px solid #999;
    padding: 4px;
    text-align: center;
  }

  .custom-section .custom-table th {
    background-color: #f5f5f5;
    font-weight: bold;
  }