@charset "UTF-8";

footer {
    background: #242422;
    padding: 88px 0;
    color: #fff;
}

ul.footer_menu {
    display: flex;
    flex-wrap: wrap;
    width: 40%;
}

ul.footer_menu li {
    width: 50%;
    margin-bottom: 20px;
}

ul.footer_menu li a {
    display: flex;
    color: #fff;
    font-size: 1.3rem;
    align-items: center;
    position: relative;
    width: max-content;
}

ul.footer_menu li a:before {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: "";
	display: block;
	width: 0;
	background: #fff;
	height: 1px;
	transition: all 0.35s ease;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
}

ul.footer_menu li a:hover:before {
	width: 100%;
}

ul.footer_menu li a img {
    width: 20px;
    margin-right: 6px;
    filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(348deg) brightness(107%) contrast(101%);
}

.footer_inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.footer_main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer_logo {
    font-weight: bold;
    font-size: 2.5rem;
    display: flex;
    line-height: 36px;
    align-items: center;
    font-family: "ab-karuta-el", sans-serif;
    letter-spacing: -1px;
}

.footer_logo span {
    width: 50px;
    filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(348deg) brightness(107%) contrast(101%);
    margin-right: 15px;
}

.footer_sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
}

ul.footer_submenu {
    display: flex;
}

ul.footer_submenu li a {
    color: #fff;
    font-size: 1.1rem;
	position: relative;
	width: max-content;
}


ul.footer_submenu li a:before {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: "";
	display: block;
	width: 0;
	background: #fff;
	height: 1px;
	transition: all 0.35s ease;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
}

ul.footer_submenu li a:hover:before {
	width: 100%;
}

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

small {
    font-size: 1.1rem;
    text-align: right;
    display: block;
    letter-spacing: 1px;
    font-family: "aileron", sans-serif;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	
footer {
    padding: 50px 0;
}

.footer_main {
    display: block;
}

.footer_logo {
    font-size: 1.8rem;
    line-height: 23px;
    margin-bottom: 50px;
}

ul.footer_menu {
    width: 100%;
}

ul.footer_menu li {
    margin-bottom: 15px;
}

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

ul.footer_menu li a img {
    width: 15px;
    margin-right: 5px;
}

.footer_sub {
    margin-top: 50px;
    display: block;
}

small {
    text-align: left;
    margin-top: 15px;
}
}