@charset "UTF-8";
@import url("html5reset-1.6.1.css");
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css?family=Mrs+Saint+Delafield&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lora&display=swap');

/*--------------------テンプレート情報--------------------*/
/*template　Maison de R*/
/*url　https://maisonder.web.fc2.com/*/
/*title　FLOWER STORY vol.2 yellow*/
/*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
"Noto Serif JP" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
https://fonts.google.com/(Google)
"Lora" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
https://fonts.google.com/(Cyreal)
"Mrs Saint Delafield" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
https://fonts.google.com/(Sudtipos)
*/

/*
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ファーストで記述------------*/


/*------------初期設定の追加&リセット------------*/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-break: break-all;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*プラットフォームのスタイルをリセット*/
}

/*フェードイン*/
body {
    -webkit-animation: fadein 1s ease 0s 1 normal;
    animation: fadein 1s ease 0s 1 normal;
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*ボディ*/

body {
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-family: "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #464646;
    background: #f1f1f1;
    /*モバイル端末でのテキストサイズの自動調整対策*/
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}


/*リンク*/

a {
    color: #888888;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    /*リンクカラーをふわっと変化させる*/
}

a:hover {
    color: #a4a8d4;
}


/*画像*/

img {
    /*画像の伸縮設定*/
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    /*画像の縦の隙間対策*/
}

a img {
    /*画像リンクの枠線を消す*/
    border: 0;
}

/*重要*/

strong {
    font-weight: normal;
    background: url(bg02.png) repeat #fffccd;
    padding: 0 0.5em;
    border-radius: 4px;
}


/*リスト*/

ul,
ol {
    list-style-position: inside;
    /*リストマークを内側に表示*/
    list-style-type: none;
    /*リストマークをつけない*/
}

/*フォント*/
header h1 {
    font-weight: normal;
}

.pagetop {
    font-family: 'Lora', serif;
}

.aftertitle {
    font-family: 'Mrs Saint Delafield', cursive;
}


/*テキスト 行の高さ*/
.aftertitle,
.pagetop,
.pagetop a:before {
    line-height: 1;
}


/*テキスト 文字間隔*/
header h1 {
    letter-spacing: 0.4em;
}

/*ベース*/
#bodyall {}

#all {
    width: 100%;
}

#wrap {
    text-align: center;
    margin: 0 auto;
    width: 100%;
}


#boxwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#boxleft {
    background: url(bg03.jpg) center -5px repeat-y white;
    background-size: 200px auto;
    width: 50%;
    position: relative;
    /*パンくずリストの基準位置*/
}

#boxright {
    padding: 80px;
    background: #fcfcfc;
    width: 50%;
}

/*ヘッダー*/

header h1 {
    margin: 100px auto;
    padding: 40px;
    font-size: 26px;
    background: rgba(255, 255, 255, 0.8);
}

header h1 a {
    color: #464646;
}

/*パンくずリスト*/

#topicpath {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    padding: 2px 8px;
    text-align: left;
    font-size: 0;
    /*隙間対策*/
}

#topicpath li {
    font-size: 12px;
    /*隙間対策 再指定*/
    display: inline-block;
    /*横並び*/
}

#topicpath li::after {
    content: ">";
    margin: 0 0.5em;
}

#topicpath li:last-child::after {
    /*最後の要素*/
    display: none;
    /*非表示*/
}

#topicpath a {
    color: #000000;
}

#topicpath a:hover {
    color: #a4a8d4;
}

/*メイン*/

#main {
    max-width: 500px;
    margin: 0 auto;
}

/*小説部分*/

.novel {
    margin: 0 auto;
    text-align: left;
    letter-spacing: 0.05em;
    line-height: 2.0;
    font-size: 14px;
}


/*小説部分 タグ間のマージン調整*/

.novel p {
    margin-top: 14px;
}

.novel p:first-child {
    margin-top: 0;
}


/*ページナビ*/

#pagenav {
    margin-top: 80px;
    font-size: 0;
    /*隙間対策*/
}

#pagenav li {
    font-size: 12px;
    /*隙間対策 再指定*/
    display: inline-block;
    /*横並び*/
    background: url(bg02.png) repeat #fff5fb;
    border-radius: 4px;
    padding: 0 0.5em;
}

#pagenav li:first-child {
    margin-right: 1.5em;
}

#pagenav li:first-child a:before {
    /*FontAwesome*/
    margin-right: 0.75em;
    color: #4d4398;
    content: "\f104";
    font-family: FontAwesome;
}

#pagenav li:last-child a:after {
    /*FontAwesome*/
    margin-left: 0.75em;
    color: #a4a8d4;
    content: "\f105";
    font-family: FontAwesome;
}

/*あとがき*/
.afterword {
    text-align: left;
    margin: 80px auto 0;
}

.aftertitle {
    text-align: center;
    font-size: 26px;
    margin-bottom: 1em;
    margin-top: 0 !important;
}

/*あとがき タグ間のマージン調整*/

.afterword p {
    margin-top: 14px;
}

.aftertitle + p {
    margin-top: 0;
}


/*ページトップボタン*/

.pagetop {
    margin-top: 80px;
}

.pagetop a {
    display: inline-block;
    /*リンク範囲の調整*/
}

.pagetop a:before {
    /*FontAwesome*/
    color: #a4a8d4;
    margin-bottom: 0.5em;
    display: block;
    content: "\f106";
    font-family: FontAwesome;
}

/*リンク下線一括指定*/
header h1 a,
#pagenav li a,
.pagetop a {
    text-decoration: none;
}

/*フッター*/

footer {
    margin: 0 auto;
    padding: 20px 40px;
    background: #f1f1f1;
}


/*配布元表示*/

#licence {
    font-size: 0;
    /*隙間対策*/
}

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


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

@media screen and (max-width:1024px) {
    #boxwrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        /*並べ方*/
    }

    #boxleft {
        background: url(bg03.jpg) center -30px no-repeat white;
        background-size: 200px auto;
        width: 100%;
    }

    #boxright {
        width: 100%;
        min-height: 500px;
        padding: 80px 30px;
    }

    header h1 {
        font-size: 24px;
        padding: 40px 30px;
    }

    footer {
        padding: 20px 30px;
    }
}


/*コーディング確認済*/
