@charset "utf-8";
/* フォーム枠
------------------------------------------------------------*/
#formWrap {
	width: 100%;
	margin: 0 auto;
}
table.formTable {
	width: 100%;
	margin-bottom: 1em;
	border-collapse: collapse;
	border-spacing: 0;
	box-sizing: border-box;
	table-layout: fixed;
}
table.formTable td,
table.formTable th {
	padding: 15px 10px;
	border: 1px solid #CCC;
}
table.formTable th {
	position: relative;
	width: 18em;
	background: #EFEFEF;
	/*text-align: center;*/
}
table.formTable th.require::after {
	float: right;
	/*position: absolute;
	right: 5px;
	top: 50%;
    transform: translateY(-50%);*/
	content: "必須";
	padding: 0 0.5em;
	background: #CC0000;
	border-radius: 5px;
	color: #FFF;
	text-align: center;
	line-height: normal;
}
table.formTable td {
}
table.formTable td small {
	margin-left: 5px;
	font-size: 12px;
}
/* 確認画面 */
.confirm #formWrap {
	text-align: center;
}
.confirm #formWrap p.input-confirm,
.confirm #formWrap p.input-error {
	margin-bottom: 16px;
}
.confirm #formWrap p.error_messe {
	margin-bottom: 10px;
	color: #CC0000;
	text-align: left;
}
.confirm #formWrap p.error_messe + input[type="button"] {
	margin-top: 16px;
}
.confirm #formWrap input[type="submit"] + input[type="button"] {
	background: #999
}
@media only screen and (max-width: 600px){
	table.formTable td,
	table.formTable th {
		display: block;
		width: 100%;
		border-bottom: none;
		box-sizing: border-box;
	}
	table.formTable tr:last-child {
		border-bottom: solid 1px #CCC;
	}
}
/* フォーム基本設定
------------------------------------------------------------*/
/* 独自スタイルを解除 */
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="submit"], input[type="button"], input[type="reset"], textarea, select {
	-webkit-appearance: none;
	appearance: none;
}
/* カスタマイズ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
	max-width: 100%;
	padding: 5px;
	border: 1px solid #C5C5C5;
	box-sizing: border-box;
	border-radius: 0;
	font-size: 16px;
	vertical-align: middle;
}
/*input[type="text"] { max-width: 90%;}*/
/*input[type="email"] { max-width: 80%;}*/
/*input#corp-name, input#dep-name { max-width: 80%;}*/
/*input#your-name, input#your-name-kana, input#other-name { max-width: 60%;}*/
/*input.size { max-width: 30%;}*/
textarea {
	height: auto;
	line-height: 1.5;
}
select {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg class='drawer__icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23666' d='M7%2C10L12%2C15L17%2C10H7Z' /%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right top 55%;
	background-color: #FFF;
	cursor: pointer;
	font-size: 16px;
	color: #000;
 }
input[type="submit"],
input[type="button"] {
	/*margin: 0 0.5rem;
	padding: 1rem 3rem;
	border: none;
	background: #EB5D00;
	font-size: 16px;
	color: #FFF;*/
}
input[type="reset"] {
	/*margin: 0 0.5rem;
	padding: 1rem 3rem;
	border: 1px solid #000;
	background: #E7E7E7;
	font-size: 16px;
	color: #000;*/
}
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	opacity: 0.75;
	transition: 0.5s ease-in-out;
	cursor: pointer;
}
/* radio */
input[type="radio"] { display: none; appearance: none;}
input[type=radio] + span {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
input[type=radio] + span:before {
	margin-right: 0.5rem;
	font-family: FontAwesome;
	display: inline-block;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f111";
	font-size: 20px;
	color: #C5C5C5;
	vertical-align: middle;
}
/*input[type=radio] + span:before {
	margin-right: 0.5rem;
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f111";
	font-size: 2rem;
	font-weight: 300;
	color: #C5C5C5;
	vertical-align: middle;
}*/
input[type=radio]:checked + span {
	color: #0000FF;
}
input[type=radio]:checked + span:before {
	/*font-weight: 900;*/
	content: "\f058";
	color: #0000FF;
}
/* checkbox */
input[type="checkbox"] { display: none; appearance: none;}
input[type="checkbox"] + span:before {
	margin-right: 0.5rem;
	font-family: FontAwesome;
	display: inline-block;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f0c8";
	font-size: 20px;
	color: #C5C5C5;
	vertical-align: middle;
}
/*input[type="checkbox"] + span:before {
	margin-right: 0.5rem;
	font-family: "Font Awesome 5 Pro";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f0c8";
	font-size: 2rem;
	font-weight: 300;
	color: #C5C5C5;
	vertical-align: middle;
}*/
input[type="checkbox"]:checked + span {
	color: #0000FF;
}
input[type="checkbox"]:checked + span:before {
	/*font-weight: 900;*/
	content: "\f14a";
	color: #0000FF;
}
/* File */
input[type="file"] {
	font-size: 11px;
}
input[type="file"]::file-selector-button {
	padding: 5px;
	border: 1px solid #C5C5C5;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 16px;
	color: #000;
	cursor: pointer;
}
/* Focus */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	box-shadow: 0 0 2px #0000FF;
	border: 1px solid #0000FF;
}
/* Placeholder */
::placeholder {
  color: #CCC;
}
/* Error */
input:invalid {
	background-color: #FFE6E6;
}
.formError {
	display: none;
}
input:invalid + .formError {
	font-size: 0.9em;
	display: block;
	color: red;
}
/* Datepicker */
.ui-datepicker-calendar .day-sunday > a,
.ui-datepicker-calendar .day-holiday > a {
	background: #ffc0c0;
}
.ui-datepicker-calendar .day-saturday > a {
	background: #c0d0ff;
}
