@charset "utf-8";
/* ===================================================================
//CSS information

// file name  :  private.css
// style info :  スタイル指定
=================================================================== */
#private {
    background: #eee;
    margin: 100px 0 0;
    padding: 100px 0;
}
#private h2 {
    position: relative;
    padding-bottom: 20px;
    text-align: center;
    border: none;
    margin-bottom: 30px;
    font-size: 24px;
    color: #222;
    font-weight: normal;
}

#private h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: #29631f;
}

#private h2 + h3 {
    margin-bottom: 50px;
    text-align: center;
    border: none;
    font-size: 24px;
    color: #523622;
    font-weight: normal;
}
#private h2 + h3 + p {
    margin-bottom: 30px;
    color: #222;
    font-weight: normal;
    line-height: 2;
}

.minicap{position: absolute; right: 1px; bottom: 1px; font-size: .76em !important; padding: 3px;  background: rgba(255,255,255,0.6);}

@media screen and (max-width: 767px) {
    #private {
        margin: 50px 0 0;
        padding: 50px 0;
    }
    #private h2 + h3 {
        margin-bottom: 30px;
        font-size: 20px;
    }
} 

