/* ==============================
   注意事項ページ固有スタイル
============================== */
.notes-hero {
  background:
    radial-gradient(ellipse at 40% 30%, rgba(139,26,26,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(80,30,10,0.25) 0%, transparent 50%),
    #120a02;
  padding: 130px 5% 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.notes-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(200,146,42,0.05) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}
.notes-hero-inner { position: relative; z-index: 1; }
.notes-badge {
  display: inline-block;
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.3);
  color: var(--gold-lt);
  font-size: .68rem;
  letter-spacing: .25em;
  padding: 5px 22px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.notes-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: .14em;
  background: linear-gradient(160deg, #ffffff 0%, #f0e0c0 40%, #c8922a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(200,146,42,0.25));
  margin-bottom: .4em;
}
.notes-sub {
  color: rgba(245,237,224,0.6);
  letter-spacing: .12em;
}

/* ==============================
   本文エリア
============================== */
.notes-section {
  background:
    radial-gradient(ellipse at 0% 40%, rgba(139,26,26,0.08) 0%, transparent 50%),
    #1e1006;
  padding: 80px 5% 100px;
}
.notes-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* 各カテゴリブロック */
.notes-block {
  margin-bottom: 48px;
}
.notes-block:last-of-type { margin-bottom: 0; }

.notes-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,146,42,0.18);
}
.notes-block-icon {
  width: 36px; height: 36px;
  background: rgba(200,146,42,0.1);
  border: 1px solid rgba(200,146,42,0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  flex-shrink: 0;
}
.notes-block-title {
  font-family: 'Cinzel', serif;
  letter-spacing: .22em;
  color: var(--gold-lt);
  font-weight: 600;
}

/* 注意リスト */
.notes-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notes-list li {
  display: flex;
  gap: 10px;
  color: rgba(245,237,224,0.6);
  line-height: 1.85;
  font-weight: 300;
}
.notes-list li::before {
  content: '※';
  color: rgba(200,146,42,0.6);
  flex-shrink: 0;
  margin-top: .1em;
}

/* 個人情報テーブル */
.privacy-table {
  width: 100%;
  border-collapse: collapse;
}
.privacy-table th,
.privacy-table td {
  padding: 12px 16px;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid rgba(200,146,42,0.1);
  line-height: 1.85;
}
.privacy-table th {
  color: rgba(200,146,42,0.65);
  font-weight: 700;
  white-space: nowrap;
  width: 130px;
  letter-spacing: .08em;
}
.privacy-table td {
  color: rgba(245,237,224,0.55);
  font-weight: 300;
}

/* セクション区切り */
.notes-divider {
  border: none;
  border-top: 1px solid rgba(200,146,42,0.08);
  margin: 44px 0;
}

/* 改訂日 */
.notes-updated {
  text-align: right;
  color: rgba(245,237,224,0.6);
  letter-spacing: .1em;
  margin-bottom: 32px;
}

/* 戻るリンク */
.back-link-wrap {
  text-align: center;
  padding: 60px 5% 80px;
  background: #120a02;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(200,146,42,0.6);
  letter-spacing: .14em;
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 30px;
  padding: 10px 28px;
  transition: .3s;
}
.back-link:hover {
  color: var(--gold-lt);
  border-color: rgba(200,146,42,0.5);
  background: rgba(200,146,42,0.06);
}

@media (max-width: 480px) {
  .privacy-table th { width: 100px; font-size: .7rem; }
}