@charset "UTF-8";

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ヘッダー*/

/*スマホ用*/
@media screen and (max-width: 768px) {

.ajax-loader {
	width: 16px;
}

#idxSide {
	display: none;
}


#formBody {
	width: 90%;
	padding: 20px 5%;
	margin: 10px auto 20px;
	background: #fff;
	color: #373737;
	font-size: 14px;
}

#formBody .formBox {
	padding: 10px 0;
	width: 100%;
}


#formBody label {
	display: block;
	font-size: 15px;
	padding-bottom: 5px;
	/*color: #fc6273;*/
}

#formBody input,
#formBody select,
#formBody textarea {
    border:1px solid #888;
	width: 80%;
	padding: 5px 5%;
	font-size: 15px;
	color: #515151;
	background: #fff;
	margin: 5px 0;
	border-radius: 5px;
	-webkit-appearance: none;
}

#formBody select {
	width: 70%;
}

/*エラー時の入力欄背景*/
#formBody .errorInput {
  	background: #ffe3fd !important;
}


#formBody .submit{
	display: inline-block;
	border:none;
	padding: 4px 30px;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
	background: #fc6273;
	border-radius: 5px;
    
/* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#fc6273),
        to(#fc6273)
        );
    -webkit-border-radius: 5px;
    -webkit-box-shadow: 1px 1px 1px #fff;
    -webkit-appearance: none;
         
/* Firefox */
    background: -moz-linear-gradient(
        top,
        #fc6273,
        #fc6273
        );
    -moz-border-radius: 5px;
    -moz-box-shadow: 1px 1px 1px #fff;
     
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#fc6273,endColorstr=#fc6273);
    zoom: 1;
}

#formBody .return {
	display: inline-block;
	border:none;
	padding: 4px 10px;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
	background: #61e78a;
	border-radius: 5px;
    
/* Webkit */
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#61e78a),
        to(#61e78a)
        );
    -webkit-border-radius: 5px;
    -webkit-box-shadow: 1px 1px 1px #fff;
    -webkit-appearance: none;
         
/* Firefox */
    background: -moz-linear-gradient(
        top,
        #61e78a,
        #61e78a
        );
    -moz-border-radius: 5px;
    -moz-box-shadow: 1px 1px 1px #fff;
     
/* IE */
    filter:progid:DXImageTransform.Microsoft.gradient
        (startColorstr=#61e78a,endColorstr=#61e78a);
    zoom: 1;
}

/*radio checkboxのカスタマイズ*/
#formBody input[type="radio"],
#formBody input[type="checkbox"] {
	-webkit-appearance:none;
	position: relative;
	margin-right: 5px;
	border-radius: 14px;
	border: 1px solid #888;
	-webkit-box-sizing: border-box;
	width: 28px;
	height: 28px;
	background: #fff;
	vertical-align: middle;
	padding: 0;
}

#formBody input[type="radio"]:checked,
#formBody input[type="checkbox"]:checked {
	background: #353535;
}

#formBody input[type="radio"]:checked:before,
#formBody input[type="checkbox"]:checked:before {
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	margin: -5px 0 0 -5px;
	content: "";
	border-radius: 5px;
	width: 10px;
	height: 10px;
	background: #FFFFFF;
}


/*汎用クラス*/


#formBody .inputNote {
	text-indent: 1em;
	line-height: 1.5;
	font-size: 12px;
}

#formBody .error {
	display: block;
	padding-left: 21px;
	margin-bottom: 5px;
	background: url("../img/errerIcon.png") left no-repeat;
	line-height: 21px;
	color: #bb1b00;
}

#formBody .short {
	width: 27%;
}

#formBody .x-short{
	width: 24%;
}

#formBody .result {
	text-indent: 30px;
	font-size: 16px;
	font-weight: bold;
}

#formBody .bt1{
	display: inline-block;
	padding: 10px 20px;
	width: 70%;
	text-align: center;
	font-size: 16px;
	color: #8a8a8a;
	cursor: pointer;
	background: none;
	border: 1px #8a8a8a solid;
	border-radius: 5px;
	margin-bottom: 10px;
}



}/*スマホ用END*/




