main {
	padding-top: 130px;
}

#mainContent {
	position: relative;
	margin: 150px 0 160px 0;
}

#mainContent h1 {
	color: var(--mainColor);
	font-size: 50px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 50px;
	margin: 0 8% 160px 8%;
}

#mainContent>p {
	position: absolute;
	top: -46px;
	left: 8%;
	color: var(--mainColor);
	font-size: 16px;
}

#mainContent section {
	background-color: #F8F8F8;
	padding: 0 0 50px 8%;
	margin-right: 8%;
}

#missionTitle {
	position: relative;
	margin-bottom: 90px;
}

#missionTitle:after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 50px;
	height: 1px;
	background-color: var(--mainColor);
}

#missionTitle h2 {
	color: var(--mainColor);
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 30px;
	padding: 140px 0 45px 0;
}

#missionTitle p {
	position: absolute;
	top: 90px;
	left: 0;
	color: var(--mainColor);
	font-size: 16px;
}

#mainContent section h4 {
	color: var(--fontColor);
	font-size: 25px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 40px;
	margin-bottom: 45px;
}

#mainContent section>p {
	color: var(--fontColor);
	font-size: 16px;
	line-height: 40px;
	margin-bottom: 40px;
}

#profile {
	background-color: #F8F8F8;
	padding: 0 8% 50px 8%;
}

#profTitle {
	position: relative;
	text-align: center;
	margin-bottom: 90px;
}

#profTitle h3 {
	color: var(--mainColor);
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 30px;
	padding: 140px 0 45px 0;
}

#profTitle p {
	position: absolute;
	top: 90px;
	left: 0;
	right: 0;
	color: var(--mainColor);
	font-size: 16px;
}

#profTitle:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 50px;
	height: 1px;
	background-color: var(--mainColor);
	margin-left: -25px;
}

#profArea {
	display: flex;
	justify-content: space-between;
	margin: 90px 0 100px 0;
	overflow: hidden;
}

#profLeft,
#profRight {
	width: 45%;
}

#profLeft {
	display: flex;
	align-items: center;
}

#profLeft img {
	max-width: 100%;
	max-height: 710px;
}

#profRight {
	padding: 30px 0;
}

#profRight p {
	color: var(--fontColor);
	font-size: 16px;
	line-height: 40px;
}

#profRight h4 {
	color: var(--fontColor);
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 40px;
	margin: 25px 0 10px 0;
}

#profRight table {
	width: 100%;
	text-align: left;
	margin-top: 90px;
}

#profRight table tr th {
	width: 70px;
	padding-right: 30px;
}

#profRight table tr th p {
	font-weight: 400;
}

#messageArea p {
	color: var(--fontColor);
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	margin-bottom: 40px;
}

#company {
	background-color: #F8F8F8;
	padding: 0px 8% 90px 100px;
	margin: 160px 0 160px 8%;
}

#companyTitle {
	position: relative;
	margin-bottom: 90px;
}

#companyTitle:after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 50px;
	height: 1px;
	background-color: var(--mainColor);
}

#companyTitle h3 {
	color: var(--mainColor);
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 30px;
	padding: 140px 0 45px 0;
}

#companyTitle p {
	position: absolute;
	top: 90px;
	left: 0;
	color: var(--mainColor);
	font-size: 16px;
}

#company section table {
	width: 100%;
	text-align: left;
}

#company section table tr {
	border-bottom: 1px solid #E0E0E0;
}

#company section table tr th {
	max-width: 300px;
	min-width: 90px;
	vertical-align: middle;
}

#company section table tr th,
#company section table tr td {
	padding: 50px 0;
}

#company section p {
	color: var(--fontColor);
	font-size: 16px;
	font-weight: 400;
	line-height: 40px;
}

#company section p a {
	position: relative;
	color: var(--fontColor);
	font-weight: 500;
	text-decoration: none;
	padding: 5px 0;
}

#company section p a:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background-color: var(--fontColor);
	opacity: 0.0;
	transition: opacity .3s ease-out;
}

#company section p a:hover:after {
	opacity: 1.0;
}

