@charset “UTF-8”;
/*------------------------------
    common&reset styles
 ------------------------------*/
html {
  font-size: 62.5%; /* 1rem=10pxにする  */
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  color: #222;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; /* hover-whiteなどで下に余白を作らないための設定 */
  display: block; /* ブロック要素にしておく */
}
a img {
  border: none;
}
.noimage {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  background-color: #777;
  display: block;
}
.noimage > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  -moz- transform: translateY(-50%) translateX(-50%);
}
h1, h2, h3, h4, ul, ol, li, dl, dd, dt, form, figure {
  margin: 0;
  padding: 0;
  font-size: 100%;
}
button:focus {
  outline: none;
}
.select { /*選択中の項目のクリックイベントをキャンセル*/
  pointer-events: none;
  cursor: default;
}
/* background-texture  */
.back-oldMap {
  background: url(../img/old-map.png) repeat #fffaea;
}
/*------------------------------
    list styles
 ------------------------------*/
.disc-ul {
  margin-left: 8px;
  margin-left: .8rem;
}
#side ul, .noneUl {
  list-style-type: none;
}
.in, .center {
  margin-bottom: 6px;
  margin-bottom: .6rem;
}
.in li, .center li {
  margin: 20px auto;
  margin: 2rem auto;
  margin-left: 0;
}
.in li {
  display: block;
}
.center {
  text-align: center;
}
.number {
  list-style-type: decimal;
}
.NovelList {
  list-style-type: none;
}
.NovelList li {
  margin: 1em 0 1em 2em;
  border-bottom: 1px solid #ccc;
  display: block;
}
.NovelList a {
  text-decoration: none;
  display: block;
}
.toumei-box {
  margin: 0 auto .9em;
  padding: .8em;
  width: 100%;
  border: 1px solid #333;
  display: block;
  box-sizing: border-box;
}
.normalList dd, .commentsList dd {
  margin-bottom: 18px;
  margin-bottom: 1.8rem;
  line-height: 1.8;
}
dt.item-ttl {
  font-weight: bold;
}
h2 + dl.toumei-box, h3 + dl.toumei-box {
  margin-top: 25px;
  margin-top: 2.5rem;
}
h2 + ul, h3 + ul, h2 + dl.normalList, h3 + dl.normalList {
  margin-top: 18px;
  margin-top: 1.8rem;
}
/*------------------------------
    h styles
 ------------------------------*/
h1 {
  padding: .4em;
  font-size: 29px;
  font-size: 2.9rem;
}
h1 a:any-link {
  text-decoration: none;
}
h1.normal {
  padding: .4em 0;
}
h2 {
  margin-top: 42px;
  margin-top: 4.2rem;
  padding: 9px 10px;
  padding: .9rem 1rem;
  font-size: 20px;
  font-size: 2rem;
}
h3 {
  margin: 21px 0 10px;
  margin: 2.1rem 0 1rem;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: .1em;
}
h2 + h3 {
  margin-top: 25px;
  margin-top: 2.5rem;
}
h4 {
  padding: .5rem 0;
  font-size: 17.5px;
  font-size: 1.75rem;
}
.border-azure, .border-lomf {
  border-bottom: 2px solid;
  border-bottom: .2rem solid;
}
.normal {
  color: #666;
  font-weight: normal;
  letter-spacing: .1em;
}
/* 第何部・第何章の部分に適用する共通スタイル */
.chapterNumber {
  margin-right: 1em;
}
.chapterTitle {
  font-weight: 600;
  letter-spacing: .2em;
}
/*------------------------------
    link styles
 ------------------------------*/
a {
  text-decoration: underline;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:link {
  color: #336699;
}
a:visited {
  color: #669999;
}
/*ボタン関係*/
.btn-wrap {
  width: 100%;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*------------------------------
    container styles
 ------------------------------*/
#container, header, nav, footer {
  width: 100%;
}
#container {
  height: 100%;
  box-sizing: border-box;
  line-height: 2;
}
/*------------------------------
    header styles
 ------------------------------*/
header {
  width: 100%;
  height: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  justify-content: space-between;
}
.ttl {
  margin: 10px;
  margin: 1rem;
  height: auto;
}
/*------------------------------
    GlobalNavigation styles
 ------------------------------*/
