@charset "UTF-8";
/* リセットCSS */
input[type="text"], input[type="tel"], input[type="email"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

/*
input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + label {
  background: #ff0000;
}
*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

button, input[type="submit"], input[type="reset"], input[type="button"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

/*form*/
#form {
  margin-top: 30px;
}

#form .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

#form .form dt, #form .form dd {
  border-bottom: 1px solid #F2F2F2;
}

#form .form dt {
  font-size: 16px;
  color: #666666;
  padding: 1em 2em;
  width: 35%;
  margin-bottom: 4px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  #form .form dt {
    width: 100%;
    padding: 1em 0.5em 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}

#form .form dt span {
  font-size: 11px;
  line-height: 1;
  text-align: center;
  display: inline-block;
  width: 3em;
  padding: 0.3em;
  margin-left: 0.75em;
  background-color: #ED1C24;
  color: #fff;
  border-radius: 6px;
}

#form .form dd {
  padding: 1em 2em;
  width: 65%;
  background-color: #fff;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  #form .form dd {
    width: 100%;
    padding: 1em 0.5em;
  }
}

#form .form dd p {
  font-size: 13px;
}

#contents section #form .form dd p {
  margin-bottom: 10px;
}

#contents section #form .form dd p:last-of-type {
  margin-bottom: 0;
}

#form .form dd span {
  display: inline-block;
  padding: 0 4px;
}

#form .form dd ul {
  list-style: none;
}

#form .form dd ul li {
  display: block;
}

#form input[type="text"],
#form input[type="tel"],
#form input[type="email"],
#form textarea {
  width: 100%;
  background-color: #fff;
  padding: 0.4em;
  line-height: 1.5;
  border-radius: 0;
  border: 1px solid #ccc;
}

#form .cp_ipselect {
  margin: 10px 0;
  text-align: center;
}

#form .cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

#form .cp_ipselect select::-ms-expand {
  display: none;
}

#form .cp_ipselect.cp_sl01 {
  width: 50%;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #ffffff;
}

#form .cp_ipselect.cp_sl01::before {
  position: absolute;
  top: 0.8em;
  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;
}

#form .cp_ipselect.cp_sl01 select {
  padding: 8px 38px 8px 8px;
  color: #1a1a1a;
}

#form li {
  display: inline-block;
  margin-right: 2em;
}

#form .submit {
  width: 100%;
  font-size: 16px;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#form .submit input {
  background-color: #fff;
  color: #3283C6;
  width: 100%;
  max-width: 300px;
  border: 2px solid #3283C6;
  padding: 0.5em;
  margin-left: 14px;
  margin-right: 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

#form .submit input:hover {
  background-color: #3283C6;
  color: #fff;
}

#form .checker {
  background-color: #F2F2F2;
  padding: 30px 0 30px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  font-size: 16px;
}

#form .checker p {
  font-size: 16px;
  margin-bottom: 0.7em;
}

/* チェックボックス01 */
.check {
  margin: 3em auto 1.5em;
  text-align: center;
}

input[type=checkbox] {
  opacity: 0;
  z-index: -1;
  position: absolute;
}

.checkbox01 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 3px 30px;
  position: relative;
  width: auto;
}

.checkbox01::before {
  background: #fff;
  border: 1px solid #ccc;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 45%;
  width: 16px;
}

.checkbox01::after {
  border-right: 3px solid #3283C6;
  border-bottom: 3px solid #3283C6;
  content: '';
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 45%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 5px;
}

input[type=checkbox]:checked + .checkbox01::after {
  opacity: 1;
}

input[type="checkbox"]:checked + label {
  background: none !important;
}

/* ラジオボタン01 */
input[type=radio] {
  opacity: 0;
  z-index: -1;
  position: absolute;
}

.radio01 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}

.radio01::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 45%;
  width: 16px;
}

.radio01::after {
  background: #3283C6;
  border-radius: 50%;
  content: '';
  display: block;
  height: 10px;
  left: 9px;
  margin-top: -4px;
  opacity: 0;
  position: absolute;
  top: 45%;
  width: 10px;
}

input[type=radio]:checked + .radio01::after {
  opacity: 1;
}

.radio01 + input {
  margin-left: -26px;
}

.radio01 + input + span {
  margin-right: 30px;
}

/*SP用css*/
@media print, screen and (max-width: 768px) {
  .submit {
    width: 100%;
    display: block;
    margin: auto;
  }
  .submit input,
  .button {
    width: 100%;
    padding: 0.5em 1em;
    margin: 0;
    margin-bottom: 1em;
    border-radius: 30px;
    font-size: 16px;
  }
  .button {
    margin: 1em auto 0;
  }
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    background-color: #fff;
  }
}
/*# sourceMappingURL=form.css.map */