@charset "utf-8";
header{
    background-color: aqua;
}

#menu-mainmenu{
    display: flex;
    list-style: none;
    flex-direction: row;
    justify-content: space-between;
}
h2{
    background-color: bisque;
    font-size: 30px;
    color: #333;
    border-bottom: 2px solid aqua;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
p{
    font-size: 20px;
}
footer {
    background-color: #333333; /* 濃いグレーの背景 */
    color: #ffffff;            /* 文字を白く */
    padding: 40px 20px;        /* 内側に広めの余白 */
    margin-top: 50px;          /* 上の本文との隙間 */
}

/* フッターの中のリンク（文字）も白くする */
footer a {
    color: #ffffff;
}
.footer-menu{
    display: flex;
    flex-direction: row;
}
.footer-left img{
    width: 50px;
    height: 50px;
}
.footer-right{
    display: flex;
    flex-direction: row;
}
.footer-right img{
    width: 100px;
    height: 100px;
}
#linkbutton{
    width: 200px;
    height: 100px;
}
#googlesite{
    list-style: none;
}
#sns-icon{
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding: 0px;
    margin: 0px;
}

@media screen and (max-width:600px) {
    
#menu-mainmenu{
    display: flex;
    list-style: none;;
    flex-direction: column;
}

h2{
    font-size: 15px;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
p{
    font-size: 10px;
}
.footer-menu{
    display: flex;
    flex-direction: column;
}
.footer-right img{
    width: 90px;
    height: 90px;
}
#sns-icon{
    gap: 30px;
}
}
