@charset "utf-8";

.p-error {
	background: url(../img/bg1.jpg) no-repeat center;
	background-size: cover;
	text-align: center;
	padding-top: 80px;
	padding-bottom: 80px;
	position: relative;
	color: #fff;
}
.p-error::before {
	display: block;
	content: "";
	position: absolute;
	background: rgba(240,172,173,.5);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	mix-blend-mode: lighten;
}
.p-error .content-inner {
	position: relative;
	z-index: 2;
/*	text-shadow: 0px 3px 13px rgba(108,41,41,80%);*/
	text-shadow: 0px 3px 13px rgba(108,108,108,80%);
	text-align: left;
}
.p-error h2 {
	font-size: 80px;
	font-weight: 900;
	line-height: 1.5;
	margin-bottom: 10px;
}
.p-error h3 {
	font-size: 30px;
	line-height: 1.5;
	font-weight: 700;
	margin-bottom: 60px;
}
.p-error p {
	font-size: 20px;
	font-weight: 500;
}
.p-error ul {
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
	text-shadow: none;
}
.p-error li {
	width: 31%;
	margin-left: 3.5%;
}
.p-error li:nth-child(3n+1) {
	margin-left: 0;
}
.p-error li a {
	width: 100%;
}


@media screen and (max-width: 768px) {

	.p-error {
		padding-top: 40px;
		padding-bottom: 10px;
	}
	.p-error h2 {
		font-size: 42px;
		margin-bottom: 6px;
	}
	.p-error h3 {
		font-size: 16px;
		margin-bottom: 30px;
	}
	.p-error p {
		font-size: 16px;
	}
	.p-error ul {
		display: block;
		margin-top: 35px;
	}
	.p-error li {
		width: auto;
		margin-left: 0;
		margin-bottom: 20px;
	}
	.p-error li:last-child {
		margin-bottom: 0;
	}

}