@charset "UTF-8";

/*--------------------テンプレート情報--------------------*/
/*template　Maison de R*/
/*url　https://maisonder.web.fc2.com/*/
/*title　光の庭園*/
/*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
"Lora" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
by https://fonts.google.com/(Cyreal)
"Noto Serif JP" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
by https://fonts.google.com/(Google)
"Pinyon Script" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
by https://fonts.google.com/(Nicole Fally)
*/

/*
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
*/

/*------------PCファーストで記述------------*/


/*------------初期設定の追加&リセット------------*/
#wrap1 {
    padding: 160px 0 120px;
}

/*メイン*/
#main {}

section {
    margin-bottom: 80px;
    background: rgb(250 250 250 / 40%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 40px 0;
}

/*小説部分*/
.novel, .afterword {
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
    background: rgb(250 250 250 / 60%);
    padding: 16px;
}

.novel > p {
    /*小説部分直下の階層の段落タグ タグ間の余白*/
    /*小説部分直下の階層のpタグ間に間隔を作りたくない場合はmargin-topに0を指定してください*/
    margin-top: 1em;
}

.novel > p:first-child {
    /*小説部分直下の階層の段落タグ 先頭の要素*/
    margin-top: 0;
}

/*あとがき*/
.afterword {
    text-align: left;
    margin-top: 40px;
}


/*フッター*/

footer {
    text-align: center;
    display: none;
}

footer ul {
    margin-top: 40px;
    font-size: 0;
    /*隙間対策*/
}

footer ul li {
    font-size: 12px;
    /*隙間対策 再指定*/
    display: inline-block;
    /*横並び*/
    margin: 0.1em 0.5em;
}

footer ul li span {
    margin-right: 0.5em;
}

.pageback {}

nav.pagination-container {
    height: 80px;
    top: auto;
    bottom: 0;
    background-color: rgb(0 0 0);
    display: flex;
    align-items: center;
    justify-content: center;
}


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

@media screen and (max-width:768px) {

    header {
        padding: 40px 20px 0;
    }

    #main {
        padding: 40px 20px 0;
    }

    footer {
        padding: 40px 20px 30px;
    }
}

/*ベンダープレフィックス設定済*/
/*エラーチェック済*/
