body {
	margin: 0;
	text-align: left;
	font-family: 'PT Sans', sans-serif;
	font-size: 16px;
	color: #000;
	background-color: #EDEEF0;
}

.container {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding-bottom: 40px;
}

a {
	color: #0096FF;
}

p {
	padding-top: 50px;
}

h1 {
	font-size: 72px;
	font-weight: 700;
	color: #000;
	margin: 0px;
}

h2 {
	font-size: 36px;
	margin-bottom: -30px;
}

.title {
	height: 200px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
}

.menu {
	width: 140px;
	height: 35px;
	margin: 0 auto;
	border-style: solid;
	border-radius: 10px;
	border-width: 1px;
	border-color: #ccc;
	background-color: #fff;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.button {
	text-decoration: underline;
}

.about {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	padding-top: 50px;
}

.about_title {
	flex-basis: 400px;
	font-size: 72px;
	font-weight: 700;
	line-height: 100%;
	padding-bottom: 50px;
	padding-right: 20px;
}

.about_txt {
	flex-basis: 400px;
}

 @media screen and (max-width: 500px){
 	
 	.about {
 		flex-direction: column;
 		padding-left: 20px;
 	}

 	.about_title {
 		flex-basis: 100px;
 		font-size: 36px;
 	}

 }

.about_txt_title {
	font-size: 24px;
	font-weight: 700;
	padding-top: 20px;
}

.about_txt_content {
	padding-top: 5px;
}

.social {
	padding-top: 50px;
	width: 200px;
	margin-left: auto;
    margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.social_image {
	transition: all ease-in-out .2s;
}

.social_image:hover {
	transform: scale(1.15);
	opacity: .8;
}

.footer {
	text-align: center;
}

.mail {
	text-decoration: underline;
}