@charset "utf-8";


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

  form

======================================= */
input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#form th.hissu:after {
  content: "必須";
  display: inline-block;
  padding: 2px 5px;
  line-height: 1.0;
  margin-left: 5px;
  font-size: 12px;
  text-align: center;
  background: #db322e;
  color: #fff;
}
input, textarea, select {
  padding: 5px 10px;
  letter-spacing: 1px;
  font-family: "Noto Sans JP", 'Meiryo UI', 'メイリオ', Meiryo, sans-serif;
  font-size: 16px;
  border: 1px solid #e5e5e5;
  background: #fdfdf7;
  width: 410px;
  max-width: 410px;
  -webkitbox-sizing: border-box;
  box-sizing: border-box;
  color: #474747;
  outline: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
input[type="text"], textarea {
  border: 1px solid #e5e5e5;
}
textarea {
  height: 160px;
}
input[type="submit"] {
  width: 535px;
  max-width: 535px;
  font-size: 20px;
  padding: 14px 20px;
  display: inline-block;
  background: #472d78;
  border: 0;
  border-bottom: 5px solid #e5e5e5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
}
input:hover, textarea:hover, select:hover {
  background: #fff;
}
input[type="text"]:focus,
textarea:focus {
  box-shadow:rgba(71, 71, 71, 0.2) 0px 0px 5px 0px;
  -webkit-box-shadow:rgba(71, 71, 71, 0.2) 0px 0px 5px 0px;
  -moz-box-shadow:rgba(71, 71, 71, 0.2) 0px 0px 5px 0px;
  background: #fff;
}
input[type="submit"]:hover {
  background: #77c7dd;
}
input:disabled, textarea:disabled, select:disabled {
  background: #fff;
  border: 1px solid #fff;
  color: #474747;
}
#left p.error {
  padding: 10px 15px;
  background: #f6ffca;
  text-indent: 0;
  color: #fb2900;
}
/* selectbox */
select { padding-right: 32px;}
.select {
  position: relative;
    line-height: 1.8;
    display: inline-block;
    background-color: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.select:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -6px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type="radio"] {
  display: none;
}
label.radiobtn {
  position: relative;
  display: inline-block;
  padding: 3px 20px 3px 20px;
  cursor: pointer;
}
label.radiobtn::before,
label.radiobtn::after {
  position: absolute;
  content: "";
  top: 50%;
  border-radius: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
}
label.radiobtn::before {
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #f3f3f3;
  border: 1px solid #ccc;
}
label.radiobtn:hover::before {
  background: #fff;
}
label.radiobtn::after {
  opacity: 0;
  left: 4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #3498db;
  -webkit-transform: scale(2);
  transform: scale(2);
}
input[type="radio"]:checked + label.radiobtn::before {
  background: #fff;
  border: 1px solid #3498db;
}
input[type="radio"]:checked + label.radiobtn::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

::-webkit-input-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc; opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}

/* ---------------------------------------
  datepicker
--------------------------------------- */
#ui-datepicker-div {
  z-index: 9999999 !important;
}

/* ---------------------------------------
  w
--------------------------------------- */
#form #date, #form #time, #form #zip  {
  width: 160px;
  max-width: 160px;
  display: inline-block;
}
#form #zip  {
  margin: 0 10px 10px 10px;
}
#form #addr  {
  margin: 0 0 4px 0;
}
