@charset "utf-8";
/* CSS Document */

#profile {
	width: 80%;
max-width: 850px;
	margin: 170px auto 100px;
}
#profile table {
	width: 70%;
	max-width: 750px;
	font-size:1.4rem;
	margin: 0 auto 70px;
	border-collapse: collapse;
}
#profile table tr td {
	text-align: left;
	padding-left: 30px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
#map {
	margin: 0 auto 100px;
}
form {
	font-size: 1.4rem;
	width: 100%;
	margin: 0 auto;
}
form p {
	margin-bottom: 20px;
}
form p label {
	cursor: pointer;
}
form p:nth-last-child(2) {
	margin-bottom: 5px;
}
input[type="text"], [type="email"] {
	width: 50%;
	height: 20px;
	padding: 5px 0 5px 5px;
}
textarea {
	width: 100%;
	height: 150px;
	padding: 10px 0 10px 10px;
}
input[type="submit"] {
	cursor: pointer;
	width: 100px;
	height: 40px;
	background-color: #008080;
	color: #fff;
	border: none;
	border-radius: 10px;
	box-shadow: 0 5px 5px 0 #bbb;
}
input[type="submit"]:active {
    position: relative;
    top: 5px;
    box-shadow: none;
}
 @media screen and (max-width:599px) {
	 h2 {
		 font-size: 2rem;
	 }
	 #profile {
		 width: 95%;
	 }
	 input[type="text"], [type="email"] {
width: 100%;
	 }
 }
