/* -----------------------------------------------------
 * page: aboutus
 * -------------------------------------------------- */

.p-aboutus .l-section-contents .heading {
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.p-aboutus-values p {
	text-align: center;
}

.p-aboutus-role {
	position: relative;
	overflow: hidden;
	border-radius: 6rem;
}

.p-aboutus-role::before {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #f7f7f7;
	opacity: 0;
	transition: opacity 1s ease 1s;
	pointer-events: none;
}

.p-aboutus-role.is-anim-start::before {
	opacity: 1;
}

.p-aboutus-role p {
	text-align: center;
}

@media screen and (min-width: 768px) {
	.p-aboutus .l-section-contents .heading {
		font-size: 4rem;
	}
}