@media only screen and (max-width: 1279px) {
	#mainContent h1 {
		font-size: 45px;
	}

	#mainContent>p {
		top: -35px;
		font-size: 15px;
	}

	#missionTitle:after {
		width: 40px;
	}

	#missionTitle h2 {
		font-size: 25px;
	}

	#missionTitle p {
		font-size: 15px;
	}

	#mainContent section h4 {
		font-size: 18px;
		line-height: 35px;
	}

	#mainContent section>p {
		font-size: 15px;
		line-height: 35px;
	}

	#profTitle:after {
		width: 40px;
		margin-left: -20px;
	}

	#profTitle h3 {
		font-size: 25px;
	}

	#profTitle p {
		font-size: 15px;
	}

	#profRight p {
		font-size: 14px;
		line-height: 1;
	}

	#profRight h4 {
		font-size: 30px;
	}

	#profRight table tr th {
		width: 55px;
		padding-right: 40px;
	}

	#profRight table tr th p {
		line-height: 35px;
	}

	#profRight table tr td p {
		line-height: 35px;
	}

	#messageArea p {
		font-size: 15px;
		line-height: 35px;
	}

	#companyTitle:after {
		width: 40px;
	}

	#companyTitle h3 {
		font-size: 25px;
	}

	#companyTitle p {
		font-size: 15px;
	}

	#company section p {
		font-size: 15px;
		line-height: 40px;
	}
}

@media only screen and (max-width: 599px) {
	#mainContent {
		position: relative;
		margin: 150px 0 160px 0;
	}

	#mainContent h1 {
		font-size: 45px;
		margin: 0 30px 160px 30px;
	}

	#mainContent>p {
		top: -35px;
		left: 30px;
		font-size: 15px;
	}

	#mainContent section {
		background-color: #F8F8F8;
		padding: 0 30px 55px 30px;
		margin-right: 30px;
	}

	#missionTitle {
		margin-bottom: 70px;
	}

	#missionTitle h2 {
		font-size: 25px;
		padding: 125px 0 30px 0;
	}

	#missionTitle p {
		font-size: 15px;
	}

	#mainContent section h4 {
		font-size: 18px;
		line-height: 35px;
	}

	#mainContent section>p {
		font-size: 15px;
		line-height: 35px;
		margin-bottom: 35px;
	}

	#profile {
		padding: 0 30px 55px 30px;
	}

	#profTitle {
		margin-bottom: 70px;
	}

	#profTitle h3 {
		font-size: 25px;
		padding: 125px 0 30px 0;
	}

	#profTitle p {
		font-size: 15px;
	}

	#profArea {
		flex-direction: column;
		justify-content: flex-start;
		margin: 100px 0 90px 0;
	}

	#profLeft,
	#profRight {
		width: 100%;
	}

	#profLeft {
		display: block;
	}

	#profLeft img {
		max-width: 100%;
		max-height: none;
	}

	#profRight {
		padding: 70px 0 0 0;
	}

	#profRight p {
		font-size: 14px;
		line-height: 1;
	}

	#profRight h4 {
		font-size: 30px;
		margin: 20px 0 10px 0;
	}

	#profRight table {
		width: 100%;
		margin-top: 70px;
	}

	#profRight table tr th {
		width: 55px;
		padding-right: 40px;
	}

	#profRight table tr th p {
		line-height: 35px;
	}

	#profRight table tr td p {
		line-height: 35px;
	}

	#messageArea p {
		font-size: 15px;
		line-height: 35px;
		text-align: left;
		margin-bottom: 35px;
	}

	#company {
		padding: 0px 30px 90px 30px;
		margin: 160px 0 160px 30px;
	}

	#companyTitle {
		margin-bottom: 40px;
	}

	#companyTitle h3 {
		font-size: 25px;
		padding: 125px 0 30px 0;
	}

	#companyTitle p {
		font-size: 15px;
	}

	#company section table tr th,
	#company section table tr td {
		padding: 30px 0;
	}

	#company section table tr th {
		width: 90px;
	}

	#company section p {
		font-size: 15px;
		line-height: 40px;
	}

	#company section p a:hover:after {
		opacity: 1.0;
	}
}