@charset "utf-8";

/* ========================================================
	form.css => フォーム
======================================================== */

/* form_head
============================================================================================================ */
.form .form_head {
	margin-bottom: 40px;
}
.form .form_head p + p {
	margin-top: 1.2em;
}
.form .form_hissu {
	display: inline-block;
	padding: 0 8px;
	font-weight: bold;
	font-size: 1.4rem;
	line-height: 1.8;
}
.form .form_head .form_hissu {
	margin-right: 10px;
}
.form.confirm_form .form_hissu {
	display: none;
}
@media screen and (max-width: 768px) {
	.form .form_hissu {
		font-size: 1rem;
	}
	.form .form_head {
		margin-bottom: 30px;
	}
}

.form .box {
	padding: 50px;
}
.form .box + .box {
	margin-top: 40px;
}
.form .bdbw_title {
	font-weight: bold;
	font-size: 2.6rem;
}

@media screen and (min-width: 769px), print {
}
@media screen and (max-width: 768px) {
	.form .box {
		padding: 20px;
	}
	.form .box + .box {
		margin-top: 15px;
	}
	.form .bdbw_title {
		font-size: 1.8rem;
	}

}

@media screen and (max-width: 768px) {
}

.form table {
	line-height: 1.5;
}
.form table th .notes {
	display: block;
	color: #d62727;
}
.form table td .contact_type_in {
	display: none;
}
.form table td .contact_type_in.show {
	display: block;
}
@media screen and (min-width: 769px), print {
	.form table {
		width: 100%;
	}
	.form table th,
	.form table td {
	}
	.form table th {
		width: 250px;
		padding: 15px 30px 15px 0;
		font-weight: bold;
		vertical-align: top;
	}
	.form table th > div {
		position: relative;
	}
	.form table th .form_hissu {
		position: absolute;
		right: 0;
		top: -2px;
	}
	.form table td {
		padding: 15px 0;
		vertical-align: middle;
	}
	.form table td.p00 {
		padding: 0;
	}

	.form.input_form table th {
		padding-top: 35px;
	}
}
@media screen and (max-width: 768px) {
	.form table,
	.form table tbody,
	.form table tr,
	.form table th,
	.form table td {
		display: block;
		font-size: 1.4rem;
	}
	.form table tr {
		margin-top: 20px;
	}
	.form table th {
		margin-bottom: 12px;
		font-weight: bold;
	}
	.form table th .form_hissu {
		margin-left: 10px;
	}
	.form table td {
	}
}
.form table .notes {
	margin-top: 15px;
	font-size: 1.4rem;
}
.form .confirm_text {
	font-weight: bold;
	display: block;
	word-break: break-all;
	word-wrap : break-word;
	overflow-wrap : break-word;
	display: inline-block;
}
/*
.form .confirm_text {
	display: inline-block;
	padding: 4px 10px;
	background-color: #effaff;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.form .confirm_text {
		font-size: 1.5rem;
	}
}
*/
@media screen and (max-width: 768px) {
	.form table .notes {
		margin-top: 10px;
		font-size: 1.2rem;
	}
}

.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form input[type=number],
.form textarea {
	width: 100%;
	padding: 1em 1.5em;
	border: 1px solid #ededed;
	font-size: 1.6rem;
}
.form textarea {
	height: 200px;
}
.form input[type=text]:focus,
.form input[type=email]:focus,
.form input[type=tel]:focus,
.form input[type=number]:focus,
.form select:focus,
.form textarea:focus {
	border-color: #66afe9 !important;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,0.8);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,0.8);
}
.form select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	height: 60px;
	padding: 0 60px 0 1.5em;
	background-image: url(../common/images/parts/select_arrow.png);
	background-repeat: no-repeat;
	background-position: 100%;
	-webkit-background-size: 40px;
	background-size: 40px;
	border: 1px solid #ededed;
}
.form select::-ms-expand {
	display: none;
}
.form ::-webkit-input-placeholder {
	color: #ccc;
}
.form :-ms-input-placeholder {
	color: #ccc;
}
.form ::-moz-placeholder {
	color: #ccc;
}
.form input.date {
	background-image: url(../common/images/parts/select_arrow.png);
	background-repeat: no-repeat;
	background-position: 100%;
	-webkit-background-size: 40px;
	background-size: 40px;
}

