@charset "UTF-8";
/*====================================
  トップに戻る
=====================================*/
.top_bt{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 3;
}

.top_bt a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    position: relative;
}

.top_bt__arrow{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--green);
    align-items: center;
    position: relative;
    transition: var(--transition);
}

.top_bt__arrow::before{
    content: '';
    width: 20px;
    height: 2px;
    display: block;
    background-color: var(--white);
    transform: rotate(320deg);
    position: absolute;
    left: 13px;
}

.top_bt__arrow::after{
    content: '';
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 10px;
    background-color: var(--white);
    transform: rotate(40deg);
    position: absolute;
    right: 13px;
}

/*====================================
  フッター レイアウト
=====================================*/
footer{
    max-width: 100%;
    background-image: url(../img/back/footer_back.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
}

.footer_area{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    color: var(--white);
}

.footer_left{
    display: flex;
    flex-wrap: wrap;
}

.kyoka{
    width: 100%;
    display: block;
}

.footer_right{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 2rem;
}

.footer_right p{
    font-size: 0.9em;
    line-height: 1.75;
    letter-spacing: 1.5px;
}

.mail_bt{
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(24 208 162 / 70%);
    color: var(--white);
    font-size: 1.5em;
    gap: 0.75rem;
    transition: var(--transition);
}

.mail_bt:hover{
    background-color: rgb(24 208 162 / 100%);
}

.footer_right .mail_bt .mail_icon{
    width: 1em;
    height: 1em;
    background-color: var(--white);
    mask-image: url(../img/icon/mail.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}

.footer_menu{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer_menu li{
    display: flex;
    align-items: center;
}

.footer_menu a{
    width: 100%;
    text-decoration: underline;
    font-size: 0.9em;
}

.address_area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.address_list{
    width: calc(50% - 1.5rem);
    display: flex;
    flex-wrap: wrap;
}

.address_list h3{
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
}

.address_list address{
    width: 100%;
    color: var(--white);
}

small{
    margin-top: 3rem;
    width: 100%;
    display: block;
    text-align: center;
    color: var(--white);
}

.footer_back{
    width: 100%;
    height: 100%;
    background-color: rgb(41 46 52 / 65%);
    filter: brightness(0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media screen and (min-width: 0px) {
    .top_bt{
        right: 0.5rem;
        bottom: 0.5rem;
    }

    footer{
        margin-right: 0;
        padding: 5rem 1.5rem;
    }

    .footer_area{
        flex-wrap: wrap;
    }

    .footer_left,
    .footer_right{
        width: 100%;
    }
        
    .footer_left {
        gap: 1.5rem;
    }

    .footer_area .logo{
        width: 100%;
    }
    
    .address_list{
        width: 100%;
    }

    .footer_right{
        justify-content: flex-start;
    }

    .footer_right p br{
        display: none;
    }

    .footer_menu{
        gap: 1rem;
    }

    .footer_menu li{
        width: 100%;
    }

}

@media screen and (min-width: 768px) {
    footer{
        padding: 5rem 1.5rem 3rem 1.5rem;
    }

    .footer_area{
        flex-wrap: nowrap;
    }

    .footer_area .logo{
        width: 300px;
    }

    .footer_menu li{
        width: auto;
    }

}

@media screen and (min-width: 1024px) {

    .footer_area .logo{
        width: 350px;
    }

    .footer_left{
        width: calc(50% - 1rem);
        gap: 2rem 1.25rem;
    }

    .footer_right{
        width: calc(50% - 1rem);
    }

    .footer_menu{
        gap: 2rem;
    }

    .top_bt__arrow:hover{
        transform: translateY(-5px);
    }
}

@media screen and (min-width: 1025px) {
    .footer_right p br{
        display: block;
    }
}