@charset "UTF-8";
/* 共通
======================================= */
/* job
========================================= */
.job__links {
  margin-bottom: 3.6em;
}
.job__box {
  margin-bottom: 4.5em;
}
.job__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2em 1.6em;
  border-top: 1px solid #6175C5;
  border-bottom: 1px solid #6175C5;
}
.job__item:nth-child(n+2) {
  margin-top: 1em;
}
@media (max-width: 768px) {
  .job__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.job__item-title {
  width: 20%;
  min-width: 150px;
  font-family: "源真ゴシックP";
  font-size: 1.2em;
  font-weight: bold;
  color: #1C2C6F;
}
@media (max-width: 768px) {
  .job__item-title {
    width: 100%;
    margin-bottom: 1em;
  }
}
.job__item-contents {
  width: 75%;
}
@media (max-width: 768px) {
  .job__item-contents {
    width: 100%;
  }
}
.job__item-text {
  font-weight: bold;
}
.job__item-list {
  margin-top: 1em;
}
.job__item-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.job__item-list-item:nth-child(n+2) {
  margin-top: 1em;
}
.job__item-list-item::before {
  content: "●";
  color: #9F296A;
  margin-right: 0.5em;
}
.job__item-no_contents {
  font-size: 1.2em;
  font-weight: bold;
  color: #1C2C6F;
  padding: 2.4em;
  border-top: 1px solid #6175C5;
  border-bottom: 1px solid #6175C5;
  text-align: center;
}
.job__btn {
  margin-top: 6em;
}

/* license
========================================= */
.license__inner {
  padding-bottom: 4em;
}
.license__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  margin-bottom: 3.2em;
}
@media (max-width: 768px) {
  .license__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.license__item {
  width: 50%;
  background-color: #F8F9FF;
  padding: 1.8em 2.2em;
}
@media (max-width: 768px) {
  .license__item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .license__item:nth-child(1) {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .license__item:nth-child(2) {
    padding-top: 0;
  }
}
.license__item-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2em;
}
@media (max-width: 768px) {
  .license__item-list-item {
    margin-top: 1em;
  }
}
.license__item-list-item:nth-child(n+2) {
  margin-top: 1em;
}
.license__item-list-item::before {
  content: "";
  display: block;
  width: 1.2em;
  min-width: 1.2em;
  height: 1.2em;
  background: url(../img/recruit/icon_check.svg) no-repeat center center/contain;
}
.license__btn {
  margin-top: 5em;
}

/* faq
========================================= */
.faq__box {
  margin-bottom: 4em;
}
.faq__title {
  margin-bottom: 0em;
}
.faq__item {
  padding: 3.5em 0;
  border-bottom: 1px solid #101010;
}
.faq__item-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.faq__item-list-item--question {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq__item-list-item--answer {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq__item-list-item:nth-child(n+2) {
  margin-top: 1.6em;
}
.faq__item-list-item-letter {
  font-family: "源真ゴシックP";
  font-size: 1.2em;
  font-weight: 900;
  text-align: center;
  width: 2.4em;
  min-width: 2.4em;
  height: 2.4em;
  line-height: 2.2em;
  border: 2px solid #101010;
  border-radius: 50%;
  margin-right: 0.8em;
}
.faq__item-list-item-letter--q {
  background-color: #fff;
}
.faq__item-list-item-letter--a {
  background-color: #EB2487;
  color: #fff;
}
.faq__item-list-item-text--q {
  font-family: "源真ゴシックP";
  font-size: 1.2em;
  font-weight: bold;
}
.faq__item-list-item-text--a {
  line-height: 2;
  padding: 0.5em 0;
}
.faq__btn {
  margin-top: 6em;
}

/* message
========================================= */
.message__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6em;
}
@media (max-width: 768px) {
  .message__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.message__item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .message__item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.message__item-info {
  width: 23%;
}
@media (max-width: 768px) {
  .message__item-info {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 2em;
  }
}
.message__item-img {
  margin-bottom: 1.2em;
}
.message__item-name {
  font-family: "源真ゴシックP";
  font-weight: 900;
  color: #1C2C6F;
  text-align: center;
}
.message__item-text {
  width: 71%;
  line-height: 2;
}
@media (max-width: 768px) {
  .message__item-text {
    width: 100%;
  }
}