
/*
----------------------------------------
form
----------------------------------------
*/
:root {
    --main-color: #3378C6;
    --main-on-color: #d4bea2;
    --main-light-color: #faf7f3;
    --base-color: #2E344F;
    --base-txt-color: #fff;
}

.efo-form input[type=text],
.efo-form input[type=search],
.efo-form input[type=tel],
.efo-form input[type=number],
.efo-form input[type=url],
.efo-form input[type=email],
.efo-form input[type=password] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 1.8rem;
	color: #333;
	width: 100%;
	border: solid 1px #ddd;
	border-radius: 0;
	padding: 18.5px 30px;
}

.efo-form input.s,
.efo-form select.s {
	width: 240px;
	max-width: 100%;
}

.efo-form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 1.8rem;
	max-width: 100% !important;
	letter-spacing: 1.4px;
	color: #333;
	border: solid 1px #ddd !important;
	padding: 18.75px 51px 18.75px 30px !important;
	background: url( ../img/common/svg/arrow-select.svg ) right 20px center no-repeat !important;
}

.efo-form input[type=date] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 1.8rem;
	line-height: 1.5;
	text-align: left !important;
	color: #333;
	width: 240px;
	max-width: 100%;
	border: solid 1px #ddd;
	padding: 14.5px 15px 14.5px 20px;
}

.efo-form input[type=date]::-webkit-calendar-picker-indicator {
	background: url( ../img/common/svg/icon-cal.svg ) center center / 20px no-repeat;
}

.efo-form input[type=text].hasDatepicker,
.efo-form input[type=text].month-year-input {
	width: 240px;
	background: url( ../img/common/svg/icon-cal.svg ) right 16px center / 20px no-repeat !important;
}

.efo-form textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 1.8rem;
	line-height: 1.8;
	width: 100% !important;
	height: 200px !important;
	border: solid 1px #ddd !important;
	padding: 18.5px 30px !important;
	margin: 0 !important;
}

.efo-form input[type=file] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 1.6rem;
	color: #333;
	width: initial;
	border: none;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding: 15px 0;
}

.efo-form .file-btn-wrap {
	position: relative;
	padding: .95rem 0;
}

.file-wrap {
	display: inline-block;
	padding-right: 4rem;
	position: relative;
}

.file-wrap .file-reset {
	display: none;
	line-height: .4;
	padding: 14px;
	position: absolute;
	right: 0;
	top: calc( 50% - 2rem );
	cursor: pointer;
}

.efo-form label[for=file-btn] {
	display: inline-block;
	padding: 9px 20px 11px;
	margin-right: 10px;
	background: #F5F5F5;
	border: solid 1px #ddd;
	cursor: pointer;
	transition: .3s;
}

.efo-form label[for=file-btn].none {
	display: none;
}

.efo-form .file-btn-wrap .mwform-file-delete {
	display: none;
}

.efo-form input[type=file].file-btn {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
}

.efo-form .file-mes {
	display: inline-block;
	position: relative;
	font-size: 1.6rem;
	margin-right: 5px;
}

.efo-form .file-del {
	display: inline-block;
	width: 4rem;
	height: 4rem;
	text-align: center;
	line-height: 4rem;
	opacity: 0;
	visibility: hidden;
	transition: all .2s;
	cursor: pointer;
}

.efo-form .file-del.active {
	opacity: 1;
	visibility: visible;
}

.radio,
.checkbox {
	padding: 13.5px 0;
}

.radio input[type=radio],
.checkbox input[type=checkbox] {
	display: none;
}

.radio label,
.checkbox label {
	display: inline-block;
	padding: .2rem 0 .2rem 3.2rem;
	margin: 0 4rem 0 0 !important;
	font-size: 1.8rem;
	line-height: 1.6;
	cursor: pointer;
	position: relative;
}

.radio label::before,
.checkbox label::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	border: solid 2px #ddd;
	position: absolute;
	top: 4px;
	left: 0;
}

