@charset "UTF-8";
body {
  background-color: #f9f9f9;
}

.s_wrp {
  color: #494949;
  max-width: 768px;
  margin: 1rem auto;
  background-color: #fff;
  padding: 1rem;
  font-size: 16px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .s_wrp {
    margin: 0.5rem;
  }
}

.s_wrp * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.s_wrp .back {
  background-color: #72d8ae;
  color: #fff;
  padding: 0.5em;
  border-radius: 5px;
  margin: 1em auto 0;
  display: block;
  max-width: 150px;
}

.s_wrp a {
  color: #72d8ae;
  text-decoration: underline;
}

h2.head2 {
  border-left: 3px solid #72d8ae;
  padding: 0 0 0 1rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

h3.head3 {
  font-size: 0.9em;
  margin-top: 1em;
  margin-bottom: 1em;
}

h3.head3 span {
  font-weight: bold;
  border-bottom: 1px solid #72d8ae;
}

.s_intro {
  text-align: center;
  margin: 1em auto 2em;
}

.s_intro p {
  font-weight: bold;
}

.head_img img {
  width: 100%;
}

.txtbox {
  margin-bottom: 3rem;
}

.txtbox p {
  font-size: 0.8em;
}

.s_form {
  /* iOSでのデフォルトスタイルをリセット */
}

.s_form .question {
  margin-top: 4em;
  margin-bottom: 0.8em;
  font-weight: bold;
  padding-left: 2em;
  position: relative;
}

.s_form .question::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  left: 0;
  position: absolute;
  background-repeat: no-repeat;
  background-image: url(../img/question.svg);
  display: block;
}

.s_form .required {
  color: red;
  margin-left: 0.5em;
  font-size: 0.8em;
}

.s_form input[type="button"],
.s_form input[type="submit"],
.s_form input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.s_form input[type="button"]::-webkit-search-decoration,
.s_form input[type="submit"]::-webkit-search-decoration,
.s_form input[type="button"]::-webkit-search-decoration {
  display: none;
}

.s_form input[type="button"]::focus,
.s_form input[type="submit"]::focus,
.s_form input[type="button"]::focus {
  outline-offset: -2px;
}

.s_form input[type="button"]:hover,
.s_form input[type="submit"]:hover,
.s_form input[type="button"]:hover {
  cursor: pointer;
}

.s_form select,
.s_form input[type="text"],
.s_form textarea {
  width: 100%;
  font-size: 16px;
  outline: none;
  border-radius: 5px;
  border: 1px solid #bbbbbb;
  padding: 0.5em;
}

.s_form select:focus,
.s_form input[type="text"]:focus,
.s_form textarea:focus {
  border-color: #72d8ae;
}

.s_form input[type="button"],
.s_form input[type="submit"] {
  display: inline-block;
  border-radius: 5px;
  background-color: #4acd97;
  padding: 10px;
  color: white;
  width: 80px;
  margin: auto;
  font-size: 16px;
}

.s_form .s_f_box {
  margin-bottom: 2em;
  border-bottom: 1px solid #d6f4e7;
  padding-bottom: 1.5em;
}

.s_form .output {
  color: #268b61;
}

.s_form .unans {
  color: #c3c3c3;
}

.s_form .md-radio {
  margin-bottom: 0.4em;
}

.s_form .md-radio:hover {
  color: #72d8ae;
}

.s_form .submit {
  text-align: center;
}

.s_form input::-webkit-input-placeholder {
  color: #bbbbbb;
}

.s_form input:-ms-input-placeholder {
  color: #bbbbbb;
}

.s_form input::-ms-input-placeholder {
  color: #bbbbbb;
}

.s_form input::placeholder {
  color: #bbbbbb;
}

.tips {
  font-size: 0.8em;
  text-align: center;
  padding: 1em;
  margin: 2em auto;
  color: #fff;
  background: #cf424c;
}

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}

.control input:checked ~ .control__indicator {
  background: #4acd97;
}

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #31b37d;
}

.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}

.control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}

.control input:checked ~ .control__indicator:after {
  display: block;
}

.control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}

.control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}

.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

.select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}

.select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 15px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #e6e6e6;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select select::-ms-expand {
  display: none;
}

.select select:hover,
.select select:focus {
  color: #000;
  background: #ccc;
}

.select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.select__arrow {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}

.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
  border-top-color: #000;
}

.select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}
/*# sourceMappingURL=style.css.map */