@charset "UTF-8";
/*================================================
*  CSSリセット
================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
*  一般・共通設定
================================================*/
html {
    font-size: 62.5%;
}
body {
    font-family: "小塚ゴシック Pro L","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
    font-size: 2rem;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    
    color: #6b6670;
    background-color: #c9b0bc;
    padding: 2vw;
}

a {
    color: #ac6889;
    text-decoration: none;
}
a:visited {
    color: #c9b0bc;
}
a:hover {
    color: #b5c9c3;
}

.l_wrapper {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 2vw;
    width: 100%;
    max-width: 1600px;
    
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    
    background-color: #fff;
    box-shadow: 5px 5px 10px rgba(107, 102, 112, 0.3);
}
.l_item {
    box-sizing: border-box;
    padding: 2vw;
}

.h1 {
    font-size: 2.8rem;
    position: relative;
    display: block;
    text-align: center;
    z-index: 1;
}
.h1 span {
    padding: 0 1em;
    background-color: #fff;
}
.h1::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    border-bottom: 1px solid #c9b0bc;
    z-index: -1;
}



/*================================================
*  ヘッダー
================================================*/
#header {
    border-bottom: 1px dashed #b5c9c3;
    width: 100%;
}

#summary {
    font-size: 1.6rem;
    max-width: 50%;
}

/*================================================
*  サイドバー
================================================*/
#sidebar {
    width: 30%;
    min-width: 300px;
}
.menu {
}
.menu li {
    margin: 1em 0;
    position: relative;
}
.menu li a::before {
    position: absolute;
    content: "●";
    top: .5em;
    left: .5em;
    display: inline;
    vertical-align: middle;
    color: #b5c9c3;
}
.menu li a {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: .5em 2em;
    padding-right: 0;
}
.menu li a:hover::before {
    color: #ccc;
}

/*================================================
*  メイン
================================================*/
#main {
    flex: 1;
    border-right: 1px dashed #b5c9c3;
}

.post_header {
    margin-bottom: 2.5rem;
}

.post_view {
    display: block;
    max-width: 100%;
    max-height: 40vh;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(107, 102, 112, 0.3);
}

/*================================================
*  フッター
================================================*/
#footer {
    border-top: 1px dashed #b5c9c3;
    width: 100%;
}
.copyright {
    display: block;
    font-size: 1.6rem;
    text-align: center;
}


/*================================================
*  本文設定
================================================*/
section > * { margin: 2.5rem 0;}
section:nth-of-type(n + 2) {
    margin-top: 5rem;
}

/*見出しスタイル*/
section h1 { 
    font-size: 3.6rem;
    border-bottom: 1px solid #c9b0bc;
}
section h2 { 
    position: relative;
    font-size: 2.8rem;
    padding-left: .5em;
    border-left: 5px solid #c9b0bc;
    border-bottom: 2px dashed #ccc;
}
section h3 { 
    font-size: 2.4rem;
}
section h3::before { 
    content: "▼";
    padding-right: .5em;
    color: #c9b0bc;
}
section h4, 
section h5 { 
    color: #a07389;
    font-size: 2.0rem;
}
section h4 { font-weight: bold;}

/*テキストスタイル*/
section i, section b, section em, section a { margin: 0 .25em;}
section i { font-style: oblique;}
section b { font-weight: bold;}
section em { 
    font-weight: bold;
    font-style: oblique;
}

/*リストスタイル*/
section ul, section ol { 
    list-style-type: none;
    box-shadow: 5px 5px 10px rgba(107, 102, 112, 0.3);
}
section ol { counter-reset: list;}
section ol li { counter-increment: list;}
section li {
    padding: .25em 3vw;
    margin: 2px 0;
    background-color: #deced6;
}
section li:nth-child(even) {
    background-color: #d0ddd9;
}
section ul li::before {
    content: "●";
    margin-right: 1em;
    color: #fff;
}
section ol > li::before {
    display: inline-block;
    content: counter(list);
    margin-right: .5em;
    width: 1.5em;
    font-weight: bold;
    text-align: center;
    
    border-radius: 50%;
    color: #c9b0bc;
    background-color: #fff;
}

/*引用スタイル*/
section blockquote {
    position: relative;
    padding: 2rem 0;
    padding-left: 6rem;
    color: #fff;
    background-color: #a07389;
    box-shadow: 5px 5px 10px rgba(107, 102, 112, 0.3);
}
section blockquote::before {
    position: absolute;
    content: "“";
    display: block;
    top: 1.5rem;
    left: 1.5rem;
    
    color: #fff;
    line-height: 1;
    font-family:"ＭＳ Ｐゴシック",sans-serif;
    font-size: 400%;
}
/*テーブルスタイル*/
section table { 
    table-layout: fixed;
    width: 100%;
    box-shadow: 5px 5px 10px rgba(107, 102, 112, 0.3);
}
section td, section th{ 
    text-align: center;
    padding: .5em;
    border: 2px solid #fff;
}
section th {
    color: #fff;
    background-color: #a07389;
}
section tr:nth-child(odd) {
    background-color: #deced6;
}
section tr:nth-child(even) {
    background-color: #d0ddd9;
}

/*================================================
*  ページナビ
================================================*/

.pagenav {
    position: fixed;
    bottom: 0;
    right: 5%;
    background-color: #a07389;
    box-shadow: 2px 2px 15px rgba(107, 102, 112, 0.9);
    z-index: 5000;
    
    display: none;
}
.pagenav_item {
    padding: 0 1em;
    color: #fff;
    font-size: 1.6rem;
}
.pagenav_item:visited {
    color: #fff;
}
.pagenav_item:first-child {
    border-right: 1px dashed #fff;
}

/*================================================
*  タブレット向け
================================================*/
@media screen and (max-width:979px){
    .l_wrapper {
        display: block;
    }
    #main {
        border-right: none;
        border-bottom: 1px dashed #b5c9c3;
    }
    #sidebar {
        min-width: 0;
        width: 100%;
    }
    #summary {
        max-width: 100%;
    }
    
    
    /*テーブルスタイル*/
    section td, section th{ 
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    section tr:nth-child(n) {
        background-color: #deced6;
    }
    section td:nth-of-type(even) {
        background-color: #d0ddd9;
    }
    
    section h1 { font-size: 2.8rem; }
    section h2 { font-size: 2.4rem; }
    section h3 { font-size: 2.2rem; }
    
    .pagenav {
        display: block;
    }
}

/*================================================
*  スマートフォン向け
================================================*/
@media screen and (max-width:767px){
    #summary {
        display: none;
    }
    .l_item:not(#header) {
        padding: 2.5rem .5em;
    }
    
    .h1 {
        text-align: left;
        font-size: 2.4rem;
    }
    .h1 span {
        padding: 0;
        background-color: none;
    }
    .h1::before {
        height: 100%;
    }
}