@charset "UTF-8";
/* CSS Document */


#contactarea{
width: 90%;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
}

.con_box{
	width: 100%;
	padding-bottom: 15px;
	border-bottom: 1px dotted #bbb;
}

input[type='text']{
  width: 100%;
  max-width: 400px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}


/* -------セレクトボックス --------*/
.select-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.select-wrap:before {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  content: '';
  width: 15px;
  height: 15px;
  background: url("https://kannoaya.com/contact/images/yajirushi.png") no-repeat;
  background-size: contain;
}

.select-wrap select{
  width: 100%;
  outline:none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  padding: 5px;
  border:1px solid #ccc;
  background-color: #fff;
  border-radius: 5px;
  font-size: 13px;
}

.select-wrap select::-ms-expand {
  display: none;
}
 
/* -------テキストエリア --------*/
textarea{
  width: 98%;
  height: 300px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* -------アイテム --------*/
.item-name{margin-top: 10px;}

/* -------送信ボタン --------*/

.submitarea{
	width: 100%;
	margin-top: 20px;
	text-align: center;
}

input[type="submit"] {
			width: 120px;
			height: 45px;
			font-size: 18px;
			background-color: #666;
			border: none;
			color: #fff;
			-webkit-transition: background-color .2s;
			transition: background-color .2s;
			cursor: pointer;
			-webkit-appearance: none;
			border-radius: 6px;
		}
		input[type="submit"]:hover {
			background-color: #59b1eb;
		}
		input[type="submit"][disabled] {
			background-color: #ccc;
			cursor: default;
		}

/* -------前に戻るボタン --------*/

input[type="button"] {
			width: 120px;
			height: 45px;
			font-size: 18px;
			background-color: #666;
			border: none;
			color: #fff;
			-webkit-transition: background-color .2s;
			transition: background-color .2s;
			cursor: pointer;
			-webkit-appearance: none;
			border-radius: 6px;
		}
		input[type="button"]:hover {
			background-color: #59b1eb;
		}
		input[type="button"][disabled] {
			background-color: #ccc;
			cursor: default;
		}


.small{font-size: 12px;
line-height: 1.3;
padding-top: 5px;
padding-bottom: 5px;}


/* -------確認・エラー画面 --------*/

.form{
width:100%;
border-collapse: separate;
border-spacing: 0px;
border-top: 1px solid #bbb;
border-left: 0px solid #bbb;
border-bottom:0px solid #bbb;
margin-left:auto;
margin-right:auto;

}
.form th{
width:35%;
text-align: left;
vertical-align: top;
background-color: #bbb;
border-top: 1px solid #bbb;
border-bottom: 1px solid #fff;
color:#fff;
font-size:16px;
text-align:center;
padding:3px;
}
.form td{
width:65%;
background-color: #fff;
border-right: 1px solid #bbb;
border-bottom: 1px solid #bbb;
color:#000;
font-size:16px;
text-align:left;
padding:3px 3px 3px 10px;
}