.radio label::before {
	border-radius: 50%;
}

.checkbox label::before {
	border-radius: 5px;
}

.radio label::after {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var( --main-color );
	position: absolute;
	left: 6px;
	top: 10px;
	opacity: 0;
	transition: all .2s;
}

.radio input[type=radio]:checked + label::after,
.radio input[type=radio]:checked + input[type=hidden] + label::after {
	opacity: 1;
}

.checkbox label::after {
	content: '';
	width: 6px;
	height: 12px;
	border-right: solid 3px var( --main-color );
	border-bottom: solid 3px var( --main-color );
	position: absolute;
	left: 6px;
	top: 5px;
	opacity: 0;
	transform: rotate( 45deg );
	transition: all .2s;
}

.checkbox input[type=checkbox]:checked + label::after,
.checkbox input[type=checkbox]:checked + input[type=hidden] + label::after {
	opacity: 1;
}

.efo-form input[type=submit],
.efo-form button[type=submit],
button#mfp_button_send {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 300px;
	max-width: 100%;
	font-size: 1.8rem;
	text-shadow: none;
	padding: 14.5px 10px;
	border-radius: 30px;
	box-shadow: 0 2px 8px rgba( 0, 0, 0, .1 ) !important;
	transition: all .2s;
	background: var( --main-color );
	color: #fff;
	border: solid 2px var( --main-color );
	display: block;
	margin: 4.5rem auto 4rem;
}

input[type=submit].disabled,
button[type=submit].disabled {
	color: #fff !important;
	background: #ccc !important;
	border: solid 2px #ccc !important;
}

/*
.efo-form input[type=reset],
.efo-form button[type=reset],
button#mfp_button_cancel {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 120px;
	font-size: 1.8rem;
	text-align: center;
	text-shadow: none !important;
	color: #777;
	background: #fff;
	padding: 4.5px 5px;
	border: solid 2px #ccc;
	border-radius: 20px;
	box-shadow: none !important;
	transition: all .2s;
}
*/

.efo-form input[type=reset],
.efo-form button[type=reset],
button#mfp_button_cancel,button,
.mw_wp_form_confirm .submit-box button[type=reset],
.mw_wp_form_confirm .submit-box button[name=submitBack] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	min-width: 90px;
	font-size: 1.8rem;
	text-align: center;
	text-shadow: none !important;
	white-space: nowrap;
	color: #333;
	background: transparent;
	padding: 10px;
	border: none;
	border-bottom: solid 2px #333;
	border-radius: 0;
	box-shadow: none !important;
	transition: all .2s;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	color: #999;
	font-size: 1.8rem;
	letter-spacing: .8px;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #999;
	font-size: 1.8rem;
	letter-spacing: .8px;
}

::placeholder{ /* Others */
	color: #999;
	font-size: 1.8rem;
	letter-spacing: .8px;
}


/*
----------------------------------------
efo-form
----------------------------------------
*/

.form-wrap {
	padding: 0;
	background: #fff;
	font-size: 1.8rem;
}

/* form-step */

.form-step {
	width: 100%;
	margin-bottom: 2rem;
}

.form-step > div {
	height: 60px;
	line-height: 58px;
	width: calc( ( 100% - 16px ) / 3 );
	margin-right: 8px;
	text-align: center;
	white-space: nowrap;
	color: var( --main-color );
	position: relative;
}

.form-step > div:last-of-type {
	margin-right: 0;
}

.form-step > div::before {
	content: '';
	width: 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background: var( --main-color );
}

.form-step > div::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var( --main-color );
	-webkit-mask-image: url( ../img/common/svg/step-off.svg );
	-webkit-mask-size: auto 60px;
	-webkit-mask-position: right center;
	-webkit-mask-repeat: no-repeat;
	mask-image: url( ../img/common/svg/step-off.svg );
	mask-size: auto 60px;
	mask-position: right center;
	mask-repeat: no-repeat;
}

