﻿/*
contact.css
*/


/*=======================================
お問い合わせ
=======================================*/
/* お問い合わせ方法 */
#contact dt {
  margin-top: 20px;
}

#contact dt h4 {
  text-indent: 0.75em;
}

#contact dd {
  margin-top: 10px;
  text-indent: 2em;
}

/* フォーム */
#contactForm fieldset {
  border: 0;
  margin-bottom: 30px;
}

#contactForm div {
  margin-bottom: 15px;
}

#contactForm sup {
  color: #ce5939;
}

/* フォームの入力欄 */
input,textarea,select {
  font-family: inherit;
  padding:5px;
  font-size:14px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  box-shadow: 0 0 7px #900;
  border: 1px solid #600;
  outline: none;
}

input[type="submit"] {
  background-color: #2a8617;
  color: #fff;
  padding: 15px 40px;
  font-weight: bold;
  font-size: 18px;
  border: none;
  border-radius: 5px;
}

input[type="submit"]:hover {
  background-color: #ce5939;
}


