@charset "UTF-8";

.head-box {
	position: relative;
}
.head-box h1{
	width: 100%;
	padding: 2vw 0;
	background-color: transparent;
	position: absolute;
	left: 0;
	bottom: 0;
}
.head-box h1::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: rgba(0,114,188,0.6);
	mix-blend-mode: multiply;
}
.head-box h1 span {
	color: var(--color-white);
	position: relative;
}
@media screen and (min-width: 768px) { /* tab pc */
	.head-box {
		max-height: 880px;
		overflow: hidden;
	}
	.head-box h1{
		padding: 15px 0;
	}
}