@charset "UTF-8";

#under_main {
  background: url(../images/bg-contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*================================================
 *  contact
 ================================================*/
#contact ul {
  margin: 40px 0 30px;
}
 #contact ul a {
  width: 25%;
  text-align: center;
  color: #c5c5c5;
  font-size: 13px;
}
#contact ul img {
  height: 50px;
  object-fit: cover;
  margin-bottom: 10px;
}
#contact .contact_tel a {
  color: #fff;
  font-size: 20px;
}

/* フォーム */
form {
    max-width: 700px;
    margin: 50px auto 0px;
}
label {
  display: block;
  width: 100%;
  margin: 20px 0 5px;
  color: #fff;
}
input[type="email"], input[type="number"],input[type="text"], input[type="tel"],input[type="date"],input[type="time"],input[type="address"],select {
  width: 100%;
  display: block;
  border: 1px solid #fff;
  outline: none;
  height: 3.5rem;
  line-height: 1.4rem;
  background: rgba(255,255,255,0.8);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
  padding-left: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  letter-spacing: .06em;
}
textarea {
	width: 100%;
  display: block;
  border: 1px solid #fff;
  outline: none;
  background: rgba(255,255,255,0.8);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  color: #333;
  line-height: 2;
  letter-spacing: .06em;
}
sup {
  color: #b15076;
  font-size: 11px;
  padding-left: 5px;
}
button {
  padding: 15px 120px;
  color: #bdb292;
  position: relative;
  border: 1px solid;
  background-color: transparent;
  letter-spacing: .1em;
  font-size: 14px;
}
button::after {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 0;
    background-color: #bdb292;
    transition: width 0.3s ease-in-out;
}
button:hover::after {
  width: 100%;
}

@media screen and (max-width:768px) {
  #contact ul {
    margin: 30px 0 0px;
  }
  #contact ul a {
    width: 100%;
    margin-bottom: 30px;
  }
  #contact .contact_tel a {
    font-size: 17px;
  }
}