.form-step > div:last-of-type::after {
	-webkit-mask-image: url( ../img/common/svg/step-last.svg );
	mask-image: url( ../img/common/svg/step-last.svg );
}

.form-step > div span {
	position: relative;
	z-index: 99;
}

.form-step > div .en {
	display: inline-block;
	margin-right: 1.5rem;
	font-size: 2rem;
	text-transform: uppercase;
}

.form-step .step-01,
#mfp_phase_confirm .form-step .step-02 {
	color: #fff;
}

.form-step .step-01::after,
.mw_wp_form_confirm .form-step .step-02::after,
#mfp_phase_confirm .form-step .step-02::after {
	-webkit-mask-image: url( ../img/common/svg/step-on.svg );
	mask-image: url( ../img/common/svg/step-on.svg );
}

#mfp_phase_confirm .form-step .step-01 {
	background: url( ../img/common/svg/step-off.svg ) right center / auto 60px no-repeat;
}

/* remaining */

.remaining {
	position: fixed;
	right: 20px;
	bottom: 40px;
	display: inline-block;
	background: #fff;
	border: solid 1px var( --main-color );
	text-align: center;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: all .2s;
}

.remaining.active {
	opacity: 1;
	visibility: visible;
	z-index: 9999;
}

.remaining .read {
	padding: 15px 20px;
	line-height: 1.8;
}

.remaining .num {
	background: var( --main-color );
	color: #fff;
	padding: 5px 20px;
}

.form-box div#mfp_warning {
	text-align: center;
	line-height: 1.8;
	color: #a00;
	background: transparent;
	border-radius: 0;
	border: solid 1px #a00;
	padding: 15px;
	margin-bottom: 30px;
}

.form-box div#mfp_warning a {
	color: #a00;
	text-decoration: underline;
}

.efo-form .form-wrap .input-name {
	width: 240px;
	padding: 42px 80px 42px 0;
	border: none;
	text-align: left;
	position: relative;
}

.req-label {
	display: inline-block;
	background: var( --main-color );
	color: #fff;
	font-size: 1.4rem;
	width: 60px;
	text-align: center;
	border-radius: 3px;
	position: absolute;
	top: 46px;
	right: 0;
}

.efo-form .form-wrap .input-cont {
	width: calc( 100% - 240px );
	padding: 30px 40px 30px 20px;
	border: none;
	line-height: 1;
	position: relative;
}

.efo-form .form-wrap .input-cont::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: -240px;
	border-bottom: dotted 1px #999;
}

/*
.efo-form .form-wrap .input-cont::after {
	content: '';
	width: 27px;
	height: 27px;
	background: url( ../img/common/svg/icon-ok.svg ) center center / contain no-repeat;
	position: absolute;
	top: 46.5px;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .2s;
}
*/

.efo-form .form-wrap .input-cont::after {
	content: '\f00c';
	font-family: fontAwesome;
	font-size: 2.4rem;
	color: var( --main-color );
	position: absolute;
	top: 48px;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .2s;
}

.efo-form .form-wrap .input-cont.ok::after {
	opacity: 1;
	visibility: visible;
}

.efo-form .form-wrap .input-list .input + .input {
	margin-top: 2rem;
}

.efo-form .form-wrap .date-wrap {
	flex-wrap: nowrap;
}

.efo-form .form-wrap .date-wrap select {
	width: 140px;
	letter-spacing: 0;
}

.efo-form .form-wrap .date-wrap .txt {
	margin: 0 2rem 0 1.6rem;
	vertical-align: middle;
}

.pp-box {
	max-height: 300px;
	background: #fff;
	overflow: auto;
	padding: 4.5rem 5rem;
	margin: 6rem 0 5.8rem;
	-webkit-overflow-scrolling: touch;
}

