@charset "utf-8";
/* CSS Document */

.formbox_wrap {
	padding: 40px;
	background-color: #fffbf6;
	margin: 0 0 60px;
}
.formbox {
	padding: 30px;
	border: solid 2px #c4a982;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}
.formbox::after {
	content: "";
	border:solid 1px #e1d4c0;
	position: absolute;
	left: 4px;
	top: 4px;
	right: 4px;
	bottom: 4px;
	z-index: 0;
}

.formbox__inner {
	position: relative;
	z-index: 1;
}

.formbox__title {
	line-height: 1.5;
	color: #664c4c;
	font-weight: bold;
	text-align: center;
	font-size: 22px;
	margin: 0 0 20px;
}

.formbox__cast_thumbnail {
	width: 120px;
	height: 120px;
	display: block;
	margin: 0 auto 15px;
	overflow: hidden;
	border-radius: 50%;
}
.formbox__cast_thumbnail > img {
	display: block;
	width: 100%;
}

.formbox__cast_name {
	color: #664c4c;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	line-height: 1;
	margin: 0 0 8px;
}

.formbox__shop_name {
	color: #664c4c;
	font-size: 16px;
	text-align: center;
	line-height: 1;
	margin: 0 0 20px;
}

.formbox__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin: 0 0 20px;
}
.formbox__main > dt {
	width: 150px;
	height: 45px;
	color: #664c4c;
	font-weight: bold;
	line-height: 1;
	background-color: #efe5d7;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 10px 0 0;
}
.formbox__main > dd {
	width: 100%;
}

#RegistEmailInput {
	display: block;
	width: 100%;
	border: solid 1px #bc9c70;
	height: 45px;
	padding-left: 15px;
}

.formbox__submit {
	position: relative;
	margin-left: 20px;
	-webkit-box-shadow: 0 2px 3px 0 rgb(0 0 0 / 28%);
	box-shadow: 0 2px 3px 0 rgb(0 0 0 / 28%);
	color: #FFFFFF;
	font-size: 16px;
	letter-spacing: 4px;
	height: 45px;
	border-radius: 6px;
	border: none;
	background: rgb(255,167,44);
	background: -webkit-gradient(
		linear, left top, left bottom, from(rgba(255,167,44,1)), to(rgba(255,107,0,1)));
	background: linear-gradient(
		180deg, rgba(255,167,44,1) 0%, rgba(255,107,0,1) 100%);
	padding: 0 20px 0 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-weight: bold;
	width: 150px;
	margin: auto;
	cursor: pointer;
}
.formbox__submit:hover {
	top: 2px;
	-webkit-box-shadow: 0 0px 2px 0 rgb(0 0 0 / 28%);
	box-shadow: 0 0px 2px 0 rgb(0 0 0 / 28%);
}

.validate-error {
	margin: 10px 0 0;
	color: #F00;
	font-weight: bold;
	line-height: 1;
	background-color: #f5dddd;
	padding: 10px;
}

@media screen and (max-width: 760px) {
	main {
		height: 100vh;
	}
	.formbox_wrap {
		padding: 20px;
	}
	.sp_nav {
		display: none;
	}
	.formbox {
		padding: 20px;
		margin: 0;
	}
	
	.formbox__shop_name {
		overflow: hidden;
		white-space: nowrap;
		width: 290px;
		text-overflow: ellipsis;
	}
	.formbox__main {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.formbox__main > dt {
		width: 100%;
		margin: 0 0 10px;
	}
	
	.validate-error {
		font-size: 12px;
	}
}