@charset "utf-8";

/*
************************************************************************
* footer フッター
************************************************************************
*/

/* ################################################################################################ */
/* ## PC                         ################################################################## */
/* ################################################################################################ */

#toTop {
	width: 60px;
	height: 30px;
	border-radius: 30px 30px 0 0;
	background-color: rgba(188,119,72, 0.76);
	margin: 0 auto;
	display: block;
	text-align: center;
	font-weight: bold;
	color: #fff;
	font-size: 1.5em;
}

#footer-logo {
	width: 125px;
	margin: 0 auto 1em auto;
	text-align: center;
}
.footer-sns {
	width: 125px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.footer-sns .sns-icon {
	width: 56px;
}



#global-footer-contents {
	background-color: rgba(207, 78, 0, 0.7);
	color: #fff;
}

.block-footer {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	padding: 3em 2em 1em 0;
}

.block-footer .block-footer-left {
	flex-basis:  250px;
	border-right: 3px solid #fff;
	justify-content: space-between;
}
.block-footer .block-footer-right {
	max-width: 1220px;
	padding-left: 3em;

	flex-basis: calc(100% - 250px);
}
.block-footer .block-footer-right .row {
	padding-bottom: 8em;
	background-image: url(../../../website/img/common/footer-illust.svg);
	background-size: 100% auto;
	background-position: 50% 100%;
	background-repeat: no-repeat;
}
.footer-contents {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.nav-footer {
	display: flex;
	flex-wrap: wrap;
	max-width: 400px;
	width: 100%;
}
.nav-footer li {
	margin: 0 0 0.5em 0;
	padding: 0;
	list-style: none;
	width: 50%;
}
.footer-address {
	padding-right: 1em;
}

.copyright {
	text-align: center;
	padding-bottom: 2em;
}

/* ################################################################################################ */
/* ## TAB                        ################################################################## */
/* ################################################################################################ */
@media screen and (max-width:1200px) {

	#footer-logo {
		width: 80px;
	}
	.footer-sns {
		width: 80px;
	}
	.footer-sns .sns-icon {
		width: 30px;
	}
	.block-footer .block-footer-left {
		flex-basis:  150px;
	}
	.block-footer .block-footer-right {
		padding-left: 1.5em;
		flex-basis: calc(100% - 150px);
	}
}

/* ################################################################################################ */
/* ## スマホサイト用スタイル ###################################################################### */
/* ################################################################################################ */
@media screen and (max-width:640px) {
	.block-footer {
		flex-wrap: wrap-reverse;
		flex-direction: row-reverse;
		padding: 3em 0 1em 0;
	}
	.block-footer .block-footer-left {
		flex-basis:  100%;
		border-right: none;
	}
	.block-footer .block-footer-right {
		max-width: 1220px;
		padding-left: 0em;

		flex-basis: 100%;
	}
	.block-footer .block-footer-right .row {
		padding-bottom: 4em;
		margin-bottom: 2em;
	}
	.footer-contents {
		flex-wrap: wrap;
	}
	.nav-footer {
		margin-bottom: 1em;
	}
}