.pp-box h2 {
	font-size: 2rem;
	font-weight: normal;
	text-align: center;
	letter-spacing: 1.6px;
	margin-bottom: 3rem;
}

.pp-box h3 {
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 1.8;
	margin: 3.2rem 0 1.6rem;
	padding-bottom: .8rem;
	border-bottom: solid 1px #ddd;
}

.pp-box p {
	letter-spacing: 1.1px;
}

.pp-box .address-box p {
	margin-top: 3rem;
	padding-left: 2rem;
	border-left: solid 5px #ccc;
}

.submit-box {
	text-align: center;
}

.submit-box .agree {
	text-align: center;
	padding: 0;
}

.submit-box .agree .req-label {
	margin-right: 1.5rem;
	transform: translateY( -2px );
	position: relative;
	top: 0;
}

.submit-box .agree div.mfp_err {
	text-align: center;
}

.agree label {
	margin-right: 1rem !important;
	letter-spacing: 1.2px;
	padding: 0 0 0 3.2rem;
}

.agree label .req-label {
	margin-right: .5rem;
}

.agree label a {
	text-decoration: underline;
}

form#mailformpro {
	padding: 0;
}

.mfp_element_all {
	max-width: 100%;
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
	box-shadow: none;
	border: solid 1px #ddd;
	border-radius: 0;
	background: transparent;
	margin: 0;
}

.efo-form label.mfp_not_checked,
.efo-form label.mfp_checked {
	background: transparent;
	display: inline-block;
	text-align: center;
	margin: 0 10px 0 0;
	padding: 0;
	box-shadow: none;
	border: none;
	border-radius: 0;
	transition: all .2s;
}

.efo-form label.mfp_not_checked .mfp_err,
.efo-form label.mfp_checked .mfp_err {
	text-align: center;
}

.name.flex > span {
	padding: 0;
	margin-right: 15px;
}

.problem {
	border: solid 1px #a00 !important;
}

div.mfp_err {
	background: transparent;
	padding: 0;
	margin: 1rem 0 0;
	font-size: 1.4rem;
	color: var( --main-color );
}

div#mfp_phase_confirm h4 {
	font-size: 2.4rem;
	font-weight: normal;
	padding: 0;
	margin: 3rem 0;
}

table#mfp_confirm_table {
	border-top: dotted 1px #999;
	margin: 30px 0 45px;
}

table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td {
	font-size: 1.8rem;
	line-height: 1.8;
	font-weight: normal;
	padding: 28px 20px;
	border: none;
	border-bottom: dotted 1px #999;
}

table#mfp_confirm_table tr th {
	width: 240px;
	background: var( main-light-color );
}

table#mfp_confirm_table tr.mfp_colored {
	background: transparent;
}

div.mfp_buttons {
	padding: 0;
}


/*
----------------------------------------
1160
----------------------------------------
*/



	.efo-form .form-wrap .date-wrap .txt {
		margin: 0 1.2rem 0 0.8rem;
	}




