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

#formWrap {
	margin: 0 auto;
	line-height: 120%;
	padding: 0;
  width: 80vw;
}
table.formTable{
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
}
table.formTable th{
  padding: 10px 0;
  vertical-align: top;
	width: 50%;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
	line-height: 1.2em;
  text-align:left;
  position: relative;
  top: 15px;
}
table.formTable td{
  padding: 10px 0;
	width: 100%;
}
input[type="text"], textarea {
	width: 100%;
  min-height: 30px;
	padding: 10px;
  font-family: m-plus-2p, sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
	line-height: 1.2em;
  display: block;
  border: 1px solid #006EBE;
  background-color: #fff;
  color: #333;
}

.time{
	width: 80%;
  min-height: 20px;
	padding: 15px;
  font-family: m-plus-2p, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
	line-height: 1.2em;
  display: block;
  border: 1px solid #006EBE;
  background-color: #fff;
  color: #333;
}
.select-box {
	width: 90%;
  min-height: 20px;
	padding: 16px;
  font-family: m-plus-2p, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
	line-height: 1.2em;
  display: block;
  border: 1px solid #006EBE;
  background-color: #fff;
}
select {
  -webkit-appearance: none;
  appearance: none; /* デフォルトの矢印を無効 */
}
select::-ms-expand {
  display: none; /* デフォルトの矢印を無効(IE用) */
}
/* セレクトボックスの矢印デザイン変更 */
.contact::before {
  border-bottom: 4.5px solid red;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  content: "";
  position: absolute;
  right: 9px;
  top: 10px;
  width: 0;
}
.contact::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4.5px solid red;
  content: "";
  position: absolute;
  right: 9px;
  top: 21px;
  width: 0;
}

input::placeholder {
  color: #ADADAD;
  font-size: 90%;
}
input[type="submit"],.submit {
	border-radius: 10px;
	border-width: 0px;
  font-size: 110%;
  padding: 5px 0;
	width: 100%;
	height: 60px;
}


@media screen and (max-width:768px) {
  #formWrap {
    padding: 20px 0;
    margin: 0 auto;
  }
  table.formTable th,
  table.formTable td {
    width: 100%;
    display: block;
  }
  table.formTable th{
    padding: 20px 0 10px;
    top: 5px;
  }
  table.formTable td{
    padding: 10px 0;
  }
  input[type="text"], textarea {
    width: 100%;
  }
input::placeholder {
  color: #BEBEBE;
  font-size: 90%;
  }
}


/* スパム対策 */
.no-spam {
    display: none;
}
