/*2021-10-20文字の大きさ調整のため追加*/

.app_title {
  position: relative;
  padding: 1rem .5rem;
  font-size: 4vw;
  text-align: center;
}

.app_title:before, .app_title:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: -webkit-gradient(linear, right top, left top, from(#30cfd0), to(#330867));
  background-image: -webkit-linear-gradient(right, #30cfd0 0%, #330867 100%);
  background-image: linear-gradient(to left, #30cfd0 0%, #330867 100%);
}

.app_title:before {
  top: 0;
}

.app_title:after {
  bottom: 0;
}

#app_main {
  margin: 0 auto;
  max-width: 1100px;
}

* {
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

.flow {
  margin: 0 auto;
  width: 60%;
  padding: 50px 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

.flow>li {
  -ms-flex-preferred-size: 22%;
  flex-basis: 22%;
}

.flow>li .icon {
  font-size: 18px;
  line-height: 50px;
  width: 50px;
  color: #fff;
  background: #1156bd;
  margin: 0 auto 20px;
  display: block;
  border-radius: 50%;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
}

.flow>li .icon::before {
  content: "";
  border: solid transparent;
  border-width: 8px;
  border-top-color: #1156bd;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow>li dl {
  padding: 15px;
  margin: 0;
  border: 3px solid #1156bd;
  position: relative;
}

.flow>li:not(:last-child) dl::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid #1156bd;
  border-right: 4px solid #1156bd;
  position: absolute;
  top: calc(50% - 6px);
  left: 120%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.flow>li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #1156bd;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  text-align: center;
}

.flow>li:nth-child(1) dl {
  background-color: #1156bd;
}

.flow>li:nth-child(1) dt {
  color: white;
}

#a_job {
  margin: 3rem;
  padding: 3px;
  background: #1156bd;
}

/*2021-10-20余白が少なすぎるため追加(margin,padding)*/

#form_box {
  margin: 3rem;
  padding: 3px;
  /*2021-10-20文字の大きさ調整のため追加*/
  font-size: 0.7rem;
}

#a_company {
  color: #fff;
  font-size: 1.3em;
}

#a_company_data {
  background: #fff;
  padding: 2em 3em;
}

#a_company_data h1 {
  padding-bottom: 5px;
}

#a_company_data h1 {
  font-size: 1.5em;
  text-align: left;
  font-weight: bold;
}

#a_company_data span {
  font-weight: bold;
  color: white;
  font-size: 16px;
  background: #1156bd;
  padding: 3px 7px;
  line-height: 3.5em;
  vertical-align: 8%;
  margin-right: 1vw;
}

#a_company_data table {
  border-collapse: collapse;
  width: 95%;
  margin-top: 1vw;
}

#a_company_data table tr {
  border-top: solid 1px #3672bb;
}

#a_company_data table tr:last-child {
  border-bottom: solid 1px #3672bb;
}

#a_company_data table th {
  padding: 10px 0.5rem;
  color: #0c638b;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#a_company_data table th img {
  width: 1.3vw;
  margin-right: 0.8vw;
}

#a_company_data table td {
  border-left: solid 1px #3672bb;
  padding-top: 1vw;
  padding-bottom: 1vw;
  padding-left: 1vw;
}

.a_f_row {
  display: flex;
}

#a_company_data p {
  border-bottom: 3px solid #1156bd;
  padding-top: 0.5em;
  /*2021-10-20文字の大きさ調整のため追加*/
  font-size: 0.7rem;
}

.a_f_row_left {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: flex-start;
  padding: 1em;
  width: 240px;
  background: rgba(213, 236, 250, 0.7);
  border: 1px solid;
}

.a_f_row_left_mondatory {
  padding: 2px 24px;
  border-radius: 20px;
  background: #83a7dc;
}

.a_f_row_left_any {
  padding: 2px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #83a7dc;
}

.a_f_row_right {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: -1px;
  padding: 1.5em 0 1.5em 1.5em;
  width: 75%;
  border: 1px solid;
}

.a_f_row_right p {
  font-size: 0.5em;
}

.a_f_row_right_value {
  padding-left: 0.5em;
  width: 95%;
  line-height: 3em;
  border: 1px solid;
  border-radius: 10px;
  /*2021-10-20プルダウン表示のため追加*/
  -webkit-appearance: auto;
}

.a_f_row_right div {
  padding-top: 0.5em;
  font-size: 0.8em;
  color: #848484;
}

.b_back_gradBox {
  margin: 6em auto 3em;
  padding: 2px;
  width: 70%;
  height: auto;
  text-align: center;
  background: #1156bd;
}

.b_gradBoxInner {
  width: 100%;
  margin: 0 auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  padding: 4%;
  background-color: #fff;
}

