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;
    text-align: center;
    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;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    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;
}


/* about */
#about .profile {
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#about .profile ul li:first-child {
    margin-bottom: 20px;
}

#about ul li {
    margin-bottom: 3px;
}

#about ul li a {
    font-size: 0.9rem;
    color: #24292e;
    transition: all 0.3s;
}

#about ul li a:hover {
    opacity: 0.5;
}

#about p {
    margin-top: 20px;
}

#about div div img {
    width: 200px;
}

#about .kujira {
    margin-top: 200px;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#about .kujira ul li ul {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}



/* 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;
    }

    /* about */
    #about .profile {
        flex-direction: column;
        margin: 50px auto;
    }
    
    #about .kujira ul li ul {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
}