footer{
    position:relative;
    background-color: #DEE7E9;
    height: 360px;
    
    z-index: 8;
}

footer>div:nth-of-type(1){
    display: flex;
    align-items: flex-end;
    padding: 40px 0 0 80px;
    gap:40px;
}

footer>div:nth-of-type(2){
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 60px 0 0 80px;
}

.access{
    background-color: #fff;
    padding: 1.5em 4em 2em;
    line-height: 3em;
}

.access dt{
    color: #547780;
    font-size: 22px;
    margin-bottom: 5px;
}

.access dd img{
    margin-right: 10px;
}

.copyright{
    margin:0 80px 0 0;
}

/* -----------------------------------------------------------------
ブレイクポイント
------------------------------------------------------------------*/
@media screen and (max-width: 960px) {

    footer {
        height: 461px;
    }
    .ft-logo-link{
        text-align: center;
    }
    img.ft-logo{
        max-width: 70%;
    }


    footer>div:nth-of-type(1){
        flex-direction: column;
        align-items: center;
        padding: 40px 0 0 0;
        gap: 40px;
    }
    .ft-SNS img.insta{
        margin-right: 30px;
    }

    footer>div:nth-of-type(2){
        flex-direction: column;
        align-items: center;
        justify-content: initial;
        text-align: center;
        padding: 39px 15px 0;
    }

    .access{
        padding: 1.5em 0;
        width: 100%;
    }

    .copyright {
        margin: 30px 0 30px 0;
    }
}