/* ===============================================
　共通
=============================================== */
* {
    margin: 0;
    padding: 0;
    font-size: 16px;
    vertical-align: middle;
}

html, body {
    font-size: 62.5%;
    background: #fafafa;
    line-height: 1.8;
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Meiryo', 'メイリオ', 'Osaka', 'MS PGothic', arial, helvetica, sans-serif;
    color: #333;
}

a {
    color: #333;
}


/* ===============================================
　header
=============================================== */
header {
    box-sizing: border-box;
    width: 100%;
    min-width: 980px;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    padding: 12px 40px;
    background: #32a45b;
    transition: .4s;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);

}

.header-inner {
    width: 100%;
    display: table;
}

.header-logo {
    line-height: 0;
    display: table-cell;
    vertical-align: middle;
}

.header:after{
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2) inset;
    position: absolute;
    top: 84px;
    left: 0;
}

/* ===============================================
　パンくず
=============================================== */
.main {
    padding-top: 84px;
}

/* ===============================================
　コンテンツ
=============================================== */

.page-about-area {
    min-width: 1050px;
    background: #dfe6e0;
    padding-top: 1px;
    border-bottom: solid 1px #d9d9d9;
    min-width: initial;
}

.page-title-h1 {
    width: 75%;
    margin: 30px auto;
}

.page-title-h1 h1 {
    display: block;
    font-size: 3.2rem;
    position: relative;
    letter-spacing: 0.1em;
    font-weight: normal;
}

.mod-inner{
    min-width: initial;
    width: 1000px;
    padding: 32px 0;
    margin: 0 auto;
    font-weight: normal;
}

/* 本文 */
.aticleBody{
    font-size: 1.6rem;
    padding: 20px 20px 80px 20px;
    line-height: 2.0;
    letter-spacing: 0.1em;
}

.articleBody-head{
    font-size: 2.4rem;
    border-left: solid 4px #32a45b;
    line-height: 1.0;
    padding: 0 0 0 16px;
    margin: 10px 0 50px;
}

.listMarker li{
    list-style-position: outside;
    margin-left: 1em
}


/* ===============================================
　footer
=============================================== */
.footer {
    background: #f4f3ef;
    border-top: solid 1px #d9d9d9;
}

.footer-contents {
    display: flex;
    color: #fff;
    padding: 60px 40px;
    background: #5a5a5a;
}

nav ul {
    display: flex;

}

.footer-contents li::before {
    content: "｜";
    display: inline-block;
    margin: 0 10px;
    font-size: 12px;
    letter-spacing: 0.01em;
}

.footer-contents li:nth-child(1):before {
    content: none;
}

.footer-contents li{
    list-style-type: none;
}

.footer-contents a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-contents a:hover{
    text-decoration: underline;
}

.footer-logo {
    margin: 0 0 0 auto;
    text-align: right;
}

.footer-logo p {
    font-size: .8em;
}

/* ===============================================
　600px以下
=============================================== */
@media screen and (max-width: 600px) {
    /* header */
    header {
        width: 100%;
        min-width: initial;
        padding: 10px;
        height: 66px;
    }

    .header-logo img {
        height: 70%;
    }


    .page-about-area {
        min-width: initial;
    }

    .page-title-h1 {
        width: 80%;
        margin: 30px auto;
    }

    .page-title-h1 h1 {
        display: block;
        font-size: 3.2rem;
        position: relative;
        letter-spacing: 0.1em;
        font-weight: normal;
    }

    /* footer */
    footer {
        padding: 4%;
    }

    .footer-contents {
        display: block;
    }

    nav ul {
        display: block;
    }

    footer li {
        margin: 5px;
    }
    footer li::before {
        content: none;
    }

    .footer-logo {
        margin-top: 30px;
        text-align: left;
    }

    .footer-logo img {
        margin-bottom: 5px;
    }

    .footer-logo p {
        font-size: .8em;
    }

    /* 表示・非表示・改行 */
    .sp--none {
        display: none;
    }

    .sp--block {
        display: block;
    }

    .br--sp {
        display: block!important;
    }

    .color-red {
        font-size: 1em;
    }

}