@charset "utf-8";

.dm {}

/* --------------------------------- contact */
#contactHeader .copy {
  font-size: 2rem;
  font-weight: bold;
  color: #ff1b7c;
  margin: 0 auto 10px;
}
#contactHeader .read {
  margin: 0 auto 30px;
}


#formWrap {
	width:100%;
	margin:0 auto 15px;
}

#formWrap h2 {
  font-size: 1.8rem;
  margin: 0 auto 15px;
  color: #ff7200;
  text-align: center;
  padding: 15px 0;
  border-top: solid 2px #ffaa84;
  border-bottom: solid 2px #ffaa84;
  background: -webkit-repeating-linear-gradient(-45deg, #fff8f0, #fff8f0 3px,#fff5e9 3px, #fff5e9 7px);
  background: repeating-linear-gradient(-45deg, #fff8f0, #fff8f0 3px,#fff5e9 3px, #fff5e9 7px);
}

#formWrap .bikou {
  font-size: 1.2rem;
  display: inline-block;
  margin: 5px 0 0;
}
#formWrap .read {
  margin: 0 auto 15px;
}
#formWrap .hissu {
  color: #e91616;
}

table.formTable{
	width:100%;
	margin:0 auto 15px;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
table.formTable td{
	text-align:left;
}

/*--------------------------------------
テキスト
---------------------------------------*/
input[type=text] {
  background: #fff;
  border: 1px solid #D7D7D7;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.1);
  border-radius: 3px;
  box-sizing: border-box;
  font-size: 13px;
  padding: 10px;
  height: 40px;
  width: 460px;
}

/*--------------------------------------
ラジオボタン
---------------------------------------*/
input[type=radio] {
  margin: 0;
  -ms-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}


/*--------------------------------------
チェックボックス
---------------------------------------*/
input[type=checkbox] {
  margin: 0;
  -ms-transform: scale(1.2, 1.2);
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}


/*--------------------------------------
プルダウン
---------------------------------------*/
select {
  appearance: none;
  border: 1px solid #D7D7D7;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.1);
  box-sizing: border-box;
  cursor: pointer;
  text-indent: .01px;
  text-overflow: "";
  padding: 10px;
  height: 40px;
  width: 40%;
}

/*--------------------------------------
テキストエリア
---------------------------------------*/
textarea {
  border: 1px solid #D7D7D7;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.1);
  box-sizing: border-box;
  font-size: 1rem;
  padding: 10px;
  width: 100%;
}

/*--------------------------------------
送信ボタン
---------------------------------------*/
.msr_sendbtn_03{
  margin:0 0 10px;
}
input[type=submit],
input[type=reset] {
  background: #FF1B7C;
  border: none;
  border-radius: 2px;
  transition: 0.2s ease-in-out;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.1);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  height: 50px;
  width: 180px;
}
input[type=reset] {
	background: #b8b8b8;
}
input[type=submit]:hover,
input[type=reset]:hover {
  opacity: 0.6;
}
