@charset "UTF-8";

:root {
  --brand-dark:  #1A3C6E;
  --brand-mid:   #1A6FAA;
  --brand-light: #E3EEF8;
  --brand-pale:  #F5F9FD;
  --accent:      #5B9BD5;
  --text-body:   #2d3748;
  --text-muted:  #64748b;
  --border:      #dce8f4;
  --white:       #ffffff;
}

/* ===== Page ===== */
#_content {
  padding: 60px 24px 80px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
  background: var(--brand-pale);
}

#_content > div {
  margin: 0 auto;
  width: 100%;
  max-width: 860px;
}

/* ===== Title ===== */
h1 {
  margin: 0 0 48px;
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--brand-dark);
  letter-spacing: 0.08em;
}

h1::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--brand-mid);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ===== Card ===== */
.policy-body {
  background: var(--white);
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(26, 60, 110, 0.06),
    0 4px 24px rgba(26, 60, 110, 0.08);
  padding: 48px 56px 64px;
  border: 1px solid var(--border);
}

/* ===== Chapter ===== */
.chapter {
  margin-top: 40px;
}

.chapter:first-child {
  margin-top: 0;
}

.chapter-title {
  margin: 0 0 20px;
  padding: 14px 20px 14px 22px;
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  background: var(--brand-dark);
  border-radius: 6px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  position: relative;
}

.chapter-title::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
  border-radius: 6px 0 0 6px;
}

/* ===== Content ===== */
.chapter-content p {
  margin: 0 0 10px;
}

.chapter-content p:last-child {
  margin-bottom: 0;
}

/* ===== Lists ===== */
.chapter-content ol,
.chapter-content ul {
  margin: 8px 0 0;
  padding-left: 1.5em;
}

.chapter-content ol {
  list-style: decimal;
}

.chapter-content ul {
  list-style: none;
  padding-left: 0;
}

.chapter-content ul li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 6px;
  line-height: 1.8;
}

.chapter-content ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--brand-mid);
  font-weight: 700;
}

.chapter-content ol li {
  margin-bottom: 6px;
  line-height: 1.8;
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
  #_content {
    padding: 32px 16px 60px;
  }
  h1 {
    font-size: 22px;
    margin-bottom: 32px;
  }
  .policy-body {
    padding: 28px 20px 40px;
    border-radius: 8px;
  }
  .chapter-title {
    font-size: 15px;
    padding: 12px 16px 12px 18px;
  }
}

@media screen and (max-width: 480px) {
  .policy-body {
    padding: 20px 16px 32px;
  }
}