@charset "UTF-8";

/**************************************************/
/* フッター */
/**************************************************/
/* 御注意 */
.attention {
	padding: 2rem 5%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.1rem;
	line-height: 1.4;
}
.attention i {
	margin-right: 1rem;
	font-size: 2rem;
}
.attention span {
	line-height: 1.4;
}


/* バナー */
footer .bana {
	padding: 4rem 5%;
	line-height: 0;
	display: flex;
	justify-content: center;
	background: #aaa;
}
footer .bana li {
	margin: 0 0.5rem;
}
footer .bana li img {
	max-height: 100px;
}

/* フッター */
footer .wrap {
	padding: 2rem 5%;
	color: #9eaca1;
}
footer .wrap a {
	color: #9eaca1;
}
footer .wrap li ,
footer .wrap p ,
footer .wrap a {
	line-height: 1.2;
}

/* ロゴ */
footer h1 {
	margin: 4rem 0;
	text-align:center;
	font-size: 1rem;
	line-height: 1;
}
footer h1 img {
	margin-top: 1rem;
	width: 50%;
	max-width: 200px;
}

/* SNS */
footer .sns {
	margin: 4rem -3px;
	display: flex;
	justify-content: center;
}
footer .sns li a {
	display: block;
	margin: 0 3px;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 25px;
	background: #9eaca1;
	color: #3d5943;
}
footer .sns li a i {
	margin: 0;
}

/* ナビ */
footer nav {
	width: 47.5%;
	margin: 2rem 0 ;
}
footer nav ul {
	border-top: 1px solid #506955;
}
footer nav li {
	padding-left: 2rem;
	border-bottom: 1px solid #506955;
	position: relative;
}
footer nav li:before {
	content: '-';
	position: absolute;
	top: 0.5rem;
	left: 0.75rem;
}
footer nav li a {
	display: block;
	padding: 0.5rem 0;
	font-size: 1.1rem;
}

/* コピーライト */
footer .copy {
	margin: 2rem 0 ;
	text-align: center;
}

/**************************************************/
/* スマホの時 */
/**************************************************/
@media only screen and (max-width: 500px) {
	/* フッターバナー */
	footer .bana {
		justify-content: space-between;
		flex-wrap: wrap;
	}
	footer .bana li {
		width: 48.5%;
		margin: 0.5rem 0;
	}
	footer .bana li:nth-child(3) {
		width: 100%;
	}
	footer .bana li img {
		width: 100%;
		height: auto;
		max-height: none;
	}
	/* ナビ */
	footer nav.main {
		width: 35%;
	}
	footer nav.document {
		width: 60%;
	}
}