/* ヘッダー問い合わせ */
header div.header-contact {
    font-family: Rounded Mplus Bold;
    font-size: x-large;
    color: #444444;
    text-align: right;
    text-shadow: 6px 6px 10px #666666;
    padding: 1% 4% 0 0;
}
    /* ヘッダー問い合わせ-リンク */
    header div.header-contact a {
        text-decoration: none;
    }
        /* ヘッダー問い合わせ-リンク訪問済 */
        header div.header-contact a:visited {
            color: #444444;
            text-decoration: none;
        }
        /* ヘッダー問い合わせ-リンクホバー時 */
        header div.header-contact a:hover {
            color: #999999;
            text-decoration: none;
        }
        

/* ヘッダーロゴ */
.header-logo {
    margin-top: 10px;
    margin-left:20px;
}

/* ヘッダースライドショー */
.header-img {
    max-width: 100%;
    height: auto;
}

/* ヘッダー目次 */
header nav {
    font-family: Rounded Mplus Bold;
    display: flex;
    justify-content: center;
    margin-top: -7px;
    background: #333333;
}
    /* ヘッダー目次-リスト集 */
    header ul {
        font-size: large;
        display: flex;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    /* ヘッダー目次-リスト */
    header li {
        margin: 0;
    }
        /* ヘッダー目次-リストリンク */
        header li a {
            display: block;
            padding: 15px 20px;
            color: #FFFFFF;
            text-decoration: none;
            border: none;
        }
        /* ヘッダー目次-リンク訪問済 */
        header li a:visited {
            color: #FFFFFF;
        }
        /* ヘッダー目次-リンクホバー時 */
        header li a:hover {
            color: #CCCCCC;
            background: #555555;
        }
