* { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.8;
    font-size: 15px;
  }
  .page-header {
    background: #fff3e0;
    padding: 28px 20px;
    border-bottom: 3px solid #e05a10;
    text-align: center;
  }
  .page-header a {
    color: #e05a10;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Noto Serif JP', serif;
  }
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
  }
  h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    color: #2a1810;
    border-left: 4px solid #e05a10;
    padding-left: 14px;
    margin-bottom: 32px;
  }
  .law-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
  }
  .law-table th, .law-table td {
    border-bottom: 1px solid #e8c8a0;
    padding: 16px 14px;
    text-align: left;
    vertical-align: top;
  }
  .law-table th {
    background: #fff7eb;
    width: 32%;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    color: #2a1810;
    white-space: nowrap;
  }
  .law-table td {
    color: #444;
  }
  .disclaimer-box {
    margin-top: 36px;
    padding: 22px;
    background: #fff7eb;
    border-left: 4px solid #e05a10;
    border-radius: 6px;
  }
  .disclaimer-box h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.05rem;
    color: #2a1810;
    margin-bottom: 12px;
  }
  .disclaimer-box p {
    font-size: 0.92rem;
    color: #555;
    margin-bottom: 8px;
  }
  .footer {
    background: #2a1810;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 28px 20px;
    font-size: 0.78rem;
  }
  .footer-links { margin-bottom: 10px; }
  .footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin: 0 10px;
  }
  .placeholder {
    color: #c00;
    font-weight: 700;
    background: #ffe8e8;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  @media (max-width: 600px) {
    body { font-size: 14px; }
    .container { padding: 32px 18px 60px; }
    h1 { font-size: 1.35rem; }
    .law-table th, .law-table td {
      display: block;
      width: 100%;
      border: none;
      padding: 8px 0;
    }
    .law-table th {
      background: transparent;
      padding-top: 18px;
      padding-bottom: 4px;
      border-top: 1px solid #e8c8a0;
      color: #e05a10;
      font-size: 0.92rem;
    }
    .law-table td {
      padding-bottom: 14px;
    }
    .law-table tr:first-child th {
      border-top: none;
      padding-top: 0;
    }
  }