@charset "utf-8";

/* CSS Document */

/*---StepBar---*/

.area_step {
  position: relative;
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #9a9a9a;
  margin-bottom: 3.5rem;
  margin: auto;
  width: 96rem;
  height: 6rem;
}
.area_step::after {
  content: "";
  clear: both;
}
.step_item {
  position: relative;
  float: left;
  display: inline-block;
  line-height: 3.5rem;
  padding: 0 4rem 0 2rem;
  background-color: #d0d0d0;
  width: 33.3%;
}

.step_item:before,
.step_item:after {
  position: absolute;
  left: -1.5rem;
  display: block;
  content: "";
  background-color: #d0d0d0;
  border-left: 0.3rem solid #fff;
  width: 2rem;
  height: 1.8rem;
}

.step_item:after {
  top: 0;
  -moz-transform: skew(30deg);
  -ms-transform: skew(30deg);
  -webkit-transform: skew(30deg);
  transform: skew(30deg);
}

.step_item:before {
  bottom: 0;
  -moz-transform: skew(-30deg);
  -ms-transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  transform: skew(-30deg);
}

.step_item:first-child:before,
.step_item:first-child:after {
  content: none;
}

.step_item.current {
  color: #fff;
  background-color: #65749d;
  font-weight: normal;
}

.step_item.current:before,
.step_item.current:after,
.step_item.passed:before,
.step_item.passed:after {
  background-color: #65749d;
}

.step_item.passed {
  background-color: #65749d;
  color: #c5cbda;
}

/*----Form-----*/
.msg_form {
  margin-bottom: 3rem;
}

.error_msg {
  color: #ce3030;
}

form a {
  color: #293382;
}

::placeholder {
  color: #8a8a8a;
}

input,
textarea {
  width: 100%;
}

textarea {
  height: 21rem;
  line-height: 1.3;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  font-size: 1.5rem;
  padding: 0.5em 1em;
  background-color: #fff;
  border-radius: 0.3rem;
  color: #373737;
  border: solid 0.1rem #ddd;
}

input:focus,
select:focus,
textarea:focus {
  border: 1px solid #657599;
  outline: 0;
}

.wrap_form {
  margin-top: 3rem;
}
.wrap_form hr {
  margin: 3rem 0;
}

/*inputとボタン横並び(検査表等)*/
.area_input_btn{
  display: flex;
  align-items: stretch;
  margin-top: 1.5rem;
}
.area_input_btn .box_btn{
  display: flex;
}
.area_input_btn .box_btn .btn_cmn{
  display: flex;
  align-items: center;
  justify-content: center;
}
.area_input_btn .box_btn .btn_cmn:not(:first-of-type){
  margin-left: 1rem;
}



/*LoginForm*/
#wrap_loginForm {
  margin: 4rem auto;
  width: 50rem;
}
#wrap_loginForm .inner_box {
  margin-bottom: 3rem;
}
#wrap_loginForm .inner_box input,
#wrap_loginForm .inner_box .btn_cmn {
  margin-bottom: 2rem;
}
#wrap_loginForm .inner_box .btn_cmn {
  padding: 1.5rem;
  font-size: 1.6rem;
}
/*検査表系*/
#wrap_inspectionForm {
  margin-top: 2rem;
}

/*必須*/
.required {
  font-size: 1.2rem;
  background-color: #ce3030;
  padding: 0.2rem 0.5rem;
  color: #fff;
  margin-left: 0.8rem;
  font-weight: normal;
}

/*幅*/
.input_sm {
  width: 30%;
}
.input_md {
  width: 60%;
}
.input_group {
  display: flex;
}
.input_group label {
  align-self: center;
  padding-right: 1rem;
}
.input_tb .input_group:nth-of-type(n + 2) {
  margin-top: 1rem;
}
.input_tb label {
  /*input labelの幅を固定*/
  width: 10rem;
}
.textarea_sm {
  height: 9.5rem;
}

