/* -- MW WP Formカスタマイズ -- */

.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form span:not(.mwform-tel-field) > input[type="text"],
.mw_wp_form textarea {
 padding:	1em;
 width:		100%;
 -moz-box-sizing: border-box;
 -webkit-box-sizing: border-box;
 box-sizing:	border-box;
 font-size:	15px;
 border:	1px solid #ccc;
}

.mw_wp_form select {
 display:	block;
 position:	relative;
 width:		80%;
 height:	38px;
 font-size:	14px;
 font-size:	0.9rem;
 border:	1px solid #ccc;
 -webkit-border-radius: 4px;
 -moz-border-radius: 4px;
 -ms-border-radius: 4px;
 border-radius:	4px;
 overflow:	hidden;
 padding:	0 10px;
}

.mw_wp_form selectt:after {
 position:	absolute;
 display:	block;
 content:	'';
 width:		0;
 height:	0;
 border-top:	5px solid transparent;
 border-left:	5px solid transparent;
 border-bottom: 5px solid transparent;
 border-right:	5px solid transparent;
 border-top:	5px solid #333;
 top:		50%;
 right:		10px;
 margin-top:	-3px;
 pointer-events: none;
}

/* -- 「表」デザイン -- */
.mw_wp_form ul.blocktbl li:nth-child(odd) {
 font-size:	15px;
 width:		25%;
 border-bottom:	solid 1px #d6d6d6;
 padding:	10px 0px 10px 15px;
 font-weight:	bolder;
}

.mw_wp_form ul.blocktbl li:nth-child(even) {
 font-size:	15px;
 line-height:	200%;
 border-bottom:	solid 1px #d6d6d6;
 padding:	10px 10px;
}

/* -- 表示 -- */
.mw_wp_form {
 width:		94%;
 margin:	auto;
}

.mw_wp_form option,
.mw_wp_form textarea,
.mw_wp_form span:not(.mwform-tel-field) > input[type=text],
.mw_wp_form input[type=email],
.mw_wp_form input[type=search],
.mw_wp_form input[type=url] {
 width:		90%;
}

@media only screen and (max-width:40em) {
 .mw_wp_form ul, .mw_wp_form li {
 width:		97% !important;
 border:	1px solid #999;
 padding:	.5em 1em;
 display:	block;
/* border-top:	none;*/
 }
 ul.blocktbl li:nth-child(2n+1) { border-right-color: transparent !important; }
}

/* -- 「送信ボタン」デザイン -- */
.formbtn_Wrap input {
 background-color:#565c9c;
 border:	0;
 color:		#ffffff;
 font-size:	1.3em;
 font-weight:	bolder;
 margin:	0 auto;
 padding:	10px 50px;
 border-radius: 3px;
 cursor:	pointer;
 text-align:	center;
}

.formbtn_Wrap {
 text-align:	center;
 margin-top:	20px;
 cursor:	pointer;
}

.formbtn_Wrap input:hover {
 background:	#8d96ff;
 color:		#FFFFFF;
 cursor:	pointer;
}

.formbtn_Wrap br { display: none;}
/* -- 「必須」デザイン -- */
.hissu {
 font-size:	0.9em;
 padding:	6px;
 border-radius:	5px;
 margin-right:	10px;
 background:	#8d96ff;
 color:		#ffffff;
}

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