@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;
    border: solid 1px var(--blue);
    background-color: var(--white);
    align-items: center;
    position: relative;
    transition: var(--transition);
}

.top_bt__arrow::before{
    content: '';
    width: 20px;
    height: 1px;
    display: block;
    background-color: var(--blue);
    transform: rotate(320deg);
    position: absolute;
    left: 11px;
    transition: var(--transition);
}

.top_bt__arrow::after{
    content: '';
    width: 20px;
    height: 1px;
    display: block;
    border-radius: 10px;
    background-color: var(--blue);
    transform: rotate(40deg);
    position: absolute;
    right: 11px;
    transition: var(--transition);
}

.top_bt__arrow:hover{
    background-color: var(--blue);
}

.top_bt__arrow:hover::before,
.top_bt__arrow:hover::after{
    background-color: var(--white);
}

/*====================================
  フッター レイアウト
=====================================*/
footer{
    padding: 4rem 1.5rem;
    max-width: 100%;
    background-color: var(--blue3);
}

.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;
}

.footer_left .mail_bt,
.footer_left .tel_bt{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: solid 1px var(--white);
    font-family: var(--mincho);
    transition: var(--transition);
}

.footer_left .mail_bt:hover{
    background-color: var(--white);
    color: var(--blue);
    border-color: var(--white);
}

.footer_right{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer_menu{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer_menu li{
    width: 100%;
    display: flex;
    align-items: center;
}

.footer_menu a{
    width: auto;
    font-family: var(--mincho);
    text-decoration: underline;
}

.address_area{
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}

.address_list{
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 1px var(--white);
}

.address_list h3{
    font-size: 1.25em;
    font-weight: 500;
    color: var(--white);
}

.address_list address{
    margin: 1rem 0 1.5rem 0;
    width: 100%;
    line-height: 1.5;
    color: var(--white);
}

small{
    margin-top: 3rem;
    width: 100%;
    display: block;
    text-align: center;
    color: var(--white);
}

@media screen and (min-width: 0px) {
    .top_bt{
        right: 0.5em;
        bottom: 0.5em;
    }

    footer{
        margin-right: 0;
    }

    .footer_area{
        flex-wrap: wrap;
    }

    .footer_left,
    .footer_right{
        width: 100%;
    }
        
    .footer_left {
        gap: 1.5rem;
    }

    .footer_area .logo{
        width: 70%;
    }

    .footer_left .mail_bt,
    .footer_left .tel_bt{
        padding: 1rem 0rem;
        width: 100%;
    }

    .footer_right{
        justify-content: flex-start;
    }
    
    .address_list{
        width: 100%;
    }

}

@media screen and (min-width: 768px) {
    .footer_area{
        flex-wrap: nowrap;
    }

    .footer_area .logo{
        width: 300px;
    }

    .address_list{
        width: calc(50% - 1.5rem);
    }
}

@media screen and (min-width: 1024px) {

    .footer_area .logo{
        width: 350px;
    }

    .footer_left{
        width: calc(50% - 1em);
    }

    .footer_right{
        width: calc(50% - 1em);
    }
    
    .footer_left {
        gap: 3rem 1.25rem;
    }

    .footer_left .mail_bt,
    .footer_left .tel_bt{
        padding: 1.25rem 0rem;
        width: calc(50% - 1.5rem);
    }
}