@charset "UTF-8";
/* Scss Document */
@import url("https://fonts.googleapis.com/css2?family=Halant:wght@300&family=Klee+One&family=Oooh+Baby&display=swap");
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

全ページ共通

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
html {
  font-size: 62.5%;
}

body {
  font-family: 'Halant','Klee One',YuMincho, 'Yu Mincho', 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN',  'serif';
  font-size: 1.4rem;
  color: #333;
  letter-spacing: 2px;
  line-height: 1.6;
  background-color: #eaf2f6;
}

*:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

文字

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
p {
  margin: 20px 0;
  text-align: justify;
}

a {
  color: #333;
}

/* 見出し */
h1, h2, h3, h4 {
  font-weight: normal;
}

h1, h2 {
  font-family: 'Oooh Baby', 'Klee One',YuMincho, 'Yu Mincho', 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN',  'serif';
}

h1 {
  font-size: 4rem;
  letter-spacing: 4px;
}

@media screen and (max-width: 415px) {
  h1 {
    font-size: 3rem;
  }
}

h1.ja {
  font-size: 3.2rem;
}

h2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2c3056;
  font-size: 2.4rem;
  margin-right: 20px;
  margin-bottom: 30px;
}

h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.6px;
  background: #8b90c3;
}

h2.ja {
  font-size: 2rem;
}

h3 {
  position: relative;
  font-size: 1.8rem;
  margin: 30px 10px 20px;
}

h3::after {
  position: absolute;
  top: 0;
  left: -10px;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/stripe.png);
  background-size: 30%;
  transform: rotate(-15deg);
  opacity: 0.6;
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  -o-transform: rotate(-15deg);
}

h3.ja {
  font-size: 1.6rem;
}

h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

h4::before {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  background: #8b90c3;
  margin-right: 8px;
}