.form input.whalf,
.form select.whalf {
	width: 300px;
}

.form input[type=checkbox],
.form input[type=radio] {
	visibility: hidden;
	position: absolute;
}
.form label {
	display: block;
	position: relative;
	padding: 10px 0 10px 40px;
	font-weight: bold;
}
.form label input[type=radio] + span .check {
	position: absolute;
	left: 0;
	top: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background-color: #fff;
	border: 1px solid #666;
	border-radius: 100%;
}
.form label input[type=radio] + span .check:after {
	content: "";
	position: absolute;
	left: 2px;
	top: 2px;
	right: 2px;
	bottom: 2px;
	border-radius: 100%;
	opacity: 0;
	-webkit-transition: opacity .2s;
	-o-transition: opacity .2s;
	transition: opacity .2s;
}
.form label input[type=radio]:checked + span .check:after {
	opacity: 1;
}

.form label input[type=checkbox] + span .check {
	position: absolute;
	left: 0;
	top: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background-color: #fff;
	border: 1px solid #666;
}
.form label input[type=checkbox] + span .check:after {
	content: "";
	position: absolute;
	left: 6px;
	top: 1px;
	width: 7px;
	height: 12px;
	border-right: 2px solid;
	border-bottom: 2px solid;
	opacity: 0;
	-webkit-transition: opacity .1s;
	-o-transition: opacity .1s;
	transition: opacity .1s;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.form label input[type=checkbox]:checked + span .check:after {
	opacity: 1;
}


.form .has_error input[type=text],
.form .has_error input[type=email],
.form .has_error_mail_check input[type=email],
.form .has_error input[type=tel],
.form .has_error input[type=number],
.form .has_error select,
.form .has_error textarea {
	background-color: #fef0f0;
	border-color: #d62727;
}
.form .has_error label input[type=checkbox] + span:before {
	background-color: #fef0f0;
	border-color: #d62727;
}
@media screen and (max-width: 768px) {
	.form input[type=text],
	.form input[type=email],
	.form input[type=tel],
	.form input[type=number],
	.form textarea {
		padding: 0.6em 1em;
		font-size: 1.6rem;
	}
	.form select {
		height: 46px;
		font-size: 1.6rem;
		padding: 0 40px 0 1em;
		-webkit-background-size: 30px;
		background-size: 30px;
	}
	.form input.whalf,
	.form select.whalf {
		width: 100%;
	}
	.form label {
	}
	.form ::-webkit-input-placeholder {
		font-size: 1.2rem;
	}
	.form :-ms-input-placeholder {
		font-size: 1.2rem;
	}
	.form ::-moz-placeholder {
		font-size: 1.2rem;
	}
}

.form .error_box {
	margin-bottom: 40px;
	color: #d62727;
	font-weight: bold;
}
.form .error_box ul {
	margin-top: 10px;
	padding: 20px 30px;
	background-color: #fef0f0;
	border: 2px solid #d62727;
}
.form .err,
.form .err_mail_check {
	display: none;
	margin-top: 10px;
}
.form .err strong,
.form .err_mail_check strong {
	display: inline-block;
	padding: 2px 15px;
	background-color: #d62727;
	color: #fff;
	font-weight: bold;
	font-size: 1.3rem;
}
.form .has_error .err,
.form .has_error_mail_check .err_mail_check {
	display: block;
}
@media screen and (max-width: 768px) {
	.form .error_box {
		margin-bottom: 30px;
	}
	.form .error_box ul {
		padding: 10px 15px;
	}
	.form .err strong,
	.form .err_mail_check strong {
		padding: 7px 15px;
		font-size: 1.2rem;
		line-height: 1.5;
	}
}



.form .large_radio {
	padding-top: 30px;
	padding-bottom: 30px;
}
.form .large_radio li {
	display: inline-block;
	padding-right: 2em;
	font-size: 2rem;
}
@media screen and (max-width: 768px) {
	.form .large_radio {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.form .large_radio li {
		display: block;
		padding-right: 0;
		font-size: 1.6rem;
	}
	.form .large_radio li label {
		padding-top: 5px;
		padding-bottom: 5px;
	}
}


.form .privacy_box {
}
.form .privacy_box h1 {
	margin-bottom: 20px;
	text-align: center;
	font-size: 2rem;
	line-height: 1.5;
}
.form .privacy_box label {
	display: table;
	margin: 30px auto 0;
	line-height: 1.5;
}
.form .privacy_box .err {
	text-align: center;
}
@media screen and (max-width: 768px) {
	.form .privacy_box h1 {
		margin-bottom: 20px;
		font-size: 1.6rem;
	}
	.form .privacy_box {
		font-size: 1.2rem;
	}
	.form .privacy_box label {
		margin-top: 20px;
	}
}

.form .btn {
	margin-top: 80px;
	text-align: center;
}
.form .btn button {
	display: inline-block;
	margin: 0 10px;
}
@media screen and (min-width: 769px), print {
	.form .btn button.black:hover {
		color: #000;
	}
}
@media screen and (max-width: 768px) {
	.form .btn {
		margin-top: 40px;
	}
	.form .btn button {
		display: block;
		width: 100%;
		margin: 15px 0;
	}
	.form .btn .back {
		position: relative;
		display: inline;
		width: auto;
		padding: 0 0 0 20px;
		background: none;
		border: none;
		color: #005db3;
		text-decoration: underline;
	}
	.form .btn .back::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 5px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 2px solid #005db3;
		border-right: 2px solid #005db3;
		-webkit-transform: rotate(-135deg);
		-ms-transform: rotate(-135deg);
		-o-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}

}


.bottom_notes_block {
	line-height: 1.6;
	font-size: 1.5rem;
}
.bottom_notes_block h1 {
	margin-bottom: 15px;
	font-size: 1.6rem;
}
@media screen and (min-width: 769px), print {
	.bottom_notes_block .w {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		justify-content: space-between;
	}
	.bottom_notes_block section {
		width: 460px;
	}
}
@media screen and (max-width: 768px) {
	.bottom_notes_block {
		font-size: 1.2rem;
	}
	.bottom_notes_block section + section {
		margin-top: 30px;
	}
	.bottom_notes_block h1 {
		font-size: 1.4rem;
	}
}


.form_fin_block {
}
.form_fin_block .lead {
	margin-bottom: 40px;
	font-size: 2.8rem;
	line-height: 1.5;
	text-align: center;
}
.form_fin_block .box {
	padding: 50px;
	line-height: 1.6;
	font-size: 1.5rem;
}
.form_fin_block .box h1 {
	margin-bottom: 15px;
	font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
	.form_fin_block .lead {
		margin-bottom: 20px;
		font-size: 2rem;
	}
	.form_fin_block .box {
		padding: 25px;
		font-size: 1.2rem;
	}
	.form_fin_block .box h1 {
		font-size: 1.4rem;
	}
}

.reservarion_type {
}
@media screen and (min-width: 769px), print {
	.reservarion_type {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		align-items: center;
	}
	.reservarion_type a.box_btn {
		width: auto;
	}
}
@media screen and (max-width: 768px) {
	.reservarion_type a.box_btn {
		margin-top: 10px;
	}
}


.dtp {
	line-height: 1.5;
}
.dtp table.dtp-picker-days {
	width: 100%;
}
.dtp .btn {
	margin: 0 5px;
	padding: 5px 10px;
	border: 0;
	background-color: #000;
	color: #fff;
}