html {
    background-color: #fff3cd;
    font-size: 100%; /* 16px */
}

body {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
}

a {
    text-decoration: none;
}

p {
    font-size: 1.3rem;
}

img {
    max-width: 100%;
}

li {
    list-style: none;
    font-size: 1.2rem;
}

.wrapper {
    max-width: 960px;
    margin: 0 auto 130px auto;
    font-size: 0.9rem;
    padding: 0 4%;
}

.site-title {
    font-weight: 600;
    font-size: 2.4rem;
}

.site-title a {
    color: #24292e;
}

.sec-title {
    font-size: 1.5rem;
    margin-bottom: 65px;
}

.sec-title2 {
    margin: 35px 0 30px 0;
}

.logo {
    transition: all 0.3s;
}

.logo:hover {
    opacity: 0.5;
}

/* header */
#header {
    max-width: 960px;
    align-items: center;
    margin: 40px 0px 0px 0px;
    padding: 0 4%;
    height: 170px;
}

#header ul {
    display: flex;
    padding: 10px 0;
    align-items: center;
}

#header ul li {
    font-size: 0.9rem;
    margin-left: 30px;
}

#header ul li a {
    color: #24292e;
    transition: all 0.3s;
}

#header ul li a:hover {
    opacity: 0.5;
}

/* works */
#works img {
    width: 400px;
}
/* sp */
@media screen and (max-width: 600px) {
    .site-title {
        margin-top: 20px;
    }
    
    /* header */
    #header {
        flex-direction: column;
        height: auto;
        line-height: 40px;
        margin-top: 20px;
        padding: 30px;
    }

    #header li {
        font-size: 0.8rem;
        margin-left: 20px;
    }

    /* works */
    #works ul {
        flex-direction: column;
    }

    #works ul li {
        width: 100%;
        margin-bottom: 50px;
    }
}