.recruit {
  background-image: url(../images/top/recruit_sp.jpg);
}
@media screen and (min-width: 960px) {
  .recruit {
    background-image: url(../images/top/recruit_pc.jpg);
  }
}
.recruit__inner {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .recruit__inner {
    width: 85%;
  }
}
.recruit__lead {
  margin: 40px 0 30px;
}
@media screen and (min-width: 960px) {
  .recruit__lead {
    margin: 50px 0 60px;
  }
}

.section__sub-heading--recruit {
  color: #fff;
}

.section__button--recruit {
  color: #fff;
  border: 2px #fff solid;
}

.footer {
  width: 100%;
  background-color: #292929;
  color: #fff;
  padding: 30px 0 35px;
}
@media screen and (min-width: 560px) {
  .footer {
    padding: 60px 0 30px;
  }
}
.footer__inner {
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 560px) {
  .footer__inner {
    width: 85%;
    text-align: left;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
  }
}
.footer__information {
  grid-column: 1/2;
  grid-row: 1/2;
  margin: 0 auto 25px;
}
@media screen and (min-width: 560px) {
  .footer__information {
    margin: 0 0 30px 0;
  }
}
.footer__information p {
  margin: 0;
}
.footer__information--logo {
  width: 35%;
  margin: 0 auto;
  margin-bottom: 15px;
}
@media screen and (min-width: 560px) {
  .footer__information--logo {
    width: 30%;
    margin: 0 0 30px 0;
  }
}
.footer__information--company {
  font-size: 1.4rem;
}
.footer__information--tel {
  font-family: "Quicksand", sans-serif;
  font-size: 2rem;
  text-decoration: none;
  color: #fff;
}
.footer__menu {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (min-width: 560px) {
  .footer__menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin: 0 0 30px 0;
  }
}
.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.footer__nav--accordion {
  padding-left: 10px;
}
.footer__nav-item {
  position: relative;
  font-size: 1.4rem;
  color: #fff;
  padding: 15px;
  border-bottom: #555555 1px solid;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 560px) {
  .footer__nav-item {
    padding: 5px 10px;
    width: auto;
    border: none;
  }
}
.footer__nav-item--accordion {
  font-size: 1.3rem;
}
.footer__nav-item > a {
  text-decoration: none;
  color: #fff;
}

.privacy-policy {
  grid-column: 2/3;
  grid-row: 2/3;
  font-size: 1.2rem;
  margin: 10px 0 25px 0;
  display: inline-block;
}
@media screen and (min-width: 560px) {
  .privacy-policy {
    text-align: end;
    margin: 0;
  }
}

.copy-right {
  display: block;
  grid-column: 1/2;
  grid-row: 2/3;
}
.js-accordion__arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  position: absolute;
  top: 20px;
  right: 30px;
}
@media screen and (min-width: 560px) {
  .js-accordion__arrow {
    display: none;
  }
}

.js-accordion__arrow.is-open {
  transform: translateY(25%) rotate(315deg);
}

.js-accordion__item {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.5s linear;
}
@media screen and (min-width: 560px) {
  .js-accordion__item {
    opacity: 1;
    height: auto;
    overflow: visible;
  }
}

.js-accordion__item.is-open {
  opacity: 1;
  height: auto;
  overflow: visible;
}