@charset "utf-8";

/* ====================================================================================

  Inquriry Form Styles

==================================================================================== */
#inquiry { padding: 0 20px 100px; }
.attention {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin: 15px 0 30px;
}
.asterisk { color: #da002f; }
#inquiry {
  font-size: 18px;
  font-size: 1.8rem;
}
#inquiry [type="text"],
#inquiry [type="email"],
#inquiry [type="tel"] {
  width: 100%;
  height: 60px;
  padding: 0 1.5em;
  background-color: #f1f1f1;
  font-size: 18px;
  font-size: 1.8rem;
}
#inquiry textarea {
  width: 100%;
  padding: 1.5em;
  background-color: #f1f1f1;
  font-size: 18px;
  font-size: 1.8rem;
}
#inquiry [type="tel"].zipcode { width: 40%; }
#inquiry select {
  width: 100%;
  height: 60px;
  padding: 0 0 0 1.5em;
  background-color: #f1f1f1;
  font-size: 18px;
  font-size: 1.8rem;
}
#inquiry .select-unit { position: relative; }
#inquiry .select-unit::after {
  content: "▼";
  position: absolute;
  top: 16.5px;
  right: 22.5px;
  font-size: 18px;
  font-size: 1.8rem;
}
#inquiry table label {
  margin: 0 20px 0 0;
  display: inline-block;
}
#inquiry table label [type="radio"],
#inquiry table label span {
  display: inline-block;
  vertical-align: middle;
}
#inquiry table { width: 100%; }
#inquiry table th {
  width: 20%;
  text-align: left;
  padding: 10px 0;
  vertical-align: middle;
}
#inquiry table td {
  width: 80%;
  padding: 10px 0;
  font-weight: 500;
}
#inquiry table p {
  font-size: 0.85em;
  color: #666666;
}
::-webkit-input-placeholder {
  font-size: 16px;
  font-size: 1.6rem;
  color: #bcbcbc;
}
::-moz-placeholder {
  font-size: 16px;
  font-size: 1.6rem;
  color: #bcbcbc;
}
:-ms-input-placeholder {
  font-size: 16px;
  font-size: 1.6rem;
  color: #bcbcbc;
}
.zipcode-search {
  display: inline-block;
  height: 60px;
  line-height: 60px;
  background-color: #ffffff;
  border: solid 1px #000000;
  border-radius: 5px;
  color: #000000;
  text-decoration: none;
  padding: 0 1em;
  margin: 0 0 0 1em;
  transition: all .4s;
}
.zipcode-search:hover {
  color: #ffffff;
  background-color: #000000;
}
.agreement {
  font-weight: 500;
  text-align: center;
  border-top: solid 1px #dedede;
  margin: 30px 0 0;
  padding: 30px 0 0;
}
.agreement p a { color: #eb6100; }
.agreement > label {
  display: block;
  background-color: #f1f1f1;
  padding: 15px 0;
  margin: 30px 0 0;
}
.agreement > span {
  font-size: 0.85em;
  color: #666666;
  display: block;
  margin: 5px 0 45px;
}
#inquiry [type="submit"] {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #e60012;
  width: 50%;
  height: 80px;
  border-radius: 40px;
  margin: 60px auto 0;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
}
#inquiry [type="submit"]:hover {
  color: #e60012;
  background-color: #ffffff;
  border: solid 2px #e60012;
}
.agreement [type="submit"][disabled] {
  opacity: 0.5;
  cursor: default;
}
#inquiry blockquote {
  letter-spacing: 0.05em;
  display: inline-block;
  margin: 60px 0 0;
}
#inquiry blockquote a {
  color: #da002f;
  font-weight: 500;
}
#inquiry blockquote a:hover { text-decoration: none; }

/* Date Pick */
.pd-unit { display: none; }
.preferred-date {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 10px;
}
.preferred-date label {
  white-space: nowrap;
  margin: 0 !important;
}
.preferred-date [type="text"] {
  width: 45% !important;
  height: 35px !important;
  border: 1px solid #b3b3b3;
  padding: 0 10px !important;
  background-color: #ffffff !important;
  border-radius: 0;
}
.preferred-date .select-unit {
  width: 35% !important;
}
.preferred-date .select-unit select {
  height: 35px !important;
  border: 1px solid #b3b3b3;
  padding: 0 10px !important;
  background: none !important;
  font-size: 15px;
  font-size: 1.5rem;
  border-radius: 0;
}
.preferred-date .select-unit::after {
  content: "▼";
  position: absolute;
  top: 7px !important;
  right: 10px !important;
  font-size: 14px !important;
  font-size: 1.4rem !important;
}

@media screen and (max-width:640px) {
  #inquiry table th, #inquiry table td {
    width: 100%;
    display: block;
  }
  #inquiry [type="submit"] {
    width: 70vw;
  }
}