
/* CSS Document */
/*============================
 問合せフォーム用
============================*/

.textbox {
	width: 100%;
	background-color: #ffd;
	padding: 8px;
	border: 1px solid #aaa;
	border-radius: 5px;
}

.textbox:placeholder-shown{	/*未入力*/
    background-color: #fff;
}

/* メール入力部分 */
.reptmail {
	display: flex;
	width: 100%;
}
.reptmail .left {
	flex: 0 1 80px;
	text-align: right;
}
.reptmail .right {
	flex: 1;
}

.need {
	color: #f00;
}

/* ボタン */
.btn {
	margin: 1em auto;
	display: flex;
	display: -webkit-flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
.btn input {
	width: 150px;
	font-size: 1em;
	padding: 0.5em;
	border: 2px solid #aaa;
	border-radius: 10px;
}
.btn .left .right {
	flex: 1 0 50%;
	text-align: center;
	border: 1px solid #000;
}
.btn .left input  { background-color: #fee; }
.btn .right input { background-color: #ccf; }