/*
----------------------------------------
1000
----------------------------------------
*/



	.efo-form input[type=text],
	.efo-form input[type=search],
	.efo-form input[type=tel],
	.efo-form input[type=number],
	.efo-form input[type=url],
	.efo-form input[type=email],
	.efo-form input[type=password] {
		font-size: 1.6rem;
		line-height: 1.5;
		padding: 17px 15px;
	}

	.efo-form select {
		font-size: 1.6rem;
		line-height: 1.5;
		letter-spacing: .4px;
		padding: 17px 45px 17px 15px !important;
		background: url( ../img/common/svg/arrow-select.svg ) right 15px center no-repeat !important;
	}

	.efo-form input[type=date] {
		font-size: 1.6rem;
		padding: 16px 15px;
	}

	.efo-form input[type=file] {
		font-size: 1.4rem;
	}

	.efo-form textarea {
		font-size: 1.6rem;
		padding: 17px 15px !important;
	}

	.radio label,
	.checkbox label {
		font-size: 1.6rem;
	}

	.efo-form input[type=submit],
	.efo-form button[type=submit],
	button#mfp_button_send {
		margin: 3rem auto 3.5rem;
	}

	.form-wrap {
		padding: 0;
	}

	.form-wrap {
		font-size: 1.6rem;
	}

	::-webkit-input-placeholder { /* WebKit, Blink, Edge */
		font-size: 1.6rem;
		letter-spacing: 0;
	}

	:-ms-input-placeholder { /* Internet Explorer 10-11 */
		font-size: 1.6rem;
		letter-spacing: 0;
	}

	::placeholder{ /* Others */
		font-size: 1.6rem;
		letter-spacing: 0;
	}

	.form-step > div .en {
		font-size: 1.8rem !important;
	}

	.efo-form .form-wrap .input-name {
		width: 200px;
	}

	.efo-form .form-wrap .input-cont {
		width: calc( 100% - 200px );
	}

	.efo-form .form-wrap .input-cont::before {
		left: -200px;
	}

	.efo-form .form-wrap .date-wrap select {
		width: 85px;
		padding: 17px 35px 17px 20px !important;
	}

	.efo-form .form-wrap .date-wrap .year select {
		width: 100px;
	}

	.efo-form .form-wrap .date-wrap .txt {
		margin: 0 1rem 0 0.6rem;
	}

	.pp-box {
		padding: 3.5rem 3rem;
		margin: 4.5rem 0;
		font-size: 1.4rem;
	}

	.pp-box h2 {
		font-size: 1.6rem;
		margin-bottom: 2rem;
	}

	.pp-box h3 {
		font-size: 1.5rem;
		margin: 3rem 0 1.5rem;
	}

	div#mfp_phase_confirm h4 {
		font-size: 2.2rem;
	}

	table#mfp_confirm_table {
		margin: 30px 0 40px;
	}

	table#mfp_confirm_table tr th,
	table#mfp_confirm_table tr td {
		font-size: 1.5rem;
	}

	table#mfp_confirm_table tr th {
		width: 200px;
	}




