@charset "utf-8";

/*　メイン　*/

div.form h2{
	color: #e67578;
}

/*　テーブルの設定　*/
table.form-mail {
	width: 100%;
	border: 1px solid #ccc;
	border-collapse: collapse;
	line-height: 160%;
	margin: 15px 0;
}

table.form-mail td {
	border: 1px solid #ccc;
	padding: 15px 10px 0 10px;
	vertical-align: middle;
}

table.form-mail th.bg {
	border: 1px solid #fff;
	background-color: #f6bfbc;
}

.form_error, .error {
	color:red;
}

input{
	border: 1px solid #999;
}

input.full{
	width: 98%;
}

input.width80{
	width: 80%;
}

input.width70{
	width: 70%;
}

input.width60{
	width: 60%;
}

textarea{
	width: 98%;
}


/* --- SP ---------- */
@media print, screen and (max-width: 740px) {

	.form .main_body{
		width: 98%;
		margin: 10px auto;
		padding: 10px 0;
		background: #fff;
	}

	input.half{
		width: 30%;
	}

}


/* --- PC ---------- */
@media print, screen and (min-width: 741px) {

	.form .main_body{
		max-width: 980px;
		width: 90%;
		margin: 15px auto;
		padding: 10px 0;
		background: #fff;
	}

	input.half{
		width: 36%;
	}

}


/*　来場予約　*/

.form .present{
	max-width: 850px;
	width: 100%;
	margin: 20px auto;
}

.form .lead{
	text-align: center;
}


#header,#footer {
	display:none;
}

@media print, screen and (min-width: 741px) {
	.form_btn_box {
		text-align:center;
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	.btn_pink,
	.btn_black {
		width:45%;
	}
}


table.form-mail.confirm th {
	font-weight: normal;
	text-align: left;
	padding-left: 5em;
}
table.form-mail.confirm th.bg,
table.form-mail.confirm td {
	border: 1px solid #e2e2e2;
	background: #e2e2e2;
	padding:15px;
}

table.form-mail.confirm td {
	font-weight:bold;
	padding: inherit;
}

::placeholder {
	color: #a8a8a8;
	font-style: italic;
	font-weight:normal;
	font-family: Times New Roman, "ＭＳ Ｐゴシック";
}
/* 旧Edge対応 */
::-ms-input-placeholder {
	color: #a8a8a8;
	font-style: italic;
	font-weight:normal;
	font-family: Times New Roman, "ＭＳ Ｐゴシック";
}
/* IE対応 */
:-ms-input-placeholder {
	color: #a8a8a8;
	font-style: italic;
	font-weight:normal;
	font-family: Times New Roman, "ＭＳ Ｐゴシック";
}

/** chromeはウィンドウを閉じるボタンを非表示*/
_:lang(x)::-internal-media-controls-overlay-cast-button, .btn_black a.btn-window-close {
	display:none;
}

.check-privacy-policy {
	margin-right: 10px;
	margin-bottom: 10px;
	position: relative;
	text-align: center;
}

.check-privacy-policy::before {
	content: "";
	display: inline-block;
	height: 1em;
}

.check-privacy-policy.active {
	border: 1px solid #b8a98e;
}

.check-privacy-policy input[type="checkbox"]{
	width: 50px;
	height: 15px;
	margin-top: 30px;
}

.check-privacy-policy input[type="checkbox"]{
	width: 50px;
	height: 15px;
}

.disabled {
	opacity: 0.65;
	pointer-events: none;
}


/* 2024.01.11 フォーム修正に伴うCSS追記
---------------------------------------------------------------------------*/
.is-sp {
	display: none;
}

.space {
	display: inline;
}

#main h2 {
	margin-bottom: 40px;
}

.form-text {
	font-size: 24px;
	text-align: center;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 40px;
}

.form-text strong {
	font-weight: 700;
	text-decoration: underline;
	font-size: 28px;
}

.form-text2 {
	text-align: center;
}

.form-btn {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
}

.form-btn a {
	background-color: #E67578;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	padding: 10px 40px;
	width: 300px;
	max-width: 100%;
	display: inline-block;
	color: #fff;
	position: relative;
	transition: all .3s;
	text-decoration: none;
}

.form-btn a::after {
	position: absolute;
	content: '';
	top: 50%;
	right: 20px;
	width: 7px;
	height: 7px;
	transform: translateY(-50%) rotate(-45deg);
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

.form-btn a:hover {
	background-color: #FA898C;
}

input::placeholder,
textarea::placeholder {
	font-style: normal;
}

@media screen and (max-width: 768px) {
	.is-sp {
		display: block;
	}

	.space {
		display: none;
	}

	#main.form {
		padding: 20px 5px;
		box-sizing: border-box;
	}

	#main h2 {
		margin-bottom: 16px;
	}

	.form-text {
		margin-top: 32px;
	}

	.form-text2 {
		text-align: left;
	}

	.form-btn {
		margin-top: 32px;
		margin-bottom: 32px;
	}

	.form-btn a {
		width: 220px;
	}

	table.form-mail td {
		text-wrap: wrap;
		white-space: normal;
	}
}