*{
  margin: 0;padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  background: #f7f9fa;
}

.novel, .rak{
  padding: 2em 1.5em calc(4em + env(safe-area-inset-bottom));
}

.novel{
  margin: 0 auto;
  max-width: 40em;
}

h1 {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 2em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
}

h2 {
  font-size: 1.2em;
  margin-top: 2em;
}

hr{
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 4em auto;
}

p {
  text-indent: 1em;
  margin: 1em 0;
}

a{
  text-decoration: none;
  color: inherit;
}

.menu{
  margin: 2em auto;
  text-align: center;
  a{
    display: block;
    margin-bottom: 0.5em;
    font-size: 1.2em;
    /* https://ics.media/entry/240801/ */
    padding-bottom: 3px; /* テキストと下線の間隔 */
    background-image: linear-gradient(#ccc, #ccc);
    background-repeat: no-repeat;
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
    transition: background-size 0.4s;
  }
  a:hover {
    background-position: bottom left; /* 下線のホバー時位置 */
    background-size: 100% 1px; /* 下線の横幅を100%にする */
  }
}

.novel .menu{
  margin-top: 4em;
}