@charset "UTF-8";

@media screen and (max-width: 768px) {

html,
body{
    width: 100%;
   	overflow-x: hidden;
   	margin: 0;
   	padding: 0;
}



.pc {
	display: none;
}

.sp {
	display: block;
}

#formBody {
	width: auto;
	padding: 5px;
	margin: 10px auto 20px;
	font-size: 14px;
}

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

#formBody .short[type="text"] {
    width: 60%;
}

#formBody .x-short[type="text"] {
    width: 25%;
}

#formBody input[type="email"],
#formBody input[type="text"], #formBody textarea {
    width: 90%;
}

#formBody .inputBox {
    padding-left: 20px;
    margin-bottom: 5px;
}

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

#formBody input[type="text"],
#formBody input,
#formBody select,
#formBody textarea {
    border:1px solid #888;
	width: 80%;
	padding: 5px 5%;
	font-size: 15px;
	line-height: 24px;
/*	color: #dfbab5;*/
	background: #fff;
	margin: 5px 0;
	border-radius: 5px;
	-webkit-appearance: none;
}

#formBody input[type="date"],
#formBody select {
	line-height: 24px;
	width: 70%;
}

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


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

#formBody .return {
	display: inline-block;
	border:none;
	padding: 10px 30px;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	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: 0;
    -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;
    margin: 20px 0;
}

#formBody .submitOff {
    cursor: default;
    background: -webkit-gradient( linear, left top, left bottom, from( #ccc), to( #ccc) );
    -webkit-box-shadow: 0;
    -webkit-appearance: none;
    background: -moz-linear-gradient( top, #ccc, #ccc );
    -moz-box-shadow: 0;
}


/*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;
	margin-bottom: 5px;
	line-height: 21px;
}

#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;
}

#formBody #datetime-time,
#formBody #datetime-day,
#formBody #datetime-month,
#formBody #datetime-year{
	font-size: 18px;
	width: auto;
}

#formBody .width70 {
	width: 50%;
}

#formBody .width60 {
	width: 50%;
}

#formBody .width55 {
	width: 55%;
}

#formBody .width50 {
	width: 50%;
}

#formBody .width40 {
	width: 50%;
}

#formBody .width25 {
	width: 55%;
}

#formBody .width20 {
	width: 50%;
}

#formBody .width30 {
	width: 50%;
}

#formBody .width10 {
	width: 50%;
}

.spL {
	text-align: left;
}

.spnShow {
	display: inline-block;
}


}

