*, ::after, ::before {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style: none;
}

a {
  color: initial;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  font-weight: initial;
}

button {
  border: initial;
  background: initial;
  outline: 0;
}

textarea {
  resize: none;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-bg: #FAFFFF;
  --color-object-dark: #3C4141;
  --color-object-dark2: #4B5050;
  --color-txt-main: #506464;
  --color-txt-sub: #8C9696;
  --color-object-lighten: #F0F5F5;
  --color-object-lighten2: #BEC3C3;
  --color-line: #D2DCD7;
  --color-primary-green: #19A050;
}

.RecruitContentItem__head {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.8;
  color: var(--color-primary-green);
}
@media screen and (max-width: 768px) {
  .RecruitContentItem__head {
    font-size: 20px;
  }
}
.RecruitContentItem__text {
  margin-top: 24px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .RecruitContentItem__text {
    font-size: 18px;
  }
}

.RecruitContent {
  margin-top: 200px;
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
  .RecruitContent {
    margin-top: 120px;
  }
}
.RecruitContent .RecruitContentItem:not(:first-child) {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .RecruitContent .RecruitContentItem:not(:first-child) {
    margin-top: 40px;
  }
}
.RecruitContent__process {
  margin-top: 40px;
}
.RecruitContent__process--head {
  font-weight: 500;
}
.RecruitContent__process--list {
  margin-top: 10px;
  counter-reset: number 0;
}
.RecruitContent__process--item {
  padding-left: 24px;
  line-height: 1.8;
  position: relative;
}
.RecruitContent__process--item::before {
  counter-increment: number 1;
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 4px;
}
.RecruitContent__info {
  margin-top: 64px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  border: 1px solid var(--color-line);
}
.RecruitContent__info--list {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 425px) {
  .RecruitContent__info--list {
    margin-right: initial;
    margin-left: initial;
  }
}
.RecruitContent .ViewMore {
  margin-top: 200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .RecruitContent .ViewMore {
    margin-top: 120px;
  }
}
.RecruitContent.-active {
  opacity: 1;
  transform: translateY(0);
}
.RecruitContent.-active .ViewMore {
  opacity: 1;
  transform: translateY(0);
}

.RecruitContent__button {
  max-width: 686px;
  height: 166px;
  background: #4B9D59;
  margin: 85px auto 0;
  display: flex;
  align-items: center;
  flex-direction:column;
  justify-content: center;
  padding-left: 65px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .RecruitContent__button {
    height: 147px;;
    padding-left: 50px;
  }
}
.RecruitContent__button:hover {
  opacity: 0.8;
}
.RecruitContent__button p {
  color: #fff !important;
}
.RecruitContent__button .Button__content {
  max-width: 100%;
  position: relative;
}
.RecruitContent__button .Button__head.-bottom {
  margin-top: 0;
}
@media screen and (min-width: 769px) {
  .RecruitContent__button .Button__head.-bottom {
    font-size: 48px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 768px) {
  .RecruitContent__button .Button__head.-bottom {
    font-size: 32px;
  }
}
.RecruitContent__button .Button__shoulder.-bottom {
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .RecruitContent__button .Button__shoulder.-bottom {
    font-size: 16px;
    letter-spacing: 0.09em;
  }
}
@media screen and (max-width: 768px) {
  .RecruitContent__button .Button__shoulder.-bottom {
    font-size: 13px;
  }
}
.RecruitContent__button:hover .Button__content {
  transform: translateX(12px);
}
.RecruitContent__button .Button__arrow {
  right: 40px;
  bottom: 50%;
  transform: translateY(50%);
}