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

h3,
h4 {
	text-wrap: unset;
}

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

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) {
	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;
		}
}

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

.officeBox .office__left {
	width: min(49%, 640px);
	margin: 0;
	padding: 0;
}

.officeBox .office__right {
	width: min(49.5%, 660px);
}

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

.office__left .leftBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 2.0rem;
	margin: 0 auto 20px 0;
	padding: 0;
}

.office__left iframe {
	width: min(100%, 640px);
}

.leftBox div:nth-child(1) {
	width: min(40%, 200px);
	font-size: 3.0rem;
	color: #006cb8;
	margin-bottom: 1rem;
}

.leftBox p {
	font-size: 2rem;
}

@media screen and (max-width: 767px) {
	.officeBox {
		margin: 30px auto 0;
	}

	.main .officeBox:not(:first-of-type) {
		margin: 100px auto 0;
	}

	.officeBox .office__left,
	.officeBox .office__right {
		width: 100%;
	}

	.officeBox .office__left {
		margin: 0 auto 30px 0;
	}

	.office__left iframe {
		width: 100%;
	}

	.leftBox div:nth-child(1) {
		font-size: 2.0rem;
	}

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

				.leftBox p span {
				display: block;
				}
}