@charset "utf-8";

.footer{
    margin-top: 150px;
    position: relative;
}

.footer-chick{
    position: absolute;
    top: -110px;
    right: 10%;
    z-index: 1;
}

.footer-bg{
    padding: 50px 6% 20px;
    background-color: #008232;
    border-radius: 120px 120px 0 0;
    color: #fff;
}

.footer-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-main,.footer-nav,.copyright,.footer-logo-title a,.footer-mtf a,.footer-nav a,.copyright a{
    color: #fff;
}

.footer-main{
    margin: 0 0 100px;
}

.footer-icon-box{
    width: fit-content;
}

.footer-icon-box>a{
    display: flex;
    align-items: center;
}

.footer-icon-box-image{
    display: flex;
    max-width: 100px;
    max-height: 100px;
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
}

.footer-icon-box-text-position{
    padding-left: 30px;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.footer-address{
    margin: 30px 0 0;    
}

.footer-address-text{
    padding-left: 20px;
    font-size: 1.5rem;
}

.footer-mtf{
    width: fit-content;
}

.footer-mtf-list{
    margin-top: 30px;
}

.footer-mtf-item{
    margin: 10px 0;
    width: fit-content;
}

.footer-mtf-item-box{
    display: flex;
    gap: 15px;
}

.footer-mtf-item-box-image{
    max-width: 40px;
}

.footer-mtf-item-box-text{
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem;
}

.footer-link-item{
    background-color: #fff;
    margin: 10px 0;
    padding: 5px 10px;
    border-radius: 10px;
}

.footer-link-item>a{
    display: flex;
    gap: 5px;
    font-weight: 600;
    align-items: center;
}

.footer-link-item img{
    width: 40px;
}

.footer-nav{
    margin-top: 20px;
    display: flex;
    justify-content: end;
    gap: 20px;
}

.copyright{
    text-align: center;
    padding: 15px 10px 10px;
}

@media screen and (max-width: 800px) {
    .footer-chick{
        max-width: 300px;
        top: -100px;
    }
    .footer-bg{
        border-radius: 60px 60px 0 0;
        padding: 50px 6% 0;
    }
    .footer-box{
        display: block;
    }
    .footer-main{
        margin: 0 0 20px;
    }
    .footer-icon-box,.footer-mtf{
        margin: 0 auto;
    }
    .footer-address{
        text-align: center;
    }
    .footer-link-list{
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    .footer-link-item{
        background-color: #fff;
        margin: 5px 0;
        padding: 5px 10px;
        border-radius: 10px;
        width: fit-content;
    }
    .footer-nav{
        margin: 20px 0 100px;
        display: block;
    }
    .copyright p{
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .footer-chick{
        max-width: 200px;
        top: -60px;
        right: 10%;
    }
    .footer-bg{
        border-radius: 45px 45px 0 0;
    }
    .footer-main{
        padding-left: 10px;
    }
    .footer-icon-box-image{
        max-width: 75px;
        max-height: 75px;
    }
    .footer-icon-box-text-position{
        font-size: 1.1rem;
    }
    .footer-icon-box-text .header-icon-box-text-name>th{
        font-size: 1.5rem;
    }
    .footer-address{
        font-size: 1.0rem;
    }
    .footer-address-text{
        padding-left: 10px;
        font-size: 1.2rem;
    }
    .footer-mtf-item-box-image{
        max-width: 30px;
    }
    .footer-link-list{
        display: block;
    }
    .footer-link-item:not(:first-child){
        margin-top: 15px;
    }
}