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

/*--------------------テンプレート情報--------------------*/
/*template　Maison de R*/
/*url　https://maisonder.web.fc2.com/*/
/*title　Benedetta*/
/*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)
"Source Serif Pro" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
https://fonts.google.com/(Frank Grießhammer)
*/

/*
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ファースト/すべての画面サイズでベースとなるCSS--------------------*/

/*--------------------全体の設定--------------------*/

* {
    /*paddingとborderを幅と高さに含める*/
    box-sizing: border-box;
    /*単語の途中でも必ず改行される*/
    word-break: break-all;
    /*フォーム周辺のデザインをリセット*/
    -webkit-appearance: none;
    -moz-appearance: none;
}

html {}

body {
    font-family: 'ＭＳ Ｐ明朝', 'Source Serif Pro', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
    letter-spacing: 0.08em;
    text-align: left;
    background: #fff;
    /*モバイル端末でのテキストサイズの自動調整対策*/
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;

}

/*--------------------主要タグの設定--------------------*/

/*フロート解除*/
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

/*リンク*/
a {
    color: #333333;
    transition: 0.2s;
    /*アニメーション*/
    text-decoration: none;
    border-bottom: #828282 solid 1px;
}

a:hover {
    color: #828282;
}

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

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

/*段落*/
p {}

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

/*dlリストタイプ1（項目と説明のリスト）*/
.dltype1 {}

.dltype1 dt {
    float: left;
}

.dltype1 dt::after {
    content: "-";
    margin: 0 0.5em;
}

.dltype1 dd {}

.dltype1 dd span {
    /*更新履歴で使用 カテゴリ名をspanで囲う*/
    margin-right: 0.8em;
}

/*--------------------テキスト関連の設定--------------------*/
/*フォントの種類 太さ*/
h1 {
    font-weight: normal;
}

/*テキスト 行の高さ*/
h1 {
    line-height: 1;
}

.pagenav {
    line-height: 1;
}

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

h1 span {
    letter-spacing: 0;
}

/*小説部分（.novel）のテキスト関連の設定は下の方にまとめて記載しました*/

/*--------------------構造関連の設定--------------------*/
/*ボディ*/
#all {
    width: 100%;
}

/*コンテナ1*/
.container1 {
    padding: 40px 30px;
}

/*コンテナ2*/
.container2 {
    width: 100%;
    margin: 0 auto;
    max-width: 740px;
}

/*ヘッダー*/
header {}

h1 {
    text-align: center;
    font-size: 18px;
}

h1::before {
    content: "";
    background: url(bg01.png) no-repeat top center;
    display: block;
    width: 100%;
    height: 100px;
}

/*メイン*/
main {
    margin-top: 30px;
}

/*小説部分*/
.novel {
    /*小説部分のフォントサイズ*/
    font-size: 18px;
    /*小説部分の行間*/
    line-height: 1.8;
    /*小説部分の文字間隔*/
    letter-spacing: 0.026em;
}

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

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

/*ページナビ*/
.pagenav {
    text-align: center;
    margin-top: 40px;
}

.pagenav a {
    background: #333333;
    color: white;
    text-decoration: none;
    margin: 0 5px;
    height: 24px;
    line-height: 24px;
    width: 70px;
    display: inline-block;
    border-bottom: 0;
}

.pagenav a:first-child {
    margin-left: 0;
}

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

/*インフォメーション*/
.info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #333333;
}

/*インフォメーション タグ間の設定*/
.info p,
.info ul,
.info dl {
    margin-top: 1em;
}

.info p:first-child,
.info dl:first-child,
.info ul:first-child {
    margin-top: 0;
}

/*フッター*/
footer {
    margin-top: 40px;
}

footer ul {}

footer ul li {
    display: inline-block;
    margin-right: 0.8em;
}

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

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

/*------------画面サイズ900px以下用------------*/
@media screen and (max-width:900px) {
    #all {
    }

    .container1 {
        padding: 40px 15px 40px;
    }

    .container2 {
        max-width: 580px;
    }
}

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