@charset "utf-8";
/* CSS Document */

/* =======================================

	フッター
	
========================================== */

/* 全体
------------------------------------------ */
footer#footerArea{
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1;
	background: #EEEEEE;
	width: 100%;
	padding-top: 0px;
	overflow: hidden;
}
footer#footerArea span{
	font-family: 'Noto Sans JP', sans-serif;
}
footer#footerArea *{
	font-weight: 300;
}
@media screen and (max-width: 1024px) {
#fixedFooterArea+footer#footerArea{
	border-bottom: 1px solid rgba(68,68,68,1.0);
}
}

/* フッターナビ
------------------------------------------ */
footer#footerArea .footerNav{
	font-size: 1.2rem;
	padding-top: clamp(40px, 40 * (100vw - 768px) / 1152 + 40px, 80px);
	padding-bottom: clamp(40px, 40 * (100vw - 768px) / 1152 + 40px, 80px);
}
footer#footerArea .footerNav .footerNavInner{
	width: calc(100% - 40px * 2);
    max-width: 1000px;
    margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
footer#footerArea .footerNav ul li{
	margin-bottom: 20px;
}
footer#footerArea .footerNav ul li:last-of-type{
	margin-bottom: 0;
}
footer#footerArea .footerNav ul li a{
	color: rgba(0,0,0,1.00);
}
footer#footerArea .footerNav ul li a:hover{
	opacity: 0.5;
	transition: 0.2s;
}
@media screen and (max-width: 768px) {
footer#footerArea .footerNav .footerNavInner{
	display: flex;
	flex-direction: column;
}
footer#footerArea .footerNav ul{
	padding-top: 1.5em;
	padding-bottom: 1.5em;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
footer#footerArea .footerNav ul:first-of-type{
	padding-top: 0;
}
footer#footerArea .footerNav ul:last-of-type{
	border-bottom: none;
	padding-bottom: 0;
}
footer#footerArea .footerNav ul li{
	margin-bottom: 0;
}
footer#footerArea .footerNav ul li a{
	display: inline-block;
	padding: 10px;
}
}

/* コピーライト
------------------------------------------ */
footer#footerArea .copyright{
	height: 70px;
	width: 100%;
	background: rgba(0,0,0,1.00);
	position: relative;
	color: rgba(255,255,255,1.00);
}
footer#footerArea small{
	display: block;
	font-size: 1.1rem;
	font-weight: 300;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 1024px) {
footer#footerArea .copyright{
	height: 50px;
}
}
