@charset "UTF-8";
/* Form */

/* フォームのリセット */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="submit"],
textarea {
	border:none;
	background:#fff;
	-webkit-appearance:none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
	border:1px solid #c5c5c5;
	vertical-align:middle;
	font-size:115%;
	width:100%;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"] {
	height:40px;
	padding: 0 0.4em;
}

/* placeholder */
.form input::placeholder,
.form textarea::placeholder {
	padding: 0 0.4em;
	font-weight: normal;
}

/* textarea */
.form textarea {
	width: 100%;
	height: 10em;
	padding: 0 0.4em;
}


/* エラーメッセージ */
.form .error {
	display: none;
	color: #ff0000;
	margin-top: 6px;
}
.form .error::before {
	content:url(../img/form/icon_error.png);
	padding-right:3px;
}


/* 送信ボタン */
input[type="submit"] {
	border:1px solid #000;
	line-height:3em;
	width:10em;
	border-radius:10px;
	font-size:30px;
	cursor:pointer;
}

.form #btn_submit {
	width: auto;
	margin: 30px auto 30px;
	border: 0px solid;
}



input.submit_confirm {
	display: block;
	border:1px solid #14c6ee;
	background-color: #14c6ee;
	line-height:2.6em;
	width:12em;
	font-size: 20px;
	border-radius: 5px;
	font-weight: bold;
	cursor:pointer;
	margin: 30px auto 30px;
	color: #fff;
	-webkit-appearance:none;
}
input.submit_confirm:disabled {
	background-color: #aaa;
	border:1px solid #aaa;
	cursor:not-allowed;
}



input.submit_back {
	width:75%;
	clear: both;
	float: none;
	display: block;
	border:1px solid #a6a7a4;
	background-color: #a6a7a4;
	line-height:2.6em;
	border-radius: 5px;
	font-weight: bold;
	font-size:20px;
	cursor:pointer;
	margin: 30px auto 30px;
	color: #fff;
	-webkit-appearance:none;
}
input.submit_submit {
	width:75%;
	clear: both;
	float: none;
	display: block;
	border:1px solid #14c6ee;
	background-color: #14c6ee;
	line-height:2.6em;
	border-radius: 5px;
	font-weight: bold;
	font-size:20px;
	cursor:pointer;
	margin: 30px auto 30px;
	color: #fff;
	-webkit-appearance:none;
}


/* 送信完了画面 */
.form #msg_thanx {
	font-size: 22px;
	/*color: #816c38;*/
	text-align: center;
	position: relative;
}
.form #msg_thanx br {
	display: inline-block;
}
.form #msg_thanx:after {
	content: '';
	border-top: 1px solid #816c38;
	width: 100%;

	position: absolute;
	left: 0;
	bottom: -4px;
}

.form #msg_complete {
	text-align: center;
	margin: 30px 0 80px;
	line-height: 2.4;
}
.form #msg_complete #completed {
	font-size: 18px;
	font-weight: bold;
	/*color: #000;*/
	position: relative;
	line-height: 1.4;
}
.form #msg_complete p {
	line-height: 2;
	text-align: left;
}
.form #msg_complete p span.br {
	display: block;
}









/* フォームのテーブル */
.form table {
	border-collapse:collapse;
	box-sizing: border-box;
	width: 100%;
}
.form table tr {
	display: block;
}
.form table th,
.form table td {
	box-sizing: border-box;
	/*border-bottom: 2px solid #fff;*/
	display: block;
}
.form table th {
	/*background-color: #ffedbe;*/
	padding: 0.0em 0em 0.0em 0em;
	width: 100%;
	position: relative;
	font-weight: normal;
	font-weight: 500;
}
.form table th br.sbr {
	display: none;
}

.form table td {
	/*background-color: #f2f2f2;*/
	padding: 0.6em 0em 1.0em 0em;
	/*border-left: 0px solid #fff;*/
	width: 100%;
}

.form table th.req:after {
	content:'必須';
	font-size: 13px;
	border: 2px solid #ffa0dc;
	background-color: #ffa0dc;
	border-radius: 5px;
	color: #fff;
	padding: 0px 5px 0px;
	position: relative;
	right: auto;
	left: 10px;
	top: 0px;
	line-height: 1.2;
}
.form table td br.sbr {
	display: inline-block;
}

.form label {
	padding-left: 5px;	
}


/* その他の要素 */

.form .msg_req {
	padding: 10px 0;
}
/* 必須 */
.form .msg_req span {
	display: inline-block;
	font-size: 13px;
	font-weight: bold;
	border: 2px solid #d58462;
	background-color: #d58462;
	border-radius: 5px;
	color: #fff;
	padding: 4px 5px 2px;
	margin-right: 4px;

}

