/* 全体設定 */
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* コンテンツ枠 */
.container {
  max-width: 720px;
  margin: 4vh auto;
  padding: 1em;
}

/* タイトル */
.title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 1em;
  color: #222;
}

/* 小説ブロック（タイトル・本文・あとがき） */
.novel-block {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 20px;
  padding: 2em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  line-height: 2.0;
  margin-bottom: 2em;
}

/* 小説タイトル */
.novel-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 0.5em;
  text-align: center;
}

/* 投稿日 */
.novel-date {
  color: #777;
  font-size: 0.9em;
  margin-bottom: 1em;
  text-align: center;
}

/* メニューへ戻るリンク */
.back-link-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}

.top-box {
  background: #ffffff;
  border: 2px solid #ccc;
  padding: 0.5em 1.5em;
  border-radius: 12px;
  font-weight: bold;
  font-size: 0.9em;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  text-align: center;
}

.top-box a {
  text-decoration: none;
  color: #333;
}

.top-box:hover {
  background-color: #f0f0f0;
}

/* フッター */
footer {
  text-align: center;
  font-size: 0.8em;
  color: #aaa;
  margin-top: 2em;
  padding-bottom: 2em;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .novel-block {
    padding: 1.2em;
    font-size: 17px;
  }

  .novel-title {
    font-size: 1.2em;
  }

  .top-box {
    width: 100%;
  }
}

body {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