.navigation-wrap {
  padding-top: 1.5em;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 10;
  background-color: rgba(255, 255, 255, .9);
}
.navigation {
  width: 70%;
  height: auto;
  position: relative;
  top: 60px; /* スマホではメニューリストを少し下に表示する */
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  flex-flow: column;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
}
/*メニュー個々の設定*/
.mainMenu {
  padding: .4em .8em;
  text-align: center;
  display: block;
  font-size: 20px;
  font-size: 2rem;
}
.mainMenu a {
  color: #444;
  font-weight: 500;
  letter-spacing: .2em;
  text-decoration: none;
  line-height: 7vh; /*高さ*/
}
/*メニューが開閉したときの設定*/
.navigation-wrap.open {
  display: flex;
  justify-content: center;
}
.navigation-wrap.close {
  display: none;
}
/*メニューボタンのエフェクト*/
.nav-button {
  width: 17%;
  max-width: 90px;
  max-width: 9rem;
  border: none;
  border-radius: 10%;
  background: #fff;
  display: block;
  cursor: pointer;
  transition: all .4s;
}
.fa-solid.fa-bars, .fa-solid.fa-xmark {
  font-family: "Font Awesome 6 Free";
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 900;
}
.fa-solid.fa-xmark {
  display: none;
}
.nav-button span {
  font-size: 14px;
  font-size: 1.4rem;
}
.nav-button span.menu {
  display: inline-block;
}
.nav-button span.close {
  display: none;
}
.blue {
  color: #0079bb;
}
.brown {
  color: #341c02;
}
/*ボタンがクリックされた時のエフェクト*/
.nav-button.active {
  z-index: 20;
  opacity: 1;
}
.nav-button.active .fa-solid.fa-bars {
  display: none;
  font-display: swap;
}
.nav-button.active .fa-solid.fa-xmark {
  display: block;
  font-display: swap;
}
.nav-button.active span.menu {
  display: none;
}
.nav-button.active span.close {
  display: inline-block;
}
/*------------------------------
    #contents style
 ------------------------------*/
#contents, #contents.subcontents {
  width: 90%;
  margin: 0 auto;
  padding-top: 3%;
}
.top {
  width: 100%;
  height: 84vh;
}
.top > .logo, .top > p {
  text-align: center;
  letter-spacing: .3em;
  position: relative;
}
.logo {
  margin: 0 auto;
  width: 78vw;
  height: auto;
  top: 35%;
}
.top > p {
  color: #fff;
  top: 40%;
  margin: 0 5%;
}
.entry-center {
  padding: 24px 8px 0;
  padding: 2.4rem .8rem 0;
}
.news {
  width: 100%;
  height: 32%;
  overflow: auto;
  background-color: #fff;
  list-style: none;
}
.news .news-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
}
.news .news-item a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news .news-item .news-date {
  margin: 0;
  min-width: 100px;
  min-width: 10rem;
  color: #000;
}
.news .news-item .news-title {
  margin-top: 10px;
  margin-top: 1rem;
}
/*------------------------------
    FlexBoxList styles
 ------------------------------*/
.flexList, .columnBox {
  display: -moz-box;
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.flexList {
  min-height: 215px;
  overflow: hidden;
  align-items: center;
}
.flexList + .flexList {
  margin-bottom: 40px;
  margin-bottom: 4rem;
}
/* 横長リスト */
.flexImg {
  height: auto;
  position: relative;
}
.flexText {
  font-size: 15.5px;
  font-size: 1.55rem;
}
/* 横並びリストボックス（モバイルでは縦並び） */
.columnItems {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
}
_:-ms-lang(x), .columnItems {
  height: 520px;
} /* IE対策 */
.columnItems .flexImg {
  margin-top: 1em;
  max-width: 100%;
  box-sizing: border-box;
}
.columnItems .flexText {
  padding: 0 3%;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}
.columnItems.large {
  width: 100%;
  flex-direction: column;
}
.columnItems h4 {
  margin: 10px 0 0;
  margin: 1rem 0 0;
  text-align: center;
}
/*見出しと隣接しているときの余白*/
h2 + .flexList, h3 + .flexList, h2 + .columnBox, h3 + .columnBox {
  margin-top: 25px;
  margin-top: 2.5rem;
}
/*------------------------------
    hover-white
 ------------------------------*/
.flexImg::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hover-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  color: #333;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
  opacity: 0;
}
.columnBox.hover-mask .columnItems:hover .flexImg::after {
  background: rgba(255, 255, 255, .8);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.columnBox.hover-mask .columnItems:hover .hover-caption {
  bottom: 32%;
  opacity: 1;
  z-index: 3;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
/*------------------------------
    #backtoTop styles
 ------------------------------*/
#backtoTop {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 1em;
  bottom: 1.3em;
  border-radius: 50%;
  background-color: #333333;
  opacity: .6;
  z-index: 2;
}
#backtoTop a {
  width: 60px;
  height: 60px;
  position: relative;
  text-decoration: none;
  display: block;
}
#backtoTop a::before {
  margin: auto;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -70%;
  bottom: 0;
  right: 0;
  left: 0;
  color: #fff;
  text-align: center;
  font-size: 36px;
  font-size: 3.6rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-display: swap;
  content: '\f106';
}
/*------------------------------
    footer styles
 ------------------------------*/
footer {
  height: 3%;
  margin-top: 30px;
  margin-top: 3rem;
  padding: 1rem auto;
}
/*------------------------------
    copyrighit style
 ------------------------------*/
