@charset "UTF-8";

.footer-inner {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	padding: 100px 50px 50px;
	margin: 0 auto;
}

/**/

.footer-inner .foot-info {
	width: 40%;
}

.footer-inner .foot-info .logo {
	width: 240px;
	height: auto;
	margin-bottom: 30px;
}

.footer-inner .foot-info .title {
	font-size: 0.8em;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 15px;
}

.footer-inner .foot-info .company-name {
	font-size: 1.2em;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 15px;
}

.footer-inner .foot-info .address {
	font-size: 0.8em;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 10px;
}

.footer-inner .foot-info a.gmap {
	position: relative;
	font-size: 0.8em;
	font-weight: 500;
	line-height: 1;
	text-decoration: underline;
	padding-left: 18px;
}

.footer-inner .foot-info a.gmap:hover {
	text-decoration: none;
}

.footer-inner .foot-info a.gmap::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 2px;
	width: 12px;
	height: 14px;
	background-image: url("../img/icon-map.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/**/

.footer-inner .foot-link {
	width: 60%;
}

.foot-link .foot-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
	margin-bottom: 40px;
}

.foot-link .foot-cta .foot-cta-document {
    width: 100%;
    min-width: 150px;
	max-width: 200px;
    font-size: 1.0em;
    font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    background: #132e4f;
	background-image: url("../img/arrow_wh.svg");
	background-size: 12px 13px;
	background-position: 90% 50%;
	background-repeat: no-repeat;
	border: 1px solid #132e4f;
    border-radius: 50px;
    margin-right: 10px;
	transition: all 0.3s;
}

.foot-link .foot-cta .foot-cta-document:hover {
    color: #132e4f;
    background: #ffffff;
	background-image: url("../img/arrow_navy.svg");
	background-size: 12px 13px;
	background-position: 90% 50%;
	background-repeat: no-repeat;
	border: 1px solid #132e4f;
	transition: all 0.3s;
}

.foot-link .foot-cta .foot-cta-contact {
    width: 100%;
	min-width: 150px;
	max-width: 200px;
    font-size: 1.0em;
    font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    background: #e63818;
	background-image: url("../img/arrow_wh.svg");
	background-size: 12px 13px;
	background-position: 90% 50%;
	background-repeat: no-repeat;
	border: 1px solid #e63818;
    border-radius: 50px;
	transition: all 0.3s;
}

.foot-link .foot-cta .foot-cta-contact:hover {
    color: #e63818;
    background: #ffffff;
	background-image: url("../img/arrow_red.svg");
	background-size: 12px 13px;
	background-position: 90% 50%;
	background-repeat: no-repeat;
	border: 1px solid #e63818;
	transition: all 0.3s;
}

.foot-link .link-menu {
    display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
}

.foot-link .link-menu li {
	margin-left: 25px;
}

.foot-link .link-menu li a {
	font-size: 1.0em;
	font-weight: 700;
	line-height: 1;
	transition: all 0.3s;
}

.foot-link .link-menu li a:hover {
	color: #e63818;
	transition: all 0.3s;
}



/**/

.footer-bottom {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	padding: 0 50px 50px;
	margin: 0 auto;
}

.footer-bottom .sublink {
	display: flex;
	justify-content: flex-start;
}

.footer-bottom .sublink li {
	margin-right: 30px;
}

.footer-bottom .sublink li a {
	position: relative;
	font-size: 0.75em;
	font-weight: 400;
	line-height: 1;
	color: #969696;
	padding-right: 18px;
}

.footer-bottom .sublink li a:hover {
	text-decoration: underline;
}

