@charset "utf-8";

/* 下階層フッター
==============================================================================================*/
footer.lower{
    margin: 3em 0 0;
	padding: 0;
	background: #fff;
    border-top: 1px solid #dedede;
}

footer .fwrap a{
text-decoration: none;
color: #2d8acd;
}
footer .fwrap a:hover{
	text-decoration: underline;
	opacity: 0.7;
}
footer .fwrap{
	display: grid;
	grid-template-columns: 1fr 4fr;
	grid-template-rows: 1fr;
	grid-template-areas: 
	"item01 item02";
	max-width: 1000px;
	margin: 0 auto;
	padding: 1.5em 1em;
	color: #333;
	font-size: 1.3rem;
	line-height: 1.5;
	background: #fff;
}

.item01{
	grid-area: item01;
	padding-bottom: 1em;
}
.item02{
	grid-area: item02;
	padding-left: 1em;
}

.fwrap .fnav{
	display: flex;
	flex-wrap: wrap;
	margin-top: 1em;
	list-style: none;
}
.fnav li::after{
	content: " ｜";
	padding-right: 0.3em;
}
.fnav li:last-child::after{
	content: none!important;
	padding-right: 0;
}

.copyright{
	padding: 0.5em 1em 1.5em;
	color: #777;
	text-align: center;
	background: #FFF;
	border-top: 1px solid #ccc;
}

@media screen and (max-width:768px){
	footer{
		margin-bottom: 0!important;
		padding: 0!important;
		color: #000!important;   
		background: #fff!important;
	}
	footer.lower{
		margin-top: 2em;
		padding: 0 1em;
	}
	footer .fwrap{
		grid-template-columns: 1fr;
		grid-template-areas:
		"item01"
		"item02";
	}
	.item01{
		margin: 0 auto;
		text-align: center;
	}
	.item02{
		padding: 1em 0;
	}
}