
/*-stylet02 本文用シート、ナビボタンは３連まで---------*/

@charset "UTF-8";
@import url("html5reset-1.6.1.css");

/*--------------------フォント情報--------------------*/
/*各作文のシートにgooglefont指定を入れるとh1とh2がMacondに成増*/

@import url('https://fonts.googleapis.com/css2?family=Macondo+display=swap');
/*--------------------テンプレート情報--------------------*/
/*template　Maison de R*/
/*url　https://maisonder.web.fc2.com/*/
/*title　Kaitlyn*/
/*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

"Macondo" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
https://fonts.google.com/(TypeSETit)
*/

/*
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を幅と高さに含める*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*単語の途中でも必ず改行される（されない）*/
    word-break: normal;
    /*フォーム周辺のデザインをリセット*/
    -webkit-appearance: none;
    -moz-appearance: none;
}

html {}

body {
font-family: "メイリオ","Meiryo",
"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","Hiragino Sans",sans-serif;

    font-size: 14px;
    line-height: 1.7;
    color: #333333;
    letter-spacing: 0.05em;
    text-align: left;
    background: white;
    /*モバイル端末でのテキストサイズの自動調整対策*/
    -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;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    /*アニメーション*/
}

a:hover {
    color: #eeeeee;
}

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

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

/*段落*/
p {}

/*ulリスト共通*/
ul {
    /*リストマークを非表示*/
    list-style-type: none;
    /*リストマークを内側に表示*/
    list-style-position: inside;
}
/*改変--hrライン、ex1(メニュー連番）、ex2（小文字)--*/

hr {
 border-width: 1px 0px 0px 0px;
 border-style: dashed;
 border-color: #cccccc;
 height: 1px;
 }

.ex1{
font-size:14px;
line-height:360%;
margin-left: 1.0em;
}

.ex2{
font-size:12px;
line-height: 1.7;
color: #808080;
background-color: rgba(255,255,255,0.4);
padding-left: 15px;
}

/*--------------------テキスト関連の設定--------------------*/
/*フォントの種類 太さ*/
h1 {
    font-weight: normal;
    font-family:'Macondo',"Candara","Futura-Medium","Meiryo",sans-serif;
 line-height: 1;
letter-spacing: 0.08em;
font-size: 20px;
padding-left: 15px;
}

h2 {
    font-weight: normal;
    font-family:'Macondo',"Candara","Futura-Medium","Meiryo",sans-serif;
 line-height: 1;
letter-spacing: 0.08em;
 font-size: 18px;
padding-left: 15px;
}
.sub {
    font-size: 16px;
    margin-top: 1.5em;
}

/*テキスト 行の高さ*/

.pagenav,
.pagenav ul li,
.pagetop {
    line-height: 1;
}

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


.sub {
    letter-spacing: 0.08em;
}

    
.pagetop {
    letter-spacing: 0;
}

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

/*-----構造関連の設定(上下のラインは青、背景は青空固定----------------*/
/*色指定 共通*/
#all::before,
#all::after {
    background: rgba(240,251,249,0.9);
}

/*ボディ*/
#all {}

#all::before {
    content: "";
    width: 100%;
    display: block;
    height: 10px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
}

#all::after {
    content: "";
    width: 100%;
    display: block;
    height: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 50;
}

/*コンテナ*/
.container1::before {
    display: block;

}

.container1::after {
    display: block;
}

.container1 {
    padding: 55px 30px 100px;
}

.container2 {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

/*ヘッダー*/
header {}


/*メイン*/
main {
    margin: 40px 0;
}

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

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

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

/*あとがき*/
.afterword {
    text-align: left;
    font-size: 12px;
    margin-top: 40px;
    background-color: rgba(240,251,249,0);
    padding: 15px;
}

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

.pagenav ul {
    /*隙間対策*/
    font-size: 0;
}

.pagenav ul li {
    /*隙間対策 再指定*/
    font-size: 14px;
    display: inline;
}

.pagenav ul li::after {
    content: "/";
    margin: 0 6px;
}

.pagenav ul li:last-child::after {
    display: none;
}

/*ナビ*/
nav {}

nav ul {
    /*隙間対策*/
    font-size: 0;
}

nav ul li {
    /*隙間対策 再設定*/
    font-size: 14px;
    display: inline-block;
    margin: 14px 14px 0 0;
}

nav ul li a {
    /*リンク範囲の拡張*/
    display: block;
    height: 24px;
    line-height: 24px;
    /*メニューの文字数が長いときはwidthを広げてください*/
    width: 100px;
    background: rgba(255,255,255,0);
    outline: 1px solid #333333;
    text-align: center;
    text-decoration: none;
}

nav ul li a:hover {
    color: #333333;
}

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

/*フッター*/
footer {}

footer ul {}

footer ul li {
    display: inline;
    margin-right: 0.8em;
font-size: 12px;
}

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

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

/*ページトップボタン*/
.pagetop {
    text-align: right;
    margin-top: 30px;
}

.pagetop a {
    text-decoration: none;
}

/*------------画面サイズ（横幅）900px以下用------------*/

@media screen and (max-width:900px) {
    #all::before {
        content: "";
        width: 100%;
        display: block;
        height: 10px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
    }

    #all::after {
        content: "";
        width: 100%;
        display: block;
        height: 10px;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 50;
    }

    .container1::before {
        display: block;
    }

    .container1::after {
        display: block;
    }

    .container1 {
        padding: 45px 15px 80px;
    }

    .afterword {
        padding: 10px;
    }
}

@media screen and (max-width:900px) {
nav ul li {
    /*隙間対策 再設定*/
    font-size: 12px;
    display: inline-block;
    margin: 14px 14px 0 0;
}

nav ul li a {
    /*リンク範囲の拡張*/
    display: block;
    height: 24px;
    line-height: 24px;
    /*メニューの文字数が長いときはwidthを広げてください*/
    width: 100px;
    background: rgba(255,255,255,0.2);
    outline: 1px solid #333333;
    text-align: center;
    text-decoration: none;
}
}
/*ベンダープレフィックス設定済*/
/*エラーチェック済*/
