@charset "utf-8";
/* フォーム基本設定
------------------------------------------------------------*/
/* 独自スタイルを解除 */
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;
	outline: 0;
}
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"] {
	width: auto;
	margin: 0 0.5rem;
	padding: 0.5rem 2rem;
	border: none;
	background: #5C429A;
	font-size: 16px;
	color: #FFF;
}
input[type="reset"] {
	width: auto;
	margin: 0 0.5rem;
	padding: 0.5rem 2rem;
	border: none;
	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;
	display: inline-block;
	font-family: "Font Awesome 5 Pro";
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	content: "\f111";
	font-size: 2rem;
	color: #C5C5C5;
	vertical-align: middle;
}
input[type=radio]:checked + span {
	color: #5C429A;
}
input[type=radio]:checked + span:before {
	content: "\f058";
	color: #5C429A;
}
/* checkbox */
input[type="checkbox"] { display: none; appearance: none;}
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: 900;
	color: #C5C5C5;
	vertical-align: middle;
}
input[type="checkbox"]:checked + span {
	color: #5C429A;
}
input[type="checkbox"]:checked + span:before {
	content: "\f14a";
	color: #5C429A;
}
/* Datepicker */
td.day-saturday a {
	background: #DBEBFF !important;
}
td.day-sunday a,
td.day-holiday a {
	background: #FFE1E7 !important;
}
.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight {
	border: 1px solid #00A0E8 !important;
	background: #00A0E8 !important;;
	color: #FFF !important;;
}
/* Focus */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	box-shadow: 0 0 2px #5C429A;
	border: 1px solid #5C429A;
}
/* Placeholder */
::placeholder {
  color: #CCC;
}
/* Validation */
.formError {
	display: none;
}
input:invalid {
	background-color: #FFE6E6;
}
input:invalid + .formError {
	display: block;
	margin-top: 5px;
	font-size: 12px;
	color: red;
}
/* Error */
p.input-error {
	margin-bottom: 1rem;
	font-weight: 500;
}
p.error_messe {
	margin-bottom: 1rem;
	color: #ED2B01;
}
/* 確認 */
main#content.form p.input-confirm {
	margin-bottom: 2rem;
	text-align: left;
}
/* ボタン */
table.formTable + p {
	margin-top: 2rem;
}
/* フォーム
------------------------------------------------------------*/
#formWrap {
	width: 100%;
	margin: 0 auto;
}
table.formTable {
	width: 100%;
	margin-top: 2em;
	margin-bottom: 2em;
	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 td {
	text-align: left;
}
table.formTable th {
	position: relative;
	width: 18em;
	background: #FAFAFA;
}
td label {
	display: block;
}
td label:not(:last-of-type) {
	margin-bottom: 1rem;
}
/* 任意・必須 */
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 span.msg {
	display: block;
	margin-top: 5px;
	font-size: 14px;
	font-weight: bold;
	color: #E9313B;
}
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: #ED2B01;
	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 th.require {
		background: #FFE8E8;
	}
	table.formTable tr:last-child {
		border-bottom: solid 1px #CCC;
	}
}
/* パンくず */ 
.p-breadcrumb__list > li.p-breadcrumb__item:nth-of-type(2) {
	display: none;
}



