@charset "UTF-8";


main {
	display: flex;
}


.ContentsArea {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 10%);
	height: 100%;
	padding: 50px 40px;
}

.ContentsArea h2 {
	font-size: 30px;
	padding: 0 0 50px;
	font-weight: 500;
	text-align: center;
}

.ContentsArea  .name {
	font-size: 25px;
	padding: 0 0 20px;
	font-weight: 500;
}
.ContentsArea p {
	font-weight: 500;
}

@media screen and (max-width:599px) {
	.ContentsArea {
		width: 100%!important;
		padding: 80px 25px 0px;
	}
	
	.ContentsArea h2 {
		font-size: 25px;
	}
	
	.ContentsArea  .name {
		font-size: 20px;
	}
}

