@charset "UTF-8";

/* ===================================================================
contact.css
=================================================================== */

/*	お問い合わせ
------------------------------------------------------------*/
input, button, textarea{ /* reset */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input,
select,
textarea{
	background-color: #fff;
	background-image: none;
	border: none;
	border-radius: 3px;
	box-shadow: 0;
	color: #555;
	line-height: 1.42857;
	padding: 2px 10px;
	transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
	margin: 5px 0;
}
input[type="text"]{
	padding: 5px 10px;
}
input:focus{
	border-color: #66afe9;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
	outline: 0 none;
}
textarea{
	width: 100%;
}

::-webkit-input-placeholder{
	color: #999;
	opacity: 1;
}
::-moz-placeholder{
	color: #999;
	opacity: 1;
}
:-ms-input-placeholder{
	color: #999;
	opacity: 1;
}

.zip{
	width: 15%;
}
select#pref{
	display: block;
}

.hissu{
	font-size: 10px;
	font-size: 1.0rem;
	font-weight: normal;
	margin-left: 5px;
	padding: 0 7px 1px 5px;
	background-color: #f66;
	border-radius: 3px;
	color: #fff;
}

.tbl_form th{
	text-align: left;
	width: 195px;
}
.tbl_form .memo{
	color: #777;
}


.conf_tbl th{
	width: 280px;
	text-align: left;
}
.conf_tbl:last-of-type{
	border: none;
}

.err_tbl b{
	color: #d90014;
}
.err_tbl b:before{
	content: "[";
}
.err_tbl b:after{
	content: "]";
}
.err_tbl{
	border: none !important;
}
.err_tbl td{
	padding: 10px 0;
	border: none !important;
}
.err_tbl td.form_btn,
.conf_tbl td.form_btn{
	text-align: center;
	padding: 40px 0 30px;
	border: none !important;
}

/* checkbox */
input[type="checkbox"] {
	display: none;
}
label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 22px;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
}
label::before,
label::after {
	position: absolute;
	content: '';
	-webkit-transition: all .2s;
	transition: all .2s;
}
label::before {
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
}
label::after {
	opacity: 0;
	top: 50%;
	left: 3px;
	width: 8px;
	height: 4px;
	margin-top: -4px;
	border-left: 2px solid #3498db;
	border-bottom: 2px solid #3498db;
	-webkit-transform: rotate(-45deg) scale(.5);
	transform: rotate(-45deg) scale(.5);
}
label:hover::before {
	background: #fff;
}
input[type="checkbox"]:checked + label::before {
	background: #fff;
	border: 1px solid #3498db;
}
input[type="checkbox"]:checked + label::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}


.form_submit{
	text-align: center;
}

input.w25{
	width: 25%;
}
input.w50{
	width: 50%;
}
input.w100{
	width: 100%;
}


/* ボタン */
.button{
	display: inline-block;
	width: 200px;
	margin: 0 15px;
	border-radius : 5px;
	font-size: 12pt;
	font-weight: 200;
	text-align: center;
	cursor: pointer;
	padding: 16px 0;
	background: #4273bc;
	color: #ffffff;
	line-height: 1em;
	transition: .3s;
}
.button:hover{
	background: #53a6dd;
	text-decoration:none;
}
.clear,
.back{
	background: #666;
}
.clear:hover,
.back:hover{
	background: #555;
	opacity: 0.8;
}
.err {
	background-color: #ffc;
}

