/* ================================
   Zerokoi Text Edition (ゆとり行間版)
   ================================ */

body {
  margin: 0;
  padding: 0;
  background: #0b1220;
  font-family: "YuMincho", "Hiragino Mincho ProN", serif;
  color: #e5e7eb;
  -webkit-font-smoothing: antialiased;
}

/* ページ全体（中央揃え＋余白） */
.text-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

/* ヘッダー */
.text-header {
  text-align: center;
  margin-bottom: 40px;
}
.text-header-title {
  font-size: 18px;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 6px;
}
.text-header-sub {
  font-size: 11px;
  opacity: 0.7;
}

/* 本文コンテナ */
.text-inner {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 24px;
  padding: 32px 28px 36px;
  line-height: 2.05;   /* ← 行間ゆったり */
  font-size: 15.5px;   /* ← 少し大きめ */
}

/* タイトル */
.text-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 26px;
  letter-spacing: 0.08em;
  text-align: center;
}

/* 段落 */
.text-block p {
  margin: 20px 0;
  white-space: pre-line;
}

/* 区切り線 */
.text-block hr {
  border: none;
  border-top: 1px solid rgba(148,163,184,0.35);
  margin: 32px 0;
}

/* 戻るリンク */
.back-link {
  margin-top: 32px;
  text-align: center;
}
.back-link a {
  color: #93c5fd;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.back-link a:hover {
  color: #bfdbfe;
}