


/*　　横幅いっぱいヘッダ
------------------------------------------------------------------------------------------------------------*/

header {
	position: relative;
	height: 40vh;
	background: url(../img/header_sample.jpg) center / cover;
}

@media all and (max-width: 480px) {
	header {
		margin-top: 75px;
	}
}



/* スクリーントーンのカバー */

.cover::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(255,255,255,0.50);
	/*  background: rgba(0,0,0,.3) radial-gradient(rgba(0,0,0,.3) 25%, transparent 0) center / 5px 5px; */ /* ←ドットスクリーン */
}




/* サイトタイトルをヘッダーに中央配置 */

.page-ttl {
	position: absolute;
	text-align: center;
	z-index: 1;
	top: 50%;
	width: 100%;
	margin: 0;
	padding: 0 .5em;
	color: #3F3E3E;
	font-size: 3rem;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: .1em;
	transform: translateY(-50%);
	/* font-family: 'Caveat', cursive; */
}

.page-ttl p{
	/* font-family: 'Noto Sans JP', sans-serif; */
	font-size: 16px;
	letter-spacing: 0.5em;
	margin: 10px auto 0px;
}


@media all and (max-width: 480px) {
	.page-ttl {
		font-size: 3rem;
	}
	
	.page-ttl p{
	font-size: 14px;
}
}





















