@charset "UTF-8";

.mvFlow {
  background: url(/images/recuruit/mv01.jpg) no-repeat right;
  background-size: cover;
}

.caption {
  text-align: center;
  line-height: 2rem;
}

.flow {
  margin-top: 60px;
}

.flow .flowList {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 20px auto 0;
  align-items: center;
}

.flow .flowList .stepBox {
  width: 25%;
  text-align: center;
  color: #fff;
  font-size: 2.1rem;
  font-weight: normal;
  padding: 70px 0;
}

.flow .flowList .stepBox span {
  font-size: 4.3rem;
  display: block;
}

.flow .flowList .flowDesc {
  width: 70%;
}

.flow .flowList .flowDesc h3 {
  font-size: 1.7rem;
  color: #0046c6;
}

.flow .flowList .flowDesc p {
  line-height: 1.8rem;
  margin-top: 16px;
}

.qa {
  margin-top: 30px;
}

.qa dl {
  width: 80%;
  margin: 30px auto 0;
  overflow: hidden;
}

.qa .accordion {
  color: #fff;
  padding: 30px 0;
  cursor: pointer;
  position: relative;
}

.qa .accordion p {
  font-size: 1.4rem;
  display: inline;
  vertical-align: middle;
}

.qa .accordion .number {
  font-size: 2.7rem;
  font-weight: normal;
  display: inline-block;
  width: 20%;
  margin: 0 auto;
  text-align: center;
}

.qa .accordion .question {
  width: 70%;
  display: inline-block;
  line-height: 1.8rem;
}

.qa .accordion_icon {
  position: relative;
  display: inline-block;
  width: 10%;
}

.qa .accordion_icon span {
  background-color: #fff;
  width: 30px;
  height: 1px;
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
}

.qa dd {
  text-align: left;
  display: none;
  padding: 30px 10px;
  border-right: 1px solid #0046c6;
  border-bottom: 1px solid #0046c6;
  border-left: 1px solid #0046c6;
  line-height: 2rem;
}

.accordion_icon span:nth-of-type(1) {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.accordion_icon span:nth-of-type(2) {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.active span:nth-of-type(1) {
  display: none;
}

.active span:nth-of-type(2) {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(-180deg);
}

.requirement {
  overflow: hidden;
}

.requirementTitle {
  font-size: 4rem;
  letter-spacing: 0.6rem;
}

.requirement .h1Box {
  margin-top: 70px;
  padding: 40px 0;
}

.requirement .h1Box h1 {
  color: #fff;
  font-size: 2.6rem;
  text-align: center;
}

.requirement .requirementTable {
  width: 90%;
  margin: 40px auto 0;
}

.requirement .requirementTable table {
}

.requirement tbody {
}

.requirement tr {
}

.requirement .requirementTable table th {
  background-color: #0046c6;
  color: #fff;
  font-weight: bold;
  width: 10%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  vertical-align: middle;
  padding: 40px 20px;
}

.requirement .requirementTable table td {
  width: 30%;
  border-bottom: 1px solid #eee;
  padding: 40px 20px;
  line-height: 1.4rem;
}

.requirement .requirementTable table .adress {
  background-color: #eee;
}

.requirement .requirementTable table .adress ul {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}

.requirement .requirementTable table .adress ul li {
  border-right: 1px solid #ddd;
  width: 31%;
  padding: 0 20px;
}

.requirement .requirementTable table .adress ul li:last-child {
  border-right: none;
}

.requirement .requirementTable table .adress ul li p {
  font-weight: bold;
  padding: 20px 0;
}

.requirement .requirementTable table .adress ul li a {
  display: block;
  margin-top: 10px;
  color: #0046c6;
}

@media only screen and (max-width: 1280px) {
}

@media only screen and (max-width: 960px) {
}

@media only screen and (max-width: 780px) {
  .caption {
    width: 95%;
    margin: 0 auto;
  }

  .flow {
    margin-top: 20px;
  }

  .flow .flowList {
    width: 100%;
    display: block;
    margin-top: 40px;
  }

  .flow .flowList .flowDesc {
    margin: 20px auto 0;
    text-align: center;
    width: 95%;
  }

  .flow .flowList .flowDesc h3 {
    font-size: 1.3rem;
  }

  .flow .flowList .flowDesc p {
    line-height: 1.4rem;
    margin-top: 10px;
    font-size: 0.9rem;
  }

  .flow .flowList .stepBox {
    font-size: 1.8rem;
    width: 100%;
    padding: 20px 0;
  }

  .flow .flowList .stepBox span {
    font-size: 3.3rem;
  }

  .qa .accordion {
    padding: 20px 0;
  }

  .qa .accordion .number {
    font-size: 2rem;
  }

  .qa .accordion .question {
    font-size: 1.2rem;
  }

  .qa .accordion_icon span {
    width: 20px;
  }

  .qa dl {
    width: 95%;
  }

  .requirement .requirementTable {
    width: 100%;
  }

  .requirement .requirementTable table th {
    width: 90%;
    display: block;
    padding: 30px 20px;
  }

  .requirement .requirementTable table td {
    width: 90%;
    display: block;
    padding: 20px;
  }

  .requirementTitle {
    font-size: 2.6rem;
    letter-spacing: 0.2rem;
  }

  .requirement .h1Box {
    width: 80%;
    padding: 30px 0;
  }

  .requirement .h1Box h1 {
    font-size: 1.6rem;
    text-align: left;
    padding-left: 60px;
  }
}
