@charset "UTF-8";

footer {
	background-image: url("../img/footer/footer_bg.jpg");
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	background-color: #101010;
	position: relative;
	padding-top: 180px;
}

.footer_contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 5%;
    backdrop-filter: blur(4px);
    color: #fff;
    z-index: 9998;
    width: 50%;
    position: relative;
}

.footer_contactbtn {
	border-right: 1px solid #fff;
}

.footer_contact a h2 {
    color: #fff;
    font-family: "Libre Caslon Display", serif;
    font-size: 4rem;
    margin-right: 40px;
    line-height: 30px;
}

.footer_contact a span {
    display: block;
    padding: 20px;
    margin-left: 40px;
    color: #fff;
    border: 0.5px solid #fff;
    border-radius: 100%;
	position: relative;
}

.footer_contact a:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: rgba(255,255,255,0.2);
    transition: all 1s ease-in-out 0s;
	opacity: 0;
}

.footer_contact a:hover:after {
	width: 100%;
	opacity: 1;
}

.footer_contact {
    border-top: 1px solid #fff;
    overflow: hidden;
    position: relative;
    display: flex;
    border-bottom: 1px solid #fff;
}

.footer_contact a span:before {
    border-right: 0.5px solid #fff;
    display: block;
    content: "";
    position: absolute;
    width: 6px;
    right: 18px;
    height: 6px;
    border-bottom: 0.5px solid #fff;
    transform: rotate(-45deg);
    top: 17px;
}

ul.footer_sns {
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: space-between;
}

ul.footer_sns li a {
    color: #fff;
    display: flex;
    padding: 40px 0;
    justify-content: center;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 9999;
}

ul.footer_sns li a img {
    margin-right: 10px;
}

ul.footer_sns li {
    width: 25%;
    border-right: 1px solid #fff;
    position: relative;
    backdrop-filter: blur(5px);
}

ul.footer_sns li:last-child {
    border: none;
}

ul.footer_sns li:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: rgba(255,255,255,0.2);
    transition: all 0.6s ease-in-out 0s;
	opacity: 0;
}

ul.footer_sns li:hover:after {
	width: 100%;
	opacity: 1;
}

.footer_innerr {
    display: flex;
    justify-content: space-between;
}

ul.footer_menu {
    width: 50%;
    display: flex;
}

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

ul.footer_menu li a {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 300;
}

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

small {
    font-size: 1.3rem;
    font-weight: 300;
    font-family: "Libre Caslon Display", serif;
    letter-spacing: 0.5px;
}

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

ul.footer_sns li:nth-child(2), ul.footer_sns li:nth-child(4) {
    border-right: none;
}
	
.footer_contact a {
	display: block;
	padding: 30px 0;
	text-align: center;
	width: 100%;
}

.footer_contact a h2 {
    text-align: center;
    font-size: 2.4rem;
    margin: 0 auto 10px;
}

.footer_contact a span {
    display: none;
}

.footer_contact {
    display: block;
}

.footer_contactbtn {
    border-right: none;
    border-bottom: 1px solid #fff;
}

ul.footer_sns {
    flex-wrap: wrap;
    border-bottom: none;
}

ul.footer_sns li {
    width: 50%;
    border-bottom: 1px solid #fff;
}

ul.footer_sns li a {
	width: 100%;
	padding: 20px 0;
}

ul.footer_sns li:last-child {
    width: 50%;
    border-bottom: 1px solid #fff;
}

ul.footer_menu {
    width: 100%;
    justify-content: center;
}

.footer_inner {
    display: block;
}

small {
    margin-top: 30px;
    display: block;
    text-align: center;
}

ul.footer_menu li {
    margin: 0 10px;
}
}