@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: #847577;
    background-color: #FBFBF2;
}

a {
    color:  #8B4513 ;
}
a:visited {
    color: #696969;
}
a:hover {
    text-decoration: none;
}

.l_item {
    width: 100%;
}
.l_item:not(:last-child) {
    border-bottom: 1px solid #A6A2A2;
}

.container {
    box-sizing: border-box;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    
    border-left: 1px solid #A6A2A2;
    border-right: 1px solid #A6A2A2;
}


.h1 {
    display: block;
    padding: .5em;
    font-size: 3.2rem;
    color: #E5E6E4;
    background-color: #A6A2A2;
    text-align: center;
}

/*================================================
*  ヘッダー
================================================*/
.header_item {
    color: #E5E6E4;
    background-color: #A6A2A2;
}
.header_item::after {
    display: block;
    content: "";
    height: 40vh;
    border-top: 1px solid #A6A2A2;
    background: url(../images/bg-min.jpg) center/cover;
}

#sitetitle a {
    display: block;
    padding: .5em;
    font-size: 3.6rem;
    color: inherit;
    text-decoration: none;
}
#summary {
    box-sizing: border-box;
    display: block;
    padding: 1em;
    font-size: .8em;
}

/*================================================
*  サイドバー
================================================*/
.menu {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}
.menu_item {
    box-sizing: border-box;
    display: block;
    padding: 1em;
    width: 50%;
    text-decoration: none;
}
.menu_item:nth-child(odd) {
    border-right: 1px solid #A6A2A2;
}
.menu_item:nth-child(even):not(:last-child),
.menu_item:nth-child(odd):not(:nth-last-child(-n+2)){
    border-bottom: 1px solid #A6A2A2;
}

.menu_item:hover {
    color: #E5E6E4;
    background-color: #A6A2A2;
}

/*================================================
*  メイン
================================================*/
.post_main {
    display: block;
    padding: 3vw;
}

.fig {
    display: inline-block;
}
.fig_img {
    width: 100%;
    display: block;
    margin: 0 auto;
}
.fig_cap {
    padding: .5em;
    font-size: .8em;
    color: #E5E6E4;
    background-color: #847577;
}

/*================================================
*  フッター
================================================*/
.footer_item {
    padding: 3vw;
    color: #fff;
    background-color: #A6A2A2;
}
#copyright {
    display: block;
    font-size: .8em;
    text-align: center;
}

/*================================================
*  本文設定
================================================*/
section > * { margin: 2.5rem 0;}

/*見出しスタイル*/
section h1,
section h2,
section h3 {
    border-left: 1em solid #847577;
    padding-left: .25em;
}
section h1 { 
    font-size: 3.6rem;
    text-align: center;
    border-bottom: 1px solid #847577;
}
section h2 { 
    font-size: 2.8rem;
}
section h3 { 
    font-size: 2.4rem;
    border-width: 2px;
}
section h4 { font-size: 2.4rem;}
section h5 { 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 { 
    border-bottom: 1px dashed #847577;
}

/*リストスタイル*/
section ul, section ol { list-style-type: none;}
section ol { counter-reset: list;}
section ol li { counter-increment: list;}
section li {
    margin: .5em 0;
    padding-left: 1.5em;
}
section li::before {
    display: inline-block;
    margin-right: 1em;    
    color: #847577;
}
section ul li::before {
    content: "◆";
}
section ol li::before {
    content: counter(list);
    width: 1.5em;
    height: 1.5em;
    font-weight: bold;
    border: 1px solid #847577;
    text-align: center;
}

/*引用スタイル*/
section blockquote {
    position: relative;
    padding: 1.5em;
    border-left: 3px solid #847577;
}
section blockquote::before {
    position: absolute;
    content: "“";
    top: 0;
    left: 0;
    opacity: .3;
    font-family:"ＭＳ Ｐゴシック",sans-serif;
    font-size: 500%;
    line-height: 1;
}

/*テーブルスタイル*/
section table { 
    table-layout: fixed;
    width: 100%;
}
section td, section th{ 
    text-align: center;
    box-sizing: border-box;
    padding: .5em;
}
section th {
    color: #E5E6E4;
    background-color: #847577;
}
section tr:not(:last-child) td {
    border-bottom: 1px solid #CFD2CD;
}

section:nth-child(n+2) {
    margin-top: 10rem;
}

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

.pagenav {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    
    display: -webkit-flex;
    display: flex;
    
    z-index: 1000;
}
.pagenav_item {
    display: block;
    padding: .5em;
    color: #A6A2A2;
    background-color: #847577;
    text-decoration: none;
}
.pagenav_item:first-child {
    border-right: 1px solid #A6A2A2;
}

.pagenav_item:hover {
    color: #E5E6E4;
    background-color: #A6A2A2;
}
/*================================================
*  タブレット向け
================================================*/
@media screen and (max-width:979px){
    
}

/*================================================
*  スマートフォン向け
================================================*/
@media screen and (max-width:767px){
    body {
        font-size: 1.8rem;
    }
    .header_item::after {
    height: 20vh;
    }
    #sitetitle a {
        font-size: 2.4rem;
    }
    #summary {
        display: none;
    }
    
    .h1 {
        font-size: 2.4rem;
    }
    section h1 {
        font-size: 2.8rem;
    }
    
    .menu {
        display: block;
    }
    .menu_item {
        width: 100%;
    }
    .menu_item:nth-child(n){
        border-right: none;
    }
    
    section th, section td {
        display: block;
        width: 100%;
    }
    section tr:not(:last-child) td {
        border: none;
    }
    section tr td:not(:last-child) {
        border-bottom: 1px solid #CFD2CD;
    }
}