@charset "UTF-8";


main {
	display: flex;
}


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

.ContentsArea h2 {
	font-size: 30px;
	padding: 0 0 50px;
	font-weight: 500;
	text-align: center;
}
p.detail {
	margin-top: 10px;
	font-size: 14px;
}
form {
	margin-top: 30px;
}
.contact {
	font-size: 20px;
	padding: 0 0 20px;
	font-weight: 500;
}


form span {
	color: #eb5640;
	font-size: 16px;
	padding-left: 5px;
}
  input {
	background-color: #ffffff;
    border:solid 1px #dddddd;
	width: 380px;
	height: 30px;
	margin: 5px 0 20px 0;
	border-radius: 3px;
  }

  textarea {
	background-color: #ffffff;
    border:solid 1px #dddddd;
	width: 380px;
	height: 200px;
	margin-top: 10px;
	border-radius: 3px;
  }

  .button {
	margin-top: 50px;
	text-align: center;
	width: 130px;
	height: 40px;
	border: none;
	background-color: #f8f05e;
	border-radius: 20px;
	font-weight: 500;
  }


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

}

