footer {
    background-color: #e9e9e9;
    color: #000000;
    padding: 20px 0;
    width: 100%;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* 縦並び */
    align-items: center;
    /* 中央揃え */
}

.footer-top {
    display: flex;
        flex-direction: column;
        justify-content: center;
    /*width: 100%;*/
    margin-bottom: 10px;
    align-items: center;
    
        /* 1px のグレーの実線 */
}
.footer-contact{
    
        height: 300px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    
}
.footer-top p{
    
    font-size: 20px;
}
.footer-logo img {
    max-width: 300px;
}


.footer-bottom {
    border-top: 1px solid #000000;
    text-align: center;
    width: 100%;

}

.footer-bottom p {
    text-align: center;
    /* テキストを中央揃えにする */
}

.footer-contact p {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 20px;
}

.footer-copyright {
    text-align: right;
}

@media(max-width:768px){
    .footer-logo img{
        width: 150px;
    }

    footer p{
        font-size: 12px;
    }
}