@charset "UTF-8";


footer {
    background: #1b1b1b;
    padding: 100px 0;
    position: relative;
    z-index: 999;
}

.footer_logo {
    width: 100%;
    display: flex;
    justify-content: end;
    margin-bottom: 50px;
}

.footer_logo img {
    width: 40%;
	filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(348deg) brightness(107%) contrast(101%);
}

.footer_nav {
    width: 40%;
}

.footer_inner {
    width: 90%;
    margin: 0 auto;
}

.footer_contact {
    border-radius: 10px;
}

.footer_main_contents {
    display: flex;
    margin-bottom: 100px;
    justify-content: space-between;
}

.footer_contact h2 {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    font-family: "Work Sans", sans-serif;
    margin-bottom: 20px;
}

.footer_contact h2 span {
    display: block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    margin-top: 5px;
    font-size: 1.8rem;
}

.footer_contact p {
    font-size: 1.2rem;
    line-height: 22px;
    color: #fff;
    font-weight: 500;
    margin: 30px 0;
}

ul.footer_menu {
    display: flex;
    flex-wrap: wrap;
}

ul.footer_menu li a {
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 2rem;
    font-family: "Work Sans", sans-serif;
    position: relative;
    display: block;
    height: 30px;
    overflow: hidden;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

ul.footer_menu li a span {
	font-size: 2rem;
	display: block;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

span.fm_on {
    position: absolute;
    bottom: -30px;
    left: 0;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

span.fm_off {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

ul.footer_menu li a:hover .fm_off {
    top: -30px;
}

ul.footer_menu li a:hover .fm_on {
    bottom: 2px;
}

a.footer_contact_btn {
    display: block;
    background: #fff;
    padding: 12px;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

a.footer_contact_btn span {
    font-size: 1.5rem;
    color: #222;
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    position: relative;
    display: block;
    z-index: 999;
}

a.footer_contact_btn:hover span {
    color: #fff;
}

a.footer_contact_btn:after {
	width: 0;
	height: 100%;
	content: "";
	display: block;
	border-radius: 3px;
	position: absolute;
	left: 0;
	top: 0;
	background: #0014b4;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

a.footer_contact_btn:hover:after {
	width: 100%;
}

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

.footer_address {
    color: #fff;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 20px;
    letter-spacing: 0.5px;
}

.footer_sub_last {
    display: flex;
    align-items: center;
}

ul.footer_sub_menu {
    display: flex;
    margin-right: 30px;
}

.footer_sub_contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.footer_sub_menu li a {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 1.2rem;
    font-family: "Work Sans", sans-serif;
}

small {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    font-family: "Work Sans", sans-serif;
}
/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	
.footer_inner {}

.footer_logo {
    justify-content: start;
    margin-bottom: 80px;
}

.footer_logo img {
    width: 50%;
}

.footer_main_contents {
    display: block;
    margin-bottom: 40px;
}

.footer_contact h2 {
    font-size: 3rem;
    display: flex;
    font-weight: 700;
    align-items: center;
}

.footer_contact h2 span {
    font-size: 1.3rem;
    margin-left: 10px;
}

.footer_contact p {
    font-size: 1.1rem;
    line-height: 20px;
    margin: 20px 0;
}

.footer_nav {
    width: 100%;
}

ul.footer_menu li a {height: 20px;}

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

.footer_contact {
    padding-bottom: 40px;
}

.footer_sub_contents {
    display: block;
}

.footer_address {
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 16px;
    opacity: 0.5;
}

a.footer_contact_btn {
}

a.footer_contact_btn span {
    font-size: 1.4rem;
}
	
}