/*
 * FCMailer - 2017
 *
 * StyleName: FCMailer.css
 * Version: 1.5
 *
 * FC-Dev team
 * http://foodconnection.jp/
 *
 */

.fc-form {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
}
.fc-form * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
}
.fc-form .form-hide {
}
.fc-form .confirm-show {
	display: none;
}
.fc-form .form-row {
	position: relative;
}
.fc-form .form-value {
	position: relative;
}






.fc-form .form-file {
	display: table;
	width: 100%;
	position: relative;
}
.fc-form .form-file input[type=file] {
	opacity: 0;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	visibility: hidden;
}
.fc-form .form-file input[type=file]::-webkit-file-upload-button {
	visibility: hidden;
}
.fc-form .form-file .form-browse {
	cursor: pointer;
	display: table-cell;
	padding: 5px 10px;
	color: #FEFEFE;
	background: #606060;
	max-width: 120px;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: middle;
	box-shadow:
		inset 0 0 0 1px #202020,
		inset 0 0 0 2px #909090;
	-moz-box-shadow:
		inset 0 0 0 1px #202020,
		inset 0 0 0 2px #909090;
	-webkit-box-shadow:
		inset 0 0 0 1px #202020,
		inset 0 0 0 2px #909090;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	overflow: hidden;
}
.fc-form .form-file .form-browse:hover {
	background: #404040;
}
.fc-form .form-file .form-text {
	display: table-cell;
	padding-left: 5px;
	width: 100%;
	vertical-align: middle;
}
.fc-form .form-photo {
	display: table;
	width: 100%;
}
.fc-form .form-photo.form-multiple {
	display: block;
}
.fc-form .form-preview {
	display: table-cell;
	padding: 3px;
	vertical-align: middle;
	background: #252525;
	width: 75px;
	height: 75px;
	border: 1px dashed #363636;
	box-shadow:
		0 0 0 1px #181818,
		inset 0 0 0 1px #181818;
	-moz-box-shadow:
		0 0 0 1px #181818,
		inset 0 0 0 1px #181818;
	-webkit-box-shadow:
		0 0 0 1px #181818,
		inset 0 0 0 1px #181818;
}
.fc-form .form-photo.form-multiple .form-preview {
	clear: both;
	display: block;
	background: transparent;
	width: auto;
	height: initial;
	min-height: 84px;
	max-height: 300px;
	overflow: hidden;
	overflow-y: auto;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
}
.fc-form .form-preview img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.fc-form .form-preview .form-picture {
	opacity: 0;
	float: left;
	position: relative;
	transform: scale(0);
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	overflow: hidden;
	visibility: hidden;
}
.fc-form .form-preview .form-picture.active {
	opacity: 1;
	transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	visibility: visible;
}
.fc-form .form-photo.form-multiple .form-preview .form-picture {
	display: inline-block;
	margin: 3px;
	padding: 3px;
	background: #909090;
	width: 70px;
	height: 70px;
}
.fc-form .form-preview .form-picture .picture-remove {
	cursor: pointer;
	margin: auto;
	color: #303030;
	font-size: 20px;
	font-family: fantasy, tahoma, verdana, arial, sans-serif, serif;
	line-height: 25px;
	text-align: center;
	background: #9E9E9E;
	width: 25px;
	height: 25px;
	border-radius: 0 0 0 3px;
	-moz-border-radius: 0 0 0 3px;
	-webkit-border-radius: 0 0 0 3px;
	position: absolute;
	top: -25px;
	right: -25px;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
}
.fc-form .form-preview .form-picture .picture-remove:hover {
	color: #FEFEFE;
}
.fc-form .form-preview .form-picture:hover .picture-remove {
	top: 0;
	right: 0;
}
.fc-form .form-photo .form-file {
	display: table-cell;
	padding-left: 5px;
	width: auto;
	vertical-align: middle;
}
.fc-form .form-photo.form-multiple .form-file {
	display: block;
	padding: 5px 0;
}
.fc-form .form-photo .form-browse {
	display: inline-block;
	margin: 5px;
}
.fc-form .form-photo.form-multiple .form-browse {
	margin: 5px 0;
}
.fc-form .form-photo .form-text {
	display: block;
	margin: 5px;
	padding: 0;
	width: auto;
}
.fc-form .form-photo.form-multiple .form-text {
	margin: 5px 0;
}





