@charset "utf-8";
/* CSS Document */


h3,
h4 {
	text-wrap: unset;
}

.main {
	width: min(90%, 1230px);
	margin: 0 auto;
}

.greetBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 50px auto 0;
	padding: 0;
}

.greetBox .greet__left,
.greetBox .greet__right {
	width: calc(100% / 2 - 20px);
}

.greet__left p {
	font-size: 2.0rem;
	line-height: 1.75;
	font-weight: 400;
	margin-bottom: 1.8rem;
}

.greet__left p:last-of-type {
	margin-bottom: 0;
}

.greet__right .right__img {
	overflow: hidden;
	clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.greet__president {
	text-align: right;
	margin: 50px auto 0;
	padding: 0;
	font-family: "Noto Serif JP", serif;
	font-size: 4.0rem;
	font-weight: 700;
}

.greet__president span {
	display: inline-block;
	padding: 0 20px 0 0;
	font-family: "Noto Sans JP", serif;
	font-size: 2.0rem;
	font-weight: 600;
}

h3 {
	font-size: 4.6rem;
	font-weight: 600;
	position: relative;
	margin-left: 3rem;
}

h3::before {
	content: "";
	position: absolute;
	left: -30px;
	top: 20px;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	background: #6cbb63;
}

h3 span {
	display: inline-block;
	font-size: 3.6rem;
	font-weight: 700;
	padding: 0 0 0 10px;
	color: #006cb8;
}

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

	.greetBox {
		margin: 30px auto 0;
	}

	.greetBox .greet__left,
	.greetBox .greet__right {
		width: 100%;
	}

	.greetBox .greet__left {
		order: 2;
		margin: 50px 0 0;
	}

	.greetBox .greet__right {
		order: 1;
		position: relative;
	}

	.greet__right .right__img {
		/* margin-left: -258px;
		width: 600px; */
	}

	.greet__left p {
		font-size: 1.8rem;
	}

	.greet__president {
		margin: 20px auto 0;
	}

	h3 {
		font-size: 2.8rem;
		margin: 0 0 0 20px;
	}

	h3::before {
		width: 10px;
		height: 10px;
		left: -20px;
		top: 12px;
	}

	h3 span {
		font-size: 1.8rem;
	}
}