@charset "UTF-8";

body {
  color: #e0e0e0;
  font-size: 100%;
  font-family: 'Kaisei HarunoUmi', serif;
  background-color: #000;
  text-align: justify;
}
ul {
  list-style-type: none;
}
p {
  margin-bottom: 20px;
}

.container {
  max-width: 750px;
  margin: auto;
  padding: 0 20px;
}

/* ページタイトル */
.novel-title {
  position: relative;
  color: #e0e0e0;
  font-size: 1.5em;
  text-align: center;
  margin: 4em 0;
  letter-spacing: 5px;
}
.novel-title::before {
  content: "NOVEL'S ESSENCE";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  color: rgba(135, 203, 185, .4);
  font-size: 50px;
  font-family: 'Kaisei HarunoUmi', serif;
  font-style: italic;
  letter-spacing: 2px;
  z-index: -1;
}

/* ノート */
.note {
  color: #696969;
  background-color: #fff;
  line-height: 1.8;
  margin-bottom: 5em;
  border: solid 1px #e6e6e6;
  padding: 2.2em 1.9em;
}

.title {
  font-size: 1.6em;
  text-align: center;
  margin-bottom: 15px;
}

/* Web拍手 */
.webclap {
  display: block;
  font-size: .8em;
  color: #e0e0e0;
  border: 1px solid #696969;
  width: 170px;
  margin: 0 auto 40px;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
}
.webclap:hover {
  color: #fff;
  background-color: #696969;
}

/* グローバルナビ */
.gnav {
  display: flex;
  justify-content: center;
  font-size: .9em;
  margin-bottom: 30px;
}
.gnav li {
  border-right: 1px solid #696969;
}
.gnav li:last-child {
  border: none;
}
.gnav li a {
  display: block;
  color: #e0e0e0;
  padding: 8px 17px;
  text-decoration: none;
}
.gnav li a:hover {
  color: #fff;
  background-color: #696969;
}

/* 著作権表示 */
#footer p {
  font-size: .7em;
  text-align: center;
}

/* SP */
@media (max-width: 700px) {
  .note {
    padding: 2.2em 1.4em;
  }
}