/*------------------------------------------

MV

------------------------------------------*/
.mv-box {
	background-image: url(../images/contact/mv.jpg);
}


/*------------------------------------------

ページ

------------------------------------------*/
.fld-tit {
	width: 225px;
	color: #185abc;
	font-size: 1.8rem;
}

.fld-con {
	width: calc(100% - 245px);
	font-size: 1.6rem;
}


/*PC*/
@media screen and (min-width: 768px) {
	main .inr {
		padding: 0 90px;
	}
}/*END*/

/*Smartphone*/
@media screen and (max-width: 767px) {
	.fld-tit {
		font-size: 1.6rem;
		font-weight: bold;
	}

	.fld-con {
		font-size: 1.5rem;
	}
}/*END*/


/*------------------------------------------

	フォーム

------------------------------------------*/
input[type="radio"],
input[type="checkbox"] {
	display: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    background-color: #f8f8f8;
    padding: 12px 35px;
}

textarea::placeholder,
textarea:-ms-input-placeholder,
textarea::-ms-input-placeholder,

input::placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder {
	color: #666;
}

select {
	padding-right: 30px;
}
.slct {
	position: relative;
}
.slct::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 4px 0 4px;
	border-color: #000 transparent transparent transparent;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	pointer-events: none;
}

.ck-prv {
	display: inline-block;
	position: relative;
	padding-left: 35px;
}
.ck-prv::before {
	content: "";
    width: 25px;
    height: 25px;
	background-color: #fff;
	border: #185abc 1px solid;
	border-radius: 0;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
input:checked ~ .ck-prv::after {
    content: "";
    display: block;
    width: 16px;
    height: 11px;
    border-top: #185abc 4px solid;
    border-right: #185abc 4px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(135deg);
    position: absolute;
    left: 5px;
    top: 6px;
}

.ck-prv a {
    color: #185abc;
	font-weight: bold;
	text-decoration: underline;
    padding-bottom: 5px;
}

.btn-sbmt {
	display: inline-block;
	position: relative;
}
.btn-sbmt::after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 30px;
    right: 25px;
    margin-top: -4px;
}
.mw_wp_form .sbmt {
    min-width: 250px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    background: rgb(65 202 254);
    background: -moz-linear-gradient(178deg, rgba(65 202 254) 0%, rgba(86 146 246) 100%);
    background: -webkit-linear-gradient(178deg, rgba(65 202 254) 0%, rgba(86 146 246) 100%);
    background: linear-gradient(178deg, rgb(65 202 254) 0%, rgb(86 146 246) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#49b4fb",endColorstr="#5497f7",GradientType=1);
    border-bottom: none;
    text-align: center;
    border-radius: 100px;
    display: inline-block;
    padding: 1px 25px;
    position: relative;
}
.mw_wp_form .sbmt:disabled {
	opacity: .5;
}

.mw_wp_form .sbmt.rtn {
    width: auto;
    height: auto;
    text-decoration: underline;
    background: 0 0;
    border-radius: 0;
    color: #4c6ed1;
    padding-bottom: 0;
	margin-top: 30px;
}

.mw_wp_form .sbmt,
.mw_wp_form .sbmt.rtn {
	transition: .3s;
}
.mw_wp_form .sbmt:hover,
.mw_wp_form .sbmt.rtn:hover {
	opacity: .5;
}

.req::after {
    content: "\5FC5\9808";
    font-size: 1.4rem;
	font-weight: bold;
    color: #fff;
    background-color: #ec9103;
    padding: 4px 5px;
    margin-left: 10px;
    position: relative;
    top: -3px;
}

.grecaptcha-badge {
	bottom: 80px!important;
}

/*PC*/
@media screen and (min-width: 768px) {
	.mwform-radio-field-text {
		position: relative;
		padding-left: 40px;
	}
	.mwform-radio-field-text::before {
		content: "";
		width: 30px;
		height: 30px;
		background-color: #fff;
		border: #111 1px solid;
		border-radius: 100px;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	input:checked ~ .mwform-radio-field-text::after {
		content: "";
		display: block;
		width: 20px;
		height: 20px;
		background-color: #3358a4;
		border-radius: 100px;
		position: absolute;
		left: 5px;
		top: -1px;
	}

	.mwform-checkbox-field-text {
		position: relative;
		padding-left: 40px;
	}
	.mwform-checkbox-field-text::before {
		content: "";
		width: 30px;
		height: 30px;
		background-color: #fff;
		border: #111 1px solid;
		border-radius: 0;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	input:checked ~ .mwform-checkbox-field-text::after {
		content: "";
		display: block;
		width: 17px;
		height: 12px;
		border-top: #3358a4 5px solid;
		border-right: #3358a4 5px solid;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(135deg);
		position: absolute;
		left: 6px;
		top: 1px;
	}

	.req:after {
		font-size: 1.3rem;
	}
}/*END*/

/*Smartphone*/
@media screen and (max-width: 767px) {
	.fld-tit,
	.fld-con,
	.sub-tit,
	.sub-con {
		width: 100%;
	}

	.fld-tit {
		margin-bottom: 15px;
	}

	.mwform-checkbox-field,
	.mwform-radio-field {
		width: 100%;
		display: block;
		margin: 0;
		margin-bottom: 15px;
	}
	.mwform-checkbox-field:last-of-type,
	.mwform-radio-field:last-of-type {
		margin-bottom: 0;
	}
	.mw_wp_form .horizontal-item + .horizontal-item {
		margin-left: 0!important;
	}
	.mwform-checkbox-field label,
	.mwform-radio-field label {
		width: 100%;
		border: #3358a4 1px solid;
		border-radius: 5px;
		display: block;
	}
	
	.mwform-checkbox-field-text,
	.mwform-radio-field-text {
		display: block;
		padding: .6em 1em .6em 2.3em;
		position: relative;
	}
	input:checked ~ .mwform-checkbox-field-text,
	input:checked ~ .mwform-radio-field-text {
		color: #fff;
		background-color: #3358a4;
	}
	input:checked ~ .mwform-checkbox-field-text::after,
	input:checked ~ .mwform-radio-field-text::after {
		content: "";
		display: block;
		width: 12px;
		height: 8px;
		border-top: #fff 3px solid;
		border-right: #fff 3px solid;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(135deg);
		position: absolute;
		left: 11px;
		top: 17px;
	}

	.ck-prv {
		font-size: 1.3rem;
	}

	.mw_wp_form .sbmt {
		width: 220px;
		height: 54px;
		font-size: 1.6rem;
	}
	.btn-sbmt:after {
		width: 12px;
		height: 12px;
		top: 21px;
	}
}/*END*/


/*------------------------------------------

	確認画面非表示項目

------------------------------------------*/
.confirm #prv2,
.confirm .ck-prv,
.confirm .slct::after,
.confirm .req::after,
.confirm .btn-srch {
	display: none;
}


/*------------------------------------------

	リアルタイムエラー

------------------------------------------*/
.fld-con {
	position: relative;
}
.tooltip,
.mw_wp_form .error {
    font-size: 1.4rem;
    color: #fff!important;
    line-height: 22px;
    background-color: #df464c;
    border-radius: 5px;
    display: none;
    padding: 5px 10px;
	position: relative;
}
.tooltip {
	top: -5px;
}
.tooltip.check {
	top: -15px;
}
.mw_wp_form .error {
	top: 6px;
}

.tooltip:after,
.mw_wp_form .error:after {
    content: '';
    position: absolute;
    left: 30px;
    border-top: solid 7px transparent;
    border-bottom: solid 7px transparent;
    border-right: solid 13px #df464c;
    transform: rotate(28deg) translate(0,-50%);
	z-index: 1;
}
.tooltip:after {
    bottom: -16px;
}
.mw_wp_form .error:after {
    top: -16px;
    left: 15px;
    transform: rotate(210deg) translate(0,-50%);
}

/*Smartphone*/
@media screen and (max-width: 767px) {
	.tooltip {
		margin-top: 10px;
	}
}/*END*/