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

/*ヘッダー*/
/*PC*/
@media only screen and (min-width: 1025px) {
	header {
		z-index: 100;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 80px;
		background: #fff;
	}
	
	header a#logo {
		position: absolute;
		top: 50%;
		left: 100px;
		transform: translateY(-50%) translateX(0);
		font-size: 20px;
		font-weight: 500;
		letter-spacing: 1px;
		line-height: 20px;
		text-align: left;
		color: #202020;
	}
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	header {
		z-index: 100;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		background: #fff;
	}
	
	header a#logo {
		position: absolute;
		top: 50%;
		left: 15px;
		transform: translateY(-50%) translateX(0);
		font-size: 16px;
		font-weight: 500;
		letter-spacing: 1px;
		line-height: 16px;
		text-align: left;
		color: #202020;
	}
}

/*フッター*/
/*PC*/
@media only screen and (min-width: 1025px) {
	footer {
		position: relative;
		width: 100%;
		height: auto;
		padding: 60px 0 25px 0;
		background: #FFF5DA;
	}
	
	footer .credit {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	footer .credit p {
		font-size: 14px;
		font-weight: 400;
		letter-spacing: 1px;
		line-height: 14px;
		text-align: center;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	footer {
		position: relative;
		width: 100%;
		height: auto;
		padding: 40px 0 15px 0;
		background: #FFF5DA;
	}
	
	footer .credit {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	footer .credit p {
		font-size: 12px;
		font-weight: 400;
		letter-spacing: 0.5px;
		line-height: 12px;
		text-align: center;
	}
}

/*トップページ*/
/*PC*/
@media only screen and (min-width: 1025px) {
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	
	
}