/* --------------------------------
footer
-------------------------------- */
.footer_top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.footer_top .form{
    display: flex;
    flex-direction: column;
    flex: 1;
    background-repeat: no-repeat;
    gap: 20px;
    background-size: cover;
    background-position: center center;
    align-items: center;
    padding: 100px 0;
}

.footer_top .form >div{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.footer_top .form a{
    text-align: center;
    height: 80px;
    line-height: 80px;
    background-color: #fff;
    color: #007F23;
}

.footer_top .tel{
    color: #fff;
    border-radius: 60px;
    font-size: 2vw;
}

.footer_top .contact{
    color: #fff;
    background-color: #818181;
    border-radius: 60px;
    font-size: 2vw;
}

.footer_top .line{
    color: #fff !important;
    background-color: #06C755 !important;
    border-radius: 60px;
    font-size: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer_top p{
    color: #fff;
    font-size: 2vw;
}

.footer_top .map{
    /* width: 50%; */
    flex: 1;
}

.footer_top .map iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer_bottom{
    background-color: #5EC363;
    display: flex;
    justify-content: space-between;
    padding: 60px;
    padding-bottom: 190px;
    color: #fff;
}

.footer_bottom ul{
    display: flex;
    gap: 25px;
    font-size: 3rem;
} 

.footer_bottom a{
    font-size: 3.5rem;
} 

@media screen and (max-width: 786px) {
    .footer_top{
        flex-direction: column;
    }

    .footer_top .form,
    .footer_top .map {
      flex: 1;
      min-height: 0;
    }

    .footer_top .form >div{
        width: 80%;
    }

    .footer_top .form a {
        font-size: 5vw;
    }

    .footer_top p {
        font-size: 5vw;
    }

    .footer_top .map iframe{
        height: 300px; /* iframeの高さを親要素に合わせる */
    }

    .footer_bottom {
        flex-direction: column;
        gap: 50px;
    }

    .footer_bottom ul {
        flex-direction: column;

    }
    
  }