/*チェックボックス*/
.flex_row .box_check:not(:first-of-type) {
	margin-left: 2rem;
}
.box_check label {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.box_check input {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  border: solid 0.1rem #ccc;
  border-radius: 0.3rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  margin-right: 1rem;
  font-weight: bold;
}
.box_check input:disabled {
  background-color: #f3f3f3;
}

.box_check input:checked::before {
  font-family: Material Icons;
  content: "\e876";
  font-size: 2.5rem;
  color: #293382;
}
.box_check.check_blue input {
  width: 2rem;
  height: 2rem;
}
.box_check.check_blue input:checked{
 background-color: #293382;
}
.box_check.check_blue input:checked::before {
  color: #FFF;
  font-size: 1.8rem;
}


/*セレクトボックス*/
.box_select {
  position: relative;
  width: 60%;
}
.box_select select {
  width: 100%;
}
.box_select::after {
  font-family: Material Icons;
  content: "\e5cf";
  font-weight: bold;
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  pointer-events: none;
}
option.select_placeholder {
  display: none;
}

/*添付ファイル*/
.box_fileUpload label {
  border-radius: 0.3rem;
  border: solid 0.1rem #ddd;
  font-size: 1.2rem;
  padding: 0.2rem 1rem;
  cursor: pointer;
  margin-right: 1rem;
}
.input_file {
  display: none;
}
p.fname {
  margin-top: 0;
}

/*ラジオボタン*/

.radio-input {
  display: none;
}
.radio-parts {
transition: .4s;
padding-left: 2.0em;
position: relative;
margin-right: 2.0rem;
line-height: 1;
z-index: 0;
}

.radio-parts::after {
content: "";
position: absolute;
top: 0rem;
left: 0;
display: inline-block;
width: 1.7rem;
height: 1.7rem;
text-align:center;
line-height:1.7rem;
vertical-align: middle;
border-radius: 50%;
border: solid 0.15rem #bfc4c7;
transition: .4s;

}
.radio-input:checked + .radio-parts::after {
transform: scale(1,1);
border-radius: 50%;
background: #65749d;
border: solid 0.15rem #65749d;
}

.box_unselected .radio-input:checked + .radio-parts::after {
  background: #65749d;
  border: solid 0.15rem #65749d
}



/*送信Box*/
.box_submit {
  display: flex;
  width: 50%;
  justify-content: space-around;
  margin: 5rem auto 0;
}
.box_submit button {
  width: 20rem;
}

/*個人情報保護方針*/
.box_privacy {
  margin-top: 3rem;
}
.box_prchk {
  display: flex;
  flex-wrap: wrap;
}
.box_prchk .box_check {
  margin-right: 3rem;
}
.box_prchk .reason_detail {
  margin-left: 2.5rem;
  margin-top: 0;
  font-size: 1.4rem;
}
.box_privacy .outer {
  height: 25rem;
  background-color: #f3f3f3;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  overflow-y: scroll;
  width: 100%;
  font-size: 90%;
}
.outer::-webkit-scrollbar {
  height: 10rem;
  width: 0.7rem;
}
.outer::-webkit-scrollbar-track {
  background: #dddddd;
}
.outer::-webkit-scrollbar-thumb {
  background: #898989;
  border-radius: 0.3rem;
}
.box_privacy .outer {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*-------------------タブレット以下用-------------------*/
@media screen and (max-width: 1024px) {

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea,
  select {
    font-size: 1.6rem;
  }

  /*--StepBar--*/
  .area_step {
    width: 100%;
    font-size: 1rem;
  }
  .step_item {
    padding: 0 2.5rem 0 0.5rem;
  }
  /*--Form--*/
  .input_sm,
  .input_md,
  .box_select {
    width: 100%;
  }

  /*inputとボタン横並び(検査表等)*/
  .area_input_btn{
  flex-direction: column;
  align-items: flex-start;
  }
  .area_input_btn input{
    width: 100%;
  }
  .area_input_btn .box_btn{
    margin-left: 0;
    margin-top: 1.5rem;
  }

  /*LoginForm*/
  #wrap_loginForm {
    width: 100%;
  }


  /*送信Box*/
  .box_submit {
    width: 100%;
  }
}