/* 強調 */
em {
  font-style: normal;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(0, 0, 0, 0)), color-stop(60%, #ced0e6));
  background-image: linear-gradient(rgba(0, 0, 0, 0) 60%, #ced0e6 60%);
}

/* リスト */
ul[class] {
  margin: 20px 0;
}

ol[class] {
  margin: 20px 0;
  list-style: decimal-leading-zero;
  list-style-position: inside;
}

ol[class] li {
  margin-left: 2.1em;
  text-indent: -2.1em;
}

/* フォーム、ボタン */
input, textarea {
  padding: 10px;
  margin-bottom: 10px;
  border: #2c3056 1px solid;
}

input[type="submit"] {
  width: auto;
  padding: 4px 10px;
  background: #2c3056;
  color: #fff;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

input[type="submit"]:hover {
  background: #eaf2f6;
  color: #2c3056;
  cursor: pointer;
}

/* 装飾 */
.box {
  background: #fff;
  padding: 20px;
}

.label {
  padding: 0 10px;
  background-color: #2c3056;
  color: #fff;
}

/* レイアウト */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.grid {
  display: -ms-grid;
  display: grid;
}

dl.grid {
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

dl.grid dt, dl.grid dd {
  padding: 10px;
  border-bottom: 1px solid #8b90c3;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

３カラム設定 

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
main {
  padding: 10px;
}

@media screen and (max-width: 1200px) {
  main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
}

main .boxLeft, main .boxCenter, main .boxRight {
  width: 33.33%;
  padding: 10px 20px;
}

@media screen and (max-width: 1200px) {
  main .boxLeft, main .boxCenter, main .boxRight {
    width: 100%;
  }
}

main section {
  width: 100%;
  margin-bottom: 100px;
}

main#top {
  position: relative;
  padding-right: 0;
}

main#top::before {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 16px;
  height: 100vh;
  background: url("../img/stripe.png");
  background-size: 30%;
}

main#top::after {
  position: fixed;
  top: 0;
  left: 20px;
  content: "";
  display: block;
  width: 0.8px;
  height: 100vh;
  background-color: #8b90c3;
}

main#top .boxLeft {
  padding-top: 20px;
  padding-left: 40px;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

メニュー

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/* メニューボタン */
.menubtn {
  position: fixed;
  bottom: -80px;
  right: -80px;
  background: url(../img/stripe.png);
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode: lighten;
  color: #2c3056;
  font-weight: bold;
  width: 160px;
  height: 160px;
  z-index: 99;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.menubtn:hover {
  background: #fff;
  cursor: pointer;
}

.menubtn span {
  position: absolute;
  bottom: 70px;
  left: 12px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

/* メニュー */
.globalnav2 {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25%;
  height: 100vh;
  color: #fff;
  text-align: center;
  z-index: 9;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

@media screen and (max-width: 520px) {
  .globalnav2 {
    width: 100%;
  }
}

.globalnav2.is-active {
  transform: translateX(0);
  transition: 0.6s;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.globalnav2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  width: 100%;
  height: 100%;
  background: #2c3056;
}

.globalnav2 ul li {
  margin: 20px 0;
}

.globalnav2 ul li a {
  color: #fff;
  text-decoration: none;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

トップページ

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－ 写真、サイト名、メニュー －－－－－－－－－－*/
header {
  position: relative;
}
/* トップ写真 */
header .toppic {
  position: relative;
  margin-right: 60px;
}

@media screen and (min-width: 521px) and (max-width: 1200px) {
  header .toppic {
    margin: 0 auto;
    width: 328px;
  }
}

header .toppic img {
  position: relative;
  z-index: 3;
}

header .toppic::before {
  position: absolute;
  top: 10px;
  left: 10px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  max-width: 328px;
  max-height: 328px;
  background: #eaf2f6;
  z-index: 2;
}

header .toppic::after {
  position: absolute;
  top: 20px;
  left: 20px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  max-width: 328px;
  max-height: 328px;
  border: 1px solid #8b90c3;
  z-index: 1;
}

/* サイト名 */
header h1 {
  position: absolute;
  top: 260px;
  right: 50px;
  color: #fff;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  -o-transform: rotate(-15deg);
  z-index: 3;
}

@media screen and (max-width: 520px) {
  header h1 {
    top: 210px;
  }
}

@media screen and (min-width: 521px) and (max-width: 1200px) {
  header h1 {
    right: 200px;
  }
}

/* メニュー */
header .globalnav ul {
  margin: 80px 0;
  margin-right: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 521px) and (max-width: 1024px) {
  header .globalnav ul {
    margin-right: 0;
  }
}

header .globalnav ul li {
  position: relative;
  margin: 0 20px;
}

header .globalnav ul li::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: url(../img/stripe.png);
  background-size: 4px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

header .globalnav ul li:hover::after {
  width: 100%;
}

header .globalnav ul li a {
  text-decoration: none;
}

/*－－－－－－－－－－ News －－－－－－－－－－*/
.news {
  overflow-y: auto;
  height: 100px;
}

.news ul {
  margin: -8px 0;
}

.news ul li {
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  gap: 10px;
  margin: 4px 0;
}

@media screen and (max-width: 520px) {
  .news ul li {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 0px;
  }
}

.news ul li time {
  color: #2c3056;
}

/*－－－－－－－－－－ Link －－－－－－－－－－*/
#link ul.flex {
  margin: -4px;
}

#link ul.flex li {
  margin: 4px;
}

/*－－－－－－－－－－ Contact －－－－－－－－－－*/
#contact form input, #contact form textarea {
  width: 100%;
}

#contact form input {
  max-width: 600px;
}

#contact form input[type="submit"] {
  width: auto;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

Novel

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－ 目次ボタン －－－－－－－－－－*/
.mokujibtn {
  position: fixed;
  top: -80px;
  right: -80px;
  background: url(../img/stripe.png);
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode: lighten;
  color: #2c3056;
  font-weight: bold;
  width: 160px;
  height: 160px;
  z-index: 99;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.mokujibtn:hover {
  background: #fff;
  cursor: pointer;
}

.mokujibtn span {
  position: absolute;
  top: 114px;
  right: 54px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

/*－－－－－－－－－－ 目次 －－－－－－－－－－*/
.mokuji {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background-color: #eaf2f6;
  background-image: url(../img/stripe.png);
  background-repeat: repeat-y;
  padding: 40px;
  z-index: 8;
  overflow-y: auto;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}

@media screen and (max-width: 520px) {
  .mokuji {
    width: 100%;
  }
}

.mokuji.is-active {
  transform: translateX(0);
  transition: 0.6s;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.mokuji h2 {
  font-size: 1.6rem;
  margin: 20px 0;
}

.mokuji dl {
  margin: 0;
  width: 100%;
}

.mokuji dl dd {
  margin: 10px;
}

.mokuji dl dd a {
  text-decoration: none;
}

.mokuji dl dd ul {
  margin: 10px;
}

/*－－－－－－－－－－ タイトル一覧ページ －－－－－－－－－－*/
.novelList {
  margin: -40px 0;
}

.novelList li {
  margin-bottom: 40px;
}

.novelList li .text {
  display: block;
  margin-top: 10px;
  margin-left: 30px;
  color: #666666;
}

.list-yoko {
  -ms-grid-columns: (minmax(40px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
}

.list-yoko li {
  margin: 0 10px;
}

.list-yoko .number {
  color: #2c3056;
  margin-right: 4px;
}

/*－－－－－－－－－－ 長編タイトル一覧ページ －－－－－－－－－－*/
.longtitle {
  max-width: 800px;
  margin: 80px auto;
}

.longtitle .column {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.longtitle .novelList {
  margin: 40px 0 40px;
}

.longtitle .novelList li {
  margin-bottom: 20px;
}

.longtitle ol.novelList li {
  margin-left: 2.1em;
  text-indent: -2.1em;
}

.longtitle ol.novelList li .text {
  margin-left: 0;
  text-indent: 0;
}

/*－－－－－－－－－－ バナー －－－－－－－－－－*/
.banner {
  position: relative;
  display: block;
  width: 200px;
  height: 40px;
  background: url(../img/stripe.png);
  background-color: rgba(234, 242, 246, 0.6);
  background-blend-mode: lighten;
}

.banner p {
  position: absolute;
  top: calc(50% - 10px);
  left: 100px;
  margin: 0;
  width: max-content;
  max-width: 260px;
  font-weight: bold;
}

@media screen and (max-width: 520px){
  .banner p {
    width: fit-content;
  }
}

.banner.yellowgreen {
  background: url(../img/yellowgreen.jpg);
  background-blend-mode: lighten;
}

.banner.purple {
  background: url(../img/purple.jpg);
  background-blend-mode: lighten;
}

.banner.deepblue {
  background: url(../img/deepblue.jpg);
  background-blend-mode: lighten;
}

.banner.pinkblue {
  background: url(../img/pinkblue.jpg);
  background-blend-mode: lighten;
}

.banner.pink {
  background: url(../img/pink.jpg);
  background-blend-mode: lighten;
}

/*－－－－－－－－－－ 小説ページ －－－－－－－－－－*/
.story {
  max-width: 800px;
  margin: 80px auto;
}

@media screen and (min-width: 521px) and (max-width: 1024px) {
  .story {
    padding: 0 40px;
  }
}

.story h1 {
  margin-bottom: 80px;
}

.storyNav {
  margin: 120px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 520px) {
  .storyNav {
    margin: 0px auto;
  }
}

.storyNav span {
  position: relative;
  margin: 0 20px;
}

.storyNav span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: url(../img/stripe.png);
  background-size: 4px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.storyNav span:hover::after {
  width: 100%;
}

.storyNav span a {
  text-decoration: none;
}

.afterword {
  max-width: 800px;
  margin: 80px auto;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

フッター

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
footer {
  text-align: center;
  padding: 10px;
}
