@charset "UTF-8";
/*------------------------
メッセージ
------------------------*/
article {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
article::after {
	content:'';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 600'%3E%3Cpath d='M160 -30 L0 70 L120 130 L0 200 L120 270 L0 330 L120 400 L0 470 L120 530 L0 600' fill='none' stroke='%23fafafa' stroke-width='16' stroke-linejoin='miter' stroke-linecap='butt'/%3E%3C/svg%3E");
	background-size: 100% auto;
	background-repeat: repeat-y;
	background-position: center top;
}
article .block {
	position: relative;
	z-index: 1;
}
article .block:not(:last-of-type) {
	margin-bottom: 100px;
}
article .block .en {
	position: absolute;
	left: 0;
	top: -66px;
	font-size: 10rem;
	font-weight: 300;
	color: var(--bgcolor);
	line-height: 1;
	z-index: -1;
}
article .block .inner {
	width: 1200px;
	margin: auto;
}
article .block:nth-child(odd) .inner .txt {
	flex: 1;
}
article .block:nth-child(even) .inner .txt {
	width: 852px;
}
article .block .ttl {
	margin-bottom: 20px;
}
article .block .txt h2 {
	font-size: 3.8rem;
	font-weight: bold;
	color: var(--btncolor);
	margin-bottom: 10px;
}
article .block .txt p {
	font-size: 2.1rem;
	text-align: justify;
	line-height: 1.66;
	margin-bottom: 20px;
}
article .block .img {
	width: 490px;
	height: 530px;
	margin-left: 60px;
}
article .block:first-of-type .img {
	position: relative;
}
article .block:first-of-type .img::before {
	content: '';
	display: block;
	position: absolute;
	top: -17px;
	right: -15px;
	width: 57px;
	height: 57px;
	background: var(--career);
	z-index: 2;
}
article .block:first-of-type .img::after {
	content: '';
	display: block;
	position: absolute;
	top: -27px;
	right: -5px;
	width: 57px;
	height: 57px;
	background: var(--newgraduate);
	z-index: 2;
}
article .block .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}
@media screen and (max-width: 1240px) {
	article .block .inner {
		width: 1160px;
	}
}