.select_date span.brtf {
	display: block;
}
.select_date div {
	clear: none;
	border: 0px solid #f0f0f0;
	margin-bottom: 5px;
}


/* 要素のリスト */
.form .list_naiyo {
	clear: both;
}
.form .list_naiyo li {
	clear: both;
	float: none;
	width: auto;
	/*white-space: nowrap;*/
	border: 0px solid;
}




.memo_potal {
	clear: none;
	font-size: 13px;
}

.form dd div {

}

/* 共通 */
.form {
	max-width: 740px;
	margin-left: auto;
	margin-right: auto;
}

.form .caution {
	/*font-size: 13px;*/
	color: #e85cf4;
	margin-top: 7px;
}

.form .check_list {
	line-height: 2.2;
}

/* 規約等  */
.form .kiyaku {
	font-size: 13px;
	height: 20em;
	/*height: 50em;*/
	overflow-y: scroll;
	border: 1px solid #c5c5c5;
	padding: 0.6em 1em;
}
.form .kiyaku .ttls {
	font-size: 120%;
}
.form .kiyaku .uline {
	display: inline-block;
	border-bottom: 1px solid #000;
}












@media handheld, print, screen and (min-width: 359px) {
/* iphone6 */

.form table td br.sbr {
	display: none;
}

/* end of media query(iphone6) */	
}








@media handheld, only screen and (min-width: 481px) {


/* 送信ボタン */
.form #btn_submit {
	width: 12em;
	font-size:30px;
	margin: 30px auto 30px;
}

input.submit_confirm {
	line-height:2.3em;
	width:13em;
	font-size:20px;
	margin: 30px auto 30px;
}

input.submit_back {
	width: 6em;
	font-size: 20px;
	clear: none;
	float: left;
}
input.submit_submit {
	width:8em;
	font-size: 20px;
	clear: none;
	float: right;
}

/* 送信完了画面 */
.form #msg_complete {
	text-align: center;
	margin: 50px 0 80px;
	line-height: 2.4;
}
.form #msg_complete #completed {
	font-size: 26px;
	position: relative;
}
.form #msg_complete p {
	line-height: 2;
}



/* 送信完了画面 */
.form #msg_thanx {
	font-size: 28px;
}
.form #msg_thanx br {
	display: none;
}

.form #msg_complete p span.br {
	display: inline;
}

.form table th.req:after {
	font-size: 14px;
}

/* お問い合わせ */
#pageForm #top_msg .msg br.sbr {
	display: none;
}

/* end of media query */
}









@media handheld, print, screen and (min-width: 621px) {
/* iPad */

/* お問い合わせ */
#pageForm #top_msg .msg2 {
	text-align: center;
}

/* 送信完了画面 */
.form #msg_thanx {
	font-size: 32px;
}
.form #msg_complete p {
	text-align: center;
}

/* end of media query */	
}






@media handheld, only screen and (min-width: 801px) {

/* 送信ボタン */
.form #btn_submit {
	width: 14em;
	margin: 30px auto 30px;
	border: 0px solid;
}

input.submit_confirm {
	line-height:2.8em;
	width:18em;
	font-size:20px;
	margin: 30px auto 30px;
}

input.submit_back {
	width: 8em;
	font-size:20px;
	clear: none;
	float: left;
}
input.submit_submit {
	width:10em;
	font-size:20px;
	clear: none;
	float: right;
}


/* フォームのテーブル */
.form table {
	display: table;
}
.form table tr {
	display: table-row;
}
.form table th,
.form table td {
	display: table-cell;
}

.form table th {
	padding: 0em 0em 1em 0em;
	width: 13em;
	z-index: -1;
}
.form table th br.sbr {
	display: inline-block;
}
.form table td {
	padding: 0em 0em 1em 0em;
	border-left: 2px solid #fff;
	width: auto;
}
.form table th.req:after {
	/*position: absolute;
	right: 23px;
	left: auto;
	top: 14px;*/
}

/* 送信完了画面 */
.form #msg_thanx {
	font-size: 36px;
}
.form #msg_complete #completed {
	font-size: 30px;
}


/* お問い合わせ */

/* 要素のリスト */
.form .list_naiyo {
	clear: none;
}
.form .list_naiyo li {
	clear: none;
	float: left;
	width: 19em;
	white-space: nowrap;
}




/* end of media query */	
}


#pageForm .form table th[id^="th_req"]:after {
	content:'必須';
	font-size: 13px;
	border: 2px solid #ffa0dc;
	background-color: #ffa0dc;
	border-radius: 5px;
	color: #fff;
	padding: 0px 5px 0px;
	position: relative;
	right: auto;
	left: 10px;
	top: 0px;
	line-height: 1.2;
}

@media handheld, only screen and (min-width: 481px) {

#pageForm .form table th[id^="th_req"]:after {
	font-size: 14px;
}

}