/*
----------------------------------------
768
----------------------------------------
*/



	.file-wrap .file-reset {
		top: -2.5px;
	}

	.form-wrap {
		padding: 0;
	}

	.form-step {
		margin-bottom: 5px;
	}

	.form-step > div {
		white-space: initial;
		line-height: 1.3;
		padding: 10px 15px 10px 0;
	}

	.form-step > div:last-of-type {
		padding: 10px;
	}

	.form-step > div .en {
		display: block;
		margin: 0;
		font-size: 1.4rem !important;
	}

	.efo-form > dl {
		flex-direction: column;
	}

	.efo-form .form-wrap .input-name {
		width: 100%;
		background: transparent;
		padding: 20px 40px 15px 0;
		margin-top: 20px;
		position: relative;
		border-top: dotted 1px #999;
	}

	.efo-form input.s,
	.efo-form select.s {
		width: 100%;
	}

	/*
	.efo-form .form-wrap .input-name::after {
		content: '';
		width: 24px;
		height: 24px;
		background: url( ../img/common/svg/icon-ok.svg ) center center / contain no-repeat;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY( calc( -50% + 2.5px ) );
		opacity: 0;
		visibility: hidden;
		transition: all .2s;
	}
	*/

	.efo-form .form-wrap .input-name::after {
		content: '\f00c';
		font-family: fontAwesome;
		font-size: 2rem;
		color: var( --main-color );
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY( calc( -50% + 2.5px ) );
		opacity: 0;
		visibility: hidden;
		transition: all .2s;
	}

	.efo-form .form-wrap .input-name.ok::after {
		opacity: 1;
		visibility: visible;
	}

	.req-label {
		width: 50px;
		position: relative;
		top: -1.4px;
		margin-left: 1rem;
		font-size: 1.3rem;
	}

	.efo-form .form-wrap .input-cont {
		width: 100%;
		padding: 0;
	}

	.efo-form .form-wrap .input-cont::before {
		display: none;
	}

	.efo-form input.s, select.s {
		width: 100%;
	}

	.efo-form select {
		width: 100%;
	}

	.efo-form input[type=date] {
		width: 100%;
		min-height: 60px;
		padding: 16px 50px 16px 20px;
		text-align: left !important;
		background: url( ../img/common/svg/icon-cal.svg ) right 15px center / 20px no-repeat;
	}

	.efo-form input[type=date]::-webkit-calendar-picker-indicator {
		display: none;
	}

	.efo-form input[type=text].hasDatepicker,
	.efo-form input[type=text].month-year-input {
		width: 100%;
	}

	.efo-form input[type=file] {
		padding: 4px 0 10px;
	}

	.radio,
	.checkbox {
		padding: 5px 0 10px;
	}

	.radio label,
	.checkbox label {
		margin: 0 2rem 0 0 !important;
	}

	.efo-form .form-wrap .input-cont::after {
		display: none;
	}

	.efo-form .form-wrap .date-wrap select {
		width: 15vw;
		padding: 17px 12px !important;
		background: none !important;
	}

	.efo-form .form-wrap .date-wrap .year select {
		width: 20vw;
	}

	.efo-form .form-wrap .date-wrap .txt {
		margin: 0 .8rem 0 .4rem;
	}

	.pp-box {
		padding: 2rem;
		margin: 3rem 0 4.5rem;
	}

	.pp-box h3 {
		margin-top: 2rem;
	}

	.pp-box p {
		letter-spacing: 0;
		text-align: justify;
	}

	.submit-box {
		text-align: center;
	}

	#mfp_loading,
	#mfp_loading_screen,
	#div#mfp_overlay_background {
		display: none !important;
	}

	.agree label {
		display: block;
		text-align: center;
		margin: 0 !important;
	}

	.submit-box .agree .req-label {
		margin: 0 1rem 0 0;
		transform: translateY( 1px );
	}

	.submit-box .agree {
		margin-bottom: 4.5rem;
	}

	.efo-form input[type=submit],
	.efo-form button[type=submit],
	button#mfp_button_send {
		width: 100%;
		margin: 0 0 2rem;
	}

	div#mfp_phase_confirm h4 {
		font-size: 1.8rem;
		margin: 20px 0;
	}

	table#mfp_confirm_table {
		margin: 20px 0 3rem;
		border: none;
		border-top: dotted 1px #999;
	}

	table#mfp_confirm_table tr {
		-js-display: flex;
		display: -ms-flex;
		display: -webkit-flex;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
	}

	table#mfp_confirm_table tr th {
		width: 100%;
		padding: 11px 20px;
		border: none;
	}

	table#mfp_confirm_table tr td {
		width: 100%;
		padding: 16.5px 20px;
	}

	div.mfp_buttons {
		margin-bottom: 2.5rem;
	}

	.remaining {
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
	}

	.remaining .num {
		font-size: 1.8rem;
		line-height: 1.5;
		padding: 10px 20px 11.5px;
	}

	.remaining .read {
		display: none;
	}




/*
----------------------------------------
hover
----------------------------------------
*/



	.tel-block .box:hover {
		background: #fafafa;
	}

	.agree label a:hover {
		color: var( --main-color );
	}

	.efo-form input[type=submit]:hover,
	.efo-form button[type=submit]:hover,
	button#mfp_button_send:hover {
		color: var( --main-color );
		background: #fff;
	}

	.efo-form input[type=reset]:hover,
	.efo-form button[type=reset]:hover,
	button#mfp_button_cancel:hover,
	.mw_wp_form_confirm .submit-box button[type=reset]:hover,
	.mw_wp_form_confirm .submit-box button[name=submitBack]:hover {
		background: transparent;
	}


