@charset "UTF-8";

/*====================================
 * Join Us Page Stylesheet (BEM Refactored)
 * =====================================*/

/*------------------------------------
 * 共通レイアウト & コンテナ
 * ------------------------------------*/
.breadcrumbs .breadcrumbs__list .breadcrumbs__item {
  color: #28343B;
}

.container {
  background: linear-gradient(270deg, #A8D8F6 0%, #6FBEF0 25.48%, #5CB6EE 45.67%, #6FBEF0 60.1%, #A8D8F6 100%);
}

.joinus__wrap {
  background-color: #FAFDFF;
  @media screen and (min-width: 1024px) {
    background-image: url(../images/joinus/bg_joinus.webp);
    background-repeat: repeat-y;
    background-size: 100%;
    background-position: center 300px;
  }
}

.joinus__contents {
  padding: 24px 0 0 0;
  @media screen and (min-width: 1024px) {
    max-width: 1000px;
    margin-inline: auto;
    padding: 72px 0 0 0;
  }
}

/* ページトップボタンの固有スタイル */
.joinus__pagetop {
  @media screen and (max-width: 767px) {
    padding-top: 32px;
  }
}


/*------------------------------------
 * 採用メッセージ (Block: message)
 * ------------------------------------*/
.message {
  padding-bottom: 56px;
  border-bottom: 1px solid #9ECDEB;
}

.message__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  padding: 0px 0px 6px;
  border-bottom: 1px solid #B6DCF4;
  margin-bottom: 25px;

  @media screen and (min-width: 1024px) {
    /* font-size: 20px; */
    font-size: 1.25rem;
    line-height: 1.4;
    padding: 0px 0px 12px;
    margin-bottom: 48px;
  }
}


/*------------------------------------
 * メッセージ記事 (Block: message-article)
 * ------------------------------------*/
.message-article__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 2.0;
  text-align: center;
  letter-spacing: 0.01em;
  color: #35A7EE;
  padding: 0 0.5em 10px 0;
  background: url(../images/joinus/heading_line.svg) no-repeat bottom center;
  background-size: contain;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 32px;

  @media screen and (min-width: 1024px) {
    text-align: left;
    font-weight: 700;
    font-size: 43px;
    line-height: 1.3;
    padding: 0 0 22px 0;
    margin-inline: initial;
    margin-bottom: 48px;
  }
}

.message-article__body {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.015em;

  @media screen and (min-width: 1024px) {
    /* font-size: 20px; */
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

/* 本文内の強調テキスト */
.message-article__body strong {
  color: #FD7FA7;

  @media screen and (min-width: 1024px) {
    /* font-size: 22px; */
    font-size: 1.375rem;
  }
}

/* 本文の段落 */
.message-article__paragraph {
  margin-bottom: 16px;

  &:last-child {
    margin-bottom: 0;
  }
}

/* モバイル用改行の制御 */
.message-article__br {
  @media screen and (min-width: 1024px) {
    display: none;
  }
}

/* 記事の画像 */
.message-article__image {
  margin-top: 48px;
  text-align: center;

  @media screen and (min-width: 1024px) {
    margin-top: 72px;
    text-align: right;
  }

  & img {
    width: 84%;
    max-width: 455px;
  }
}