@charset "UTF-8";
/* Scss Document */
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
全ページ共通
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/

html {
  font-size: 70%; }
@media screen and (max-width: 1023px) {
  html {
    font-size: 65%; } }

body {
  font-family: 'Noto Sans JP','Zen Kaku Gothic New',YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';
  font-size: 1.6rem;
  color: #333;
  background: #ebf0f6;
  letter-spacing: 0.3px;
  line-height: 1.8; }
  @media screen and (max-width: 1023px) {
    body {
      font-size: 1.4rem; } }

*:hover {
  transition: 0.2s; }

/* 文字 */
p {
  margin: 20px 0;
  text-align: justify; }
  
p.after {
  font-size: 80%;
  text-align: right; }

  @font-face {
    font-family: 'Noto Sans JP';
    src: local('Noto Sans Japanese Regular'), local('NotoSansJapanese-Regular'), url(https://fonts.gstatic.com/s/notosansjp/v18/-F62fjtqLzI2JPCgQBnw7HFow2os2HUP5pp0erwTqsSGs8dLiZ-nVOFVLsE_RS1PblwsiBhLorUfH78.116.woff2) format('woff2');
    unicode-range: U+2026;
    }

/* リンク */
a {
  color: #333; }

/* 見出し */
h1, h2, h3, h4 {
  font-family: 'Roboto','Zen Kaku Gothic New',YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';
  font-weight: normal;
  letter-spacing: 6px; }

h1 {
  position: relative;
  text-shadow: 0 0 8px #aaa; }

h2 {
  margin: 40px -20px 30px;
  color: #fff;
  background: #364e68;
  padding: 10px 20px; }
  h2:first-of-type {
    margin-top: 20px; }

h3 {
  position: relative;
  margin: 40px 0 30px;
  padding-left: 24px; }
  h3::before {
    position: absolute;
    top: 8px;
    left: 0;
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: #a2d7dd;
    transform: rotate(45deg); }

h4 {
  margin: 40px 0 20px; }

/* 強調 */
em {
  font-style: normal;
  background: linear-gradient(#a2d7dd, #a2d7dd) 0 100%/100% 8px no-repeat; }

/* アイコン */
i {
  color: #a2d7dd;
  margin-right: 10px; }

/* フォーム */
input[type="text"],textarea{
  display: block;
  border: 1px solid #a2d7dd;
  margin: 20px 0;
}
textarea{
  max-width: 100%;
}

@media screen and (max-width: 1023px) {
  input[type="text"] {
    width: 100%; }
  textarea {
    width: 100%; } }

/* ボタン */
input[type="submit"] {
  cursor: pointer; }

.btn {
  padding: 4px 8px;
  background-color: #98ccd3;
  border: 1px solid #98ccd3;
  transition: 0.2s;
  text-decoration: none; }
  .btn:hover {
    background-color: #fff;
    cursor: pointer;
    transition: 0.2s; }

/* レイアウト */
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: auto 1fr; }
  @media screen and (max-width: 1023px) {
    .grid {
      grid-template-columns: 1fr; } }

ul.yoko {
  display: flex;
  flex-wrap: wrap; }
  ul.yoko li {
    margin-right: 20px; }
    ul.yoko li:last-child {
      margin-right: 0; }

/*装飾*/
.gridlist {
  display: -ms-grid;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px; }
  .gridlist dt {
    color: #98ccd3;
    font-weight: bold;
    padding: 2px 5px; }
  .gridlist dd {
    padding: 2px 5px; }
    .gridlist dd img {
      display: inline; }

.list1 {
  display: flex;
  flex-wrap: wrap; }
  .list1 li {
    padding: 0 10px; }
    .list1 li a {
      text-decoration: none;
      transition: 0.2s; }
      .list1 li a:hover {
        color: #98ccd3;
        font-weight: bold; }
    .list1 li::after {
      content: "/";
      color: #98ccd3;
      margin-left: 20px; }
    .list1 li:last-child::after {
      display: none; }
    .list1 li.new::after {
      font-family: 'Roboto';
      content: 'New';
      font-size: 12px;
      line-height: 1;
      display: inline-block;
      color: #fff;
      background: #364e68;
      border-radius: 13px;
      padding: 0 5px;
      vertical-align: top;  /* これを指定すれば上寄せや下寄せが可能 */
    }

.list2 li {
  padding: 10px; }
  .list2 li a {
    text-decoration: none;
    transition: 0.2s; }
    .list2 li a:hover {
      color: #98ccd3;
      font-weight: bold; }
    .list2 li.new::after {
      font-family: 'Roboto';
      content: 'New';
      font-size: 12px;
      line-height: 1;
      display: inline-block;
      color: #fff;
      background: #364e68;
      border-radius: 13px;
      padding: 0 5px;
      vertical-align: top;  /* これを指定すれば上寄せや下寄せが可能 */
    }

.box {
  padding: 40px;
  margin: 80px 0;
  background: rgba(188, 226, 232, 0.2); }

.hr {
  margin-bottom: 80px; }


/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
横幅設定
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
@media screen and (min-width: 1024px) {
  header, main, .globalnav, .index, footer {
    margin: 0 auto;
    width: 1024px;
    padding: 0 40px; }
  header, main, .globalnav, footer {
    border-left: 2px solid #98ccd3;
    border-right: 2px solid #98ccd3; } }

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
INDEX
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.index {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh; }
  @media screen and (max-width: 1023px) {
    .index {
      padding: 10px; }
  }
  .index h1 {
    color: #000; }
  .index .banner {
    margin-top: 40px; }
    .index .banner a {
      position: relative;
      display: inline-block; }
      .index .banner a::after {
        position: absolute;
        right: 0;
        content: ">> enter";
        display: block;
        text-align: right;
        opacity: 0;
        transition: 0.2s; }
      .index .banner a:hover::after {
        opacity: 1; }

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
ヘッダー
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
header {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: url("../img/0902.png") no-repeat 50% 100%;
  background-size: cover;
  height: 240px; }
  header h1 {
    text-align: right;
    margin-bottom: 20px; }
    header h1 a {
      color: #fff;
      text-decoration: none;
      transition: 0.2s; }
      header h1 a:hover {
        opacity: 0.8; }

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
メニュー
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/* メニューボタン */
@media screen and (min-width: 1024px) {
  #menubtn {
    display: none; } }

@media screen and (max-width: 1023px){
  #menubtn {
    position: fixed;
    display: flex;
    align-items:center;
    top: 10px;
    right: 10px;
    height: 50px;
    padding: 15px 10px;
    z-index: 9; }
}

.ui-hamburger-05 {
  width: 30px;
  height: 20px;
  border: none;
  position: relative;
  background: linear-gradient(to bottom, #fff, #fff);
  background-size: 100% 20%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-size 0.2s 0.25s ease;
  cursor: pointer;
  transition: background-size 0.3s 0.2s ease; }

.ui-hamburger-05:before,
.ui-hamburger-05:after {
  height: 20%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: #fff;
  content: '';
  transition: transform 0.3s ease; }

.ui-hamburger-05:before {
  top: 0; }

.ui-hamburger-05:after {
  bottom: 0; }

.ui-hamburger-05:before,
.ui-hamburger-05:after {
  transition: 0.3s ease; }

.ui-hamburger-05.is-active {
  background-size: 0 0; }

.ui-hamburger-05.is-active:before,
.ui-hamburger-05.is-active:after {
  transition-delay: 0.3s; }

.ui-hamburger-05.is-active:before {
  transform: translateY(200%) rotate(45deg); }

.ui-hamburger-05.is-active:after {
  transform: translateY(-200%) rotate(-45deg); }

/* メニュー */
@media screen and (max-width: 1023px) {
  .globalnav {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #364e68;
    padding: 20px;
    z-index: 8; }
    .globalnav ul.grid {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .globalnav ul.grid li {
        padding: 40px; }
        .globalnav ul.grid li a {
          color: #fff;
          font-size: 1.8rem;
          font-weight: bold;
          text-decoration: none;
          letter-spacing: 4px; } }

@media screen and (min-width: 1024px) {
  .globalnav {
    padding: 0; }
    .globalnav ul {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      justify-content: center;
      background: #364e68; }
      .globalnav ul li {
        text-align: center;
        transition: 0.2s; }
        .globalnav ul li a {
          display: block;
          width: 100%;
          padding: 20px;
          color: #fff;
          text-decoration: none;
          letter-spacing: 4px; }
        .globalnav ul li.active, .globalnav ul li:hover {
          background: #98ccd3;
          font-weight: bold; } }

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
メイン
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.contents {
  padding: 60px;
  background: #fff; }
  @media screen and (max-width: 1023px) {
    .contents {
      padding: 20px; } }

/* 更新履歴 */
ul.news {
  padding: 10px;
  height: 186px;
  overflow: auto; }
  ul.news li {
    padding: 10px;
    border-bottom: 1px solid #70c6c7; }
    ul.news li:last-of-type {
      border: none; }
    ul.news li time {
      color: #a2d7dd;
      font-weight: bold;
      padding: 4px 8px;
      margin-right: 10px; }
      @media screen and (max-width: 1023px) {
        ul.news li time {
          display: block;
          padding: 0; } }

/* メイン　画像サムネイル */
.illust-thumb {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, 132px);
  grid-gap: 20px; }
  .illust-thumb img {
    width: 132px;
    height: 132px;
    object-fit: cover;
    transition: 0.2s; }
    .illust-thumb img:hover {
      filter: brightness(1.1); }

/* 画像表示　メニュー表示調整 */
#spotlight .header {
  padding: 0 40px; }
  #spotlight .header div {
    margin: 0 5px;
    padding: 0; }
  @media screen and (max-width: 1023px) {
    #spotlight .header {
      padding: 0 5px; } }

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
小説ページ
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/* 見出し */
.story h2 {
  position: relative;
  color: #364e68;
  background: none;
  margin-bottom: 80px; }
  .story h2::after {
    position: absolute;
    left: 0;
    bottom: -4px;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #98ccd3; }

/* あとがきボックス */
.story .box {
  width: 80%;
  margin: 200px 0 40px auto; }
  @media screen and (max-width: 1023px) {
    .story .box {
      width: 100%; } }

/* Return */
.story .return {
  text-decoration: none; }
  .story .return p {
    color: #98ccd3;
    font-weight: bold;
    text-align: right; }

.story hr{
	background-color: #fff;
	border-top: 2px dashed #98ccd3;
  margin: 60px 0 60px 0;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
　リンク
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
ul.banner1 {
  display: flex;
  flex-wrap: wrap;
  margin-left: 20px; }
  ul.banner1 li {
    margin-right: 20px; }
    ul.banner1 li:last-of-type {
      margin: 0; }

ul.banner2 li {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-gap: 40px;
  margin: 20px; }
  @media screen and (max-width: 1023px) {
    ul.banner2 li {
      grid-template-columns: 1fr;
      grid-gap: 10px; } }

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
返信ボックス
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*全体*/
.henshinBox {
  padding: 0;
  width: 388px;
  margin-bottom: 24px; }
  .henshinBox .name {
    display: block;
    padding: 8px 16px;
    background: #89c3eb;
    cursor: pointer;
    transition: 0.2s; }
    .henshinBox .name:hover {
      background: #a2d7dd;
      transition: 0.2s; }
  .henshinBox .henshin {
    display: none; }

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
フッター
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
footer {
  padding: 40px;
  background: #fff;
  text-align: center; }
