@charset "UTF-8";

.contact_top {
    position: relative;
    background: url(../img/top_contact.jpg) no-repeat left top;
    background-size: cover;
    height: 57vh;
}
.contact_top h1 {
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 2px 5px #ff4500;
    position: absolute;
    top: 60%;
    left: 7%;
    text-align: left;
    line-height: 62px;
}

/* ===================================
 Button
=================================== */

	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	.button {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
		-webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
		-ms-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
		background: none;
		border: solid 1px;
		color: inherit;
		cursor: pointer;
		display: inline-block;
		font-size: 1em;
		font-weight: 400;
		letter-spacing: 2px;
		min-width: 12em;
		padding: 0 0.75em;
		line-height: 3em;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		margin: 10px;
	}

		input[type="button"]:hover,
		input[type="submit"]:hover,
		input[type="reset"]:hover,
		.button:hover {
			background: rgba(188, 202, 206, 0.15);
			border-color: inherit;
		}

		input[type="button"].special,
		input[type="submit"].special,
		input[type="reset"].special,
		.button.special {
			background: #83d3c9;
			border-color: #83d3c9;
			color: #fff !important;
		}

			input[type="button"].special:hover,
			input[type="submit"].special:hover,
			input[type="reset"].special:hover,
			.button.special:hover {
				background: #96dad1 !important;
				border-color: #96dad1 !important;
			}

		input[type="button"].fit,
		input[type="submit"].fit,
		input[type="reset"].fit,
		.button.fit {
			width: 100%;
		}

		input[type="button"].small,
		input[type="submit"].small,
		input[type="reset"].small,
		.button.small {
			font-size: 0.7em;
			min-width: 14em;
			padding: 0.5em 0;
		}
		
		input[type="text"],
		input[type="password"],
		input[type="email"] {
		    line-height: 1em;
		    font-size: 16px;
		}
		input[type="text"],
		input[type="password"],
		input[type="email"],
		textarea {
		    -moz-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
		    -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
		    -ms-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
		    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
		    -moz-appearance: none;
		    -webkit-appearance: none;
		    -ms-appearance: none;
		    appearance: none;
		    background: none;
		    border: solid 1px rgba(0, 0, 0, 0.4);
		    color: inherit;
		    display: block;
		    padding: 0.75em;
		    text-decoration: none;
		    width: 100%;
		    outline: 0;
		}

/* ===================================
 CTA
=================================== */

#cta {
	text-align: center;
}

table.formTable{
	width: 90%;
	margin: 2em auto;
    font-size: 12pt;
    line-height: 18pt;
}
table.formTable th {
    width: 25%;
    font-weight: normal;
    text-align: left;
}
table.formTable td, table.formTable th {
    padding: 7px 10px;
    text-align: left;
}
table.formTable td input {
    padding: 10px;
}
.privacy_text {
    height: 250px;
    width: 85%;
    border: 1px solid lightgray;
    overflow: scroll;
    margin: 50px auto;
    padding: 20px;
    text-align: left;
}
.privacy_text p,
.privacy_text ul li {
    font-size: 0.8rem;
    line-height: 18px;
    margin-bottom: 2px;
}
.privacy_text li {
	list-style-type: none;
}
.privacy_text h4 {
    color: #000;
    margin: 0 0 20px 0;
}

#cta span{
	color: red;
	font-size: 14px;
}
::placeholder{
	color: #ccc;
}

/*-------------------------------------
レスポンシブ
-------------------------------------*/
@media screen and (max-width: 960px){
	.wrapper {
		width: 90%;
	}
	.company_top h1{
		top: 70%;
	}
}

@media screen and (max-width: 600px){
	table.formTable th {
		display: block;
		width: 90%;
	}
	table.formTable td{
		display: block;
	}
}

@media screen and (max-width: 480px){
	.wrapper {
	    margin: 0 auto !important;
	}
	.contact_top h1{
		font-size: 24px;
		line-height: 40px;
	}
	header h3 {
	    margin: 0px auto;
	}
	#cta {
	    padding: 3em 0;
	}
	table.formTable {
	    width: 100%;
	}
	table.formTable td, table.formTable th {
	    padding: 7px 0px;
	}
	.privacy_text {
		width: 100%;
	}
	
}


