    :root {
      --primary-color: #0a2c6e;
      --text-color: #333;
      --bg-color: #fff;
      --footer-bg: #06204a;
      --footer-text: #fff;
      --max-width: 800px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      color: var(--text-color);
      background: var(--bg-color);
      line-height: 1.6;
    }
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 2rem 1rem;
    }
    h1 {
      text-align: center;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }
    h1 + p {
      text-align: center;
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 2rem;
    }
    .section {
      margin-bottom: 1rem;
    }
    .section-header {
      background: var(--primary-color);
      color: #fff;
      padding: 0.75rem 1rem;
      font-weight: bold;
      font-size: 1rem;
    }
    .section-content {
       font-family: "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,sans-serif!important;
      padding: 0.75rem 1rem;
      border-top: none;
      font-size: 0.95rem;
    }
    /* 返金・キャンセルの中のリスト */
    .section-content ul {
      list-style: none;
      padding-left: 1rem;
    }
    .section-content ul li {
      position: relative;
      padding-left: 1.2rem;
      margin-bottom: 0.5rem;
    }
    .section-content ul li::before {
      content: "・";
      position: absolute;
      left: 0;
    }
    /* フッター */
    @media (max-width: 480px) {
      .section-header {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
      }
      .section-content {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
      }
    }