@charset "UTF-8";

/*Maison de R*/


/*CSS3*/


/*文字コードは必ずUTF-8で保存してください*/


/*ライセンス*/


/*
HTML5 Reset Stylesheet
html5doctor.com Reset Stylesheet v1.6.1
http://html5doctor.com/html-5-reset-stylesheet/
Copyright Richard Clark - http://richclarkdesign.com
Released under the CC0 Public Domain Dedication and MIT License
http://opensource.org/licenses/mit-license.php
*/


/*
jQuery
jQuery JavaScript Library v2.1.4
http://jquery.com/
Includes Sizzle.js
http://sizzlejs.com/
Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors
Released under the MIT license
http://jquery.org/license
Date: 2015-04-28T16:01Z
*/


/*
jQuery Smooth scroll
http://kyasper.com/jquery-tips/
*/


/*
Google Fonts
"Questrial" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
by https://www.google.com/fonts(Joe Prince)
*/


/*
Google Fonts + Japanese Early Access
"Sawarabi Mincho" is lisenced under the Creative Commons Attribution 3.0
https://creativecommons.org/licenses/by/3.0/deed.ja
by https://googlefonts.github.io/japanese/(mshio)
"Noto Sans Japanese" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
by https://googlefonts.github.io/japanese/(Ryoko Nishizuka)
*/


/*
Font Awesome(Font License)
"font-awesome" is lisenced under the SIL Open Font License 1.1
http://scripts.sil.org/OFL
by http://fontawesome.io/
*/


/*
Font Awesome(Code License)
http://fontawesome.io/
Released under the MIT license
http://fontawesome.io/license/
http://opensource.org/licenses/mit-license.php
*/


/*アニメーション*/

body {
  -webkit-animation: fadein 1s ease 0s 1;
  animation: fadein 1s ease 0s 1;
  /*左から、アニメーション名、1回の再生時間、変化方法、開始を遅らせる時間、繰り返し回数*/
}

@keyframes fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}


/*基本*/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  -webkit-appearance: none;
  -moz-appearance: none;
  /*フォーム周辺のデザインをリセット*/
}

html {}

body {
  font-family: 'Questrial', "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: gray;
  letter-spacing: 0.04em;
  text-align: center;
  background: #fffae2;
}

a {
  color: gray;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  /*アニメーション*/
}

a:hover {
  color: gray;
}

img {
  max-width: 100%;
  /*フルードイメージ（親要素の幅に応じて縦横比を保持したまま自動的に画像の拡大縮小をする）*/
  height: auto;
  vertical-align: bottom;
  /*ディセンダー対策（画像の下の隙間を無くす）*/
}

.imglink {
  /*画像リンク用*/
  border: 0 !important;
  background: transparent !important;
  /*リンクに背景色を指定した時に、画像には背景色を設定させたくない場合の設定*/
}

.imglink:hover {
  background: transparent !important;
  /*リンクホバーに背景色を指定した時に、画像には背景色を設定させたくない場合の設定*/
}

ul {
  list-style-type: none;
  /*リストマークを非表示*/
  list-style-position: inside;
  /*リストマークを内側に表示*/
}

.pagetop {
  /*ページトップボタン*/
  position: fixed;
  /*固定*/
  bottom: 8px;
  right: 8px;
}

.pagetop a {
  color: white;
  display: block;
  /*リンク範囲の拡張*/
  background: #f7bfa3;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  /*heightの値と揃える*/
  border-radius: 15px;
  /*widthとheightの値の半分にすると円になる*/
}

.pagetop a:hover {
  color: white;
  background: #ffd896;
}


/*フォント*/

header h1 {
  font-family: "Sawarabi Mincho";
  font-weight: normal;
}

.sub {
  font-family: "Sawarabi Mincho";
}

/*テキスト 行の高さ*/
.text,footer {
  line-height: 1.7;
}

/*テキスト 文字間隔*/

header h1 {
  letter-spacing: 0.2em;
}

header h1 span {
  /*最後の文字の文字間隔を消去*/
  letter-spacing: 0;
}

.sub {
  letter-spacing: 0.2em;
}

.pagetop {
  letter-spacing: 0;
}


/*ページの枠組み*/

#all {}

.wrap1 {
  background: #fffdf9;
  padding: 70px 50px 50px;
}

.wrap2 {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.wrap3 {
  padding: 30px 50px;
}


/*ヘッダー*/

header {}

.title {}

header h1 {
  color: #e395cf;
  font-size: 24px;
}

header h1 a {
  color: #e395cf;
  text-decoration: none;
}

header h1 a:hover {
  color: #e395cf;
}

.sub {
  color: #e395cf;
  margin-bottom: 15px;
  font-size: 14px;
}


/*メイン*/

main {
  margin: 50px 0 0;
  text-align: left;
}


/*小説部分*/

.novel {}


/*あとがき*/

.afterword {
  margin: 50px 0;
  background: #fffcf0;
  border: 1px solid #f7bfa3;
  padding: 20px;
  border-radius: 10px;
  color: #f7bfa3;
}


/*ページナビ*/

.pagenav {}

.pagenav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*フレックスボックス*/
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*折り返す*/
}

.pagenav ul li {
  margin-right: 10px;
}

.pagenav ul li:last-child {
  margin-right: 0;
}

.pagenav ul li a {
  display: block;
  /*リンク範囲の拡張*/
  padding: 0.5em 1.5em;
  background: #f7bfa3;
  color: white;
  text-decoration: none;
}

.pagenav ul li a:hover {
  background: #ffd896;
}

.pagenav ul li:nth-child(1) span::before {
  /*FontAwesome*/
  display: inline;
  content: "\f02d";
  margin-right: 0.5em;
  font-family: FontAwesome;
}

.pagenav ul li:nth-child(2) span::before {
  /*FontAwesome*/
  display: inline;
  content: "\f0a8";
  margin-right: 0.5em;
  font-family: FontAwesome;
}

.pagenav ul li:nth-child(3) span::before {
  /*FontAwesome*/
  display: inline;
  content: "\f0a9";
  margin-right: 0.5em;
  font-family: FontAwesome;
}


/*本文エリア*/
.text>p {
  /*タグ間の余白*/
  margin-top: 1.5em;
}

.text>p:first-child {
  /*タグ間の余白 先頭の要素を無効*/
  margin-top: 0;
}


/*フッター*/

footer {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

footer ul {
  /*フレックスコンテナ*/
  font-size: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*フレックスボックス*/
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*折り返す*/
}

footer ul li {
  /*フレックスアイテム*/
  margin-right: 1em;
}

footer ul li:last-child {
  margin-right: 0;
}


/*------------画面サイズ768px以下用（タブレット/スマホ向け）------------*/

@media screen and (max-width:768px) {
  .wrap1 {
    padding: 70px 30px 50px;
  }
  header h1 {
    font-size: 20px;
  }
  .wrap3 {
    padding: 30px 30px;
  }
}


/*エラーチェック済*/


/*ベンダープレフィックス記述済*/
