/*********************************/
/* コンタクトフォームスタイルCSS */
/*********************************/
body{
  font-family: Lato,"游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴシック Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

.contact-table table{
  margin: 0 auto;
}

/* .br{
  display: none;
} */

.br_sf{
  display: none;
}

/*各入力フォームスタイリング*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.tr-top{
  border-top: 2px solid #dee5dd;
}

.contact-table tr{
  border-bottom: 2px solid #dee5dd;
  border-left: 2px solid #dee5dd;
  border-right: 2px solid #dee5dd;
}


.contact-table th{
  background: #9a12af;
  color: #fff;
  padding: 20px;
  text-align: right;
  width: 26%;
}

.contact-table input,.contact-table textarea{
  width: 94%;
  border : 1px  #dee5dd solid;
  padding: 10px;
  border-radius: 5px;
  margin: 10px auto; /* 22.10.05 椎名追記*/
}

.checkbox input{
  width: 3%;
  cursor: pointer;
}

::placeholder {
  color: #ccc;
}

/* 必須のスタイリング */
.requied {
  font-size: 0.8em;
  display: inline-block;
  padding: 0.3em 0.3em 0.2em;
  margin-left: 5px;
  background: #dee5dd;
  color: rgba(0,0,0,.7);
  border-radius: 5px;
}

/*確認、送信ボタンスタイリング*/
.contact-button{
  margin-top: 30px;
  text-align: center;
}

.contact-button input{
  display: inline-block;
  border: 1px #dee5dd solid;
  padding: 15px 60px;
  border-radius: 5px;
  background: #9a12af;
  color: #fff;
  font-size: 19px;
  cursor: pointer;
}

.contact-button input:hover{
  opacity: .8;
}

label,button{
  cursor: pointer;
}

label{
  margin-right: 20px;
}

.agreement a{
  text-decoration: none;
  color: #1e73be;
}

.agreement a:hover{
  border-bottom: 1px solid;
  font-weight: 500;
}

/* 確認画面のスタイリング */
.confirm th{
  text-align: left;
}

.confirm td{
  padding: 10px;
}

/* 完了画面 */
.send{
  margin: 0 auto;
  max-width: 600px;
  padding: 30px;
  text-align: center;
  font-size: 20px;
  border: 2px solid #9a12af;
  border-radius: 5px;
}


/* 以下コンタクトフォームレスポンシブ */
@media screen and ( max-width:960px){
.br{
  display: none;
}

.br_sf{
  display: block;
}

.contact-table{
  box-sizing: border-box;
}

.contact-table table{
  width: 100%;
}

.contact-table tr{
  border: none;
}

.contact-table th,.contact-table td{
  display: block;
  box-sizing: border-box;
  width: 100%;
}

.contact-table th{
  text-align: center;
  border: 1px #dee5dd solid;
}

td.checkbox{
  text-align: center;
  margin-top: 10px;
}

td.checkbox.syubetsu{
  text-align: left;
}
}