@charset "UTF-8";




/*========================================

footer.php

========================================*/

/*----------------------------------------

footer

----------------------------------------*/

footer {
    background: #464237;
}

footer .con {
    padding: 80px 8%;
}


@media (min-width: 768px) {

}


@media (min-width: 1024px) {

}




/*----------------------------------------

footer / .foot_top

----------------------------------------*/

footer .foot_info {
    margin: 0 0 40px;
}

footer .foot_info .foot_logo {
    width: 200px;
    margin: 0 0 20px;
}

footer .foot_info .foot_logo a {
    display: block;
}

footer .foot_info .foot_logo a img {
    transition: all 0.3s;
}

footer .foot_info .foot_logo a:hover img {
    opacity: 0.8;
}

footer .foot_info .company_info {
    margin: 0 0 40px;
}

footer .foot_info .company_info h3 {
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

footer .foot_info .company_info span {
    display: block;
    padding-bottom: 10px;
    font-size: 0.8em;
    color: #ffffff;
}

footer .foot_info .company_info p {
    font-size: 0.9em;
    color: #ffffff;
}

footer .foot_info .anta_logo {
    width: 120px;
}

footer .foot_info .anta_logo a {
    display: block;
}

footer .foot_info .anta_logo a img {
    transition: all 0.3s;
}

footer .foot_info .anta_logo a:hover img {
    opacity: 0.8;
}

footer .foot_nav {
    margin: 0 0 40px;
}

footer .foot_nav ul li {
    border-bottom: solid 1px #f6f6ee;
}

footer .foot_nav ul li a {
    position: relative;
    display: block;
    padding: 15px 0;
    color: #f6f6ee;
    transition: all 0.3s;
}

footer .foot_nav ul li a::after {
    display: block;
    font: var(--fa-font-solid);
    content: "\f138";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

footer .foot_nav ul li a:hover {
    color: #d5db00;
}


@media (min-width: 768px) {

    footer .foot_top {
        margin: 0 0 80px;
        display: flex;
        justify-content: space-between;
    }

    footer .foot_info {
        flex-basis: 50%;
        margin: 0;
    }

    footer .foot_nav {
        flex-basis: 25%;
        margin: 0;
    }

}


@media (min-width: 1024px) {

    footer .foot_info .foot_logo {
        width: 240px;
    }

}




/*----------------------------------------

footer / .foot_bottom

----------------------------------------*/

footer .foot_link {
    margin: 0 0 40px;
}

footer .foot_link ul li {
    margin: 0 0 20px;
}

footer .foot_link ul li:last-of-type {
    margin: 0;
}

footer .foot_link ul li a {
    display: inline-block;
    font-size: 0.9em;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.3s;
}

footer .foot_link ul li a:hover {
    color: #d5db00;
}

footer .foot_link ul li p {
    font-size: 0.9em;
    color: #ffffff;
}

footer .copyright p {
    font-size: 0.9em;
    font-weight: 400;
    color: #ffffff;
}


@media (min-width: 768px) {
    
    footer .foot_link ul {
        display: flex;
    }
    
    footer .foot_link ul li {
        margin: 0 20px 0 0;
    }
    
}


@media (min-width: 1024px) {
    
    footer .foot_bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    footer .foot_link {
        margin: 0;
    }

}




/*----------------------------------------

#contact_banner

----------------------------------------*/

#contact_banner {
    position: fixed;
    bottom: 20px;
    right: 4%;
    z-index: 10;
    width: 140px;
}

#contact_banner a {
    display: block;
}

#contact_banner a img {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.3s;
}

#contact_banner a:hover img {
    opacity: 0.8;
}

@media (min-width: 768px) {

	#contact_banner {
	    bottom: 40px;
        width: 180px;
	}

}