@charset "UTF-8";
form {
  border: none;
}

form input, form textarea {
  background: white;
}
form fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form select,
form textarea {
  width: 100%;
  max-width: 100%;
  padding: 5px;
  border-radius: 5px;
  border: 2px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 100%;
  font-family: inherit;
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form input[type=date]:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border: solid 2px #2968e9;
}
form select::-ms-expand {
  display: none;
}
form textarea {
  width: 100%;
}
form input[type=email]:invalid {
  background: #ffd5d5;
}
form input[type=checkbox],
form input[type=radio] {
  --size: 1.2rem;
  block-size: var(--size);
  inline-size: var(--size);
  margin: 0 0.3em 0 0;
  accent-color: #2968e9;
}
form label.checkbox, form label.radio {
  margin: 0 1em 0 0;
}
form .submit, form .agree-btn {
  width: auto;
  background-color: #2968e9;
  border: 2px solid #2968e9;
  color: #fff;
  letter-spacing: 0.3em;
  font-size: 18px;
  line-height: 27px;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  padding: 0.5em 0.7em 0.5em 1em;
  margin: 30px auto 0 auto;
}
form .submit:hover, form .agree-btn:hover {
  border: 2px solid #333;
  background-color: #333;
}
form .submit:active, form .agree-btn:active {
  background: #2968e9;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
  color: #2968e9;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}
form input.post_code {
  width: 5em;
}
form input[type=date] {
  width: 10em;
}
form input.address {
  width: 100%;
  box-sizing: border-box;
}
form input[type=tel] {
  width: 10em;
  max-width: 100%;
}
form input#mail02 {
  margin: 5px auto 0 auto;
  width: calc(100% - 5em);
}

/* 入力エラーのスタイル */
input:required,
input[type=text]:required,
input[type=email]:required,
input[type=email]:invalid,
textarea:required,
select:required {
  color: black;
  background: #ffd5d5;
}
input:required:focus,
input[type=text]:required:focus,
input[type=email]:required:focus,
input[type=email]:invalid:focus,
textarea:required:focus,
select:required:focus {
  outline: none;
  border: solid 2px #ff2227;
}

#select {
  position: relative;
}
#select::before {
  position: absolute;
  top: 0.6em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

#agree_box {
  margin: 20px auto 0 auto;
  font-size: 20px;
  line-height: 30px;
  font-size: 1.25rem;
  line-height: 1.875rem;
  padding: 5px 2em 5px 2em;
}

.agree-btn {
  cursor: pointer;
  margin: 20px auto 0 auto;
  font-size: 25px;
  line-height: 37.5px;
  font-size: 1.5625rem;
  line-height: 2.34375rem;
}

.agree-btn[disabled] {
  background-color: gray;
  cursor: not-allowed;
  border: 2px solid silver;
}
.agree-btn[disabled]:hover {
  background-color: gray;
  cursor: not-allowed;
  border: 2px solid silver;
}

.privacy > p {
  text-align: left;
}
.privacy > ul > li {
  text-align: left;
}
.privacy > ul > li h3 {
  margin: 20px 0 5px 0;
  font-size: 1.1em;
}
.privacy > ul > li > ol > li {
  margin: 0 0 0 2em;
  list-style: disc;
}/*# sourceMappingURL=form_mail.css.map */