.fc-form button {
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
}
.fc-form .form-submit {
	font-weight: 600;
}
.fc-form .form-back {
}
.fc-form .error,
.fc-form .error-phone,
.fc-form .error-email,
.fc-form .error-match,
.fc-form .error-number,
.fc-form .error-length {
	display: none;
	color: #F44336;
	font-weight: 600;
	position: absolute;
	left: 0;
	bottom: 0;
}
.fc-form .submit-confirm {
	display: none !important;
}

.fc-confirm {
	display: none;
	margin: auto;
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
}
.fc-confirm * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
}
.fc-confirm.display-fixed {
	background: rgba(0, 0, 0, .8) !important;
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
}
body.confirm-fixed {
	pointer-events: none !important;
	overflow: hidden !important;
}
.fc-confirm .error,
.fc-confirm .error-phone,
.fc-confirm .error-email,
.fc-confirm .error-match,
.fc-confirm .error-number,
.fc-confirm .error-length {
	display: none !important;
}
.fc-confirm.display-fixed .confirm-main {
	pointer-events: visible !important;
	margin-right: -50%;
	padding: 1.5em;
	color: #BFBFBF;
	background: rgba(0, 0, 0, .5);
	width: 100%;
	max-width: 1000px;
	max-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	box-shadow:
		0 0 5px rgba(0, 0, 0, .5),
		inset 0 0 0 1px rgba(255, 255, 255, .15),
		inset 0 0 0 2px rgba(0, 0, 0, .5);
	-moz-box-shadow:
		0 0 5px rgba(0, 0, 0, .5),
		inset 0 0 0 1px rgba(255, 255, 255, .15),
		inset 0 0 0 2px rgba(0, 0, 0, .5);
	-webkit-box-shadow:
		0 0 5px rgba(0, 0, 0, .5),
		inset 0 0 0 1px rgba(255, 255, 255, .15),
		inset 0 0 0 2px rgba(0, 0, 0, .5);
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	overflow: hidden;
	overflow-y: visible;
}
.fc-confirm input,
.fc-confirm select,
.fc-confirm textarea {
	cursor: default;
}
.fc-confirm .confirm-value {
	display: inline-block;
}
.fc-confirm .confirm-empty {
	cursor: not-allowed;
	color: rgba(0, 0, 0, .3) !important;
}
.fc-confirm .submit-confirm + .submit-form {
	display: none !important;
}
.fc-confirm button {
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
}


