@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&display=swap');
/* -------------------------------------------
共通パッチ
------------------------------------------- */
img {
  vertical-align: bottom;
}

/* PCとタブレットのみ改行を適用 */
@media screen and (min-width: 767.01px) {
  .pc-tab {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc-tab {
    display: none;
  }
}
/* 要項ページ body */
.single-post_recruit {
  color: var(--sub-txt, #333);
  word-break: break-word;
  font-weight: 500;
}

/* ロゴ */
.m-header-001__logo {
  padding: 10px 30px 10px 20px;
  background: var(--primary);
}

@media screen and (max-width: 767px) {
  .m-header-001__logo {
    padding: 5px 15px;
    max-width: 220px;
  }
}
.m-header-001__logo-link-img {
  display: block;
  max-height: 34px;
}

@media screen and (max-width: 767px) {
  .m-header-001__logo-link-img {
    display: none;
  }
}
.m-header-001__logo-link-img.is-mobile {
  display: none;
  max-height: 30px;
}

@media screen and (max-width: 767px) {
  .m-header-001__logo-link-img.is-mobile {
    display: block;
  }
}
/* 大見出し */
.c-headline-001 {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .c-headline-001 {
    margin-bottom: 20px;
  }
}
.c-headline-001 + * {
  padding-top: 0;
  margin-top: 0;
}

.c-headline-001__en {
  font-weight: 600;
  letter-spacing: 0.05em;
  /* text-transform: uppercase; */
}

.c-headline-001__ja {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: var(--primary-bg);
}

@media screen and (max-width: 767px) {
  .c-headline-001__ja {
    font-size: 2rem;
  }
}
@media screen and (max-width: 374px) {
  .c-headline-001__ja {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
}
/* モジュール内見出し */
@media screen and (max-width: 767px) {
  [class$=__headline-txt],
[class$=__content-ttl] {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
}
@media screen and (max-width: 374px) {
  [class$=__headline-txt],
[class$=__content-ttl] {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
}
/* 募集要項 */
div[class^=m-require-][class$=__detail-row] {
  border-color: var(--primary-border);
}

div[class^=m-require-][class$=__detail-ttl] {
  font-weight: 700;
  color: #fff;
}

div[class^=m-require-][class$=__detail-desc] {
  font-weight: 500;
}

/* コピーライト */
.m-footer-001__copyright {
  background: #4c6686;
  padding: 27px 0;
  font-family: inherit;
}

@media screen and (max-width: 767px) {
  .m-footer-001__copyright {
    padding: 20px 0;
  }
}
/* ヘッダーの高さ */
@media screen and (min-width: 767.1px) {
  .m-header-001__btn-link {
    min-height: 80px;
  }
}
/*全ページ　PCのみ　ヘッダー透過*/
.m-header-001 {
  background: var(--primary);
}

@media screen and (min-width: 1024.1px) {
  .m-header-001 {
    margin-bottom: -80px; /* PCヘッダーの高さ */
    background: transparent;
  }
}

/*
モジュールを「フリーテキスト」にしてタイトルh2の子を下記 div タグのみにする
<div class="img-headline"></div>
*/
.img-headline {
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 72px;
  background-image: url("https://d1k5qq9h33oekz.cloudfront.net/customers/4e5455304e513d3d/itszai1/img-headline.png");
}

@media screen and (max-width: 767px) {
  .img-headline {
    height: 51px;
  }
}

@media screen and (max-width: 374px) {
  .img-headline {
    height: 47px;
  }
}


/* -------------------------------------------
メッセージ 003
------------------------------------------- */
.m-message-003 {
  padding: 80px 20px;
  background: var(--primary) !important;
}

@media screen and (min-width: 1024.1px) {
  .m-message-003 {
    padding: 100px 20px 90px;
  }
}

@media screen and (max-width: 767px) {
  .m-message-003 {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .m-message-003__inner {
    flex-direction: column;
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .m-message-003__figure {
    width: calc(100% - 20px);
  }
}

.m-message-003__detail {
  background: var(--primary);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .m-message-003__detail {
    width: calc(100% - 20px);
    margin: -10% 0 0 20px;
  }
}
.m-message-003__headline {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .m-message-003__headline {
    margin-bottom: 20px;
  }
}
.m-message-003__headline:only-child {
  margin-bottom: 0;
}

.m-message-003__headline-txt {
  font-weight: 700;
  letter-spacing: .2em;
  /* color: var(--primary); */
}

.m-message-003__headline + .m-message-003__desc {
  margin-top: -2px;
}

.m-message-003__desc-txt {
  padding: 0 0 30px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: .1em;
  /* color: #fff; */
}

@media screen and (max-width: 767px) {
  .m-message-003__desc-txt {
    padding: 0 0 24px;
  }
}
.m-message-003__desc-txt:last-child {
  padding-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .m-message-003__desc-txt:last-child {
    padding-bottom: 2px;
  }
}
.m-message-003__desc:only-child .m-message-003__desc-txt:last-child {
  padding-bottom: 0;
}

/* -------------------------------------------
評価制度 001
------------------------------------------- */
/* shoud import font files */
.m-assessment-001 {
  /* background: var(--sub-bg) !important; */
}

@media screen and (min-width: 1024.1px) {
  .m-assessment-001 {
    padding: 100px 0 60px;
  }
}

@media screen and (min-width: 767.1px) {
  .m-assessment-001 {
    padding: 80px 0 50px;
  }
}

.m-assessment-001__inner {
  padding: 0 40px;
  max-width: 920px;
}

@media screen and (max-width: 767px) {
  .m-assessment-001__inner {
    padding: 0 20px;
  }
}
.m-assessment-001__list-item {
  padding: 0 0 60px;
}

@media screen and (max-width: 767px) {
  .m-assessment-001__list-item {
    padding-bottom: 30px;
  }
}
.m-assessment-001__list-item:last-child {
  padding-bottom: 0;
}

.m-assessment-001__list-item-ttl {
  border-width: 1px 0;
  border-color: var(--primary-border);
}

.m-assessment-001__list-item-ttl:only-child {
  margin-bottom: 0;
}

.m-assessment-001__list-item-ttl-num {
  font-weight: 600;
  background: var(--primary);
  /*color: var(--primary-txt, #fff); */
}

.m-assessment-001__list-item-ttl-txt {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .2em;
  /*color: var(--sub-txt); */
}

@media screen and (max-width: 767px) {
  .m-assessment-001__list-item-ttl-txt {
    font-size: 1.8rem;
    letter-spacing: .13em;
    line-height: 1.4;
  }
}
@media screen and (max-width: 320px) {
  .m-assessment-001__list-item-ttl-txt {
    font-size: 1.7rem;
  }
}
/*画像の横幅を縮める 子要素の「何番目」に適用させるかは適宜変更 */
.m-assessment-001__list-item:nth-child(2) .m-assessment-001__list-item-figure-img {
  /*max-width: 600px; */
  /*width: 100%; */
}

.m-assessment-001__list-item-desc {
  padding: 20px 20px 0;
  line-height: 1.875;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .m-assessment-001__list-item-desc {
    padding: 10px 0 0;
  }
}
.m-assessment-001__list-item-ttl + .m-assessment-001__list-item-desc,
.m-assessment-001__list-item-desc:only-child {
  padding-top: 0;
}

.m-assessment-001__list-item-desc-txt {
  /*color: var(--sub-txt); */
}

/* -------------------------------------------
仕事内容（単体） 001 各見出しが「文字色のみ」の場合
------------------------------------------- */
.m-jobs-001 {
  padding: 80px 20px;
}

@media screen and (min-width: 1024.1px) {
  .m-jobs-001 {
    padding: 100px 20px 110px;
  }
}

@media screen and (max-width: 767px) {
  .m-jobs-001 {
    padding: 40px 20px;
  }
}
.m-jobs-001__content-desc {
  line-height: 1.875;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .m-jobs-001__content-desc {
    text-align: left;
  }
}
.m-jobs-001__list {
  padding: 0;
}

@media screen and (min-width: 1024.1px) {
  .m-jobs-001__list {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024.1px) {
  .m-jobs-001__list-item {
    margin-top: 10px;
  }
}
.m-jobs-001__list-item:last-child {
  padding-bottom: 0;
}

.m-jobs-001__list-item-inner {
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .m-jobs-001__list-item-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .m-jobs-001__list-item:nth-child(even) .m-jobs-001__list-item-inner {
    flex-direction: column;
  }
}
.m-jobs-001__list-item-figure {
  min-height: 490px;
}

@media screen and (max-width: 1024px) {
  .m-jobs-001__list-item-figure {
    width: 100%;
    min-height: 440px; /*適宜変更*/
  }
}
@media screen and (max-width: 767px) {
  .m-jobs-001__list-item-figure {
    min-height: auto;
  }
}
.m-jobs-001__list-item-detail {
  width: 45%;
  margin: 0;
  padding: 40px 0% 40px 40px;
}

@media screen and (max-width: 1024px) {
  .m-jobs-001__list-item-detail {
    width: 100%;
    margin: 0;
    padding: 20px 0px;
  }
}
@media screen and (max-width: 767px) {
  .m-jobs-001__list-item-detail {
    width: 100%;
    margin: 0 0 0 0%;
    padding: 20px 0;
  }
}
.m-jobs-001__list-item:nth-child(even) .m-jobs-001__list-item-detail {
  margin: 0;
  padding: 40px 40px 40px 0%;
}

@media screen and (max-width: 1024px) {
  .m-jobs-001__list-item:nth-child(even) .m-jobs-001__list-item-detail {
    padding: 20px 0px;
  }
}
@media screen and (max-width: 767px) {
  .m-jobs-001__list-item:nth-child(even) .m-jobs-001__list-item-detail {
    margin: 0;
    padding: 20px 0;
  }
}
@media screen and (max-width: 1024px) {
  .m-jobs-001__list-item:last-child .m-jobs-001__list-item-detail {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .m-jobs-001__list-item-figure {
    min-height: auto;
  }
}
.m-jobs-001__list-item-detail-job {
  font-weight: 700;
  padding: 0;
  margin: 0;
  background: transparent;
  color: currentColor;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .m-jobs-001__list-item-detail-job {
    font-size: 2.1rem;
  }
}

.m-jobs-001__list-item-detail-ttl {
  display: block; /*safariバグ対策*/
  padding: 0;
  margin: 0 0 15px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .2em;
  background: transparent;
  /* color: var(--primary); */
  color: currentColor;
}

@media screen and (max-width: 767px) {
  .m-jobs-001__list-item-detail-ttl {
    font-size: 1.8rem;
  }
}
.m-jobs-001__list-item-detail-desc {
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.1em;
}

/* -------------------------------------------
動画003
------------------------------------------- */
@media screen and (min-width: 1024.1px) {
  .m-movie-003__content {
    padding: 100px 0;
  }
}

.m-movie-003__container {
  padding: 90px 0;
}

@media screen and (max-width: 1024px) {
  .m-movie-003__container {
    padding: 8% 0;
  }
}

/* -------------------------------------------
募集要項003
------------------------------------------- */
.m-require-003 {
  background: var(--primary) !important;
  color: #fff;
}

.m-require-003 .c-headline-001__en,
.m-require-003 .c-headline-001__ja {
  color: currentColor;
}