.footer-bottom .sublink li a::after {
	content: "";
	position: absolute;
	width: 14px;
	right: 0;
	top:0;
	bottom: 0;
	background-image: url("../img/icon-blink_gray.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 14px;
}

.footer-bottom .copyright {
	font-size: 0.8em;
	font-weight: 400;
	line-height: 1;
	color: #969696;
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
@media screen and (max-width: 768px) {
	
.footer-inner {
	flex-direction: column;
	padding: 60px 15px 20px;
}
	
/**/

.footer-inner .foot-info {
	width: 100%;
	margin-bottom: 30px;
	text-align: center;
}

.footer-inner .foot-info .logo {
	width: 180px;
	height: auto;
	margin-bottom: 20px;
}

.footer-inner .foot-info .title {
	font-size: 0.7em;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 15px;
}

.footer-inner .foot-info .company-name {
	font-size: 1.2em;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 15px;
}

.footer-inner .foot-info .address {
	font-size: 0.7em;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 10px;
}

.footer-inner .foot-info a.gmap {
	position: relative;
	font-size: 0.7em;
	font-weight: 500;
	line-height: 1;
	text-decoration: underline;
	padding-left: 18px;
}

.footer-inner .foot-info a.gmap:hover {
	text-decoration: none;
}

.footer-inner .foot-info a.gmap::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 2px;
	width: 12px;
	height: 14px;
	background-image: url("../img/icon-map.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/**/

.footer-inner .foot-link {
	width: 100%;
}

.foot-link .foot-cta {
	display: none !important;
}

.foot-link .foot-cta .foot-cta-document {
    width: 100%;
    min-width: 150px;
	max-width: 200px;
    font-size: 1.0em;
    font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    background: #132e4f;
	background-image: url("../img/arrow_wh.svg");
	background-size: 12px 13px;
	background-position: 90% 50%;
	background-repeat: no-repeat;
	border: 1px solid #132e4f;
    border-radius: 50px;
    margin-right: 10px;
	transition: all 0.3s;
}

.foot-link .foot-cta .foot-cta-document:hover {
    color: #132e4f;
    background: #ffffff;
	background-image: url("../img/arrow_navy.svg");
	background-size: 12px 13px;
	background-position: 90% 50%;
	background-repeat: no-repeat;
	border: 1px solid #132e4f;
	transition: all 0.3s;
}

.foot-link .foot-cta .foot-cta-contact {
    width: 100%;
	min-width: 150px;
	max-width: 200px;
    font-size: 1.0em;
    font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    background: #e63818;
	background-image: url("../img/arrow_wh.svg");
	background-size: 12px 13px;
	background-position: 90% 50%;
	background-repeat: no-repeat;
	border: 1px solid #e63818;
    border-radius: 50px;
	transition: all 0.3s;
}

.foot-link .foot-cta .foot-cta-contact:hover {
    color: #e63818;
    background: #ffffff;
	background-image: url("../img/arrow_red.svg");
	background-size: 12px 13px;
	background-position: 90% 50%;
	background-repeat: no-repeat;
	border: 1px solid #e63818;
	transition: all 0.3s;
}

.foot-link .link-menu {
    justify-content: center;
	margin-bottom: 20px;
}

.foot-link .link-menu li {
	margin-left: 25px;
}
	
.foot-link .link-menu li:first-child {
	margin-left:0;
}

.foot-link .link-menu li a {
	font-size: 0.9em;
	font-weight: 700;
	line-height: 1;
	transition: all 0.3s;
}

.foot-link .link-menu li a:hover {
	color: #e63818;
	transition: all 0.3s;
}



/**/

.footer-bottom {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1200px;
	padding: 0 15px 50px;
	margin: 0 auto;
}

.footer-bottom .sublink {
	justify-content: center;
	margin-bottom: 20px;
}

.footer-bottom .sublink li {
	margin-right: 15px;
}
	
.footer-bottom .sublink li:nth-child(2) {
	margin-right: 0;
}

.footer-bottom .sublink li a {
	position: relative;
	font-size: 0.7em;
	font-weight: 400;
	line-height: 1;
	color: #969696;
	padding-right: 15px;
}

.footer-bottom .sublink li a:hover {
	text-decoration: underline;
}

.footer-bottom .sublink li a::after {
	content: "";
	position: absolute;
	width: 12px;
	right: 0;
	top:0;
	bottom: 0;
	background-image: url("../img/icon-blink_gray.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px;
}

.footer-bottom .copyright {
	font-size: 0.7em;
	font-weight: 400;
	line-height: 1;
	color: #969696;
	text-align: center;
}
	
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/		
}