/* business
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.chapter-nav {
  display: flex;
  margin-bottom: 120px;
}
.chapter-nav__list {
  display: flex;
  margin-right: -30px;
  list-style: none;
  width: calc(100% + 30px);
  counter-reset: chapter-count;
}
.chapter-nav__item {
  flex: 1 1 0%;
  margin: 0 30px 0 0;
  height: 220px;
  display: flex;
  position: relative;
  counter-increment: chapter-count;
}
.chapter-nav__link {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  line-height: 1.8;
  padding: 20px;
  color: #FFF !important;
}
.chapter-nav__link::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #00A76A;
  transition: 0.2s ease;
}
.chapter-nav__link:hover::before {
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
}
.chapter-nav__link::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 25px;
  height: 25px;
  box-sizing: border-box;
  color: #FFF;
  border-right: 8px solid;
  border-bottom: 8px solid;
  transform: translate(-50%, 0) rotate(45deg);
  transition: 0.2s ease;
}
.chapter-nav__link:hover::after {
  bottom: 10px;
}
.chapter-nav__count {
  position: absolute;
  top: 0;
  right: 30px;
  width: 60px;
  flex: 0 0 auto;
  color: #E73817;
  font-size: 5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(0, -0.5em);
}
.chapter-nav__count::before {
  content: counter(chapter-count,decimal-leading-zero);
  font-size: 5rem;
}
.chapter-nav__count::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 60px 0 0;
  border-color: #E73817 transparent transparent transparent;
}

.section-image-header {
  position: relative;
  margin-bottom: 80px;
}
.section-image-header__heading {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
}
.section-image-header__image-wrap {
  position: relative;
  overflow: hidden;
}
.section-image-header__image-wrap::after {
  content: '';
  position: absolute;
  right: 60%;
  bottom: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10vw 0 0 45vw;
  border-color: transparent transparent transparent #FFF;
}

.job-guide {
  background: #FFFAEB;
  margin: 80px min(calc((100vw - 50px * 2) - 80vw) / -2, calc((100vw - 50px * 2) - 1000px) / -2);
  padding: 100px max(calc((100vw - 50px * 2) - 80vw) / 2, calc((100vw - 50px * 2) - 1000px) / 2);
}
.job-guide__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -60px;
}
.job-guide__item {
  width: min(48%, 470px);
  display: flex;
  flex-direction: column;
  margin: 0 0 60px;
}
.job-guide__item:first-child:last-child {
  width: 100%;
}
.job-guide__heading {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  border-left: 3px solid #00A76A;
  margin: 0 0 -1px 50px;
  padding: 0 0 20px 20px;
  flex: 0 0 auto;
}
.job-guide__body {
  flex: 2 2 auto;
  background: #FFF;
  padding: 0 50px 50px;
}
.job-guide__item:first-child:last-child .job-guide__body {
  display: flex;
}
.job-guide__image-wrap {
  text-align: center;
  border-left: 3px solid #00A76A;
  padding: 50px 0 0;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-guide__item:first-child:last-child .job-guide__image-wrap {
  flex: 0 0 auto;
  width: 48%;
  margin: 0;
}
.job-guide__description {
  font-size: 1.4rem;
  margin-bottom: 0;
}
.job-guide__item:first-child:last-child .job-guide__description {
  margin-top: 50px;
}

@media screen and (max-width: 1023px) {
  .chapter-nav {
    margin-bottom: 60px;
  }
  .chapter-nav__list {
    margin-right: 0;
    width: 100%;
    display: block;
  }
  .chapter-nav__item {
    margin: 0 0 10px;
    height: auto;
    min-height: 60px;
  }
  .chapter-nav__link {
    font-size: 1.3rem;
    line-height: 1.6;
    padding: 10px 50px;
  }
  .chapter-nav__link::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    background: #00A76A;
    transition: 0.2s ease;
  }
  .chapter-nav__link::after {
    bottom: 50% !important;
    left: 20px;
    width: 15px;
    height: 15px;
    border-right: 4px solid;
    border-bottom: 4px solid;
    transform: rotate(45deg) translate(0, 50%);
  }
  .chapter-nav__count {
    top: 0.15em;
    right: 10px;
    width: 36px;
    font-size: 3rem;
    letter-spacing: 0;
  }
  .chapter-nav__count::before {
    font-size: 3rem;
  }
  .chapter-nav__count::after {
    border-width: 7px 36px 0 0;
  }

  .section-image-header {
    margin-bottom: 40px;
  }
  .section-image-header__heading {
    position: relative;
    bottom: auto;
    left: auto;
  }
  .section-image-header__image-wrap {
    position: relative;
    overflow: hidden;
  }

  .job-guide {
    margin: 40px calc(calc((100vw - 15px * 2) - 84vw) / -2);
    padding: 50px calc(calc((100vw - 15px * 2) - 84vw) / 2);
  }
  .job-guide__list {
    display: block;
    margin-bottom: -30px;
  }
  .job-guide__item {
    width: 100%;
    margin: 0 0 30px;
  }
  .job-guide__heading {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    border-left-width: 2px;
    margin: 0 0 -1px 15px;
    padding: 0 0 10px 10px;
  }
  .job-guide__body {
    padding: 0 15px 15px;
  }
  .job-guide__item:first-child:last-child .job-guide__body {
    display: block;
  }
  .job-guide__image-wrap {
    text-align: center;
    border-left-width: 2px;
    padding: 15px 0 0;
    margin: 0 0 15px !important;
  }
  .job-guide__item:first-child:last-child .job-guide__image-wrap {
    width: 100%;
  }
  .job-guide__description {
    font-size: 1.3rem;
  }
  .job-guide__item:first-child:last-child .job-guide__description {
    margin-top: 0;
  }
}
/* outline
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*# sourceMappingURL=about.css.map */
