@charset "utf-8";

#main h2 {
	position: relative;
	color: #000;
}

#main h2::after {
	width: 100%;
	content: attr(data-en);
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255,255,255,1);
	font-size: 3rem;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	z-index: -1;
}

#page #main .inner {
	margin-top: 30px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: 0 5px 20px rgba(200,100,20,.3);
	border-radius: 3px;
}
#page #main p {
	color: #000;
}
.formTable {
	margin-top: 30px;
	width: 100%;
}
.formTable th {
	padding: 0;
	font-weight: 400;
	text-align: left;
	vertical-align: top;
	color: #000;
}
.formTable th span {
	display: inline-block;
	padding: 5px 10px;
	background: #d00;
	color: #fff;
	font-weight: 700;
	font-size: 1.3rem;
	float: right;
	letter-spacing: .2rem;
	text-indent: .2rem;
	line-height: 1;
}
.formTable td {
	padding: 10px 0 30px;
	font-size: 1.8rem;
	color: #000;
}
.formTable th,
.formTable td {
	display: block;
	font-size: 1.8rem;
}
.formTable input,
.formTable textarea {
	font-size: 1.8rem;
	padding: 1%;
	background: #fff;
	border: 1px solid #000;
	border-radius: 3px;
	outline: none;
}

.formTable input:focus,
.formTable textarea:focus {
	border-color: #d00;
}
.formTable input[type="text"],
.formTable input[type="email"] {
	width: 100%;
	max-width: 400px;
}

.confirmBtn {
	text-align: center;
}
.confirmBtn input[type="submit"] {
	appearance: none;
	width: 100%;
	max-width: 400px;
	background: #000;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 2rem;
	text-indent: 2rem;
	cursor: pointer;
	transition: .3s;
	box-shadow: 0px 12px 24px rgba(0,0,0,.4);
	border: none;
	border-radius: 60px;
	height: 60px;
	line-height: 60px;
}
.confirmBtn input[type="submit"]:hover {
	box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
	transform: translateY(3px);
}
.confirmBtn input[disabled] {
	opacity: .2;
	box-shadow: none;
	cursor: not-allowed;
}
.confirmBtn input[disabled]:hover {
	transform: translateY(0);
}
.formTable textarea {
	width: 100%;
}
.captchaImg {
	width: auto;
}
.alert {
	color: #d00;
	font-size: 1.6rem;
}
input + span {
	margin-left: 5px;
}
.wpcf7 form .wpcf7-response-output {
	padding: 10px 0;
	font-size: 1.6rem;
	text-align: center;
}

.wpcf7-turnstile {
	margin-top: 30px;
	text-align: right;
}

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

	#page #main .inner {
		margin-top: 60px;
	}
	#main h2::after {
		width: auto;
		top: 100%;
		left: 50%;
		font-size: clamp(2rem,5vw,3rem);
	}
	.formTable th {
		width: 30%;
	}
	.formTable th span {
		margin-right: 20px;
	}
	.formTable th,
	.formTable td {
		padding: 10px 0;
		display: table-cell;
	}

	.confirmBtn {
		margin-top: 20px;
	}
}