body.debugger {
	overflow: hidden !important;
}
.fc-debug {
	pointer-events: visible !important;
	opacity: 0;
	margin: auto;
	background: rgba(0, 0, 0, .5);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	visibility: hidden;
	z-index: 99999;
}
body.debugger .fc-debug {
	opacity: 1;
	visibility: visible;
}
.fc-debug .debug-main {
	background: #FEFEFE;
	color: #303030;
	width: 800px;
	position: absolute;
	top: 0;
	right: -800px;
	bottom: 0;
	box-shadow: -3px 0 3px rgba(0, 0, 0, .7);
	-moz-box-shadow: -3px 0 3px rgba(0, 0, 0, .7);
	-webkit-box-shadow: -3px 0 3px rgba(0, 0, 0, .7);
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	overflow: hidden;
	overflow-y: auto;
}
body.debugger .fc-debug .debug-main {
	right: 0;
}
.fc-debug .debug-head {
	margin: 0 0 10px;
}
.fc-debug .debug-menu {
	min-height: 45px;
	position: relative;
}
.fc-debug .debug-close {
	cursor: pointer;
	margin: auto;
	color: #FEFEFE;
	font-size: 25px;
	font-family: fantasy, tahoma, verdana, arial, sans-serif, serif;
	line-height: 25px;
	text-align: center;
	background: #F55A4E;
	width: 25px;
	height: 25px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	position: absolute;
	top: 10px;
	right: 10px;
	box-shadow:
		inset 0 0 0 1px #FEFEFE,
		0 0 3px rgba(0, 0, 0, .3);
	-moz-box-shadow:
		inset 0 0 0 1px #FEFEFE,
		0 0 3px rgba(0, 0, 0, .3);
	-webkit-box-shadow:
		inset 0 0 0 1px #FEFEFE,
		0 0 3px rgba(0, 0, 0, .3);
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	z-index: 2;
}
.fc-debug .debug-menu > .debug-close {
	top: 0;
	bottom: 0;
}
.fc-debug .debug-close:hover {
	background: #F32B1E;
}
.fc-debug .debug-tab {
	padding: 10px 20px;
	background: #EFEFEF;
	box-shadow: inset 0 -1px #DFDFDF;
	-moz-box-shadow: inset 0 -1px #DFDFDF;
	-webkit-box-shadow: inset 0 -1px #DFDFDF;
}
.fc-debug .debug-tab > * {
	cursor: pointer;
	display: inline-block;
	padding: 5px 10px;
	color: #AFAFAF;
	font-size: 16px;
	background: #FEFEFE;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow:
		inset 0 0 0 1px #CFCFCF,
		0 0 3px rgba(0, 0, 0, .1);
	-moz-box-shadow:
		inset 0 0 0 1px #CFCFCF,
		0 0 3px rgba(0, 0, 0, .1);
	-webkit-box-shadow:
		inset 0 0 0 1px #CFCFCF,
		0 0 3px rgba(0, 0, 0, .1);
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
}
.fc-debug .debug-tab > *:hover,
.fc-debug .debug-tab > *.active {
	color: #FEFEFE;
	background: #BFBFBF;
	box-shadow:
		inset 0 0 0 1px #BFBFBF,
		inset 0 0 0 2px #FEFEFE,
		0 0 1px rgba(0, 0, 0, .1);
	-moz-box-shadow:
		inset 0 0 0 1px #BFBFBF,
		inset 0 0 0 2px #FEFEFE,
		0 0 1px rgba(0, 0, 0, .1);
	-webkit-box-shadow:
		inset 0 0 0 1px #BFBFBF,
		inset 0 0 0 2px #FEFEFE,
		0 0 1px rgba(0, 0, 0, .1);
}
.fc-debug .debug-tab > * + * {
	margin-left: 15px;
}
.fc-debug .debug-url {
	margin: auto;
	padding: 5px 20px;
	color: #FF5722;
	font-size: 125%;
	background: #F0F0F0;
	box-shadow:
		inset 0 1px #FEFEFE,
		inset 0 -1px #DFDFDF,
		inset 0 -2px #FEFEFE;
	-moz-box-shadow:
		inset 0 1px #FEFEFE,
		inset 0 -1px #DFDFDF,
		inset 0 -2px #FEFEFE;
	-webkit-box-shadow:
		inset 0 1px #FEFEFE,
		inset 0 -1px #DFDFDF,
		inset 0 -2px #FEFEFE;
}
.fc-debug .debug-url:before {
	content: "";
	display: inline-block;
	margin-right: 10px;
	width: 0;
	height: 0;
	border-left: 5px solid #FF5722;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.fc-debug .debug-url > * {
	color: inherit;
	font-size: inherit;
	text-decoration: none;
}
.fc-debug .debug-tab-target {
	display: none;
}
.fc-debug .debug-tab-target.active {
	display: block;
}
.fc-debug .debug-mail {
	margin: 10px 0;
	padding: 0 20px;
	position: relative;
}
.fc-debug .debug-button {
	cursor: pointer;
	margin: auto;
	padding: 5px 15px;
	color: #FEFEFE;
	font-size: 20px;
	text-align: center;
	background: #4CAF50;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	box-shadow:
		inset 0 0 0 1px #4CAF50,
		inset 0 0 0 2px #FEFEFE,
		0 0 1px rgba(0, 0, 0, .1);
	-moz-box-shadow:
		inset 0 0 0 1px #4CAF50,
		inset 0 0 0 2px #FEFEFE,
		0 0 1px rgba(0, 0, 0, .1);
	-webkit-box-shadow:
		inset 0 0 0 1px #4CAF50,
		inset 0 0 0 2px #FEFEFE,
		0 0 1px rgba(0, 0, 0, .1);
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
}
.fc-debug .debug-button:hover {
	background: #4BC94F;
	box-shadow:
		inset 0 0 0 1px #4BC94F,
		inset 0 0 0 2px #FEFEFE,
		0 0 1px rgba(0, 0, 0, .1);
	-moz-box-shadow:
		inset 0 0 0 1px #4BC94F,
		inset 0 0 0 2px #FEFEFE,
		0 0 1px rgba(0, 0, 0, .1);
	-webkit-box-shadow:
		inset 0 0 0 1px #4BC94F,
		inset 0 0 0 2px #FEFEFE,
		0 0 1px rgba(0, 0, 0, .1);
}
.fc-debug .debug-block {
	display: table;
	width: 100%;
}
.fc-debug .debug-block > * {
	display: table-cell;
	padding: 3px 5px;
	width: 50%;
}
.fc-debug .debug-caption {
	color: #909090;
	text-align: right;
	width: 30%;
}
.fc-debug .debug-value {
	color: #607D8B;
	width: 70%;
}
.fc-debug .debug-subject {
	margin: 10px 20px;
	padding: 5px 10px;
	color: #FEFEFE;
	font-size: 150%;
	font-weight: 600;
	background: #607D8B;
	box-shadow:
		inset 0 0 0 1px #607D8B,
		inset 0 0 0 2px #FEFEFE;
	-moz-box-shadow:
		inset 0 0 0 1px #607D8B,
		inset 0 0 0 2px #FEFEFE;
	-webkit-box-shadow:
		inset 0 0 0 1px #607D8B,
		inset 0 0 0 2px #FEFEFE;
}
.fc-debug .debug-content {
	margin: auto;
	opacity: 0;
	background: #FEFEFE;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-webkit-transition: opacity .3s ease;
}
.fc-debug .debug-content.active {
	opacity: 1;
}
.fc-debug .debug-segment {
	display: none;
	margin: auto;
	padding: 10px 20px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fc-debug .debug-segment.active {
	display: block;
}
.fc-debug .debug-segment > * {
	display: none;
	margin: auto;
	width: 100%;
	height: 100%;
	position: relative;
}
.fc-debug .debug-segment > *.active {
	display: block;
}
.fc-debug .debug-switch {
	cursor: pointer;
	opacity: .1;
	margin: auto;
	padding: 3px 5px;
	color: #303030;
	background: #DFDFDF;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	position: absolute;
	top: 0;
	right: 0;
	box-shadow: 0 0 0 1px #CFCFCF;
	-moz-box-shadow: 0 0 0 1px #CFCFCF;
	-webkit-box-shadow: 0 0 0 1px #CFCFCF;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	z-index: 1;
}
.fc-debug .debug-segment > *:hover .debug-switch {
	opacity: 1;
	color: #4CAF50;
	background: #F3F3F3;
	box-shadow: 0 0 0 1px #DCDCDC;
	-moz-box-shadow: 0 0 0 1px #DCDCDC;
	-webkit-box-shadow: 0 0 0 1px #DCDCDC;
}
.fc-debug iframe {
	margin: auto;
	width: 100%;
	height: 100%;
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fc-debug pre {
	margin: auto;
	font-family: Consolas, Menlo, Monaco, Courier, "Courier New", monospace, sans-serif, serif;
	white-space: pre-line;
	word-wrap: break-word;
	word-break: break-all;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	overflow-y: auto;
}
.fc-debug pre::-webkit-scrollbar {
	background: none;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.fc-debug pre:hover::-webkit-scrollbar {
	background: #F0F0F0;
}
.fc-debug pre::-webkit-scrollbar-thumb {
	background: none;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.fc-debug pre:hover::-webkit-scrollbar-thumb {
	background: #BFBFBF;
}
.fc-debug pre::-webkit-scrollbar-track {
	background: none;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.fc-debug pre:hover::-webkit-scrollbar-track {
	background: #EFEFEF;
}

.fc-messages-error {
	opacity: 0;
	margin: auto;
	background: rgba(0, 0, 0, .75);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	visibility: hidden;
	z-index: 999999;
}
body.debugger .fc-messages-error {
	opacity: 1;
	visibility: visible;
}
.fc-messages-error .messages-close {
	cursor: pointer;
	margin: auto;
	color: #EFEFEF;
	font-size: 20px;
	font-variant: small-caps;
	line-height: 30px;
	text-align: center;
	background: rgba(255, 0, 0, .5);
	width: 120px;
	height: 30px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15%;
	box-shadow:
		0 0 5px rgba(0, 0, 0, .5),
		inset 0 0 0 1px rgba(255, 0, 0, .5),
		inset 0 0 0 2px rgba(0, 0, 0, .5);
	-moz-box-shadow:
		0 0 5px rgba(0, 0, 0, .5),
		inset 0 0 0 1px rgba(255, 0, 0, .5),
		inset 0 0 0 2px rgba(0, 0, 0, .5);
	-webkit-box-shadow:
		0 0 5px rgba(0, 0, 0, .5),
		inset 0 0 0 1px rgba(255, 0, 0, .5),
		inset 0 0 0 2px rgba(0, 0, 0, .5);
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
}
.fc-messages-error .messages-close:hover {
	color: #FEFEFE;
	background: rgba(255, 0, 0, .75);
}
.fc-messages-error .messages-title {
	padding: 10px;
	color: #9C27B0;
	font-size: 150%;
	text-align: center;
	border-bottom: 1px solid #303030;
}
.fc-messages-error .messages-main {
	margin-right: -50%;
	color: #909090;
	background: rgba(0, 0, 0, .75);
	width: 100%;
	max-width: 800px;
	max-height: 50%;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	position: absolute;
	top: 50%;
	left: 50%;
	box-shadow:
		0 0 5px rgba(0, 0, 0, .5),
		0 0 0 1px rgba(0, 0, 0, .75),
		0 0 0 2px rgba(255, 255, 255, .15);
	-moz-box-shadow:
		0 0 5px rgba(0, 0, 0, .5),
		0 0 0 1px rgba(0, 0, 0, .75),
		0 0 0 2px rgba(255, 255, 255, .15);
	-webkit-box-shadow:
		0 0 5px rgba(0, 0, 0, .5),
		0 0 0 1px rgba(0, 0, 0, .75),
		0 0 0 2px rgba(255, 255, 255, .15);
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	overflow: hidden;
	overflow-y: auto;
}
.fc-messages-error .messages-main::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.fc-messages-error .messages-main::-webkit-scrollbar-thumb {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.fc-messages-error .messages-main::-webkit-scrollbar-track {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.fc-messages-error pre {
	padding: 1.5em;
	font-family: Consolas, Menlo, Monaco, Courier, "Courier New", monospace, sans-serif, serif;
	white-space: pre-line;
	word-wrap: break-word;
	word-break: break-all;
}



.fc-loading {
	opacity: 0;
	background: rgba(0, 0, 0, .9);
	margin: auto;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	visibility: hidden;
	z-index: 999999999;
}
.fc-loading.active {
	opacity: 1;
	visibility: visible;
}
.fc-loading:before {
	content: "Loading...";
	color: rgba(255, 255, 255, .5);
	font-size: 100%;
	text-align: center;
	line-height: 100px;
	background: url(../img/shared/loading.svg) no-repeat center;
	width: 100px;
	height: 100px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fc-loading[data]:before {
	content: attr(data);
}
.fc-loading.no-text:before {
	content: "";
}





/*
 * FCMailer - 2017
 *
 * StyleName: shared.css
 * Version: 1.4
 *
 * FC-Dev team
 * http://foodconnection.jp/
 *
 */
#mail {
	padding-top: 5%;
	padding-bottom: 5%;
	font-size: 12px;
}
#mail .color {
	color: #e64e54;
}
input, select, textarea, button {
	border: none;
	outline: none;
	min-height: 20px;
}
input[type="radio"], input[type="radio"] {
	min-height: 14px;
	display: inherit;
	width: auto;
}
input, textarea {
	position: relative;
	display: inline-block;
	width: 95%;
	min-height: 25px;
}
.require:before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 2px;
	background: url(../img/mail/input-border.png) repeat-y center top;
	content: '';
}
textarea {
	min-height: 100px;
	resize: none;
}
button {
	margin-bottom: 10px;
}
label {
	display: block;
}
#mail .row {
	padding-bottom: 5%;
	border-bottom: solid 1px #dbbe75;
}
#mail .row > .col {
}
#mail .mark-require {
	padding-left: 14px;
	line-height: 0;
}
#mail .caption {
	vertical-align: top;
	font-weight: bold;
}
#mail .input {
}
#mail label {
	display: inline-block;
	padding-right: 20px;
}
#mail .submit {
	text-align: center;
	background: none;
	display: table;
	margin: 5% auto 0;
}
#mail .submit button {
	cursor: pointer;
	margin: 0 2%;
	width: 45%;
}
/*
 * Custom mailform
 *
 */
#mail .w_40 {
	width: 47%;
	margin-right: 2%;
}
#mail .input > .form-value {
	display: inline-block;
	padding-bottom: 2%;
}
#mail [class^=error] {
	left: 0;
	bottom: -5%;
	font-size: 9px;
	font-weight: normal;
}
#mail .fc-confirm .confirm-value {
	cursor: pointer;
}
#mail .text1 {
	line-height: 22px;
}
#mail .text1 p {
	margin: 0;
	padding-top: 5%;
}
#mail .text2 {
	line-height: 22px;
}
#mail .text2 p {
	margin: 0;
}
#thank .txt {
	padding:15px 0;
	text-align:center;
	line-height: 30px;
	color: #e64e54;
	font-weight: bold;
}

#link_never{
	text-align: center;
	padding-top: 20px;
}

.fc-confirm .mark-require{
	display: none;
}
.fc-confirm .w_40{
	width: auto !important;
}