.copyright {
  padding: 1em 0;
  font-size: 14px;
  font-size: 1.4rem;
  font-style: normal;
  color: #555;
  text-align: center;
}
/*------------------------------
    color styles
 ------------------------------*/
.white {
  color: #fff;
}
.whiteback {
  background-color: #fff;
}
.back-gray {
  background-color: #f0f0f0;
}
.back-azure {
  background-color: #81bef7;
}
.translucent {
  opacity: .5;
}
.translucent-white {
  background-color: rgba(255, 255, 255, .5);
}
.translucent-white-70 {
  background-color: rgba(255, 255, 255, .7);
}
/*------------------------------
    text styles
 ------------------------------*/
.bold {
  font-weight: bold;
}
.catch { /* ep.htmlの台詞抜粋ほかキャッチコピーっぽいものにつけるクラス */
  font-size: 17px;
  font-size: 1.7rem;
  font-family: "A1明朝", A1 Mincho, "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  padding-left: 17px;
  padding: .3em .3em .3em 1.7rem;
}
.outline {
  width: 78%;
  margin: 0 auto;
}
.line-through {
  text-decoration: line-through;
}
.item-number {
  margin: 0 6px 0 9px;
  margin: 0 .6rem 0 .9rem;
  padding: 0 auto;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  color: #fff;
  line-height: 29px; /*数字を中央に持ってくるための処理。heightと値を揃える*/
  text-align: center;
  display: inline-block;
}
.item-number.cl-azure {
  background-color: #24A3FF;
}
/*------------------------------
   animation styles
 ------------------------------*/
.fadein, .fuwatto {
  animation-name: fadeInAnime;
  animation-fill-mode: forwards;
  opacity: 0;
}
.fadein {
  animation-duration: 1s;
}
.fuwatto {
  animation-duration: .5s;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dly-08 {
  animation-delay: .8s;
}
/*------------------------------
   min-width is 940px
 ------------------------------*/
@media screen and (min-width: 940px) {
  header {
    align-items: center;
  }
  .ttl {
    max-width: 30vw;
    height: auto;
  }
  .nav-button {
    display: none;
  }
  .navigation-wrap {
    padding: .3em .1em;
    position: static;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    z-index: 30;
  }
  .navigation {
    margin: 0;
    width: 70vw;
    top: 0; /* PCではメニュー位置リセット */
    flex-flow: row;
    justify-content: space-around;
    overflow: visible;
  }
  .mainMenu {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .mainMenu a {
    position: relative;
    line-height: normal; /*高さリセット*/
  }
  .news {
    padding-left: 1em;
    width: 90%;
  }
  .news .news-item .news-date {
    padding: 0 2rem 0 0;
    min-width: 120px;
    min-width: 12rem;
    box-sizing: border-box;
  }
}
/*------------------------------
   min-width is 768px
 ------------------------------*/
@media screen and (min-width:768px) {
  a:hover {
    color: #999;
    text-decoration: none;
  }
  .disc-ul {
    margin-left: 30px;
    margin-left: 3rem;
  }
  .logo {
    width: 500px;
  }
  .top > p {
    margin: 0;
  }
  /*contents*/
  #contents.subcontents {
    width: 70%;
  }
  .entry-center {
    padding: 24px 24px 0;
    padding: 2.4rem 2.4rem 0;
  }
  /*news*/
  .news {
    width: 80%;
  }
  .news .news-item {
    flex-wrap: nowrap;
  }
  .news .news-item .news-title {
    margin: 0;
  }
  /*List*/
  .NovelList li {
    margin: .3em 0 0 1em;
    border-bottom: none;
    display: inline-block;
  }
  .NovelList li:nth-child(2) {
    margin-left: .1em;
  }
  .NovelList a {
    text-decoration: underline;
    display: contents;
  }
  .normalList, .commentsList {
    margin: 0 auto;
  }
  .toumei-box, .commentsList {
    width: 80%;
  }
  .commentsList dd {
    padding-left: 1.5em;
  }
  /* 横並びリストボックス */
  .flexList, .columnBox {
    width: 98%;
    margin: 0 auto;
  }
  .flexList {
    flex-flow: row nowrap;
  }
  .columnBox {
    flex-flow: row wrap;
    align-items: stretch;
  }
  .columnItems {
    margin: 9px 10px;
    margin: .9rem 1rem;
    flex-basis: 30%;
    flex-direction: column;
    justify-content: center;
  }
  .columnItems.large {
    flex-basis: 42%;
    flex-direction: column;
  }
  .columnItems .flexImg {
    margin-top: 0;
  }
  .flexText {
    margin-left: 20px;
    margin-left: 2rem;
    padding: 0 13px;
    padding: 0 1.3rem;
  }
  footer {
    margin-top: 60px;
    margin-top: 6rem;
  }
}