body {
    font-family: Helvetica Now Text;
}

.header {
    position: sticky;
    padding: 20px 20px 0px;
    display: flex;
    justify-content: center;
}

.header ul {
    display: flex;
    align-items: center;
}



.menu a {
    color: #2B2A44;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
}


.header li:nth-child(4) a {
    font-size: 24px;
    text-decoration: underline;
    font-weight: 700;

}

.menu a:hover {
    text-decoration: underline;
}

/* 文案 */
#spoken {
    display: flex;
    gap: 6px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 34px 70px 40px 0px;

}

#spoken h1 {
    color: #4706FF;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

#spoken h2 {
    color: #2B2A44;
    font-family: Helvetica Now Text;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.72px;
    text-transform: uppercase;
}

#wall {
    margin: 20px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;

}

#wall .frame {
    position: relative;
    display: flex;
    padding: 8px;
    flex-basis: calc(25% - 12px);
    background-color: #fafafa;
    border: solid 1px #eeeeee;
    aspect-ratio: 1/1;

}

#wall .frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
}




@media (max-width:800px) {

    #wall .frame {
        flex-basis: calc(50% - 12px);

    }

    .menu a {
        font-size: 12px;
        padding: 16px 12px;
    }

}

@media (max-width:400px) {

    #wall .frame {
        flex-basis: 100%;
    }

    #spoken {
        flex-direction: column;
        padding: 34px 0px 30px;
    }

    #spoken h1 {
        font-size: 44px;
    }

    #spoken h2 {
        text-align: center;
    }
}