/* style.css */
/* -------------------------------------
   週報デザイン用スタイルシート
   ------------------------------------- */

html {
  font-size: 16px;
  line-height: 1.8;
}

body {
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #000099;
  background-color: #fff;
  margin: 2rem auto;
  max-width: 720px;
  padding: 1rem 2rem;
}

/* ヘッダー部分 */
.page-header {
  text-align: center;
  border-bottom: 2px solid #000099;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.page-header a {
  text-decoration: none;
  color: #000099;
  font-size: 0.9rem;
}

.page-header a:hover {
  text-decoration: underline;
}

.title {
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0 0.5rem 0;
}

.subtitle {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* 本文構成 */
.content section {
  margin-bottom: 2rem;
}

.content h2 {
  border-left: 5px solid #000099;
  padding-left: 0.5em;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.content p {
  margin: 0.3rem 0;
  font-size: 1.05rem;
}

/* 特殊項目 */
.music,
.postlude {
  font-style: italic;
  margin-top: 0.5rem;
}

.music::before,
.postlude::before {
  content: "♪ ";
  font-style: normal;
  color: #000099;
}

/* フッター */
footer {
  border-top: 1px solid #000099;
  text-align: center;
  padding-top: 1rem;
  margin-top: 3rem;
}

footer a {
  text-decoration: none;
  color: #000099;
  font-size: 0.9rem;
}

footer a:hover {
  text-decoration: underline;
}

/* 印刷用設定 */
@media print {
  body {
    color: #000;
    background: #fff;
  }
  a {
    color: #000;
    text-decoration: none;
  }
  .page-header,
  footer {
    border: none;
  }
}
