@charset "UTF-8";

/* iphone */
input[type=text],
input[type=tel],
input[type=email],
input[type=text]{
    -webkit-border-radius : 0;
    -webkit-appearance : none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* common */
.mailform input,
.mailform textarea {
	max-width: 100%;
	padding: 7px;
	border: 1px solid #bbb;
	border-radius: 2px;
	box-sizing: border-box;
}
.mailform input:read-only,
.mailform textarea:read-only {
	border: 0;
}
.mailform select {
	padding: 5px;
	border: 1px solid #bbb;
	border-radius: 2px;
}
.mailform label { padding: 3px;}
.mailform label input {
	margin-right: 7px !important;
}
.mailform ul,
.mailform ol {
	list-style-type: none;
}
.mailform_ico-required {
	display: inline-block;
	width: 3em;
	color: #fff;
	font-weight: bold;
	font-size: 11px;
	text-align: center;
	line-height: 1;
	vertical-align: bottom;
	background-color: #f43131;
	border-radius: 3px;
	padding: 4px 0;
	margin: 0 5px;
}
/* mailform */
.mailform {
	text-align: left;
}
.mailform_title {
	font-weight: bold;
	padding: 5px 0;
	margin-bottom: 10px;
}
.mailform_title .mailform_ico-required {
}
.mailform_title_txt {}
.mailform_txt {
	font-size: 90%;
	padding: 15px 0;
}
.mailform_title + .mailform_txt {
	padding-top: 5px;
}
.mailform_contents {
	padding-bottom: 30px;
}
.mailform_contents dl {
	position: relative;
	display: flex;
	align-items: center;
	line-height: 140%;
	margin: 10px 0;
}
.mailform_contents dl:before {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 25%;
	height: 100%;
	background-color: #f3f3f3;
	z-index: 1;
}
.mailform_contents dt {
	position: relative;
	width: 25%;
	font-weight: bold;
	padding: 8px 10px;
	box-sizing: border-box;
	z-index: 2;
}
.mailform_contents dd {
	width: 75%;
	padding: 8px 0 8px 20px;
	box-sizing: border-box;
}
.mailform_contents dt .mailform_ico-required {
	float: right;
	margin-right: 0;
}
.mailform_contents dd .mailform_ico-required {
	margin-left: 0;
}
.mailform_contents_detail + .mailform_contents_detail {
	padding-top: 15px;
}
.mailform_contents_detail_title {
	font-weight: bold;
	padding-bottom: 5px;
}
.mailform_prefectures li + li {
	padding-top: 5px;
}
.mailform_prefectures span { padding-right: 10px;}
@media screen and (max-width: 800px){
	.mailform_contents dl { display: block;}
	.mailform_contents dl:before { display: none;}
	.mailform_contents dt { width: inherit; background-color: #f3f3f3; padding: 10px 10px 7px;}
	.mailform_contents dd { width: inherit; padding: 10px;}
}
.mailform_privacy_confirm {
	text-align: center;
}
.mailform_privacy_confirm_txt {
	font-weight: bold;
	line-height: 160%;
	padding-bottom: 20px;
}
.mailform_privacy_confirm_agree {
	text-align: center;
	padding-bottom: 20px;
}
.mailform_submit {
	text-align: center;
}
.mailform_list li + li {
	padding-top: 5px;
}
.mailform_input-notice {
	display: inline-block;
	vertical-align: middle;
	font-size: 80%;
	padding-left: 10px;
}
@media screen and (max-width: 800px){
	.mailform_privacy_confirm_txt { font-size: 3.6vw;}
	.mailform_input-notice { padding-left: 0; padding-top: 5px;}
}
/* ボタン */
.mfp_element_submit,
.mfp_element_reset,
.mfp_element_button,
button.mfp_next,
button.mfp_prev,
.mailform_btn_dummy {
	height: 3em;
	font-size: 100%;
	border-radius: 3px;
	padding: 0 30px;
	box-sizing: border-box;
	cursor: pointer;

	color: #333;
	background-color: #f3f3f3;
	background-image: linear-gradient(to bottom, #fff, #f3f3f3);
	background-image: -ms-linear-gradient(top, #fff, #f3f3f3);
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#fff, EndColorStr=#f3f3f3);
	border: 1px solid #bbb;
}
.mfp_element_submit,
#mfp_button_send,
#mfp_button_send2 {
	width: 30%;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	background-color: #4397e7;
	background-image: linear-gradient(to bottom, #4397e7, #2877c3);
	background-image: -ms-linear-gradient(top, #4397e7, #2877c3);
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#4397e7, EndColorStr=#2877c3);
	border: 1px solid #2877c3;
}
.mailform_btn_dummy {
	width: 30%;
	color: #aaa;
	background-color: #eee;
	background-image: none;
	filter: none;
}
.mfp_element_submit:hover,
.mfp_element_reset:hover,
.mfp_element_button:hover,
button.mfp_next:hover,
button.mfp_prev:hover,
.mfp_element_submit:hover,
#mfp_button_send:hover,
#mfp_button_send2:hover {
	opacity: 0.5;
	transition: opacity 0.3s;
}
.mailform_btn_dummy:hover {
	opacity: 1;
}
#js-mailform_btn_submit {
	display: none;
}
/* 確認画面 */
#mfp_phase_confirm {
	display: none;
}
.mailform_confirm_title {
	color: #f43131;
	font-weight: bold;
	line-height: 140%;
	text-align: center;
	padding: 20px 0;
}
#mfp_phase_confirm h4 {
	display: none;
}
#mfp_phase_confirm table {
	border-collapse: separate;
	border-spacing: 5px;
	margin-bottom: 2em;
}
#mfp_phase_confirm th,
#mfp_phase_confirm td {
	text-align: left;
	line-height: 140%;
	vertical-align: middle;
	padding: 10px;
	box-sizing: border-box;
}
#mfp_phase_confirm th {
	width: 25%;
	background-color: #f3f3f3;
}
#mfp_phase_confirm td {
	width: 75%;
}
#mfp_phase_confirm .mfp_buttons {
	display: none;
}
#mfp_phase_confirm .mfp_buttons2 {
	clear: both;
	font-size: 95%;
	text-align: center;
}
@media screen and (max-width: 800px){
	.mailform_confirm_title { font-size: 3.5vw;}
	.mfp_element_submit,
	#mfp_button_send,
	#mfp_button_send2,
	.mailform_btn_dummy { width: inherit;}
	#mfp_phase_confirm th,
	#mfp_phase_confirm td { float: left; width: 100%;}
}

/* error */
div#mfp_warning { margin: 20px 0;}


