@charset "UTF-8";
@import url("html5reset-1.6.1.css");
@import url('https://fonts.googleapis.com/css?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css?family=Sawarabi+Mincho&display=swap');

/*--------------------テンプレート情報--------------------*/
/*template　Maison de R*/
/*url　https://maisonder.web.fc2.com/*/
/*title　Garden Party*/
/*code　CSS3*/

/*--------------------ライセンス--------------------*/

/*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 v3.3.1
http://jquery.com/
(c) JS Foundation and other contributors
Released under the MIT license
http://jquery.org/license
http://opensource.org/licenses/mit-license.php
*/

/*
jQuery Smooth scroll
Handy Web Design
https://handywebdesign.net/2017/10/jquery-smooth-scroll/
*/

/*
Google Fonts
"Questrial" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
by https://fonts.google.com/(Joe Prince)
"Sawarabi Mincho" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
by https://fonts.google.com/(mshio)
*/

/*
Font Awesome(Font License)
"font-awesome" is lisenced under the SIL Open Font License 1.1
http://scripts.sil.org/OFL
https://fontawesome.com/v4.7.0/
*/

/*
Font Awesome(Code License)
https://fontawesome.com/v4.7.0/
Released under the MIT license
https://fontawesome.com/v4.7.0/license/
http://opensource.org/licenses/mit-license.php
*/

/*基本*/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-break: break-all;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*フォーム周辺のデザインをリセット*/
}

html {}

body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /*モバイル端末でのテキストサイズの自動調整対策*/
    font-family: 'Questrial', "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #454545;
    letter-spacing: 0.04em;
    text-align: center;
    background: url(../img/bg08.png) repeat center center white;
}

/*フロート解除*/
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

a {
    color: #454545;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    /*アニメーション*/
}

a:hover {
    color: #f79d9d;
}

img {
    max-width: 100%;
    /*フルードイメージ（親要素の幅に応じて縦横比を保持したまま自動的に画像の拡大縮小をする）*/
    height: auto;
    vertical-align: bottom;
    /*ディセンダー対策（画像の下の隙間を無くす）*/
}

a img {
    /*画像リンクの枠線を消す*/
    border: 0;
}

ul {
    list-style-type: none;
    /*リストマークを非表示*/
    list-style-position: inside;
    /*リストマークを内側に表示*/
}

.pagetop {
    /*ページトップボタン*/
    position: fixed;
    /*固定*/
    bottom: 8px;
    right: 8px;
}

.pagetop a {
    color: white;
    display: block;
    /*リンク範囲の拡張*/
    background: #f79d9d;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    /*heightの値と揃える*/
    border-radius: 15px;
    /*widthとheightの値の半分にすると円になる*/
}

.pagetop a:hover {
    color: white;
    background: #fcbcbc;
}


/*フォント*/

header h1 {
    font-family: 'Sawarabi Mincho', sans-serif;
    font-weight: normal;
}

.sub {
    font-family: 'Sawarabi Mincho', sans-serif;
}


/*テキスト 行の高さ*/

.text,
footer {
    line-height: 1.7;
}


/*テキスト 文字間隔*/

header h1,
.sub {
    letter-spacing: 0.15em;
}

header h1 span {
    /*最後の文字の文字間隔を消去*/
    letter-spacing: 0;
}

.pagetop {
    letter-spacing: 0;
}


/*テキスト 位置*/

.wrap2,
footer {
    text-align: left;
}


/*ページの枠組み*/

#all {}

.wrap1 {
    padding: 20px 0px;
}

.wrap2 {
    padding: 30px 20px;
    margin: 0 auto;
}


/*レイアウト 共通*/

.wrap2,
footer {
    background: white;
    width: 100%;
    /*ボックスの内側のライン*/
    -webkit-box-shadow: 0px 0px 0px 2px #c0ebf0 inset;
    box-shadow: 0px 0px 0px 2px #c0ebf0 inset;
    border: 5px solid white;
}


/*ヘッダー*/

header {}

.title {}

header h1 {
    color: #f16969;
    font-size: 20px;
}

header h1 a {
    color: #f16969;
    text-decoration: none;
}

.sub {
    color: gray;
    margin-top: 15px;
    font-size: 14px;
}


/*メイン*/

main {
    margin: 40px 0 0;
}


/*小説部分*/

.novel {}


/*あとがき*/

.afterword {
    margin: 40px 0;
    background: url(../img/bg07.png) repeat center center white;
    border: 1px solid #fcc1c1;
    padding: 15px;
    border-radius: 5px;
    color: #f79d9d;
}


/*ページナビ*/

.pagenav {}

.pagenav ul {}

.pagenav ul li {
    float: left;
    margin-right: 10px;
}

.pagenav ul li:last-child {
    margin-right: 0;
}

.pagenav ul li a {
    border-radius: 5px 5px 0 0;
    display: block;
    /*リンク範囲の拡張*/
    padding: 0.25em 1em;
    background: #f79d9d;
    color: white;
    text-decoration: none;
}

.pagenav ul li a:hover {
    background: #fcbcbc;
}

.pagenav ul li:nth-child(1) span::before {
    /*FontAwesome*/
    display: inline;
    content: "\f02b";
    margin-right: 0.5em;
    font-family: FontAwesome;
}

.pagenav ul li:nth-child(2) span::before {
    /*FontAwesome*/
    display: inline;
    content: "\f060";
    margin-right: 0.5em;
    font-family: FontAwesome;
}

.pagenav ul li:nth-child(3) span::before {
    /*FontAwesome*/
    display: inline;
    content: "\f061";
    margin-right: 0.5em;
    font-family: FontAwesome;
}


/*本文エリア*/

.text > p {
    /*タグ間の余白*/
    margin-top: 1.5em;
}

.text > p:first-child {
    /*タグ間の余白 先頭の要素を無効*/
    margin-top: 0;
}



/*フッター*/

footer {
    margin: 20px auto 0;
    padding: 30px 20px;
}

footer ul {
    font-size: 11px;
}

footer ul li {
    float: left;
    margin-right: 1em;
}

footer ul li:last-child {
    margin-right: 0;
}


/*------------画面サイズ768px以上用（大きい画面サイズ向け）------------*/

@media screen and (min-width:768px) {
    body {
        background: url(../img/bg01.png) repeat center center white;
    }

    .wrap1,
    .wrap2 {
        padding: 50px;
    }

    .wrap2,
    footer {
        max-width: 700px;
    }

    .wrap2,
    footer {
        -webkit-box-shadow: 0px 0px 0px 2px #c0ebf0 inset;
        box-shadow: 0px 0px 0px 2px #c0ebf0 inset;
        border: 10px solid white;
    }

    header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        background: url(../img/bg03.png) repeat-x center left;
    }

    .title {
        background: white;
        padding: 0 40px;
    }

    footer {
        padding: 30px 50px;
    }
}


/*エラーチェック済*/
/*ベンダープレフィックス記述済*/
