/* -------------------------------------
	Original CSS (edited)
------------------------------------- */
div#mfp_overlay {
	position: absolute;
	display: none;
	z-index: 10001;
}
div#mfp_overlay_inner {
	background-color: #FFF;
	padding: 15px;
	margin: 0px auto;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #000;
	width: 640px;
	max-width: 90%;
}
div#mfp_overlay_background {
	background-color: #000;
	position: absolute;
	display: none;
	z-index: 10000;
}
div#mfp_loading_screen {
	z-index: 20000;
	opacity: 0.8;
	display: none;
	background-color: #000;
	position: absolute;
}
div#mfp_loading {
	z-index: 20001;
	position: absolute;
	display: none;
	width: 40px;
	height: 40px;
	background-image: url(../mailformpro/mfp.statics/images/mfp_loading.gif);
}

/* -------------------------------------
	Input
------------------------------------- */
#mfp_hidden {
	display: none !important;
}
#mailformpro button[type="submit"] {
	width: 350px;
	height: 55px;
	margin-right: auto;
	margin-left: auto;
	cursor: pointer;
}
#mailformpro button[type="submit"] .inner {
	width: 97px;
	padding-top: 14px;
	background-image: url(../img/common/text_confirm.png);
	margin-right: auto;
	margin-left: auto;
}

/* -------------------------------------
	Confirmation
------------------------------------- */
#mfp_phase_confirm_inner h4 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 14px;
}
#mfp_confirm_table {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 45px;
}
#mfp_confirm_table tr:nth-child(2n+1) {
	background-color: #f8f7f7;
}
#mfp_confirm_table tr:last-child {
	border-bottom: 2px solid #f0f0f0;
}
#mfp_confirm_table th,
#mfp_confirm_table td {
	box-sizing: border-box;
	height: 40px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #505050;
	vertical-align: top;
}
#mfp_confirm_table th {
	width: 152px;
	padding-left: 30px;
	font-weight: bold;
}
#mfp_confirm_table td {
	padding-right: 30px;
	word-wrap: break-word;
}
.mfp_buttons {
	text-align: center;
	letter-spacing: -0.40em;
}
#mfp_button_send,
#mfp_button_cancel {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	border: 0;
	margin: 0;
	display: inline-block;
	width: 200px;
	height: 0;
	padding-top: 55px;
	background-position: 0 0;
	background-repeat: no-repeat;
	overflow: hidden;
	letter-spacing: normal;
	position: relative;
	cursor: pointer;
}
#mfp_button_send {
	background-image: url(../img/common/btn_send.png);
	right: -210px;
}
#mfp_button_cancel {
	background-image: url(../img/common/btn_cancel.png);
	left: -210px;
}

/* -------------------------------------
	Progress Bar
------------------------------------- */
.progressbar {
	overflow: hidden;
}
.progressbar .step {
	box-sizing: border-box;
	height: 44px;
	background-position: 0 0;
	background-repeat: no-repeat;
	margin-right: 22px;
	float: left;
	position: relative;
}
.progressbar .step:last-child {
	margin-right: 0;
}
.progressbar .step:after {
	display: block;
	content: "";
	width: 22px;
	height: 44px;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-image: url(../img/common/arrow_progressbar_off_off.png);
	position: absolute;
	top: 0;
	right: -22px;
}
.progressbar .step_1:after {
	background-image: url(../img/common/arrow_progressbar_on_off.png);
}
.progressbar .step:last-child:after {
	display: none;
}
.progressbar .step .inner {
	padding-top: 44px;
}
.progressbar .step.step_1 .inner {
	width: 215px;
	background-image: url(../img/common/img_progressbar_1.png);
}
.progressbar .step.step_2 .inner {
	width: 195px;
	background-image: url(../img/common/img_progressbar_2_off.png);
}
.progressbar .step.step_3 .inner {
	width: 194px;
	background-image: url(../img/common/img_progressbar_3_off.png);
}

/* Progress Bar - On */
.progressbar .step.on {
	background-color: #9cbbd8;
}
.progressbar .step_1.on:after {
	background-image: url(../img/common/arrow_progressbar_on_on.png);
}
.progressbar .step_2.on .inner {
	background-image: url(../img/common/img_progressbar_2_on.png);
}
.progressbar .step_2.on:after {
	background-image: url(../img/common/arrow_progressbar_on_off.png);
}
.progressbar.completed .step_2.on:after {
	background-image: url(../img/common/arrow_progressbar_on_on.png);
}
.progressbar .step_3.on .inner {
	background-image: url(../img/common/img_progressbar_3_on.png);
}