
button ,input:not([type="submit"]) ,textarea ,select {
	width:20em;
	padding:0.3em 0.6em;
	font-family:inherit;
	border:1px solid #999;
	border-radius:0.3em;
	outline:0 none;
}
button {
	padding:0.5em 2em 0.7em;
	background:#eee;
	cursor:pointer;
}
textarea {
	height:6em;
}

.error {
	display:block;
	color:#f00;
	font-weight:bold;
}


/* ==============================================
	form table
============================================== */
.form-wrapper {
}
.form-frame .caption1-cover {
	padding-bottom:0.5em;
	border-bottom:2px solid #c4656b;
}
.form-frame .caption1-ja {
	font-size:200%;
}
	
.formTable {
	font-size:120%;
	width:100%;
	border-spacing:1em;
	border-collapse:separate;
}
.formTable th {
	width:40%;
	text-align:right;
	vertical-align:top;
	padding-top:0.3em;
}
.formTable td {
	width:60%;
}

.status2 .formTable th {
	padding-top:0;
}

@media screen and (max-width:799px) {
	.formTable ,.formTable caption ,
	.formTable thead ,.formTable tbody ,.formTable tfoot ,
	.formTable tr ,.formTable th ,.formTable td {
		display:block;
		width:100%;
		text-align:left;
	}

	.formTable {
		padding:1em 1em 0;
	}
	.formTable th {
		font-size:110%;
		font-weight:bold;
	}
	.formTable td {
		padding-left:1em;
		padding-bottom:1em;
	}
}



/* ==============================================
	form parts
============================================== */
.formTable .optional ,
.formTable .required {
	display:flex;
	justify-content:flex-end;
	align-items:center;
}
.formTable .required:after {
	content:"※";
	margin-left:0.2em;
	color:#c00;
}


@media screen and (max-width:799px) {
	.formTable .optional ,
	.formTable .required {
		justify-content:flex-start;
	}
}



/* ==============================================
	text
============================================== */
.form-unit {
	margin-left:0.2em;
	font-size:95%;
}
.form-error {
	display:block;
	margin-top:0.5em;
	font-size:90%;
}
.form-error > span {
	padding:0 0.3em;
	color:#f00;
	border:1px solid #f00;
}

.form-comment {
	display:block;
	margin-top:0.5em;
	color:#666;
}

.form-message {
	padding:2em 0 4em;
	text-align:center;
}
.form-message .text{
	font-size:130%;
}
.form-message p {
	padding-bottom:0.5em;
}
.form-message p + p {
	padding-top:0.5em;
}
.form-message small {
	font-size:90%;
	color:#333;
}

.form-message .text.media {
	padding:1.5em 2em;
	font-size:120%;
	background:#fef4ea;
	border-radius:0.5em;
	text-align:left;
}


.formNotes {
	text-align:center;
}




/* ==============================================
	group
============================================== */
.field-group.flex {
	display:flex;
	justify-content:flex-start;
	flex-wrap:wrap;
}
.field-group.flex:not(.column) .radio.flex {
	margin-top:0.2em;
}
.field-group.flex.column {
	flex-direction:column;
}
@media screen and (min-width:800px) {
	.field-group.flex .radio.flex + .radio.flex {
		margin-left:1em;
	}
}
@media screen and (max-width:799px) {
}

.field-group.flex .radio.flex {
	position:relative;
}
.radio.flex input[type='radio'] ,
.radio.flex input[type='checkbox']{
	position:absolute;
	z-index:2;
	top:50%;
	left:0.5em;
	transform:translateY(-50%);
	width:1em;
	height:1em;
	margin:0;
	padding:0;
	-webkit-appearance:auto; 
	appearance:auto;
	accent-color:#e66;
	cursor:pointer;
}
.radio.flex input[type="checkbox"] + label ,
.radio.flex input[type="radio"] + label {
	padding:0.1em 0.7em 0.2em 1.8em;
	border-radius:5px;
	transition:all 0.1s ease;
	-webkit-transition:all 0.1s ease;
	white-space:nowrap;
	cursor:pointer;
}
.radio.flex input[type="checkbox"]:checked + label ,
.radio.flex input[type="radio"]:checked + label {
	color:#fff;
	background:#e66;
}


