body {
  font-family: 'Sawarabi Mincho', serif;
  cursor: crosshair;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MAIN CONTENT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.main {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 20px 120px;
}

/* 本文ブロック */
.body-block {
  padding: 36px 40px;
  background: var(--iron);
  border: 1px solid rgba(122,58,26,0.4);
  border-left: 4px solid var(--rust);
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

.body-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--rust) 0px, var(--rust) 10px,
    transparent 10px, transparent 14px
  );
  opacity: 0.5;
}

.body-text {
  font-size: 15px;
  line-height: 2.4;
  color: var(--cream);
  letter-spacing: 0.1em;
}

.body-text + .body-text {
  margin-top: 24px;
}

/* ポリシー箇条書き */
.policy-list {
  list-style: none;
  margin-top: 16px;
}

.policy-list li {
  font-size: 14px;
  line-height: 2.0;
  color: var(--cream);
  letter-spacing: 0.08em;
  padding: 6px 0 6px 24px;
  border-bottom: 1px solid rgba(122,58,26,0.2);
  position: relative;
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-family: 'Shippori Mincho B1', serif;
}

/* 強調テキスト */
em {
  font-style: normal;
  color: var(--stencil);
  font-weight: 700;
}

/* 制定日 */
.policy-date {
  text-align: right;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-top: -24px;
  margin-bottom: 48px;
  padding-right: 4px;
}

@media (max-width: 600px) {
  .body-block { padding: 24px 20px; }
}
