@charset "UTF-8";

footer{
    background-color: white;
    margin-top: 50px;
    padding: 50px 15px 10px;
    margin: 0 auto;
}

.footer_wrapper{
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.footer_logo{
    width: 300px;
    color: rgb(41, 41, 41);
}
.footer_logo img{
    max-width: 150px;
    width: 100%;
    margin-bottom: 20px;
}
.footer_logo a{
    text-decoration: none;
    color: rgb(41, 41, 41);
}
.footer_menu{
    list-style: none;
    display: flex;
    gap: 20px;
    width: 300px;
    flex-wrap: wrap;
}
.footer_menu li a{
    text-decoration: none;
    color: rgb(39, 39, 39);
}
.footer_menu li:last-child a {
    background-color: rgb(85, 171, 211);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
}

.footer_sns{
    display: flex;
    gap: 20px;
    list-style: none;
    margin-top: 30px;
}
.footer_sns img{
    width: 50px;
}

.footer_copy {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 20px;
}

@media screen and (max-width: 500px) {
.footer_wrapper{
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
}
.footer_sns{
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-top: 30px;
}
.footer_logo img{
    max-width: 150px;
    width: 100%;
    display: block;
    margin: 0 auto 20px;
}
}