@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
}
.inner1000 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.number_box {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .number_box {
    justify-content: space-evenly;
  }
}
.number_box .number_aroow {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20%;
}
.number_box .number_aroow.no_on {
  position: relative;
}
.number_box .number_aroow.no_on:before {
  content: "";
  position: absolute;
  border-left: 10px solid #ed171f;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  top: 40px;
  right: 0%;
}
@media screen and (max-width: 480px) {
  .number_box .number_aroow.no_on:before {
    top: 21% !important;
  }
}
@media screen and (max-width: 768px) {
  .number_box .number_aroow.no_on:before {
    top: 26%;
    right: -8%;
  }
}
.number_box .number_aroow.no_on .number {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ed171f;
  border-radius: 100px;
  border: 2px solid #ed171f;
  font-size: 32px;
  margin-bottom: 10px;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding-top: 10px;
}
@media screen and (max-width: 480px) {
  .number_box .number_aroow.no_on .number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
.number_box .number_aroow.no_on .number:before {
  content: "STEP";
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  background: #ed171f;
  padding: 0px 10px;
  border-radius: 5px;
  position: absolute;
  color: #fff;
  font-size: 14px;
  top: 5%;
  left: -5%;
}
@media screen and (max-width: 480px) {
  .number_box .number_aroow.no_on .number:before {
    font-size: 10px;
    top: -5%;
    left: 0%;
  }
}
.number_box .number_aroow.no_on .txt {
  font-size: 14px;
  color: #282828;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .number_box .number_aroow.no_on .txt {
    font-size: 10px;
  }
}
.number_box .number_aroow.no_off {
  position: relative;
}
.number_box .number_aroow.no_off:before {
  content: "";
  position: absolute;
  border-left: 10px solid #bebebe;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  top: 40px;
  right: 0%;
}
@media screen and (max-width: 480px) {
  .number_box .number_aroow.no_off:before {
    top: 21% !important;
  }
}
@media screen and (max-width: 768px) {
  .number_box .number_aroow.no_off:before {
    top: 26%;
    right: -8%;
  }
}
.number_box .number_aroow.no_off:last-child:before {
  display: none;
}
.number_box .number_aroow.no_off .number {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bebebe;
  border-radius: 100px;
  border: 2px solid #bebebe;
  font-size: 32px;
  margin-bottom: 10px;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-top: 10px;
}
@media screen and (max-width: 480px) {
  .number_box .number_aroow.no_off .number {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
.number_box .number_aroow.no_off .number:before {
  content: "STEP";
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  background: #bebebe;
  padding: 0px 10px;
  border-radius: 5px;
  position: absolute;
  color: #fff;
  font-size: 14px;
  top: 5%;
  left: -5%;
}
@media screen and (max-width: 480px) {
  .number_box .number_aroow.no_off .number:before {
    font-size: 10px;
    top: -5%;
    left: 0%;
  }
}
.number_box .number_aroow.no_off .txt {
  font-size: 14px;
  color: #bebebe;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .number_box .number_aroow.no_off .txt {
    font-size: 10px;
  }
}
h1 {
  font-size: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  font-weight: bold;
  margin-bottom: 50px;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
h1:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #ed171f;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.radio-input {
  display: none;
}
.radio-input + label {
  padding-right: 20px;
  position: relative;
}
.radio-input + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 15px;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 50%;
}
.radio-input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 19px;
  width: 13px;
  height: 13px;
  background: #ed171f;
  border-radius: 50%;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=search]:focus, input[type=url]:focus, textarea:focus {
  color: #282828;
}
button, input, optgroup, select, textarea {
  font-family: "Noto Sans JP" !important;
}
.return_btn, .reserve_btn, .eventTop_btn {
  opacity: 1;
}
.error_Box {
  border: 2px solid #ed171f;
  background: #fff6f6;
  border-radius: 10px;
  padding: 20px 30px;
  max-width: 1000px;
  width: 100%;
  margin:20px auto 20px;
}
@media screen and (max-width: 480px) {
  .error_Box {
    width: 90%;
  }
}
.error_Box li {
  color: #ed171f;
  font-size: 16px;
  line-height: 2.3rem;
}
@media screen and (max-width: 480px) {
  .error_Box li {
    font-size: 14px;
    line-height: 1.8rem;
  }
}
.error_Box li.error_txt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .error_Box li.error_txt {
    font-size: 16px;
    line-height: 1.8rem;
  }
}
/* 7月公開用より移植 */
input.error {
  border: 1px solid #ed171f !important;
}
select.error {
  border: 1px solid #ed171f !important;
}
.error_code {
  color: #ed171f;
  font-size: 12px;
  margin-top: 5px;
}
@media screen and (max-width: 480px) {
  .error_code {
    font-size: 10px;
  }
}
.selected_interest .problem_select .check-input.error + label::before {
  border: solid 2px #ed171f;
}
.selected_interest .task-job-checkboxes .error_code {
  padding-left: 40px;
}
.selected_interest .priority select.error {
  margin-top: 20px;
  border: 1px solid #ed171f !important;
}
.selected_interest .priority .error_code {
  margin: 10px 0 0;
  margin-left: 20px;
  max-width: 270px;
}
@media screen and (max-width: 768px) {
  .selected_interest .priority .error_code {
    margin: 10px 0 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .selected_interest .priority .error_code {
    margin: 10px 0 0 10px;
  }
}
body.subject .error_code {
  font-size: 14px;
  margin-bottom: 3px;
}
@media screen and (max-width: 480px) {
  body.subject .error_code {
    font-size: 10px;
  }
}
body.entry .error_code {
  margin: 5px auto 0;
  max-width: 600px;
}