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


h3,
h4 {
	text-wrap: unset;
}

.main {
	width: min(90%, 1230px);
	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;
	}
}


.company__profile {
	display: table;
	font-size: 2.0rem;
	font-weight: 400;
	line-height: 1.75;
	width: 100%;
	margin: 50px 0 10rem;
	border-bottom: 1px solid #dcdcdc;
}

.company__profile .profile__row {
	display: table-row;
}

.profile__ttl,
.profile__txt {
	display: table-cell;
	border-top: 1px solid #dcdcdc;
	padding: 20px 0;
}

.profile__ttl {
	width: 25%;
	font-weight: 600;
	color: #006cb8;
}

.profile__txt {
	vertical-align: middle;
}

.txt__areaBox {
	padding: 0 0 20px 0;
}

@media screen and (max-width: 767px) {
	.company__profile {
		font-size: 1.8rem;
		margin: 4rem 0 5rem;
	}

	.profile__ttl,
	.profile__txt {
		display: block;
	}

	.profile__ttl {
		width: 100%;
		padding: 20px 0 0;
	}

	.profile__txt {
		border-top: 0;
		padding: 0 0 20px;
	}
}

/* 
h3:nth-child(3) {
	margin: 100px 0 0;
} */

.history__list {
	position: relative;
	font-size: 2.0rem;
	line-height: 1.75;
	margin: 50px 0 0;
}

.history__list:before {
	content: '';
	position: absolute;
	border-left: 2px solid #006cb8;
	top: 0;
	left: 5px;
	bottom: -5px;
}

.history__list li {
	display: flex;
	position: relative;
}

.history__list>li:before {
	content: '';
	position: absolute;
	left: -40px;
	top: 10px;
	width: 12px;
	height: 12px;
	background: #006cb8;
	border-radius: 100%
}

.history__list .history__day {
	font-weight: 700;
	color: #006cb8;
	width: min(30%, 170px);
	padding: 0 0 30px;
}

.history__list .history__txt {
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.history__list li {
		display: block;
	}

	.history__list .history__day {
		padding: 0;
	}

	.history__list .history__txt {
		font-size: 1.8rem;
		padding: 0 0 30px;
	}
}