@charset "UTF-8";

/* 全体設定 */
body {
  font-family:  "Meiryo", sans-serif;
  font-size: 15px;
  color: #c0c0c0;
  background-color: #000;
  line-height: 1.6;
  text-align: justify;
  box-sizing: border-box;
}
ul {
  list-style-type: none;
}
ol {
  list-style-type: none;
}
a {
  color: #b4aed6;
  transition: all .3s ease-in;
}
a:hover {
  color: #6d61b0;
  text-decoration: none;
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: bottom;
}

/* コンテナ */
.container {
  max-width: 800px;
  margin: auto;
  padding: 0 20px;
}

/***------------------------------------------
      ヴァンパイア・ゴーレムTOP
------------------------------------------***/
.vamp-container {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-top: 100px;
  margin-bottom: 40px;
}
.vamp-container img {
  margin: 0 20px 0;
}
.vamp-title {
  font-family: 'Kaisei Tokumin', serif;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.vamp-inner {
  flex-grow: 1;/* 横幅を親要素に揃える */
}
.vamp-inner p {
  font-family: 'Kaisei Tokumin', serif;
  font-weight: 500;
  text-align: center;
  line-height: 2;
  margin-bottom: 20px;
}

/* 番号 */
.novel-number {
  line-height: 1.7;
  width: 280px;
  margin: auto;
}

/* Web拍手ボタン */
.webclap {
  display: block;
  font-size: 13px;
  font-weight: bold;
  border: 2px solid #6d61b0;
  width: 150px;
  margin: 0 auto 30px auto;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  transition: all .3s ease-in;
}
.webclap:hover {
  color: #fff;
  background-color: #6d61b0;
}

/* ランキングに参加中 */
.ranking {
  text-align: center;
  margin-bottom: 50px;
}
.ranking p {
  margin-bottom: 11px;
}

/* ホームに戻る */
.menu {
  display: flex;
  justify-content: center;
}
.menu li {
  border-right: 1px solid #fff;
  width: 100px;
  text-align: center;
}
.menu li:last-child {
  border: none;
}
.menu li a {
  display: block;
  text-decoration: none;
  padding: 0 13px;
}

/* コピーライト */
#copyright {
  font-size: .8em;
  text-align: center;
  margin: 20px 0 10px 0;
}

/***------------------------------------------
      ヴァンパイア・ゴーレム小説本文
------------------------------------------***/
/* 画像中央揃え */
.img-center {
  text-align: center;
}

/* ライン */
.line {
  background-image: url(../img/002.gif);
  background-size: 300px 50px;
  background-position: center center;
  background-repeat: no-repeat;
  height: 50px;/* 空要素には高さを指定する！ */
  margin: 50px 0 40px;
}
/* 背景画像 */
.bg {
  background-image: url(../img/vamp_bg01.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: right bottom;
}

.text-container {
  max-width: 800px;
  color: #000;
  margin: 50px auto 45px auto;
  padding: 0 20px;
}
.text-container .text {
  font-family: 'Kaisei Tokumin', serif;
  font-weight: 500;
  line-height: 1.7;
  background-color: rgba(255, 255, 255, .9);
  margin: auto;
  padding: 30px;
}
.text-container .text p {
  margin-bottom: 16px;  
}

/* タイトル */
.text-title {
  position: relative;
  font-size: 37px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 35px;
  padding: 25px 0;
  letter-spacing: -3px;
}
/* タイトルデザイン */
.text-title::before, .text-title::after {
  position: absolute;
  content: "";
}
.text-title::before {
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-right: 4px solid #000;
  border-bottom: 4px solid #000;
}
.text-title::after {
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-left: 4px solid #000;
  border-top: 4px solid #000;
}
/* サブタイトル */
.sub-title {
  text-align: center;
  margin-bottom: 30px;
}

/* 書類デザイン */
.note {
  background-color: #e7eef5;
  border: 1px solid #84c1ff;
  margin: 23px 0;
  padding: 30px 20px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.4);
}
.note p:last-child {
  margin-bottom: 0;
}

/* THE END */
.right {
  text-align: right;
  margin-top: 40px;
  margin-right: 10%;
}

/* あとがきデザイン */
.ps-text {
  font-style: italic;
  background-color: #fff;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 3px;
}
.ps-text p:last-child {
  margin-bottom: 0;
}

/* ナビゲーションメニュー */
.navigation {
  display: flex;
  justify-content: center;
}
.navigation li {
  margin-right: 20px;
}
.navigation li:last-child {
  margin-right: 0;
}

/* SP */
@media (max-width: 700px) {
  /* 全体設定 */
  body {
    font-size: 13px;
  }
  .container {
    padding: 0 4%;
  }

  .vamp-container {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  .vamp-container img {
    max-width: 250px;
    height: auto;
    margin: 0;
  }
  .vamp-title {
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* 番号 */
  .novel-number {
    width: 100%;
    padding: 0 30px;
  }

  /* 小説本文 */
  .line {
    margin: 15px 0;
  }
  .text-container {
    margin-top: 30px;
  }
  .text-container .text {
    margin: 0 10px;
    padding: 15px;
  }
  .text-title {
    font-size: 25px;
  }

  .back {
    margin-top: 20px;
  }

  #copyright {
    margin: 20px 0 10px 0;
  }
}
/* SP改行コード */
@media (min-width: 768px) {
  .br-sp {
    display: none;
  }
}