@charset "UTF-8";

footer {
    background: #f7f7f7;
}

.footer_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
}

ul.footer_menu {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

ul.footer_menu li a {
    color: #000;
    font-size: 1.3rem;
    display: block;
    transition: all 0.2s ease-in-out 0s;
}

ul.footer_menu li a:hover {
	opacity: 0.5;
}

ul.footer_menu li {
    margin-right: 20px;
}

small {
    font-size: 1.1rem;
    opacity: 0.5;
}

.footer_pagetop {
    font-weight: 600;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    padding: 15px 20px;
    color: #E4007F;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: all 0.2s ease-in-out 0s;
}

.footer_pagetop:hover {
    bottom: 35px;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {

.footer_inner {
    padding: 40px 5% 80px;
}

ul.footer_menu li a {
    font-size: 1.2rem;
}

ul.footer_menu {
    margin: 20px 0;
}
}