@charset "UTF-8";

/* リセット用 */
body {
    margin: 0;
}
/*↑ リセットここまで */

html {
    font-size: 62.5%;
}

body {
    background: #F7F7F7 ;
    color: #535353;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6em;
}

/* ヘッダー */
.site-title {
    font-size: 3.2rem;
    margin-left: 2rem;
}

/* メイン ナビ */
.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.nav-menu li {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 2em;
}

.nav-menu a {
    color: #729c0b;
    text-decoration: none;
    padding: .2em;
    transition: color .4s, transform .2s;
}

.nav-menu a:hover {
    color: #c9c9c9;
    transform: translateY(.2rem);
}


