@charset "utf-8";
/* reserve */

#reserve ul{
    margin:0 0 100px 0;
	padding: 0;
	width: 100%;
}

#reserve .must {
	font-size: 0.8em;
	background: #777;
	color: white;
	padding: 2px 6px;
}
#reserve ul li.form-list{
    max-width: 760px;
    margin: 10px auto 0 auto;
	list-style-type: none;
		font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	color: #777;		/*文字色*/
	line-height: 2;		/*行間*/
	padding: 4px 10px 0 10px;
	border-bottom: solid 1px #CDCDCD;
}

#reserve input , button , textarea , select {
	margin:0;
	padding:0;
	border:none;
	outline:none;
	background:none;
    font-size: 16px;
}

#reserve .form-list input[type='text'] , 
#reserve .form-list input[type='email'] , 
#reserve .form-list textarea,
#reserve .form-list select {
	width:100%;
	border:1px solid #777;
	background:#fff;
	padding: 10px;
	-webkit-appearance:none;
	   -moz-appearance:none;
	        appearance:none;
}

#reserve .form-list select{
	line-height: 2em;
}

#reserve .form-list input[type='text'] , input[type='email'] {
	height:50px;
}

#reserve .form-list input[type='radio'] {
	width: 16px;
	height: 16px;
	vertical-align: middle;
}
#reserve .form-list input[type='checkbox'] {
	width: 25px;
	height: 25px;
	vertical-align: middle;
}
#reserve .submit-btn{
    width:340px;
    margin: 0 auto;
	display: flex;
	justify-content: center;
}

#reserve input[type='submit'],#reserve input[type='reset'],#reserve input[type='button']{
   border:1px solid #777;
    color: #777;
    text-align: center;
    padding: 5px 20px;
 	height:50px;
    margin: 0 auto;
    transition: all .3s;
}

#reserve input[type='submit']:hover,#reserve input[type='reset']:hover,#reserve input[type='button']:hover{
    background: #333;
    color: #fff;
} 

#reserve .form-list dl{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	padding:0 0 20px 0;
}

#reserve .form-list dt{
    width:30%;
}

#reserve .form-list dd{
    width:66%;
}

#reserve .form-list textarea {
	height:200px;
}



@media screen and (max-width:768px) {
#reserve .form-list dt{
	margin:0 0 10px 0;
}
#reserve .form-list dt,
#reserve .form-list dd{
    width:100%;
}
	
}


