/**********
 style-form.css
**********/

/** mailFormWrap **/
#mailFormWrap{
	background:#fff;
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	padding:30px;
	font-size:1.6rem;
}


#mailFormWrap * {
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
	#mailFormWrap * {
		word-break: break-all;
		white-space: normal;
	}
}

form#mailformpro dl dt {
	float: none;
	width: auto;
	clear: both;
	font-size:1.6rem;
	padding: 15px 0 0 10px;
	text-align: left;
	margin: 0px;
}
form#mailformpro dl dt,
form#mailformpro dl dt span {
	vertical-align: middle;
	line-height: 1.1em;
}
form#mailformpro dl dt span {
	margin-top: -0.3em;
}
form#mailformpro dl dd {
	border: none;
	margin: 0px;
	padding: 15px;
	font-size:1.6rem;
	line-height: 1.5em;
	text-align: left;
}

form#mailformpro dl dt:nth-of-type(2n),
form#mailformpro dl dd:nth-of-type(2n){
	background:#f0ffff;
}


.mfp_rows {
	clear: both;
}
.mfp_rows:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
.mfp_rows input[type="text"],
.mfp_rows input[type="email"],
.mfp_rows input[type="tel"],
.mfp_rows input[type="number"],
.mfp_rows input[type="date"],
.mfp_rows input[type="file"],
.mfp_rows select,
.mfp_rows button,
form#mailformpro .mfp_rows label {
	width: 100%;
	min-width: 100%;
	word-break: break-all;
	white-space: normal;
}

.mfp_rows textarea {
	width: 100%;
	min-width: 100%;
}

.mfp_rows input[type="text"],
.mfp_rows input[type="email"],
.mfp_rows input[type="tel"],
.mfp_rows input[type="number"],
.mfp_rows input[type="date"],
.mfp_rows input[type="file"],
.mfp_rows textarea{
	font-size:1.9rem;
	padding:5px auto;
}

.mfp_rows .mfp_col1,.mfp_rows .mfp_col2,.mfp_rows .mfp_col3,.mfp_rows .mfp_col4,.mfp_rows .mfp_col5,.mfp_rows .mfp_col6,.mfp_rows .mfp_col7,.mfp_rows .mfp_col8,.mfp_rows .mfp_col9,.mfp_rows .mfp_col10 {
	float: left;
	padding: 0 1.5%;
}

.mfp_rows .mfp_col1 {width: 10%;}
.mfp_rows .mfp_col2 {width: 20%;}
.mfp_rows .mfp_col3 {width: 30%;}
.mfp_rows .mfp_col4 {width: 40%;}
.mfp_rows .mfp_col5 {width: 50%;}
.mfp_rows .mfp_col6 {width: 60%;}
.mfp_rows .mfp_col7 {width: 70%;}
.mfp_rows .mfp_col8 {width: 80%;}
.mfp_rows .mfp_col9 {width: 90%;}
.mfp_rows .mfp_col10 {width: 100%;}

@media only screen and (max-width: 1050px) {
	.mfp_rows .mfp_col1,
	.mfp_rows .mfp_col2,
	.mfp_rows .mfp_col3,
	.mfp_rows .mfp_col4,
	.mfp_rows .mfp_col5,
	.mfp_rows .mfp_col6,
	.mfp_rows .mfp_col7,
	.mfp_rows .mfp_col8,
	.mfp_rows .mfp_col9,
	.mfp_rows .mfp_col10 {width: 100%;}
}




div#example_selector span {
	font-size: 10px;
	color: #666;
}
div#example_selector select {
	display: block;
	width: 100%;
}

form#mailformpro input,select,textarea{
	margin-bottom:5px;
}

form#mailformprot input,select{
	vertical-align:0.1em;
}

form#mailformpro dl dd textarea{
	height: calc( 1.5em * 5.4 );
	line-height: 1.5;
}

/** submitBtn **/
#submitBtn{
	margin-top:25px;
}

#submitBtn button{
	border-radius:6px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
    position: relative;
    display: inline-block;
    padding: 0.7em 2.2em;
	font-size:1.6rem;
    text-decoration: none;
    color: #fff;
    background: #3e3a39;/*色*/
    border: solid 1px #3e3a39;;/*線色*/
    /*border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 0 rgba(0,0,0,0.2);*/
}

#submitBtn button:hover,
#submitBtn button:active {
  background: #000;
  color:#fff;
    text-shadow:none;
}

#submitBtn button:first-of-type{
	margin-right:15px;
}


/** checkbox **/
.checkbox-input{
}


/** select **/
.selectWrap{
	width: 100%;
	position: relative;
	display: inline-block;
}
.selectWrap::after {
	content: '';
	width: 6px;
	height: 6px;
	border: 0px;
	border-bottom: solid 2px #b4b3b3;
	border-right: solid 2px #b4b3b3;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 27px;
	margin-top: -8px;
	z-index:3;
}
.select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 40px;
	background: transparent;
	position: relative;
	z-index: 1;
	padding: 0 40px 0 10px;
	border: 1px solid #ccc;
	font-size:1.6rem;
	background:#fff;
}
select::-ms-expand {
    display: none;
}



/* PC・大型タブレット：769px～1050px */
@media only screen and (min-width: 769px) and (max-width: 1050px) {
/**@media only screen and (min-width: 769px) and (max-width: 1100px) {**/


}


/* PC向け：1050px以上で固定 */
@media only screen and (min-width: 1051px) {



}

@media print {



}



