#lean_overlay {
	background: #000 none repeat scroll 0 0;
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}
.modalbox {
	display: none;
	max-width: 700px;
	width: 90%;
	top: 10% !important;
	height: 70% !important;
	border: 0;
	padding: 40px 0;
	background: #FFF;
	line-height: 1.65;
  text-align: center;
	z-index: 100000000;
}
.modalbox .inner {
	box-sizing: border-box;
	padding: 0 4%;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	text-align: center;
	line-height: 1.65;
}
.modalbox .inner .inner_wrap {
  display: table;
  width: 100%;
  height: 100%;
}
.modalbox .inner .inner_box {
  display: table-cell;
  vertical-align: middle;
}

.modalbox .gNav_close {
	cursor: pointer;
}
.modalbox .gNav_close:hover {
	opacity: 0.7;
}


.modalbox .head {
	position: absolute;
	top: 0;
	padding: 8px 4%;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	background: #b74b5f;
	color: #FFF;
	font-size: 25px;
	font-weight: bold;
	letter-spacing: -0.04em;
	line-height: 1.65;
}
.modalbox .head .gNav_close {
	float: right;
}

.modalbox .inner h2 {
	margin: 10px 0;
	font-size: 34px;
  font-weight: bold;
  color: #b74b5f;
}
.modalbox .inner p {
	margin: 40px 0 20px;
	font-size: 20px;
	line-height: 1.3;
}
.modalbox .inner ul {
	font-size: 13px;
	list-style: circle;
	padding-left: 1em;
}
.modalbox .inner ul li {
	list-style: circle;
}
.modalbox .inner blockquote {
	margin: 10px 0;
	padding: 5px 15px;
	background: #f0f0f0;
}

.modalbox .bottom {
	position: absolute;
	bottom: 0;
	padding: 5px 4%;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	line-height: 1.65;
	z-index: 10;
}
.modalbox .bottom .gNav_close {
	display: block;
	font-size: 15px;
	color: #1a0dab;
}

#popup_form dl,
#popup_form dt,
#popup_form dd {
	display: block;
	width: 100%;
	margin: 0;
	font-size: 14px;
}
#popup_form dl {
	margin: 8px 0;
}
#popup_form dt {
	font-size: 13px;
	font-weight: bold;
	margin: 5px 0 0;
	line-height: 1.65;
}
#popup_form dd ::-webkit-input-placeholder {
  line-height: 1;
	font-family: initial;
}
#popup_form dd input {
	display: block;
	width: 100%;
	font-size: 13px;
	padding: 8px 10px;
	box-sizing: border-box;
	border: 1px solid #555;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	height: auto;
	background: #FFF!important;
}
#popup_form dd input.error {
	background: #ffcccc!important;
}
#popup_form dd select {
	width: 100%;
	font-size: 14px;
	padding: 10px 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #555;
	background: url("./bg_select.png") no-repeat scroll right center #fff;
	background-size: 12px;
	border-radius: 0;
	display: block;
	width: 100%;
	box-sizing: border-box;
	line-height: 1;
}
#popup_form dd.selectbox {
	display: flex;
}

#popup_form dd.selectbox select:nth-child(2) {
	width: 11em;
	margin-left: 5px;
}
#popup_form .submit {
	margin-top: 20px;
}
#popup_form input[type="submit"] {
	border-radius: 10px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
	background: #bf4a51;
	font-size: 15px;
	color: #FFF;
	display: block;
	width: 100%;
	text-align: center;
	padding: 10px 0;
	border-bottom: 5px solid #963a3f;
	font-weight: bold;
	font-family: sans-serif;
	box-sizing: border-box;
}
#popup_form input[type="submit"]::-webkit-search-decoration {
  display: none;
}
#popup_form input[type="submit"]::focus {
  outline-offset: -2px;
}

#popup_form .with-validate {
	display: block;
	position: relative;
}
#popup_form .with-validate label.error {
	display: inline-block;
	position: absolute;
	z-index: 5;
	left: -5px;
	bottom: 100%;
	margin-bottom: 10px;
	background-color: #c3272a;
	color: #ffffff;
	padding: 4px 10px;
	font-size: 11px;
	border-radius: 4px;
}
	#popup_form .with-validate label.error::before {
		content: "";
		background-color: transparent;
		position: absolute;
		top: 100%;
		margin: 0;
		left: 20px;
		width: 0;
		height: 0;
		border-width: 10px;
		border-style: solid;
		border-color: #c3272a transparent transparent;
	}