.b_gradBoxInner div a {
  margin: 0 0.5em;
  position: relative;
}

.b_gradBoxInner div a::before {
  content: "";
  position: absolute;
  bottom: -0.5em;
  right: 0;
  display: block;
  width: 0;
  height: 3px;
  background-color: #fa709a;
  transition: width 0.3s;
}

.b_gradBoxInner div a:hover::before {
  left: 0;
  width: 100%;
}

.b_gradBoxInner input {
  margin-top: 1em;
  padding: 1em 5em;
  border-radius: 15px;
  transition: 0.5s;
  background-size: 200% auto;
  background-image: linear-gradient(0.25turn, #22a6e6, #014fb2);
  outline: none;
}

.b_gradBoxInner input:hover {
  background-position: right center;
}

.b_gradBoxInner input:focus {
  outline: none;
}

.job_data-title {
  padding-top: 10px;
  padding-bottom: 10px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.job_data-company_name {
  font-size: 24px;
  color: white;
  line-height: 1.333;
}

.job_data-facility_name {
  font-size: 24px;
  color: white;
  line-height: 1.333;
}

/*---レスポンシブ--------------------------------------*/

@media screen and (max-width: 1024px) {
  .a_f_row {
    display: flex;
    flex-direction: column;
  }
  .a_f_row_left {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .a_f_row_right {
    width: 100%;
  }
  .a_f_row_left_mondatory {
    margin: 0;
    margin-left: 5vw;
  }
  .a_f_row_left_title {
    margin: 0;
    margin-left: 5vw;
  }
  .a_f_row_left_any {
    margin: 0;
    margin-left: 5vw;
  }
  .flow {
    margin: 0 auto;
    width: 90%;
    padding: 0;
  }
  .flow>li .icon {
    display: none;
  }
  .flow>li dl dt {
    font-size: 3.5vw;
  }
  #a_job {
    margin-top: 10vw;
    margin-left: 2.5vw;
    margin-right: 2.5vw;
    padding: 1vw;
    border-radius: 0;
  }
  #a_company_data {
    border-radius: 0;
    padding: 2.5vw 3.5vw 7.5vw;
  }
  #a_company_data h1 {
    font-size: 4vw;
    padding-bottom: 5px;
  }
  #a_company_data p {
    padding-top: 1vw;
    padding-bottom: 2.5vw;
    margin-bottom: 2.5vw;
    border-bottom: 1px solid #1156bd;
    font-size: 4vw;
  }
  #form_box {
    padding: 0;
    margin: 2.5vw;
    font-size: 4vw;
  }
  .a_f_row_right {
    padding: 5vw 2.5vw;
    width: 100%;
  }
  .a_f_row_right_value {
    padding-left: 0.5em;
    width: 100%;
    height: 3em;
    line-height: 3em;
    border: 1px solid;
    border-radius: 10px;
    -webkit-appearance: auto;
    letter-spacing: 0.1em;
  }
  .a_f_row_right {
    border-top: none;
    border-bottom: none;
  }
  .a_f_row_right:last-child {
    border-bottom: 1px solid;
  }
  .a_f_row_right div {
    padding-top: 0.5em;
    padding-left: 0.5em;
    font-size: 3.5vw;
  }
  .b_back_gradBox {
    margin: 10vw 2.5vw 5vw;
    padding: 2px;
    width: calc(100% - 5vw);
    height: auto;
    text-align: center;
    background: #1156bd;
  }
}

@media screen and (max-width: 760px) {
  #a_company {
    width: 100%;
    text-align: center;
  }
  #a_company h3 {
    font-size: 4vw;
  }
  #a_company_data span {
    font-size: 4vw;
    padding: 0.5vw 1vw;
    line-height: 1;
    vertical-align: unset;
  }
  h1 span {
    font-size: 4vw;
    line-height: 1.5em;
  }
  .j_l_f_headline {
    font-size: 4vw;
    padding: 3vw 5vw 0 5vw;
    line-height: 1.4em;
  }
  /*
.j_l_f_headline span{
	font-size:4vw;
	vertical-align:0%;
}
*/
  #a_company_data table {
    width: 100%;
    border-collapse: inherit;
  }
  #a_company_data table tr {
    border: none;
  }
  #a_company_data table tr th, #a_company_data table tr td {
    display: block;
  }
  #a_company_data table tr th {
    padding-bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  #a_company_data table tr th img {
    width: 4vw;
    margin-right: 0.5rem;
  }
  #a_company_data table tr td {
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 1.5rem;
    font-size: 4vw;
    height: auto;
    overflow: hidden;
    border-left: none;
    border-bottom: solid 1.5px #3672bb;
  }
  .job_data-company_name {
    font-size: 4.5vw;
  }
  
  .job_data-facility_name {
    font-size: 4vw;
  }
}