@charset "UTF-8";

/* --------------------------------------
footer
---------------------------------------*/
footer {
    height: auto;
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    background-color: #FFD83F;
}
.foot_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.credit {
    background-color: #FFF2BF;
    font-size: 12px;
    padding: 0.5rem 0;
    text-align: center;
}
@media screen and (max-width: 768px) {
    footer {
        height: auto;
        width: 100%;
        min-width: initial;
        overflow: hidden;
    }
    .foot_wrap {
        width: 100%;
        height: 100%;
        display: block;
    }
}

/* --------------------------------------
footer左
---------------------------------------*/
.foot_wrap_left {
    width: 30%;
}
@media screen and (max-width: 768px) {
    .foot_wrap_left {
        width: 100%;   
    }
}
/* フッター左上 */
.foot_add_wrap {
    display: flex;
    align-items: center;
}
.foot_add_wrap img{
   width: 100px;
   border-radius: 1rem;
   margin-right: 1rem;
}
.foot_add_wrap_tx p {
    white-space: nowrap;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .foot_wrap_left {
        width: 100%;
        margin-bottom: 2rem;
    }
}
/* フッター左下問い合わせ */
.foot_add_wrap_tx_cnt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.foot_add_wrap_left {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.foot_add_wrap_left img {
    width: 50px;
}
.foot_add_wrap_right {
    width: 35%;
}
.foot_add_wrap_right img {
    max-width: 150px;
}

/* --------------------------------------
footer右
---------------------------------------*/
.foot_wrap_right {
    width: 70%;
}
ul.foot_site_map_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: right;
}
li.foot_site_map_wrap_li {
    border-right: 1px solid #604C3F;
    padding: 0 1rem;
    box-sizing: border-box;
}
li.foot_site_map_wrap_li:last-child {
    border-right: initial;
    padding: 0;
    padding-left: 1rem;
}
ul.foot_site_map_wrap_inner {
    width: 100%;
}
ul.foot_site_map_wrap_inner li {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 12px;
}
ul.foot_site_map_wrap_inner li a {
    color: #604C3F;
}
li.sitemap_title {
    background-color: #FFF2BF;
    padding: 0.5rem 0.5rem 0.3rem;
    box-sizing: border-box;
    border-radius: 0.5rem;
    line-height: 1;
    text-align: center;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .foot_wrap_right {
        width: 100%;
    }
    ul.foot_site_map_wrap {
        flex-wrap: wrap;  
        justify-content: space-between;
        gap: 3rem 1rem;
    }
    li.foot_site_map_wrap_li {
        width: 47.5%;
        border-right: initial;
        border-left: 1px solid #604C3F;
        padding: 0 1rem;   
    }
}


/* --------------------------------------
モバイルボタン
---------------------------------------*/
.foot_sp_btn {
    display: none;
}
@media screen and (max-width: 768px) {
    .foot_space {
        width: 100%;
        height: 100px;
        background-color: #FFF2BF;
    }
    .foot_sp_btn {
        display: flex;
        width: 100%;
        position: fixed;
        bottom: 0;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(100px);
        z-index: 100;
    }
    .foot_sp_btn_inner {
        width: calc(100% / 2);
        height: 100%;
        height: 90px;
        text-align: center;
        margin: auto;
    }
    .foot_sp_btn_inner a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
        color: #fff;
    }
    .foot_sp_btn_inner a i{
        font-size: 2rem;
    }
    .foot_sp_btn_inner.contact a {
        background-color: #FF5500;
    }
    .foot_sp_btn_inner.LINE a {
        background-color: #06C755;
    }
    
    /*　上に上がる動き　*/
    .foot_sp_btn.UpMove {
        animation: UpAnime 0.5s forwards;
    }
    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /*　下に下がる動き　*/
    .foot_sp_btn.DownMove {
        animation: DownAnime 0.5s forwards;
    }
    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 1;
            transform: translateY(100px);
        }
    }
}

/* --------------------------------------
footer問い合わせ
---------------------------------------*/
.foot_contact_wrap {
    display: flex;
    align-items: center;
}
.foot_contact_wrap p {
    margin-right: 2rem;
}
.foot_contact_wrap span {
    font-size: 2rem;
    line-height: 1;
}
@media screen and (max-width: 768px) {
    .foot_contact_wrap {
        display: block;
        align-items: center;   
    }
    .foot_contact_wrap p {
        margin-right: 0;
    }
}