@charset "UTF-8";
/* ==================================================
 common.css
================================================== */
/* ==================================================
 カラー変数
-------------------------------------------------- */
/* ==================================================
 ブレイクポイント
-------------------------------------------------- */
/* ==================================================
 Animation 関連
-------------------------------------------------- */
/* ==================================================
 フォント
-------------------------------------------------- */
/* --------------------------------------------------
 clamp() フォントサイズ計算関数
	@param $min    - 最小フォントサイズ（px単位の数値）
	@param $max    - 最大フォントサイズ（px単位の数値）
	@param $vp-min - 最小ビューポート幅（デフォルト: 375）
	@param $vp-max - 最大ビューポート幅（デフォルト: 1200）
	@param $root   - ルートフォントサイズ（デフォルト: 16）
-------------------------------------------------- */
/* ==================================================
 体裁
-------------------------------------------------- */
/* ==================================================
 ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 メディアクエリ ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 コンテナ ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 透明度 ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 ボックスシャドウ ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 その他 ミックスイン
-------------------------------------------------- */
@layer reset, base, common, top, page;
/* ==================================================
 1.0 - Reset
-------------------------------------------------- */
@layer reset {
  html {
    background: #fff;
    color: #000;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
  }
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }
  body,
  header,
  footer,
  section,
  article,
  div,
  dl,
  dt,
  dd,
  ul,
  ol,
  li,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  pre,
  code,
  form,
  fieldset,
  figure,
  legend,
  input,
  textarea,
  p,
  blockquote,
  th,
  td {
    margin: 0;
    padding: 0;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  fieldset,
  img {
    border: 0;
  }
  address,
  caption,
  cite,
  code,
  dfn,
  em,
  th,
  var {
    font-style: normal;
    font-weight: normal;
  }
  ol,
  ul {
    list-style: none;
  }
  caption,
  th {
    text-align: left;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 100%;
    font-weight: normal;
  }
  q::before,
  q::after {
    content: "";
  }
  abbr,
  acronym {
    border: 0;
    font-variant: normal;
  }
  sup {
    vertical-align: text-top;
  }
  sub {
    vertical-align: text-bottom;
  }
  input,
  textarea,
  select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}
/* ==================================================
 2.0 - Base（ベーススタイル）
-------------------------------------------------- */
@layer base {
  html {
    scroll-padding-top: 60px;
  }
  @media (min-width: 1024px) {
    html {
      scroll-padding-top: 100px;
    }
  }
  body {
    background-color: #FFFFFF;
    color: #3A3123;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(0.875rem, 0.8181818182rem + 0.2424242424vw, 1rem);
    line-height: 1.42857143;
    -webkit-font-smoothing: antialiased;
  }
  img,
  video {
    display: block;
    max-width: 100%;
    height: auto;
    image-rendering: auto;
  }
  a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
  }
  hr {
    display: block;
    width: 100%;
    height: 1px;
    margin-block: 20px;
    border: none;
    background-color: #E6E6E6;
  }
  button {
    border: none;
    background: none;
    font-family: inherit;
    font-weight: inherit;
    cursor: pointer;
  }
  /* ------------------------------------------------
   2.1 - Utility
  ------------------------------------------------ */
  .hide {
    display: none !important;
    visibility: hidden;
  }
  .nowrap {
    white-space: nowrap;
  }
  .ib span {
    display: inline-block;
  }
  .non-border {
    border: none !important;
  }
  .align-center {
    text-align: center;
  }
}
/* ==================================================
 3.0 - Common（共通スタイル）
-------------------------------------------------- */
@layer common {
  /* ------------------------------------------------
   3.1 - ボタン（共通）
  ------------------------------------------------ */
  .btn__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 30px;
  }
  @media (min-width: 1024px) {
    .btn__list {
      gap: 50px;
    }
  }
  .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 225px;
    height: 50px;
    padding-inline: 30px 20px;
    border-radius: 1000px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(0.8125rem, 0.6136363636rem + 0.8484848485vw, 1.25rem);
    font-weight: 500;
    line-height: 1.2;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  @media (min-width: 600px) {
    .btn {
      width: 288px;
      height: 64px;
    }
  }
  @media (min-width: 1024px) {
    .btn {
      width: 360px;
      height: 80px;
      padding-inline: 50px 30px;
      letter-spacing: 0.05em;
    }
  }
  .btn:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
  }
  .btn::after {
    display: inline-block;
    width: 4px;
    height: 4px;
    border: solid #3A3123;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    content: "";
  }
  @media (min-width: 600px) {
    .btn::after {
      width: 7px;
      height: 7px;
    }
  }
  .btn.btn--small {
    width: 180px;
    height: 40px;
    padding-inline: 25px 15px;
    font-size: clamp(0.8125rem, 0.7556818182rem + 0.2424242424vw, 0.9375rem);
  }
  @media (min-width: 1024px) {
    .btn.btn--small {
      width: 225px;
      height: 50px;
      padding-inline: 30px 20px;
    }
    .btn.btn--small::after {
      width: 4px;
      height: 4px;
    }
  }
  .btn.btn--low {
    width: 240px;
    height: 50px;
    padding-inline: 25px 15px;
    border-radius: 10px;
    font-size: clamp(0.8125rem, 0.6988636364rem + 0.4848484848vw, 1.0625rem);
    font-weight: 600;
  }
  @media (min-width: 1024px) {
    .btn.btn--low {
      width: 300px;
      height: 60px;
      padding-inline: 30px 20px;
    }
    .btn.btn--low::after {
      width: 16px;
      height: 16px;
    }
  }
  .btn.btn--max {
    width: 100% !important;
  }
  .btn.btn--fit {
    width: fit-content !important;
    padding-inline: 25px 15px;
  }
  .btn.btn--nomal-font {
    font-family: "Noto Sans JP", sans-serif !important;
  }
  .btn.btn--gently-rounded {
    height: 64px;
    border-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  }
  @media (min-width: 600px) {
    .btn.btn--gently-rounded {
      height: 80px;
    }
  }
  @media (min-width: 1024px) {
    .btn.btn--gently-rounded {
      height: 100px;
    }
  }
  .btn span {
    display: block;
    padding-inline: 0 10px;
  }
  /* 3.1.1 - 塗りボタン（メインカラー）
  ------------------------------------------------ */
  .btn--primary {
    border: 1px solid #EA932A;
    background-color: #EA932A;
    color: #FFFFFF;
  }
  .btn--primary::before, .btn--primary::after {
    border-color: #FFFFFF !important;
  }
  /* 3.1.2 - 塗りボタン（セカンドカラー）
  ------------------------------------------------ */
  .btn--secondary {
    border: 1px solid #57B193;
    background-color: #57B193;
    color: #FFFFFF;
  }
  .btn--secondary::before, .btn--secondary::after {
    border-color: #FFFFFF !important;
  }
  /* 3.1.3 - 塗りボタン（ホワイト）
  ------------------------------------------------ */
  .btn--white {
    border: 1px solid #FFFFFF;
    background-color: #FFFFFF;
    color: #3A3123;
  }
  /* 3.1.4 - 塗りボタン（アウトライン）
  ------------------------------------------------ */
  .btn--outline {
    border: 1px solid #EA932A;
    background-color: #FFFFFF;
    color: #3A3123;
  }
  /* 3.1.5 - ← ボタン（左向き矢印）
  ------------------------------------------------ */
  .btn--arrow-left {
    padding-inline: 20px 30px;
  }
  @media (min-width: 1024px) {
    .btn--arrow-left {
      padding-inline: 30px 50px;
    }
  }
  .btn--arrow-left::before {
    display: inline-block;
    width: 4px;
    height: 4px;
    border: solid #3A3123;
    border-width: 1px 1px 0 0;
    transform: rotate(-135deg);
    content: "";
  }
  @media (min-width: 600px) {
    .btn--arrow-left::before {
      width: 7px;
      height: 7px;
    }
  }
  .btn--arrow-left::after {
    display: none;
  }
  .btn--arrow-left span {
    padding-inline: 10px 0 !important;
  }
  /* 3.1.5 - テキストセンタリングボタン
  ------------------------------------------------ */
  .btn--center span {
    margin: auto;
    padding-inline: 0;
  }
  /* 3.1.6 - 矢印なしボタン
  ------------------------------------------------ */
  .btn--non-arrow {
    padding-inline: 20px;
  }
  @media (min-width: 1024px) {
    .btn--non-arrow {
      padding-inline: 30px;
    }
  }
  .btn--non-arrow::before, .btn--non-arrow::after {
    display: none !important;
  }
  /* ------------------------------------------------
   3.2 - 矢印付きリンク
  ------------------------------------------------ */
  /* 3.2.1 - ○背景に矢印
  ------------------------------------------------ */
  .link__arrow,
  .link__arrow--nega,
  .link__arrow--down {
    position: relative;
    cursor: pointer;
  }
  .link__arrow::before, .link__arrow::after,
  .link__arrow--nega::before,
  .link__arrow--nega::after,
  .link__arrow--down::before,
  .link__arrow--down::after {
    position: absolute;
    top: 50%;
    content: "";
  }
  .link__arrow::before,
  .link__arrow--nega::before,
  .link__arrow--down::before {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: #EA932A;
    transform: translateY(-42%);
  }
  .link__arrow::after,
  .link__arrow--nega::after,
  .link__arrow--down::after {
    width: 4px;
    height: 4px;
    border: solid #FFFFFF;
    border-width: 1px 1px 0 0;
  }
  .link__arrow,
  .link__arrow--nega {
    padding-left: 25px !important;
  }
  .link__arrow::before, .link__arrow::after,
  .link__arrow--nega::before,
  .link__arrow--nega::after {
    left: 0;
  }
  .link__arrow::after,
  .link__arrow--nega::after {
    transform: rotate(45deg) translateX(2.5px) translateY(-4px);
  }
  .link__arrow--nega::before {
    background-color: #FFFFFF;
  }
  .link__arrow--nega::after {
    border-color: #EA932A;
  }
  .link__arrow--down {
    padding-right: 20px !important;
  }
  .link__arrow--down::before, .link__arrow--down::after {
    right: 0;
  }
  .link__arrow--down::after {
    transform: rotate(135deg) translateX(2.5px) translateY(4.5px);
  }
  /* 3.2.2 - 背景なし矢印
  ------------------------------------------------ */
  .link__arrow--line {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(0.9375rem, 0.8522727273rem + 0.3636363636vw, 1.125rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }
  .link__arrow--line:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
  }
  .link__arrow--line::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 5px;
    border: solid #3A3123;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    content: "";
  }
  /* 3.2.3 - more
  ------------------------------------------------ */
  .link__more {
    position: relative;
    padding-block: 0 1px;
    padding-inline: 0 30px;
    border-bottom: 2px solid #3A3123;
    color: #3A3123;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1.375rem, 1.2613636364rem + 0.4848484848vw, 1.625rem);
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  @media (min-width: 1024px) {
    .link__more {
      padding-right: 45px;
    }
  }
  .link__more::before, .link__more::after {
    position: absolute;
    right: -4px;
    height: 2px;
    content: "";
  }
  .link__more::before {
    bottom: 4px;
    width: 20px;
    background-color: #3A3123;
    transform: rotate(45deg);
  }
  @media (min-width: 1024px) {
    .link__more::before {
      bottom: 6px;
      width: 25px;
    }
  }
  .link__more::after {
    bottom: -4px;
    width: 100%;
    background-color: #FFFFFF;
  }
  /* ------------------------------------------------
   3.3 - ヘッダー
  ------------------------------------------------ */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(255, 252, 250, 0.7);
  }
  .header__inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .header__inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1024px) {
    .header__inner {
      max-width: 1200px;
    }
  }
  @media (min-width: 1280px) {
    .header__inner {
      max-width: 1400px;
      padding-inline: 30px;
    }
  }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    height: 60px;
  }
  @media (min-width: 1024px) {
    .header__inner {
      height: 100px;
    }
  }
  /* 3.3.1 - ロゴ
  ------------------------------------------------ */
  .header__logo {
    z-index: 110;
    margin: 0;
  }
  .header__logo-link {
    display: flex;
    width: 180px;
  }
  @media (min-width: 1024px) {
    .header__logo-link {
      width: 250px;
    }
  }
  @media (min-width: 1280px) {
    .header__logo-link {
      width: 310px;
    }
  }
  .header__logo-emblem {
    width: 100%;
  }
  /* 3.3.2 - PC グローバルナビゲーション
  ------------------------------------------------ */
  .header__nav {
    display: none;
  }
  @media (min-width: 1024px) {
    .header__nav {
      display: block;
    }
  }
  .gnav {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  @media (min-width: 1280px) {
    .gnav {
      gap: 4px;
    }
  }
  .gnav__item {
    position: relative;
  }
  .gnav__item.padding--left {
    padding-left: 10px;
  }
  @media (min-width: 1280px) {
    .gnav__item.padding--left {
      padding-left: 30px;
    }
  }
  .gnav__link {
    display: flex;
    padding: 8px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3A3123;
    white-space: nowrap;
    transition: color 0.3s ease;
  }
  @media (min-width: 1280px) {
    .gnav__link {
      padding: 8px 14px;
      font-size: 18px;
    }
  }
  .gnav__link:hover {
    color: #EA932A;
    opacity: 1;
  }
  .gnav__link--small {
    padding: 8px;
    font-size: 13px;
    color: #7C766D;
  }
  @media (min-width: 1280px) {
    .gnav__link--small {
      padding: 8px 10px;
    }
  }
  /* 3.3.3 - ドロップダウンメニュー
  ------------------------------------------------ */
  .gnav__child {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 190px;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(-8px);
    box-shadow: 0 8px 24px rgba(58, 49, 35, 0.12);
  }
  .gnav__item--has-child {
    margin-right: 8px;
  }
  @media (min-width: 1280px) {
    .gnav__item--has-child {
      margin-right: 14px;
    }
  }
  .gnav__item--has-child:hover .gnav__child {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .gnav__child-link {
    display: block;
    width: 100%;
    padding-block: 8px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1rem, 0.9431818182rem + 0.2424242424vw, 1.125rem);
    font-weight: 500;
    color: #3A3123;
    text-align: left;
    white-space: nowrap;
    transition: color 0.3s ease;
  }
  .gnav__child-link:hover {
    color: #EA932A;
    opacity: 1;
  }
  .gnav__child-link {
    padding-block: 6px;
    font-size: clamp(0.8125rem, 0.7840909091rem + 0.1212121212vw, 0.875rem);
    color: #7C766D;
  }
  /* 3.3.4 - ハンバーガーボタン
  ------------------------------------------------ */
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 0;
    z-index: 110;
  }
  @media (min-width: 1024px) {
    .header__hamburger {
      display: none;
    }
  }
  .header__hamburger-line {
    display: block;
    width: 30px;
    height: 1px;
    background-color: #3A3123;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header--menu-open .header__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header--menu-open .header__hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .header--menu-open .header__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  /* 3.3.5 - ドロワーメニュー
  ------------------------------------------------ */
  .drawer {
    position: fixed;
    inset: 0;
    background-color: #FFF7F1;
    z-index: 99;
    overflow-y: auto;
    padding-block: 80px 40px;
    padding-inline: 30px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  @media (min-width: 1024px) {
    .drawer {
      display: none;
    }
  }
  .drawer--open {
    transform: translateX(0);
  }
  .drawer-nav,
  .drawer-nav__child {
    display: flex;
    flex-direction: column;
    gap: clamp(0rem, -0.2272727273rem + 0.9696969697vw, 0.5rem);
  }
  .drawer-nav__child {
    padding-block: 5px 10px;
  }
  .drawer-nav__link,
  .drawer-nav__child-link {
    display: block;
    width: 100%;
    padding-block: clamp(0.5rem, 0.3863636364rem + 0.4848484848vw, 0.75rem);
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1rem, 0.8295454545rem + 0.7272727273vw, 1.375rem);
    font-weight: 500;
    color: #3A3123;
    text-align: left;
  }
  .drawer-nav__child-link {
    padding-block: 6px;
    font-size: clamp(0.8125rem, 0.6704545455rem + 0.6060606061vw, 1.125rem);
    color: #7C766D;
  }
  .drawer-nav__item--has-child {
    padding-left: 25px;
  }
  /* ------------------------------------------------
   3.4 - セクションタイトル（共通）
  ------------------------------------------------ */
  .section-title {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 5px 10px;
    color: #3A3123;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.64;
  }
  .section-title__icon {
    width: clamp(3.375rem, 3.2045454545rem + 0.7272727273vw, 3.75rem);
    margin-right: 15px;
    flex-shrink: 0;
    transform: translateY(5px);
  }
  .section-title__jp,
  .section-title__en {
    display: inline-block;
    font-size: clamp(1.625rem, 1.5113636364rem + 0.4848484848vw, 1.875rem);
    white-space: nowrap;
  }
  .section-title__en {
    font-size: 16px;
  }
  /* ------------------------------------------------
   3.5 - フッター
  ------------------------------------------------ */
  .footer {
    background-color: #FFF7F1;
  }
  @media (min-width: 600px) {
    .footer {
      background-color: #FFFFFF;
    }
  }
  .footer__nav-area {
    padding-block: 30px;
    background-color: #FFF7F1;
  }
  @media (max-width: 599px) {
    .footer__nav-area {
      display: none;
    }
  }
  .footer__inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .footer__inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1024px) {
    .footer__inner {
      max-width: 1200px;
    }
  }
  @media (min-width: 1280px) {
    .footer__inner {
      max-width: 1400px;
      padding-inline: 30px;
    }
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    width: fit-content;
    margin: 0 auto;
  }
  @media (min-width: 600px) {
    .footer-nav {
      flex-direction: row;
      gap: 30px;
      width: 100%;
    }
  }
  @media (min-width: 1024px) {
    .footer-nav {
      gap: 50px;
    }
  }
  @media (min-width: 600px) {
    .footer-nav__col {
      width: fit-content;
    }
  }
  .footer-nav__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .footer-nav__child {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .footer-nav__child {
    padding-block: 5px 10px;
  }
  .footer-nav__link,
  .footer-nav__child-link {
    display: block;
    width: 100%;
    padding-block: 8px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1rem, 0.9431818182rem + 0.2424242424vw, 1.125rem);
    font-weight: 500;
    color: #3A3123;
    text-align: left;
    white-space: nowrap;
    transition: color 0.3s ease;
  }
  .footer-nav__link:hover,
  .footer-nav__child-link:hover {
    color: #EA932A;
    opacity: 1;
  }
  .footer-nav__child-link {
    padding-block: 6px;
    font-size: clamp(0.8125rem, 0.7840909091rem + 0.1212121212vw, 0.875rem);
    color: #7C766D;
  }
  .footer-nav__item--has-child {
    padding-left: 25px;
  }
  .footer-nav__item--has-child .footer-nav__link:hover {
    color: #3A3123;
  }
  .footer__info-area {
    padding-block: 32px;
  }
  .footer__info-inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .footer__info-inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1024px) {
    .footer__info-inner {
      max-width: 1200px;
    }
  }
  @media (min-width: 1280px) {
    .footer__info-inner {
      max-width: 1400px;
      padding-inline: 30px;
    }
  }
  .footer__info-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }
  .footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .footer__logo-emblem {
    width: 200px;
  }
  @media (min-width: 600px) {
    .footer__logo-emblem {
      width: 220px;
    }
  }
  @media (min-width: 1024px) {
    .footer__logo-emblem {
      width: 240px;
    }
  }
  .footer__address {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .footer__tel {
    font-size: clamp(1.375rem, 1.3181818182rem + 0.2424242424vw, 1.5rem);
    font-weight: 700;
  }
  .footer__tel a {
    color: #3A3123;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__copyright-text {
    font-size: clamp(0.75rem, 0.7215909091rem + 0.1212121212vw, 0.8125rem);
    font-weight: 500;
    color: #EA932A;
  }
  /* ------------------------------------------------
   3.6 - レイアウト
  ------------------------------------------------ */
  .main {
    margin-top: 60px;
  }
  @media (min-width: 1024px) {
    .main {
      margin-top: 100px;
    }
  }
  /* ------------------------------------------------
   3.7 - アニメーション用クラス
  ------------------------------------------------ */
  .target-animation {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
  }
  .target-animation--left {
    transform: translateX(40px);
  }
  .target-animation--right {
    transform: translateX(-40px);
  }
  .animated {
    visibility: visible !important;
    animation-name: fadeInUp;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }
  .delay {
    animation-delay: 0.2s;
  }
  .delay--1 {
    animation-delay: 0.5s;
  }
  .delay--2 {
    animation-delay: 0.9s;
  }
  @media (max-width: 599px) {
    .delay,
    .delay--1,
    .delay--2 {
      animation-delay: 0;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fadeInUp {
    animation-name: fadeInUp;
  }
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .fadeInLeft {
    animation-name: fadeInLeft;
  }
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .fadeInRight {
    animation-name: fadeInRight;
  }
  /* ==================================================
   4.0 - コンテンツページ
  -------------------------------------------------- */
  .section {
    padding-block: 20px;
  }
  @media (min-width: 1024px) {
    .section {
      padding-block: 30px;
    }
  }
  /* ------------------------------------------------
   4.1 - コンテントヘッダー
  ------------------------------------------------ */
  .content-header {
    width: 100%;
    height: clamp(12.5rem, 10.6534090909rem + 7.8787878788vw, 16.5625rem);
    background-color: #FFFCFA;
  }
  .content-header__inner {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .content-header__inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1024px) {
    .content-header__inner {
      max-width: 1200px;
    }
  }
  @media (min-width: 1280px) {
    .content-header__inner {
      max-width: 1400px;
      padding-inline: 30px;
    }
  }
  .content-header__inner {
    height: 100%;
  }
  .content-header__wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  }
  @media (min-width: 1024px) {
    .content-header__wrapper {
      align-items: center;
    }
  }
  .content-header__title {
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    width: min-content;
    max-width: 80%;
    margin-bottom: 30px;
    padding-block: clamp(0.5rem, 0.2727272727rem + 0.9696969697vw, 1rem) clamp(0.625rem, 0.3977272727rem + 0.9696969697vw, 1.125rem);
    padding-inline: clamp(0.9375rem, 0.5113636364rem + 1.8181818182vw, 1.875rem) clamp(1.25rem, 0.6818181818rem + 2.4242424242vw, 2.5rem);
    background-color: #FFFCFA;
    border-top-right-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
    border-bottom-right-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
    line-height: 1.2;
  }
  @media (min-width: 600px) {
    .content-header__title {
      flex-wrap: nowrap;
    }
  }
  @media (min-width: 1024px) {
    .content-header__title {
      margin-bottom: 0;
      gap: 10px 20px;
    }
  }
  .content-header__title .section-title__jp {
    font-size: clamp(1.125rem, 0.7840909091rem + 1.4545454545vw, 1.875rem);
  }
  .content-header__title .section-title__en {
    font-size: clamp(0.75rem, 0.6363636364rem + 0.4848484848vw, 1rem);
  }
  .content-header__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 100%;
    height: flui;
  }
  .content-header__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }
  /* ------------------------------------------------
   4.2 - コンテントボディ
  ------------------------------------------------ */
  .content-body {
    padding-block: 50px;
    background-color: #FFFCFA;
  }
  .content-body__inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .content-body__inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1024px) {
    .content-body__inner {
      padding-inline: 0;
    }
  }
  /* 4.2.1 - 見出し
  ------------------------------------------------ */
  #page-news .tit-s2,
  #page-news .tit-s3,
  #page-news .tit-s4 {
    position: relative;
    margin-bottom: 1.15em;
    padding-inline: 32px;
    font-size: clamp(1.125rem, 1.0681818182rem + 0.2424242424vw, 1.25rem);
    font-weight: 600;
    line-height: 1.64;
  }
  #page-news .tit-s2 {
    padding-inline: 0;
    color: #EA932A;
    font-size: clamp(1.25rem, 1.1931818182rem + 0.2424242424vw, 1.375rem);
  }
  #page-news .tit-s3::before {
    position: absolute;
    top: 0.4em;
    left: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #EA932A;
    border-radius: 100px;
    content: "";
  }
  #page-news .tit-s4 {
    padding-block: 0.65em;
    border-radius: 10px;
    background-color: #EA932A;
    color: #FFFFFF;
  }
  /* 4.2.2 - 本文
  ------------------------------------------------ */
  .content-block__text {
    line-height: 1.85;
  }
  .content-block__text .text {
    margin-bottom: 2em;
  }
  .content-block__text p:not(.non-margin) {
    margin-bottom: 1em;
  }
  .content-block__text p:not(.non-margin):last-child {
    margin-bottom: 0;
  }
  /* 4.2.3 - 画像
  ------------------------------------------------ */
  .content-block__gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
  @media (min-width: 600px) {
    .content-block__gallery {
      flex-direction: column;
      margin-top: 0;
    }
  }
  .content-block__gallery .image-item {
    text-align: center;
  }
  .content-block__gallery .image-item a {
    position: relative;
    display: block;
  }
  .content-block__gallery .image-item img {
    width: 100%;
  }
  .content-block__gallery .image-item figcaption {
    padding-top: 5px;
    color: #7C766D;
    font-size: clamp(0.75rem, 0.7215909091rem + 0.1212121212vw, 0.8125rem);
    line-height: 1.42857143;
  }
  /* 4.2.4 - マーカー付きリスト
  ------------------------------------------------ */
  .list--marker {
    display: flex;
    flex-direction: column;
    gap: 0.5em 1.5em;
  }
  .list--marker > li {
    position: relative;
    padding-left: 18px;
    line-height: 1.42857143;
  }
  .list--marker > li::before {
    position: absolute;
    top: clamp(0.2625rem, 0.2227272727rem + 0.1696969697vw, 0.35rem);
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background-color: #EA932A;
    content: "";
  }
  /* 4.2.5 - 説明リスト
  ------------------------------------------------ */
  .list__dl dl {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    justify-content: space-around;
    gap: 10px 20px;
    padding: 10px 30px;
    background-color: #F9E2CB;
    line-height: 1.85;
  }
  .list__dl dl:not(:first-child) {
    margin-top: 1px;
  }
  .list__dl dl:first-child {
    padding-top: 15px;
  }
  .list__dl dl:last-child {
    padding-bottom: 15px;
  }
  @media (min-width: 600px) {
    .list__dl dl {
      grid-template-columns: 8em 1fr;
    }
  }
  .list__dl dt {
    font-weight: 700;
  }
  .list__dl dd ul + p,
  .list__dl dd p + p {
    margin-top: 0.5em;
  }
  .list__dl--rounded {
    overflow: hidden;
    border-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  }
  /* 4.2.6 - ボックス
  ------------------------------------------------ */
  .box {
    padding: 30px;
    background-color: #F9E2CB;
    line-height: 1.85;
  }
  .box--outline {
    border: 1px solid #EA932A;
    background-color: transparent;
  }
  .box--rounded {
    overflow: hidden;
    border-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  }
  .box__headline {
    padding-bottom: 0.5em;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1rem, 0.8863636364rem + 0.4848484848vw, 1.25rem);
    font-weight: 600;
  }
}
@layer reset, base, common, top, page, old, new;
@layer old {
  #is-old-recruit {
    /* ==================================================
     0.0 - Override
    -------------------------------------------------- */
  }
  #is-old-recruit html {
    box-sizing: unset;
  }
  #is-old-recruit *,
  #is-old-recruit *::before,
  #is-old-recruit *::after {
    box-sizing: unset;
  }
  #is-old-recruit {
    /*------------------------------------------------------------------------------
    Css name: common.css
    Css info: 共通スタイル
    ------------------------------------------------------------------------------*/
    /*------------------------------------------------------------------------
    基本
    --------------------------------------------------------------------------*/
  }
  @-ms-viewport {
    width: auto !important;
  }
  #is-old-recruit html {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    font-size: 62.5%; /*10px*/
    scroll-behavior: smooth;
  }
  #is-old-recruit html.open {
    overflow: hidden;
  }
  #is-old-recruit body {
    background: #ffffff url("../../recruit/shared/images/bg_01.png") 0 0 repeat;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
    height: 100%;
    text-align: center;
    margin: 0px;
    padding: 0px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-weight: normal;
    font-style: normal;
    color: #000000;
    position: relative;
    word-break: break-all; /*折り返し設定*/
  }
  #is-old-recruit article, #is-old-recruit aside, #is-old-recruit dialog, #is-old-recruit figure, #is-old-recruit footer, #is-old-recruit header, #is-old-recruit hgroup, #is-old-recruit nav, #is-old-recruit section {
    display: block;
  }
  #is-old-recruit body *,
  #is-old-recruit body p {
    line-height: 1.6;
  }
  #is-old-recruit table, #is-old-recruit th, #is-old-recruit td, #is-old-recruit th {
    border-collapse: collapse;
    border-spacing: 0;
    font-weight: normal;
    font-size: 1em;
  }
  #is-old-recruit table, #is-old-recruit div, #is-old-recruit ol, #is-old-recruit ul, #is-old-recruit dl, #is-old-recruit dt, #is-old-recruit dd {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    -ms-zoom: normal; /*IE8*/
  }
  #is-old-recruit li {
    margin: 0px;
    padding: 0px;
  }
  #is-old-recruit textarea, #is-old-recruit input {
    font-size: 1em;
  }
  #is-old-recruit {
    /* For modern browsers 回り込みの解除 */
  }
  #is-old-recruit .clearfix:before,
  #is-old-recruit .clearfix:after {
    content: "";
    display: table;
  }
  #is-old-recruit .clearfix:after {
    clear: both;
  }
  #is-old-recruit .f-lef {
    float: left;
  }
  #is-old-recruit .f-rig {
    float: right;
  }
  #is-old-recruit .cen {
    text-align: center;
  }
  #is-old-recruit .rig {
    text-align: right;
  }
  #is-old-recruit .lef {
    text-align: left;
  }
  #is-old-recruit h1, #is-old-recruit h2, #is-old-recruit h3, #is-old-recruit h4, #is-old-recruit h5, #is-old-recruit h6, #is-old-recruit small {
    font-size: 100%;
    line-height: 100%;
    margin: 0px;
    padding: 0px;
  }
  #is-old-recruit em {
    font-style: normal;
  }
  #is-old-recruit hr {
    display: none;
  }
  #is-old-recruit .hr-s1 {
    background: #cecece;
    height: 1px; /* 水平線の太さ */
    margin: 40px 0px;
  }
  #is-old-recruit img, #is-old-recruit table { /* イメージ・テーブル線消し */
    border: 0px;
  }
  #is-old-recruit img {
    display: unset;
    max-width: unset;
    vertical-align: bottom; /* Strict時の画像下のスキマを埋める(Firefox) */
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit address {
    font-style: normal;
  }
  #is-old-recruit a {
    outline: none; /* 枠線を消す(Firefox用の記述) */
  }
  #is-old-recruit a:hover {
    opacity: unset;
    color: #0066cc;
    text-decoration: underline;
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*タブレット用指定*/
    }
    #is-old-recruit br.pc {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit br.sp {
      display: none;
    }
  }
  #is-old-recruit {
    /*------------------------------------------------------------------------
    レイアウト
    --------------------------------------------------------------------------*/
  }
  #is-old-recruit #wrap {
    overflow: hidden;
    margin: 0;
    position: relative;
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #header {
      text-align: left;
      width: 100%;
      height: 70px;
      padding: 0;
      margin: 0;
      position: fixed;
      z-index: 2;
      -webkit-transition: all 0.1s ease-in;
      -moz-transition: all 0.1s ease-in;
      -o-transition: all 0.1s ease-in;
      -ms-transition: all 0.1s ease-in;
      transition: all 0.1s ease-in;
    }
    #is-old-recruit #header-in {
      width: 100%;
      box-sizing: border-box;
      padding: 0;
      margin: 0 auto;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #header {
      text-align: left;
      width: 100%;
      padding: 0;
      margin: 0;
      position: fixed;
      z-index: 2;
    }
    #is-old-recruit #header-in {
      width: 100%;
      box-sizing: border-box;
      padding: 0;
      margin: 0;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #footer-img {
      background: #ffffff url("../../recruit/shared/images/footer-img_bg-01.jpg") center center no-repeat;
      background-size: cover;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      width: 100%;
      height: 185px;
      border-bottom: 1px solid #ffffff;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer-img {
      background: #ffffff url("../../recruit/shared/images/footer-img_bg-01.jpg") center center no-repeat;
      background-size: cover;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      width: 100%;
      height: 370px;
      border-bottom: 1px solid #ffffff;
      margin: 0;
    }
  }
  #is-old-recruit #footer-img.s1 {
    background: #ffffff url("../../recruit/shared/images/footer-img_bg-02.jpg") center center no-repeat;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit #footer-img.s2 {
    background: #ffffff url("../../recruit/shared/images/footer-img_bg-03.jpg") center center no-repeat;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit #footer-img.s3 {
    background: #ffffff url("../../recruit/shared/images/footer-img_bg-04.jpg") center center no-repeat;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit #footer-img.s4 {
    background: #ffffff url("../../recruit/shared/images/footer-img_bg-05.jpg") center center no-repeat;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit #footer-img.s5 {
    background: #ffffff url("../../recruit/shared/images/footer-img_bg-06.jpg") center center no-repeat;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit #footer-img.s6 {
    background: #ffffff url("../../recruit/shared/images/footer-img_bg-07.jpg") center center no-repeat;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit #footer-img.s7 {
    background: #ffffff url("../../recruit/shared/images/footer-img_bg-08.jpg") center center no-repeat;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit #footer-img.s8 {
    background: #ffffff url("../../recruit/shared/images/footer-img_bg-09.jpg") center center no-repeat;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit #footer-assist {
      background: #d8f3e9;
      text-align: center;
      width: 100%;
      padding: 60px 0 35px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit #footer-assist-in {
      width: 100%;
      box-sizing: border-box;
      padding: 0 4%;
      margin: 0 auto;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*PC・タブレット用指定*/
    }
    #is-old-recruit #footer-assist {
      background: #d8f3e9;
      text-align: center;
      width: 100%;
      padding: 60px 0 35px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit #footer-assist-in {
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 0 57.5px;
      margin: 0 auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*タブレット用指定*/
    }
    #is-old-recruit #footer {
      background: #ffffff;
      text-align: center;
      width: 100%;
      padding: 40px 0 10px 0;
      padding: 40px 0 100px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit #footer-in {
      width: 100%;
      box-sizing: border-box;
      padding: 0 4%;
      margin: 0 auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer {
      text-align: center;
      width: 100%;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit #footer-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 40px 75px 10px 75px;
      margin: 0 auto;
    }
  }
  #is-old-recruit {
    /*------------------------------------------------------------------------
    ヘッダー
    --------------------------------------------------------------------------*/
    /*ドロワーメニュー（横からスライド）*/
  }
  #is-old-recruit .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s;
  }
  #is-old-recruit .overlay.open {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    opacity: 1;
    cursor: pointer;
  }
  #is-old-recruit {
    /*ハンバーガーメニューボタン*/
  }
  #is-old-recruit .menu-trigger {
    background: #fb5a6d;
    display: block;
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3.5px solid #ffffff;
    cursor: pointer;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .menu-trigger {
      top: 10px;
      right: 60px;
      width: 100px;
      height: 100px;
      border: 7px solid #ffffff;
    }
  }
  #is-old-recruit .menu-trigger > span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  #is-old-recruit .menu-trigger > span:nth-of-type(1),
  #is-old-recruit .menu-trigger > span:nth-of-type(2),
  #is-old-recruit .menu-trigger > span:nth-of-type(3) {
    position: absolute;
    left: 0;
    right: 0;
    width: 33.33%;
    height: 3px;
    background: #ffffff;
    border-radius: 1.5px;
    margin: auto;
  }
  #is-old-recruit .menu-trigger > span:nth-of-type(1) {
    top: 16px;
  }
  #is-old-recruit .menu-trigger > span:nth-of-type(2) {
    top: 24px;
  }
  #is-old-recruit .menu-trigger > span:nth-of-type(3) {
    top: 32px;
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .menu-trigger > span:nth-of-type(1),
    #is-old-recruit .menu-trigger > span:nth-of-type(2),
    #is-old-recruit .menu-trigger > span:nth-of-type(3) {
      height: 4px;
      border-radius: 2px;
    }
    #is-old-recruit .menu-trigger > span:nth-of-type(1) {
      top: 37px;
    }
    #is-old-recruit .menu-trigger > span:nth-of-type(2) {
      top: 49px;
    }
    #is-old-recruit .menu-trigger > span:nth-of-type(3) {
      top: 61px;
    }
  }
  #is-old-recruit {
    /*ハンバーガーメニューボタン動き*/
  }
  #is-old-recruit .menu-trigger.active > span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-325deg);
    transform: translateY(8px) rotate(-325deg);
  }
  #is-old-recruit .menu-trigger.active > span:nth-of-type(2) {
    opacity: 0;
  }
  #is-old-recruit .menu-trigger.active > span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(325deg);
    transform: translateY(-8px) rotate(325deg);
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .menu-trigger.active > span:nth-of-type(1) {
      -webkit-transform: translateY(12px) rotate(-325deg);
      transform: translateY(12px) rotate(-325deg);
    }
    #is-old-recruit .menu-trigger.active > span:nth-of-type(3) {
      -webkit-transform: translateY(-12px) rotate(325deg);
      transform: translateY(-12px) rotate(325deg);
    }
  }
  #is-old-recruit .globalnav {
    width: 375px;
    height: 100%;
    background: #d8f3e9;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    transform: translate(375px);
    transition: all 0.5s;
  }
  #is-old-recruit .globalnav.open {
    transform: translateZ(0);
  }
  #is-old-recruit .globalnav .menu {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 25px;
    margin: 70px 0 10px 0;
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .globalnav .menu {
      padding: 0 50px;
      margin: 140px 0 20px 0;
    }
  }
  #is-old-recruit .globalnav .menu > li {
    font-size: 18px;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: bold;
    text-align: left;
    text-indent: -0.8em;
    margin: 0 0 25px 0.8em;
  }
  #is-old-recruit .globalnav .menu > li:last-child {
    margin: 0 0 15px 0.8em;
  }
  #is-old-recruit .globalnav .menu > li > span,
  #is-old-recruit .globalnav .menu > li > a {
    font-size: 16px;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: bold;
    color: #000000;
    text-decoration: none;
  }
  #is-old-recruit .globalnav .menu li a:hover {
    opacity: 0.7;
    -ms-filter: "alpha(opacity=70)";
    -moz-opacity: 0.7;
  }
  #is-old-recruit .globalnav .menu > li > .sub {
    margin: 0 0 0 -0.8em;
  }
  #is-old-recruit .globalnav .menu > li > .sub > li {
    font-size: 14px;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: normal;
    text-align: left;
    text-indent: -1em;
    margin: 0 0 0 1em;
  }
  #is-old-recruit .globalnav .menu > li > .sub > li::before {
    content: "●";
    color: #42c497;
  }
  #is-old-recruit .globalnav .menu > li > .sub > li > a {
    font-size: 14px;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: normal;
    color: #000000;
    text-decoration: none;
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .globalnav .menu > li {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      text-align: left;
      text-indent: -0.8em;
      margin: 0 0 25px 0.8em;
    }
    #is-old-recruit .globalnav .menu > li:last-child {
      margin: 0 0 15px 0.8em;
    }
    #is-old-recruit .globalnav .menu > li > span,
    #is-old-recruit .globalnav .menu > li > a {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #000000;
      text-decoration: none;
    }
    #is-old-recruit .globalnav .menu li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
    #is-old-recruit .globalnav .menu > li > .sub {
      margin: 0 0 0 -0.8em;
    }
    #is-old-recruit .globalnav .menu > li > .sub > li {
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: normal;
      text-align: left;
      text-indent: -1em;
      margin: 0 0 0 1em;
    }
    #is-old-recruit .globalnav .menu > li > .sub > li::before {
      content: "●";
      color: #42c497;
    }
    #is-old-recruit .globalnav .menu > li > .sub > li > a {
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: normal;
      color: #000000;
      text-decoration: none;
    }
  }
  #is-old-recruit .globalnav .menubana01 {
    margin: 0 0 20px 0;
  }
  #is-old-recruit .globalnav .menubana01 li {
    margin: 0 0 10px 0;
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .globalnav .menubana01 {
      margin: 0 0 40px 0;
    }
    #is-old-recruit .globalnav .menubana01 li {
      margin: 0 0 20px 0;
    }
  }
  #is-old-recruit .globalnav .menubana01 li img {
    max-width: 225px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .globalnav .menubana01 li a:hover {
    opacity: 0.7;
    -ms-filter: "alpha(opacity=70)";
    -moz-opacity: 0.7;
  }
  #is-old-recruit .globalnav .menubana02 {
    margin: 0 0 50px 0;
  }
  #is-old-recruit .globalnav .menubana02 li {
    margin: 0 0 30px 0;
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .globalnav .menubana02 {
      margin: 0 0 100px 0;
    }
    #is-old-recruit .globalnav .menubana02 li {
      margin: 0 0 30px 0;
    }
  }
  #is-old-recruit .globalnav .menubana02 li img {
    max-width: 288px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .globalnav .menubana02 li a:hover {
    opacity: 0.7;
    -ms-filter: "alpha(opacity=70)";
    -moz-opacity: 0.7;
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #header .logo {
      padding: 5px 0 0 5px;
      margin: 0;
    }
    #is-old-recruit #header .logo img {
      max-width: 165px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #header .logo {
      padding: 35px 0 0 35px;
      margin: 0;
    }
    #is-old-recruit #header .logo img {
      max-width: 210px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #header .guidenav {
      position: absolute;
      top: 5px;
      right: 60px;
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -5px;
    }
    #is-old-recruit #header .guidenav li {
      margin: 0;
    }
    #is-old-recruit #header .guidenav li:nth-child(1),
    #is-old-recruit #header .guidenav li:nth-child(2) {
      display: none;
    }
    #is-old-recruit #header .guidenav li img {
      display: none;
    }
    #is-old-recruit #header .guidenav li:nth-child(3) a {
      display: block;
      width: 116px;
      height: 66px;
      background: url("../../recruit/shared/images/gnav-03-s.png") 0 0 no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit #header .guidenav li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #header .guidenav {
      position: absolute;
      top: 35px;
      right: 180px;
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -5px;
    }
    #is-old-recruit #header .guidenav li {
      margin: 0 0 0 5px;
    }
    #is-old-recruit #header .guidenav li img {
      max-width: 146px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit #header .guidenav li a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  #is-old-recruit {
    /*------------------------------------------------------------------------
    フッターアシスト
    --------------------------------------------------------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #footer-assist .box-s1 {
      margin: 0 0 40px 0;
    }
    #is-old-recruit #footer-assist .box-s1 div {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer-assist .box-s1 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 40px -45px;
    }
    #is-old-recruit #footer-assist .box-s1 div {
      margin: 0 0 0 45px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #footer-assist .assistnav {
      margin: 0;
    }
    #is-old-recruit #footer-assist .assistnav > li {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 25px 0;
    }
    #is-old-recruit #footer-assist .assistnav > li:last-child {
      margin: 0 0 15px 0;
    }
    #is-old-recruit #footer-assist .assistnav > li > span,
    #is-old-recruit #footer-assist .assistnav > li > a {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #000000;
      text-decoration: none;
    }
    #is-old-recruit #footer-assist .assistnav li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
    #is-old-recruit #footer-assist .assistnav > li > .sub > li {
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: normal;
      text-align: left;
      margin: 0;
    }
    #is-old-recruit #footer-assist .assistnav > li > .sub > li::before {
      content: "●";
      color: #42c497;
    }
    #is-old-recruit #footer-assist .assistnav > li > .sub > li > a {
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: normal;
      color: #000000;
      text-decoration: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer-assist .assistnav {
      margin: 0;
    }
    #is-old-recruit #footer-assist .assistnav > li {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 25px 0;
    }
    #is-old-recruit #footer-assist .assistnav > li:last-child {
      margin: 0 0 15px 0;
    }
    #is-old-recruit #footer-assist .assistnav > li > span,
    #is-old-recruit #footer-assist .assistnav > li > a {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #000000;
      text-decoration: none;
    }
    #is-old-recruit #footer-assist .assistnav li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
    #is-old-recruit #footer-assist .assistnav > li > .sub > li {
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: normal;
      text-align: left;
      margin: 0;
    }
    #is-old-recruit #footer-assist .assistnav > li > .sub > li::before {
      content: "●";
      color: #42c497;
    }
    #is-old-recruit #footer-assist .assistnav > li > .sub > li > a {
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: normal;
      color: #000000;
      text-decoration: none;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #footer-assist .assistbana01 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit #footer-assist .assistbana01 li {
      margin: 0 0 15px 0;
    }
    #is-old-recruit #footer-assist .assistbana01 li img {
      max-width: 262px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit #footer-assist .assistbana01 li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer-assist .assistbana01 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit #footer-assist .assistbana01 li {
      margin: 0 0 15px 0;
    }
    #is-old-recruit #footer-assist .assistbana01 li img {
      max-width: 262px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit #footer-assist .assistbana01 li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #footer-assist .assistbana02 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -15px;
    }
    #is-old-recruit #footer-assist .assistbana02 li {
      margin: 0 0 15px 15px;
    }
    #is-old-recruit #footer-assist .assistbana02 li img {
      max-width: 275px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit #footer-assist .assistbana02 li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer-assist .assistbana02 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -15px;
    }
    #is-old-recruit #footer-assist .assistbana02 li {
      margin: 0 0 15px 15px;
    }
    #is-old-recruit #footer-assist .assistbana02 li img {
      max-width: 275px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit #footer-assist .assistbana02 li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  #is-old-recruit {
    /*------------------------------------------------------------------------
    フッター
    --------------------------------------------------------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #footer .footer_tit-01 {
      text-align: center;
      margin: 0 0 50px 0;
    }
    #is-old-recruit #footer .footer_tit-01 img {
      max-width: 126px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer .footer_tit-01 {
      text-align: center;
      margin: 0 0 50px 0;
    }
    #is-old-recruit #footer .footer_tit-01 img {
      max-width: 251px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #footer .box-s1 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -50px;
    }
    #is-old-recruit #footer .box-s1 div {
      flex-basis: 320px;
      max-width: 320px;
      margin: 0 0 0 50px;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer .box-s1 {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -50px;
    }
    #is-old-recruit #footer .box-s1 div {
      flex-basis: 320px;
      max-width: 320px;
      margin: 0 0 0 50px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #footer .footer_tit-02 {
      text-align: center;
      margin: 0 0 15px 0;
    }
    #is-old-recruit #footer .footer_tit-02 img {
      max-width: 255px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer .footer_tit-02 {
      text-align: center;
      margin: 0 0 15px 0;
    }
    #is-old-recruit #footer .footer_tit-02 img {
      max-width: 255px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #footer .footer_tit-03 {
      text-align: center;
      margin: 0 0 15px 0;
    }
    #is-old-recruit #footer .footer_tit-03 img {
      max-width: 319px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer .footer_tit-03 {
      text-align: center;
      margin: 0 0 15px 0;
    }
    #is-old-recruit #footer .footer_tit-03 img {
      max-width: 319px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #footer .txt-s1 {
      font-size: 12px;
      font-size: clamp(12px, 1.4vw, 14px);
      text-align: center;
      font-weight: bold;
      margin: 0 0 10px 0;
    }
    #is-old-recruit #footer .txt-s1 a {
      line-height: 1;
      color: #000000;
      text-decoration: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer .txt-s1 {
      font-size: 14px;
      font-size: clamp(12px, 1.4vw, 14px);
      text-align: center;
      font-weight: bold;
      margin: 0 0 10px 0;
    }
    #is-old-recruit #footer .txt-s1 a {
      line-height: 1;
      color: #000000;
      text-decoration: none;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #footer .btn-s1 {
      max-width: 320px;
      margin: 0 auto 40px auto;
    }
    #is-old-recruit #footer .btn-s1 a {
      max-width: 320px;
      width: 100%;
      height: 60px;
      box-sizing: border-box;
      border: 5px solid #fb516d;
      border-radius: 27px;
      background: #ffffff;
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      line-height: 1;
      color: #fb516d;
      font-weight: bold;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit #footer .btn-s1 a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer .btn-s1 {
      max-width: 320px;
      margin: 0 auto 40px auto;
    }
    #is-old-recruit #footer .btn-s1 a {
      max-width: 320px;
      width: 100%;
      height: 60px;
      box-sizing: border-box;
      border: 5px solid #fb516d;
      border-radius: 27px;
      background: #ffffff;
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      line-height: 1;
      color: #fb516d;
      font-weight: bold;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit #footer .btn-s1 a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit #footer .lis-s1 {
      max-width: 320px;
      margin: 0 auto;
    }
    #is-old-recruit #footer .lis-s1 li {
      margin: 0 0 10px 0;
    }
    #is-old-recruit #footer .lis-s1 a {
      max-width: 320px;
      width: 100%;
      height: 60px;
      box-sizing: border-box;
      border: 5px solid #fb516d;
      border-radius: 27px;
      background: #ffffff;
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      line-height: 1;
      color: #fb516d;
      font-weight: bold;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit #footer .lis-s1 li:nth-child(2) a {
      border: 5px solid #8597dd;
      color: #8597dd;
    }
    #is-old-recruit #footer .lis-s1 a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit #footer .lis-s1 {
      max-width: 320px;
      margin: 0 auto;
    }
    #is-old-recruit #footer .lis-s1 li {
      margin: 0 0 10px 0;
    }
    #is-old-recruit #footer .lis-s1 a {
      max-width: 320px;
      width: 100%;
      height: 60px;
      box-sizing: border-box;
      border: 5px solid #fb516d;
      border-radius: 27px;
      background: #ffffff;
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      line-height: 1;
      color: #fb516d;
      font-weight: bold;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit #footer .lis-s1 li:nth-child(2) a {
      border: 5px solid #8597dd;
      color: #8597dd;
    }
    #is-old-recruit #footer .lis-s1 a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  #is-old-recruit {
    /*------------------------------------------------------------------------
    コピー
    --------------------------------------------------------------------------*/
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .cop {
      background: #ffffff;
      font-size: 12px;
      line-height: 1;
      text-align: center;
      color: #fb516d;
      font-weight: bold;
      padding: 14px;
      margin: 0;
    }
    #is-old-recruit .cop a {
      line-height: 1;
      color: #fb516d;
      text-decoration: none;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*PC・タブレット用指定*/
    }
    #is-old-recruit .cop {
      max-width: 1000px;
      background: #ffffff;
      font-size: 18px;
      line-height: 1;
      text-align: center;
      color: #fb516d;
      font-weight: bold;
      padding: 13px 75px;
      margin: 0 auto;
    }
    #is-old-recruit .cop a {
      line-height: 1;
      color: #fb516d;
      text-decoration: none;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .gotop {
      position: fixed;
      right: 0;
      bottom: 0;
      z-index: 999;
      margin: 0;
    }
    #is-old-recruit .gotop a {
      display: block;
      width: 40px;
      height: 40px;
      background-color: rgba(251, 90, 109, 0.7);
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      position: relative;
    }
    #is-old-recruit .gotop a::before {
      content: "";
      position: absolute;
      top: 10px;
      bottom: 0;
      left: 0;
      right: 0;
      width: 14px;
      height: 14px;
      border-top: 2px solid #ffffff;
      border-right: 2px solid #ffffff;
      transform: translateX(0) rotate(-45deg);
      margin: auto;
    }
    #is-old-recruit .gotop a:hover {
      background-color: rgb(251, 90, 109);
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*PC・タブレット用指定*/
    }
    #is-old-recruit .gotop {
      position: fixed;
      right: 0;
      bottom: 0;
      z-index: 999;
      margin: 0;
    }
    #is-old-recruit .gotop a {
      display: block;
      width: 44px;
      height: 44px;
      background-color: rgba(251, 90, 109, 0.7);
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      position: relative;
    }
    #is-old-recruit .gotop a::before {
      content: "";
      position: absolute;
      top: 10px;
      bottom: 0;
      left: 0;
      right: 0;
      width: 14px;
      height: 14px;
      border-top: 2px solid #ffffff;
      border-right: 2px solid #ffffff;
      transform: translateX(0) rotate(-45deg);
      margin: auto;
    }
    #is-old-recruit .gotop a:hover {
      background-color: rgb(251, 90, 109);
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .footer_home-box01_btn-01 {
      position: fixed;
      bottom: 15px;
      right: 0;
      z-index: 3;
    }
    #is-old-recruit .footer_home-box01_btn-01 img {
      max-width: 125px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .footer_home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .footer_home-box01_btn-01 {
      position: fixed;
      bottom: 0px;
      right: 0;
      z-index: 3;
    }
    #is-old-recruit .footer_home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .footer_home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print {
    #is-old-recruit {
      /*レスポンシブサイトで印刷用レイアウトを保つ*/
    }
    #is-old-recruit body {
      width: 1870px;
      transform: scale(0.6);
      -moz-transform: scale(0.6); /*Firefox*/
      -webkit-transform: scale(0.6); /*Google Chrome/Safari*/
      transform-origin: 0 0;
    }
    #is-old-recruit .globalnav {
      display: none;
    }
  }
  #is-old-recruit {
    /* IE10以上 */
  }
  @media print and (-ms-high-contrast: none) {
    #is-old-recruit {
      /* @pageの指定いらないかも */
    }
    @page {
      size: A4;
      margin: 12.7mm 9.7mm;
    }
    #is-old-recruit body {
      zoom: 1.8;
      width: 1400px;
      transform: scale(0.5);
      transform-origin: 0 0;
    }
    #is-old-recruit nav {
      display: none;
    }
  }
  #is-old-recruit {
    /*------------------------------------------------------------------------------
    Css name: content.css
    Css info: コンテンツスタイル
    ------------------------------------------------------------------------------*/
    /*//////////////////////////////////////////////////////// */
    /* 共通-------------*/
    /*//////////////////////////////////////////////////////// */
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit br.pc {
      display: none;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*PC・タブレット用指定*/
    }
    #is-old-recruit br.sp {
      display: none;
    }
  }
  #is-old-recruit {
    /* pagenav-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .pagenav-box01 {
      background: #ea932a;
      box-sizing: border-box;
      text-align: left;
      padding: 25px 0 0 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .pagenav-box01-in {
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0;
      margin: 0;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .pagenav-box01 {
      background: #ea932a;
      box-sizing: border-box;
      text-align: left;
      padding: 25px 0 15px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .pagenav-box01-in {
      max-width: 1000px;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0;
      margin: 0 auto;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .pagenav-box01 .lis-s1 {
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 0 -25px;
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li {
      margin: 0 0 20px 25px;
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li a {
      min-width: 350px;
      width: 100%;
      min-height: 50px;
      height: 100%;
      padding: 6px 20px 4px 115px;
      box-sizing: border-box;
      border: 3px solid #ea932a;
      border-radius: 23px;
      background: #ffffff;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      color: #000000;
      text-align: center;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li:nth-child(2) a {
      padding: 6px 20px 4px 97px;
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li:nth-child(1) a::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 30px;
      margin: auto;
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 1px;
      border-bottom: 2px solid #ea932a;
      border-left: 2px solid #ea932a;
      transform: rotate(45deg);
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li:nth-child(2) a::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 30px;
      margin: auto;
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 1px;
      border-top: 2px solid #ea932a;
      border-right: 2px solid #ea932a;
      transform: rotate(45deg);
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li:nth-child(1) a::before {
      content: "back｜";
      position: absolute;
      top: 50%;
      left: 58px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: auto;
      color: #ea932a;
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li:nth-child(2) a::before {
      content: "next｜";
      position: absolute;
      top: 50%;
      left: 36px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: auto;
      color: #ea932a;
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .pagenav-box01 .lis-s1 {
      display: flex;
      flex-flow: row nowrap;
      align-items: flex-start;
      justify-content: center;
      margin: 0 0 0 -25px;
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li {
      margin: 0 0 0 25px;
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li a {
      min-width: 380px;
      width: 100%;
      min-height: 50px;
      height: 100%;
      padding: 6px 20px 4px 115px;
      box-sizing: border-box;
      border: 3px solid #fbc727;
      border-radius: 23px;
      background: #ffffff;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      color: #000000;
      text-align: center;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li:nth-child(2) a {
      padding: 6px 20px 4px 97px;
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li:nth-child(1) a::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 30px;
      margin: auto;
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 1px;
      border-bottom: 2px solid #ea932a;
      border-left: 2px solid #ea932a;
      transform: rotate(45deg);
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li:nth-child(2) a::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 30px;
      margin: auto;
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 1px;
      border-top: 2px solid #ea932a;
      border-right: 2px solid #ea932a;
      transform: rotate(45deg);
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li:nth-child(1) a::before {
      content: "back｜";
      position: absolute;
      top: 50%;
      left: 58px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: auto;
      color: #ea932a;
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li:nth-child(2) a::before {
      content: "next｜";
      position: absolute;
      top: 50%;
      left: 36px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: auto;
      color: #ea932a;
    }
    #is-old-recruit .pagenav-box01 .lis-s1 li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  #is-old-recruit {
    /* header-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .header-box01 {
      box-sizing: border-box;
      text-align: center;
      padding: 60px 0 0 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .header-box01-in {
      background: #8597dd;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 25px 4%;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .header-box01.s1 .header-box01-in {
      background: #fc899c;
    }
    #is-old-recruit .header-box01.s2 .header-box01-in {
      background: #ea932a;
      padding: 50px 15px 30px 15px;
    }
    #is-old-recruit .header-box01.s3 .header-box01-in {
      padding: 50px 15px 30px 15px;
    }
    #is-old-recruit .header-box01.s4 .header-box01-in {
      background: #42c497;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .header-box01 {
      box-sizing: border-box;
      text-align: center;
      padding: 100px 0 0 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .header-box01-in {
      background: #8597dd;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 50px 15px;
      margin: 0 auto;
      position: relative;
    }
    #is-old-recruit .header-box01.s1 .header-box01-in {
      background: #fc899c;
    }
    #is-old-recruit .header-box01.s2 .header-box01-in {
      background: #ea932a;
      padding: 50px 15px 30px 15px;
    }
    #is-old-recruit .header-box01.s3 .header-box01-in {
      padding: 50px 15px 30px 15px;
    }
    #is-old-recruit .header-box01.s4 .header-box01-in {
      background: #42c497;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .header-box01 .tit-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 19px;
      font-size: clamp(19px, 2.5vw, 25px);
      color: #ffffff;
      text-align: center;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .header-box01 .tit-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 25px;
      font-size: clamp(19px, 2.5vw, 25px);
      color: #ffffff;
      text-align: center;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .header-box01 .header-box01_img-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .header-box01 .header-box01_img-01 {
      position: absolute;
      z-index: 1;
      right: 25px;
      bottom: -68px;
      margin: 0;
    }
    #is-old-recruit .header-box01 .header-box01_img-01.s1 {
      position: absolute;
      right: 25px;
      top: 15px;
      margin: 0;
    }
    #is-old-recruit .header-box01 .header-box01_img-01 img {
      max-width: 274px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .header-box01 .lis-s1 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .header-box01 .lis-s1 {
      max-width: 440px;
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: center;
      margin: 20px auto 0 auto;
    }
    #is-old-recruit .header-box01.s3 .lis-s1 {
      max-width: 460px;
    }
    #is-old-recruit .header-box01 .lis-s1 li {
      margin: 0 20px 15px 0;
    }
    #is-old-recruit .header-box01 .lis-s1 li:nth-child(2n) {
      margin: 0 0 15px 20px;
    }
    #is-old-recruit .header-box01 .lis-s1 li:nth-child(3),
    #is-old-recruit .header-box01 .lis-s1 li:nth-child(4) {
      margin-bottom: 0;
    }
    #is-old-recruit .header-box01 .lis-s1 li a {
      min-width: 200px;
      width: 100%;
      height: 36.5px;
      border-radius: 15px;
      background: #ffffff;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      line-height: 1;
      font-weight: bold;
      color: #ea932a;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
    }
    #is-old-recruit .header-box01.s3 .lis-s1 li a {
      min-width: 210px;
      color: #4a5db4;
    }
    #is-old-recruit .header-box01 .lis-s1 li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  #is-old-recruit .header-box__intro {
    margin-block: 30px 20px;
    color: #fff;
    font-size: 16px;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: bold;
    line-height: 1.7;
  }
  #is-old-recruit {
    /*//////////////////////////////////////////////////////// */
    /* HOME-------------*/
    /*//////////////////////////////////////////////////////// */
    /* 災害時のお知らせ-------------*/
  }
  @media screen and (max-width: 767px) {
    #is-old-recruit {
      /*767px以下用 */
    }
    #is-old-recruit .topics-saigai {
      background: #ffffff;
      text-align: left;
      width: 100%;
      box-sizing: border-box;
      padding: 30px 4%;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .topics-saigai .topics-saigai-in {
      background: #ffffff;
      max-width: 940px;
      width: 100%;
      border: 5px solid #ff0000;
      box-sizing: border-box;
      padding: 20px;
      margin: 0 auto;
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      line-height: 2;
    }
    #is-old-recruit .topics-saigai .topics-saigai-in .tit-s1 {
      text-align: left;
      font-size: 18px;
      font-size: clamp(18px, 2.4vw, 24px);
      line-height: 1.6;
      color: #ff0000;
      font-weight: bold;
      padding-bottom: 5px;
      border-bottom: 1px solid #ff0000;
      margin-bottom: 20px;
    }
  }
  @media screen and (min-width: 768px) {
    #is-old-recruit {
      /*768px以上用 */
    }
    #is-old-recruit .topics-saigai {
      background: #ffffff;
      text-align: left;
      width: 100%;
      box-sizing: border-box;
      padding: 30px 15px;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .topics-saigai .topics-saigai-in {
      background: #ffffff;
      max-width: 940px;
      width: 100%;
      border: 10px solid #ff0000;
      box-sizing: border-box;
      padding: 20px;
      margin: 0 auto;
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      line-height: 2;
    }
    #is-old-recruit .topics-saigai .topics-saigai-in .tit-s1 {
      text-align: left;
      font-size: 24px;
      font-size: clamp(18px, 2.4vw, 24px);
      line-height: 1.6;
      color: #ff0000;
      font-weight: bold;
      padding-bottom: 5px;
      border-bottom: 1px solid #ff0000;
      margin-bottom: 20px;
    }
  }
  #is-old-recruit {
    /* home-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box01 {
      background: #ffffff;
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
    }
    #is-old-recruit .home-box01-in {
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0;
      margin: 0;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box01 {
      background: #ffffff url("../../recruit/shared/images/home-box01_bg-01.jpg") center center no-repeat;
      background-size: cover;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      height: 640px;
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
    }
    #is-old-recruit .home-box01-in {
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0;
      margin: 0 auto;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box01 .box-s1 {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box01 .box-s1 {
      width: 100%;
      height: 100%;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box01 .home-box01_txt-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box01 .home-box01_txt-01 {
      margin: 0;
    }
    #is-old-recruit .home-box01 .home-box01_txt-01 img {
      max-width: 661px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box01 .home-box01_btn-01 {
      position: absolute;
      z-index: 1;
      bottom: -90px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
    }
    #is-old-recruit .home-box01 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .home-box01 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box01 .home-box01_btn-01 {
      position: absolute;
      z-index: 1;
      bottom: -70px;
      right: 0;
    }
    #is-old-recruit .home-box01 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .home-box01 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box01 .home-box01_img-01-s {
      margin: 0;
    }
    #is-old-recruit .home-box01 .home-box01_img-01-s img {
      max-width: 1500px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box01 .home-box01_img-01-s {
      display: none;
    }
  }
  #is-old-recruit {
    /* home-box02--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box02 {
      background: #98a7de;
      box-sizing: border-box;
      text-align: left;
      padding: 55px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .home-box02-in {
      width: 100%;
      box-sizing: border-box;
      padding: 0 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box02 {
      background: #98a7de;
      box-sizing: border-box;
      text-align: left;
      padding: 30px 0 55px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .home-box02-in {
      max-width: 1366px;
      width: 100%;
      box-sizing: border-box;
      padding: 0 15px;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_img-01 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .home-box02 .home-box02_img-01 img {
      max-width: 693px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_img-01 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .home-box02 .home-box02_img-01 img {
      max-width: 693px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box02 .box-s1 {
      display: inline-block;
      margin: 0 auto;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box02 .box-s1 {
      display: inline-block;
      margin: 0 auto;
      position: relative;
      padding: 0 211px; /*181+30*/
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_txt-01 {
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .home-box02 .home-box02_txt-01 img {
      max-width: 335px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_txt-01 {
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .home-box02 .home-box02_txt-01 img {
      max-width: 335px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_tit-01 {
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .home-box02 .home-box02_tit-01 img {
      max-width: 531px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_tit-01 {
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .home-box02 .home-box02_tit-01 img {
      max-width: 531px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box02 .txt-s1 {
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      font-weight: bold;
      color: #ffffff;
      text-align: center;
      line-height: 2;
      margin: 0 0 10px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box02 .txt-s1 {
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      font-weight: bold;
      color: #ffffff;
      text-align: center;
      line-height: 2;
      margin: 0 0 10px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_img-02 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .home-box02 .home-box02_img-02 img {
      max-width: 181px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_img-02 {
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: 0;
    }
    #is-old-recruit .home-box02 .home-box02_img-02 img {
      max-width: 181px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box02 .box-s2 {
      display: flex;
      flex-flow: row wrap;
      align-items: flex-end;
      justify-content: center;
    }
    #is-old-recruit .home-box02 .box-s2 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box02 .box-s2 {
      display: flex;
      flex-flow: row wrap;
      align-items: flex-end;
      justify-content: center;
    }
    #is-old-recruit .home-box02 .box-s2 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_bana-01 {
      margin: 0;
    }
    #is-old-recruit .home-box02 .home-box02_bana-01 img {
      max-width: 338px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_bana-01 {
      margin: 0;
    }
    #is-old-recruit .home-box02 .home-box02_bana-01 img {
      max-width: 338px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_bana-02 {
      margin: 0;
    }
    #is-old-recruit .home-box02 .home-box02_bana-02 img {
      max-width: 338px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_bana-02 {
      margin: 0;
    }
    #is-old-recruit .home-box02 .home-box02_bana-02 img {
      max-width: 338px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_bana-03 {
      flex-basis: 100%;
      max-width: 100%;
      margin: 0 0 18px 0;
    }
    #is-old-recruit .home-box02 .home-box02_bana-03 img {
      max-width: 657px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_bana-03 {
      flex-basis: 100%;
      max-width: 100%;
      margin: 0 0 18px 0;
    }
    #is-old-recruit .home-box02 .home-box02_bana-03 img {
      max-width: 657px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_bana-04 {
      flex-basis: 100%;
      max-width: 100%;
      margin: 0;
    }
    #is-old-recruit .home-box02 .home-box02_bana-04 img {
      max-width: 657px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box02 .home-box02_bana-04 {
      flex-basis: 100%;
      max-width: 100%;
      margin: 0;
    }
    #is-old-recruit .home-box02 .home-box02_bana-04 img {
      max-width: 657px;
      width: 100%;
      height: auto;
    }
  }
  #is-old-recruit {
    /* home-box03--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box03 {
      background: #ffffff url("../../recruit/shared/images/home-box03_bg-01.jpg") center center no-repeat;
      background-size: cover;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      width: 100%;
      height: 218px;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box03 {
      background: #ffffff url("../../recruit/shared/images/home-box03_bg-01.jpg") center center no-repeat;
      background-size: cover;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      width: 100%;
      height: 435px;
      margin: 0;
    }
  }
  #is-old-recruit {
    /* home-box04--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box04 {
      box-sizing: border-box;
      text-align: left;
      padding: 0 0 90px 0;
      margin: 0;
    }
    #is-old-recruit .home-box04-in {
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 4%;
      margin: 0;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box04 {
      box-sizing: border-box;
      text-align: left;
      padding: 0 0 90px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .home-box04-in {
      max-width: 1030px; /*1000+15*/
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 15px;
      margin: 0 auto;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box04 .box-s1 {
      margin: -30px 0 0 0;
      position: relative;
    }
    #is-old-recruit .home-box04 .box-s1 > div {
      padding: 35px 15px 65px 15px;
      margin: 0;
    }
    #is-old-recruit .home-box04 .box-s1 > div:nth-child(1) {
      background: #9ce0c9;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .home-box04 .box-s1 > div:nth-child(2) {
      background: #fff7ba;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box04 .box-s1 {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: center;
      margin: -60px 0 0 -30px;
      position: relative;
    }
    #is-old-recruit .home-box04 .box-s1 > div {
      flex-basis: calc(50% - 30px);
      max-width: calc(50% - 30px);
      padding: 35px 65px 65px 65px;
      margin: 0 0 0 30px;
    }
    #is-old-recruit .home-box04 .box-s1 > div:nth-child(1) {
      background: #9ce0c9;
    }
    #is-old-recruit .home-box04 .box-s1 > div:nth-child(2) {
      background: #fff7ba;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box04 .home-box04_tit-01 {
      text-align: center;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .home-box04 .home-box04_tit-01 img {
      max-width: 256px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box04 .home-box04_tit-01 {
      text-align: center;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .home-box04 .home-box04_tit-01 img {
      max-width: 256px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box04 .lis-s1 {
      margin: 0;
    }
    #is-old-recruit .home-box04 .lis-s1 dt {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      padding: 0 0 5px 0;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span {
      display: inline-block;
      width: 100px;
      box-sizing: border-box;
      text-align: center;
      color: #ffffff;
      line-height: 1;
      padding: 5px 5px 4px 5px;
      margin: 0 10px 0 0;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span:last-of-type {
      margin: 0 20px 0 0;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.new {
      background: #e12934;
      width: 55px;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.new + span {
      width: auto;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.s3 { /*重要*/
      background: #d3004b;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.s4 { /*お知らせ*/
      background: #23a4d3;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.s5 { /*見学・説明会*/
      background: #7363cc;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.s6 { /*イベント*/
      background: #f67800;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.s7 { /*新卒採用*/
      background: #fc899c;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.s8 { /*募集情報*/
      background: #736357;
    }
    #is-old-recruit .home-box04 .lis-s1 dd {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      padding: 5px 0 35px 0;
    }
    #is-old-recruit .home-box04 .lis-s1 dd a {
      color: #333333;
    }
    #is-old-recruit .home-box04 .lis-s1 dd a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box04 .lis-s1 {
      margin: 0 15px;
    }
    #is-old-recruit .home-box04 .lis-s1 dt {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      padding: 0 0 5px 0;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span {
      display: inline-block;
      width: 100px;
      box-sizing: border-box;
      text-align: center;
      color: #ffffff;
      line-height: 1;
      padding: 5px 5px 4px 5px;
      margin: 0 10px 0 0;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span:last-of-type {
      margin: 0 20px 0 0;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.new {
      background: #e12934;
      width: 55px;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.new + span {
      width: auto;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.s3 { /*重要*/
      background: #d3004b;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.s4 { /*お知らせ*/
      background: #23a4d3;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.s5 { /*見学・説明会*/
      background: #7363cc;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.s6 { /*イベント*/
      background: #f67800;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.s7 { /*新卒採用*/
      background: #fc899c;
    }
    #is-old-recruit .home-box04 .lis-s1 dt span.s8 { /*募集情報*/
      background: #736357;
    }
    #is-old-recruit .home-box04 .lis-s1 dd {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      padding: 5px 0 35px 0;
    }
    #is-old-recruit .home-box04 .lis-s1 dd:last-child {
      padding: 5px 0 25px 0;
    }
    #is-old-recruit .home-box04 .lis-s1 dd a {
      color: #333333;
    }
    #is-old-recruit .home-box04 .lis-s1 dd a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box04 .btn-s1 {
      max-width: 350px;
      margin: 0 auto;
    }
    #is-old-recruit .home-box04 .btn-s1 a {
      max-width: 350px;
      width: 100%;
      height: 60px;
      box-sizing: border-box;
      border: 4px solid #00a99d;
      background: #ffffff;
      border-radius: 28px;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      font-weight: bold;
      color: #00a99d;
      text-align: center;
      line-height: 1;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    #is-old-recruit .home-box04 .btn-s1 a::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 25px;
      width: 14px;
      height: 14px;
      border-bottom: 3px solid #00a99d;
      border-right: 3px solid #00a99d;
      transform: translateX(0) rotate(-45deg);
      margin: auto;
    }
    #is-old-recruit .home-box04 .btn-s1 a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box04 .btn-s1 {
      max-width: 350px;
      margin: 0 auto;
    }
    #is-old-recruit .home-box04 .btn-s1 a {
      max-width: 350px;
      width: 100%;
      height: 60px;
      box-sizing: border-box;
      border: 4px solid #00a99d;
      background: #ffffff;
      border-radius: 28px;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      font-weight: bold;
      color: #00a99d;
      text-align: center;
      line-height: 1;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    #is-old-recruit .home-box04 .btn-s1 a::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 25px;
      width: 14px;
      height: 14px;
      border-bottom: 3px solid #00a99d;
      border-right: 3px solid #00a99d;
      transform: translateX(0) rotate(-45deg);
      margin: auto;
    }
    #is-old-recruit .home-box04 .btn-s1 a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box04 .home-box04_tit-02 {
      text-align: center;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .home-box04 .home-box04_tit-02 img {
      max-width: 246px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box04 .home-box04_tit-02 {
      text-align: center;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .home-box04 .home-box04_tit-02 img {
      max-width: 246px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box04 .lis-s2 {
      margin: 0 0 20px 0;
    }
    #is-old-recruit .home-box04 .lis-s2 li {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      line-height: 2;
      background: #fffce8;
      border-radius: 20px;
      padding: 10px 25px;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .home-box04 .lis-s2 li a {
      color: #333333;
    }
    #is-old-recruit .home-box04 .lis-s2 li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box04 .lis-s2 {
      margin: 0 0 20px 0;
    }
    #is-old-recruit .home-box04 .lis-s2 li {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      line-height: 2;
      background: #fffce8;
      border-radius: 20px;
      padding: 10px 25px;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .home-box04 .lis-s2 li a {
      color: #333333;
    }
    #is-old-recruit .home-box04 .lis-s2 li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box04 .home-box04_img-01 {
      text-align: center;
      margin: -30px 0 0 0;
    }
    #is-old-recruit .home-box04 .home-box04_img-01 img {
      max-width: 200px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box04 .home-box04_img-01 {
      position: absolute;
      right: -135px;
      bottom: -60px;
      margin: 0;
    }
    #is-old-recruit .home-box04 .home-box04_img-01 img {
      max-width: 200px;
      width: 100%;
      height: auto;
    }
  }
  #is-old-recruit {
    /* home-box05--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box05 {
      background: #ffbdd0;
      box-sizing: border-box;
      text-align: left;
      padding: 50px 0 40px 0;
      margin: 0 0 30px 0;
      box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit .home-box05-in {
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 4%;
      margin: 0;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box05 {
      background: #ffbdd0;
      box-sizing: border-box;
      text-align: left;
      padding: 50px 0 40px 0;
      margin: 0 0 30px 0;
      box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit .home-box05-in {
      max-width: 1030px; /*1000+15*/
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 15px;
      margin: 0 auto;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box05 .box-s1 {
      max-width: 499px;
      margin: 0 auto 35px auto;
    }
    #is-old-recruit .home-box05 .box-s1 > div {
      margin: 0;
    }
    #is-old-recruit .home-box05 .box-s1 > div:nth-child(1) {
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box05 .box-s1 {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: center;
      margin: 0;
    }
    #is-old-recruit .home-box05 .box-s1 > div {
      flex-basis: 50%;
      max-width: 50%;
      margin: 0;
    }
    #is-old-recruit .home-box05 .box-s1 > div:nth-child(1) {
      order: 1;
    }
    #is-old-recruit .home-box05 .box-s1 > div:nth-child(2) {
      flex-basis: calc(50% - 20px);
      max-width: calc(50% - 20px);
      margin: 0 20px 0 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box05 .home-box05_tit-01 {
      text-align: left;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .home-box05 .home-box05_tit-01 img {
      max-width: 499px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box05 .home-box05_tit-01 {
      text-align: left;
      margin: 30px 0 15px 0;
    }
    #is-old-recruit .home-box05 .home-box05_tit-01 img {
      max-width: 499px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box05 .txt-s1 {
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      color: #333333;
      text-align: left;
      margin: 0 0 10px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box05 .txt-s1 {
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      color: #333333;
      text-align: left;
      margin: 0 0 10px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box05 .txt-s2 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(30px, 5vw, 50px);
      color: #ffffff;
      text-align: left;
      line-height: 1;
      display: inline-block;
      background: #fb516d;
      padding: 5px 10px 7px 10px;
      margin: 0 0 15px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box05 .txt-s2 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 40px;
      font-size: clamp(30px, 4vw, 40px);
      color: #ffffff;
      text-align: left;
      line-height: 1;
      display: inline-block;
      background: #fb516d;
      padding: 5px 5px 7px 5px;
      margin: 0 0 15px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box05 .txt-s3 {
      font-size: 12px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      color: #333333;
      text-align: left;
      line-height: 1.8;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box05 .txt-s3 {
      max-width: 365px;
      font-size: 14px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      color: #333333;
      text-align: left;
      line-height: 1.8;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box05 .home-box05_img-01 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .home-box05 .home-box05_img-01 img {
      max-width: 524px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box05 .home-box05_img-01 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .home-box05 .home-box05_img-01 img {
      max-width: 524px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box05 .txt-s4 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      color: #333333;
      text-align: center;
      margin: 0 0 15px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box05 .txt-s4 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      color: #333333;
      text-align: center;
      margin: -20px 0 15px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box05 .box-s2 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -20px;
    }
    #is-old-recruit .home-box05 .box-s2 > p a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box05 .box-s2 {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -20px;
    }
    #is-old-recruit .home-box05 .box-s2 > p a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box05 .home-box05_bana-01,
    #is-old-recruit .home-box05 .home-box05_bana-02,
    #is-old-recruit .home-box05 .home-box05_bana-03 {
      text-align: center;
      margin: 0 0 20px 20px;
    }
    #is-old-recruit .home-box05 .home-box05_bana-03 {
      margin: 0 0 0 20px;
    }
    #is-old-recruit .home-box05 .home-box05_bana-01 img,
    #is-old-recruit .home-box05 .home-box05_bana-02 img,
    #is-old-recruit .home-box05 .home-box05_bana-03 img {
      max-width: 263px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box05 .home-box05_bana-01,
    #is-old-recruit .home-box05 .home-box05_bana-02,
    #is-old-recruit .home-box05 .home-box05_bana-03 {
      margin: 0 0 0 20px;
    }
    #is-old-recruit .home-box05 .home-box05_bana-01 img,
    #is-old-recruit .home-box05 .home-box05_bana-02 img,
    #is-old-recruit .home-box05 .home-box05_bana-03 img {
      max-width: 263px;
      width: 100%;
      height: auto;
    }
  }
  #is-old-recruit {
    /* home-box06--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box06 {
      background: #d7ddfb;
      box-sizing: border-box;
      text-align: left;
      padding: 50px 0 25px 0;
      margin: 0 0 30px 0;
      box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit .home-box06-in {
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 4%;
      margin: 0;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box06 {
      background: #d7ddfb;
      box-sizing: border-box;
      text-align: left;
      padding: 50px 0 25px 0;
      margin: 0 0 30px 0;
      box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit .home-box06-in {
      max-width: 1030px; /*1000+15*/
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 15px;
      margin: 0 auto;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box06 .box-s1 {
      margin: 0 auto;
    }
    #is-old-recruit .home-box06 .box-s1 > div {
      text-align: center;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box06 .box-s1 {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 70px;
    }
    #is-old-recruit .home-box06 .box-s1 > div {
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box06 .home-box06_tit-01 {
      max-width: 416px;
      text-align: left;
      margin: 0 auto 20px auto;
    }
    #is-old-recruit .home-box06 .home-box06_tit-01 img {
      max-width: 416px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box06 .home-box06_tit-01 {
      text-align: left;
      margin: 0 0 20px 0;
    }
    #is-old-recruit .home-box06 .home-box06_tit-01 img {
      max-width: 416px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box06 .txt-s1 {
      max-width: 416px;
      font-size: 12px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box06 .txt-s1 {
      font-size: 14px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box06 .box-s2 {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0;
    }
    #is-old-recruit .home-box06 .box-s2 > p {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box06 .box-s2 {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0 -30px 0 -20px;
      position: relative;
      z-index: 1;
    }
    #is-old-recruit .home-box06 .box-s2 > p {
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box06 .home-box06_img-03 {
      margin: 0 -5px 0 0;
    }
    #is-old-recruit .home-box06 .home-box06_img-03 img {
      max-width: 92px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box06 .home-box06_img-03 {
      margin: 0 -5px 0 0;
    }
    #is-old-recruit .home-box06 .home-box06_img-03 img {
      max-width: 92px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box06 .home-box06_img-01 {
      margin: 0;
    }
    #is-old-recruit .home-box06 .home-box06_img-01 img {
      max-width: 450px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .home-box06 .home-box06_img-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box06 .home-box06_img-01 {
      margin: 0;
    }
    #is-old-recruit .home-box06 .home-box06_img-01 img {
      max-width: 450px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .home-box06 .home-box06_img-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box06 .home-box06_img-02 {
      margin: 0;
    }
    #is-old-recruit .home-box06 .home-box06_img-02 img {
      max-width: 447px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .home-box06 .home-box06_img-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box06 .home-box06_img-02 {
      margin: 0;
    }
    #is-old-recruit .home-box06 .home-box06_img-02 img {
      max-width: 447px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .home-box06 .home-box06_img-02 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  #is-old-recruit {
    /* home-box07--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box07 {
      background: #9ce0c9;
      box-sizing: border-box;
      text-align: left;
      padding: 50px 0 45px 0;
      margin: 0 0 30px 0;
      box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit .home-box07-in {
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 4%;
      margin: 0;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box07 {
      background: #9ce0c9;
      box-sizing: border-box;
      text-align: left;
      padding: 50px 0 75px 0;
      margin: 0 0 30px 0;
      box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit .home-box07-in {
      max-width: 1030px; /*1000+15*/
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 15px;
      margin: 0 auto;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box07 .home-box07_tit-01 {
      max-width: 365px;
      text-align: left;
      margin: 0 auto 20px auto;
    }
    #is-old-recruit .home-box07 .home-box07_tit-01 img {
      max-width: 365px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box07 .home-box07_tit-01 {
      text-align: left;
      margin: 0 0 20px 70px;
    }
    #is-old-recruit .home-box07 .home-box07_tit-01 img {
      max-width: 365px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box07 .txt-s1 {
      max-width: 365px;
      font-size: 12px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 auto 30px auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box07 .txt-s1 {
      font-size: 14px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 0 70px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box07 .lis-s1 {
      max-width: 490px; /*370+120*/
      margin: 0 auto;
    }
    #is-old-recruit .home-box07 .lis-s1 li {
      margin: 0 0 20px 0;
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(1) {
      background: url("../../recruit/shared/images/home-box07_bg-01.png") 30px bottom no-repeat;
      background-size: 54px 83px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(2) {
      background: url("../../recruit/shared/images/home-box07_bg-02.png") 93% bottom no-repeat;
      background-size: 54px 79px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(3) {
      background: url("../../recruit/shared/images/home-box07_bg-03.png") 30px bottom no-repeat;
      background-size: 53px 78px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(4) {
      background: url("../../recruit/shared/images/home-box07_bg-04.png") 93% bottom no-repeat;
      background-size: 50px 94px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .home-box07 .lis-s1 li div {
      max-width: 370px;
      box-sizing: border-box;
      background: #ffffff;
      border-radius: 28px;
      padding: 25px;
      margin: 0 0 0 120px;
      position: relative;
    }
    #is-old-recruit .home-box07 .lis-s1 li div::before {
      content: "";
      position: absolute;
      bottom: 30%;
      left: -45px;
      border: 15px solid transparent;
      border-right: 30px solid #ffffff;
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(2) div,
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(4) div {
      margin: 0 120px 0 0;
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(2) div::before,
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(4) div::before {
      content: "";
      position: absolute;
      bottom: 30%;
      left: 100%;
      border: 15px solid transparent;
      border-left: 30px solid #ffffff;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box07 .lis-s1 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -15px;
    }
    #is-old-recruit .home-box07 .lis-s1 li {
      flex-basis: calc(50% - 15px);
      max-width: calc(50% - 15px);
      margin: 0 0 20px 15px;
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(1),
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(3) {
      margin: 40px 0 -20px 15px;
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(1) {
      background: url("../../recruit/shared/images/home-box07_bg-01.png") 30px bottom no-repeat;
      background-size: 54px 83px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(2) {
      background: url("../../recruit/shared/images/home-box07_bg-02.png") 93% bottom no-repeat;
      background-size: 54px 79px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(3) {
      background: url("../../recruit/shared/images/home-box07_bg-03.png") 30px bottom no-repeat;
      background-size: 53px 78px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(4) {
      background: url("../../recruit/shared/images/home-box07_bg-04.png") 93% bottom no-repeat;
      background-size: 50px 94px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .home-box07 .lis-s1 li div {
      max-width: 370px;
      box-sizing: border-box;
      background: #ffffff;
      border-radius: 28px;
      padding: 25px;
      margin: 0 0 0 120px;
      position: relative;
    }
    #is-old-recruit .home-box07 .lis-s1 li div::before {
      content: "";
      position: absolute;
      bottom: 30%;
      left: -45px;
      border: 15px solid transparent;
      border-right: 30px solid #ffffff;
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(2) div,
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(4) div {
      margin: 0 120px 0 0;
    }
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(2) div::before,
    #is-old-recruit .home-box07 .lis-s1 li:nth-child(4) div::before {
      content: "";
      position: absolute;
      bottom: 30%;
      left: 100%;
      border: 15px solid transparent;
      border-left: 30px solid #ffffff;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box07 .txt-s2 {
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      text-align: left;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box07 .txt-s2 {
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      text-align: left;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box07 .txt-s3 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      text-align: right;
      margin: 0;
    }
    #is-old-recruit .home-box07 .txt-s3 a {
      color: #0071bc;
    }
    #is-old-recruit .home-box07 .txt-s3 a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box07 .txt-s3 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      text-align: right;
      margin: 0;
    }
    #is-old-recruit .home-box07 .txt-s3 a {
      color: #0071bc;
    }
    #is-old-recruit .home-box07 .txt-s3 a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  #is-old-recruit {
    /* home-box08--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box08 {
      background: #ffbdd0;
      box-sizing: border-box;
      text-align: left;
      padding: 50px 0 40px 0;
      margin: 0 0 30px 0;
      box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit .home-box08-in {
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 4%;
      margin: 0;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box08 {
      background: #ffbdd0;
      box-sizing: border-box;
      text-align: left;
      padding: 50px 0 40px 0;
      margin: 0 0 30px 0;
      box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit .home-box08-in {
      max-width: 1030px; /*1000+15*/
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 15px;
      margin: 0 auto;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box08 .home-box08_tit-01 {
      max-width: 499px;
      text-align: left;
      margin: 0 auto 20px auto;
    }
    #is-old-recruit .home-box08 .home-box08_tit-01 img {
      max-width: 499px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box08 .home-box08_tit-01 {
      text-align: left;
      margin: 0 0 20px 70px;
    }
    #is-old-recruit .home-box08 .home-box08_tit-01 img {
      max-width: 499px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box08 .txt-s1 {
      max-width: 499px;
      font-size: 12px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 auto 30px auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box08 .txt-s1 {
      font-size: 14px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 30px 70px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box08 .box-s1 {
      display: inline-flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box08 .box-s1 {
      display: inline-flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: center;
      margin: 0;
      padding: 0 156px 0 0;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box08 .home-box08_img-01 {
      text-align: center;
      margin: 0 20px 40px 20px;
    }
    #is-old-recruit .home-box08 .home-box08_img-01 img {
      max-width: 160px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box08 .home-box08_img-01 {
      margin: 0 44px 25px 107px;
    }
    #is-old-recruit .home-box08 .home-box08_img-01 img {
      max-width: 160px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box08 .home-box08_img-02 {
      text-align: center;
      margin: 0 20px 40px 20px;
    }
    #is-old-recruit .home-box08 .home-box08_img-02 img {
      max-width: 208px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box08 .home-box08_img-02 {
      margin: 0 32px 25px 44px;
    }
    #is-old-recruit .home-box08 .home-box08_img-02 img {
      max-width: 208px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box08 .home-box08_img-03 {
      text-align: center;
      margin: 0 20px 40px 20px;
    }
    #is-old-recruit .home-box08 .home-box08_img-03 img {
      max-width: 203px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box08 .home-box08_img-03 {
      margin: 0 0 25px 32px;
    }
    #is-old-recruit .home-box08 .home-box08_img-03 img {
      max-width: 203px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box08 .home-box08_img-04 {
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .home-box08 .home-box08_img-04 img {
      max-width: 151px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box08 .home-box08_img-04 {
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: 0;
    }
    #is-old-recruit .home-box08 .home-box08_img-04 img {
      max-width: 151px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box08 .btn-s1 {
      max-width: 350px;
      margin: 0 auto;
    }
    #is-old-recruit .home-box08 .btn-s1 a {
      max-width: 350px;
      width: 100%;
      height: 80px;
      box-sizing: border-box;
      border: 6px solid #ffffff;
      background: #fb516d;
      border-radius: 30px;
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #ffffff;
      text-align: center;
      line-height: 1;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, 0.2);
      position: relative;
    }
    #is-old-recruit .home-box08 .btn-s1 a::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 25px;
      width: 14px;
      height: 14px;
      border-bottom: 3px solid #ffffff;
      border-right: 3px solid #ffffff;
      transform: translateX(0) rotate(-45deg);
      margin: auto;
    }
    #is-old-recruit .home-box08 .btn-s1 a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box08 .btn-s1 {
      max-width: 350px;
      margin: 0 auto;
    }
    #is-old-recruit .home-box08 .btn-s1 a {
      max-width: 350px;
      width: 100%;
      height: 80px;
      box-sizing: border-box;
      border: 6px solid #ffffff;
      background: #fb516d;
      border-radius: 30px;
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #ffffff;
      text-align: center;
      line-height: 1;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, 0.2);
      position: relative;
    }
    #is-old-recruit .home-box08 .btn-s1 a::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 25px;
      width: 14px;
      height: 14px;
      border-bottom: 3px solid #ffffff;
      border-right: 3px solid #ffffff;
      transform: translateX(0) rotate(-45deg);
      margin: auto;
    }
    #is-old-recruit .home-box08 .btn-s1 a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  #is-old-recruit {
    /* home-box09--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box09 {
      background: #d7ddfb;
      box-sizing: border-box;
      text-align: left;
      padding: 50px 0 10px 0;
      margin: 0 0 30px 0;
      box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit .home-box09-in {
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 4%;
      margin: 0;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box09 {
      background: #d7ddfb;
      box-sizing: border-box;
      text-align: left;
      padding: 50px 0 10px 0;
      margin: 0 0 30px 0;
      box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.2);
    }
    #is-old-recruit .home-box09-in {
      max-width: 880px; /*850+15*/
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 15px;
      margin: 0 auto;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box09 .home-box09_tit-01 {
      max-width: 410px;
      text-align: left;
      margin: 0 auto 20px auto;
    }
    #is-old-recruit .home-box09 .home-box09_tit-01 img {
      max-width: 410px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box09 .home-box09_tit-01 {
      text-align: left;
      margin: 0 0 20px 0;
    }
    #is-old-recruit .home-box09 .home-box09_tit-01 img {
      max-width: 410px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box09 .txt-s1 {
      max-width: 410px;
      font-size: 12px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 auto 30px auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box09 .txt-s1 {
      font-size: 14px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 30px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box09 .box-s1 {
      display: flex;
      flex-flow: row wrap;
      align-items: flex-start;
      justify-content: center;
      margin: 0;
    }
    #is-old-recruit .home-box09 .box-s1 > div {
      margin: 0;
    }
    #is-old-recruit .home-box09 .box-s1 > div > div {
      background: #ffffff;
      box-sizing: border-box;
      padding: 15px 25px;
      border-radius: 23px;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box09 .box-s1 {
      display: flex;
      flex-flow: row wrap;
      align-items: flex-start;
      justify-content: center;
      margin: 0;
    }
    #is-old-recruit .home-box09 .box-s1 > div {
      flex-basis: calc(50% - 40px);
      max-width: calc(50% - 40px);
      margin: 0 20px;
    }
    #is-old-recruit .home-box09 .box-s1 > div > div {
      background: #ffffff;
      box-sizing: border-box;
      padding: 15px 25px;
      border-radius: 23px;
      margin: 0 0 20px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box09 .tit-s1 {
      background: url("../../recruit/shared/images/q.png") 0 0 no-repeat;
      background-size: 22px 25px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 25px;
      padding: 5px 0 0 30px;
      font-size: 12px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 10px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box09 .tit-s1 {
      background: url("../../recruit/shared/images/q.png") 0 0 no-repeat;
      background-size: 22px 25px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 25px;
      padding: 5px 0 0 30px;
      font-size: 14px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 10px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box09 .txt-s2 {
      background: url("../../recruit/shared/images/a.png") 0 0 no-repeat;
      background-size: 23px 22px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 22px;
      padding: 0 0 0 30px;
      font-size: 12px;
      font-size: clamp(12px, 1.4vw, 14px);
      text-align: left;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box09 .txt-s2 {
      background: url("../../recruit/shared/images/a.png") 0 0 no-repeat;
      background-size: 23px 22px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 22px;
      padding: 0 0 0 30px;
      font-size: 14px;
      font-size: clamp(12px, 1.4vw, 14px);
      text-align: left;
      margin: 0;
    }
  }
  #is-old-recruit {
    /* home-box10--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box10 {
      box-sizing: border-box;
      text-align: left;
      padding: 20px 0 80px 0;
      margin: 0;
    }
    #is-old-recruit .home-box10-in {
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 4%;
      margin: 0;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box10 {
      box-sizing: border-box;
      text-align: left;
      padding: 20px 0 80px 0;
      margin: 0;
    }
    #is-old-recruit .home-box10-in {
      max-width: 1030px; /*1000+15*/
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 15px;
      margin: 0 auto;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box10 .home-box10_tit-01 {
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .home-box10 .home-box10_tit-01 img {
      max-width: 500px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box10 .home-box10_tit-01 {
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .home-box10 .home-box10_tit-01 img {
      max-width: 500px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box10 .txt-s1 {
      font-size: 12px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box10 .txt-s1 {
      font-size: 14px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box10 .txt-s2 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 4vw, 40px);
      color: #fb516d;
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box10 .txt-s2 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 40px;
      font-size: clamp(30px, 4vw, 40px);
      color: #fb516d;
      text-align: center;
      margin: 0 0 35px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box10 .home-box10_img-01 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .home-box10 .home-box10_img-01 img {
      max-width: 911px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box10 .home-box10_img-01 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .home-box10 .home-box10_img-01 img {
      max-width: 911px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box10 .btn-s1 {
      max-width: 350px;
      margin: 0 auto;
    }
    #is-old-recruit .home-box10 .btn-s1 a {
      max-width: 350px;
      width: 100%;
      height: 80px;
      box-sizing: border-box;
      border: 6px solid #ffffff;
      background: #fb516d;
      border-radius: 30px;
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #ffffff;
      text-align: center;
      line-height: 1;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, 0.2);
      position: relative;
    }
    #is-old-recruit .home-box10 .btn-s1 a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box10 .btn-s1 {
      max-width: 350px;
      margin: -80px auto 0 auto;
    }
    #is-old-recruit .home-box10 .btn-s1 a {
      max-width: 350px;
      width: 100%;
      height: 80px;
      box-sizing: border-box;
      border: 6px solid #ffffff;
      background: #fb516d;
      border-radius: 30px;
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #ffffff;
      text-align: center;
      line-height: 1;
      text-decoration: none;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, 0.2);
      position: relative;
    }
    #is-old-recruit .home-box10 .btn-s1 a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  #is-old-recruit {
    /* home-box11--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box11 {
      background: #ffbdd0;
      box-sizing: border-box;
      text-align: left;
      padding: 50px 0;
      margin: 0;
    }
    #is-old-recruit .home-box11-in {
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 4%;
      margin: 0;
      position: relative;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box11 {
      background: #ffbdd0;
      box-sizing: border-box;
      text-align: left;
      padding: 50px 0;
      margin: 0;
    }
    #is-old-recruit .home-box11-in {
      max-width: 1030px; /*1000+15*/
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      padding: 0 15px;
      margin: 0 auto;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box11 .tit-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(30px, 5vw, 50px);
      color: #333333;
      text-align: center;
      margin: 0 0 30px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box11 .tit-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 40px;
      font-size: clamp(30px, 4vw, 40px);
      color: #333333;
      text-align: left;
      margin: 0 0 30px 70px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box11 .txt-s1 {
      font-size: 12px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 30px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box11 .txt-s1 {
      font-size: 14px;
      font-size: clamp(12px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 30px 70px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .home-box11 .lis-s1 {
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: center;
      margin: 0;
    }
    #is-old-recruit .home-box11 .lis-s1 li {
      margin: 0;
    }
    #is-old-recruit .home-box11 .lis-s1 li img {
      max-width: 409px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .home-box11 .lis-s1 {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0;
    }
    #is-old-recruit .home-box11 .lis-s1 li {
      margin: 0;
    }
    #is-old-recruit .home-box11 .lis-s1 li img {
      max-width: 409px;
      width: 100%;
      height: auto;
    }
  }
  #is-old-recruit {
    /*//////////////////////////////////////////////////////// */
    /* 【CMS】お知らせ(一覧)-------------*/
    /*//////////////////////////////////////////////////////// */
    /* news-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .news-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0 0 40px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .news-box01-in {
      background: #ffffff;
      width: 100%;
      box-sizing: border-box;
      padding: 45px 4% 40px 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .news-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0 0 40px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .news-box01-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 45px 75px 40px 75px;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .news-box01 .home-box01_btn-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .news-box01 .home-box01_btn-01 {
      position: absolute;
      top: 210px;
      right: -180px;
    }
    #is-old-recruit .news-box01 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .news-box01 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .news-box01 .lis-tab {
      display: none;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .news-box01 .lis-tab {
      font-size: 0;
      text-align: left;
      margin: 0 0 40px 0;
    }
    #is-old-recruit .news-box01 .lis-tab li {
      display: inline-block;
      vertical-align: bottom;
      max-width: 90px;
      width: 100%;
      height: 25px;
      margin: 0 4px 4px 4px;
    }
    #is-old-recruit .news-box01 .lis-tab li span,
    #is-old-recruit .news-box01 .lis-tab li a {
      display: block;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      font-size: 14px;
      line-height: 25px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 500;
      text-align: center;
      color: #ffffff;
      text-decoration: none;
      position: relative;
    }
    #is-old-recruit .news-box01 .lis-tab li span {
      color: #080000;
    }
    #is-old-recruit .news-box01 .lis-tab li.s2 a { /*すべて*/
      background: #373737;
    }
    #is-old-recruit .news-box01 .lis-tab li.s3 a { /*重要*/
      background: #d3004b;
    }
    #is-old-recruit .news-box01 .lis-tab li.s4 a { /*お知らせ*/
      background: #23a4d3;
    }
    #is-old-recruit .news-box01 .lis-tab li.s5 a { /*見学・説明会*/
      background: #7363cc;
    }
    #is-old-recruit .news-box01 .lis-tab li.s6 a { /*イベント*/
      background: #f67800;
    }
    #is-old-recruit .news-box01 .lis-tab li.s7 a { /*新卒採用*/
      background: #fc899c;
    }
    #is-old-recruit .news-box01 .lis-tab li.s8 a { /*募集情報*/
      background: #736357;
    }
    #is-old-recruit .news-box01 .lis-tab li a:hover {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .news-box01 .page-nav {
      text-align: center;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .news-box01 .page-nav p {
      font-size: 14px;
      font-weight: bold;
      color: #42c497;
      line-height: 1;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .news-box01 .page-nav ul {
      font-size: 0;
    }
    #is-old-recruit .news-box01 .page-nav ul li {
      display: inline-block;
      margin: 0 4px 4px 4px;
    }
    #is-old-recruit .news-box01 .page-nav ul li span {
      display: block;
      background: #42c497;
      height: 25px;
      font-size: 14px;
      line-height: 25px;
      color: #ffffff;
      box-sizing: border-box;
      padding: 0px 10px;
    }
    #is-old-recruit .news-box01 .page-nav ul li a {
      display: block;
      background: #f3f3f3;
      height: 25px;
      font-size: 14px;
      line-height: 25px;
      color: #1b1464;
      box-sizing: border-box;
      padding: 0px 10px;
    }
    #is-old-recruit .news-box01 .page-nav ul li.s1 a {
      padding: 0px 5px;
    }
    #is-old-recruit .news-box01 .page-nav ul li a {
      text-decoration: none;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .news-box01 .page-nav {
      position: relative;
      height: 25px;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .news-box01 .page-nav p {
      position: absolute;
      left: 10px;
      font-size: 14px;
      font-weight: bold;
      color: #42c497;
      line-height: 1;
      margin: 10px 0 0 0;
    }
    #is-old-recruit .news-box01 .page-nav ul {
      position: absolute;
      right: 0;
      font-size: 0;
      margin: 0 0 0 -8px;
    }
    #is-old-recruit .news-box01 .page-nav ul li {
      display: inline-block;
      margin-left: 8px;
    }
    #is-old-recruit .news-box01 .page-nav ul li span {
      display: block;
      background: #42c497;
      height: 25px;
      font-size: 14px;
      line-height: 25px;
      color: #ffffff;
      box-sizing: border-box;
      padding: 0px 10px;
    }
    #is-old-recruit .news-box01 .page-nav ul li a {
      display: block;
      background: #f3f3f3;
      height: 25px;
      font-size: 14px;
      line-height: 25px;
      color: #1b1464;
      box-sizing: border-box;
      padding: 0px 10px;
    }
    #is-old-recruit .news-box01 .page-nav ul li.s1 a {
      padding: 0px 5px;
    }
    #is-old-recruit .news-box01 .page-nav ul li a {
      text-decoration: none;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*タブレット用指定*/
    }
    #is-old-recruit .news-box01 .lis-s1 {
      border-top: 2px dotted #42c497;
      margin: 0 0 35px 0;
    }
    #is-old-recruit .news-box01 .lis-s1 dt {
      box-sizing: border-box;
      padding: 15px 10px 5px 10px;
      font-size: 14px;
      line-height: 35px;
      text-align: left;
      color: #1b1464;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 500;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span {
      display: inline-block;
      background: #373737;
      box-sizing: border-box;
      width: 100px;
      height: 35px;
      font-size: 14px;
      line-height: 35px;
      text-align: center;
      color: #ffffff;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 500;
      margin: 0 0 0 15px;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span.s3 { /*重要*/
      background: #d3004b;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span.s4 { /*お知らせ*/
      background: #23a4d3;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span.s5 { /*見学・説明会*/
      background: #7363cc;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span.s6 { /*イベント*/
      background: #f67800;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span.s7 { /*新卒採用*/
      background: #fc899c;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span.s8 { /*募集情報*/
      background: #736357;
    }
    #is-old-recruit .news-box01 .lis-s1 dd {
      padding: 5px 10px 15px 10px;
      font-size: 14px;
      line-height: 35px;
      text-align: left;
      color: #080000;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 500;
      border-bottom: 2px dotted #42c497;
    }
    #is-old-recruit .news-box01 .lis-s1 dd a {
      font-size: 14px;
      line-height: 35px;
      color: #080000;
      text-decoration: none;
    }
    #is-old-recruit .news-box01 .lis-s1 dd a:hover {
      text-decoration: underline;
    }
    #is-old-recruit .news-box01 .lis-s1 dd span.new {
      position: relative;
      top: -2px;
      display: inline-block;
      width: 45px;
      height: 16px;
      font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
      font-size: 9px;
      line-height: 16px;
      font-weight: bold;
      text-align: center;
      color: #ffffff;
      letter-spacing: 2px;
      background: #e12934;
      padding: 2px 0 0 0;
      margin: 0 0 0 5px;
      border-radius: 8px;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .news-box01 .lis-s1 {
      border-top: 2px dotted #42c497;
      margin: 0 0 35px 0;
    }
    #is-old-recruit .news-box01 .lis-s1 dt {
      clear: left;
      float: left;
      width: 240px;
      box-sizing: border-box;
      padding: 15px 0 15px 10px;
      font-size: 14px;
      line-height: 35px;
      text-align: left;
      color: #1b1464;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 500;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span {
      display: inline-block;
      background: #373737;
      box-sizing: border-box;
      width: 100px;
      height: 35px;
      font-size: 14px;
      line-height: 35px;
      text-align: center;
      color: #ffffff;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 500;
      margin: 0 0 0 15px;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span.s3 { /*重要*/
      background: #d3004b;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span.s4 { /*お知らせ*/
      background: #23a4d3;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span.s5 { /*見学・説明会*/
      background: #7363cc;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span.s6 { /*イベント*/
      background: #f67800;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span.s7 { /*新卒採用*/
      background: #fc899c;
    }
    #is-old-recruit .news-box01 .lis-s1 dt span.s8 { /*募集情報*/
      background: #736357;
    }
    #is-old-recruit .news-box01 .lis-s1 dd {
      padding: 15px 10px 15px 240px;
      font-size: 14px;
      line-height: 35px;
      text-align: left;
      color: #080000;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 500;
      border-bottom: 2px dotted #42c497;
    }
    #is-old-recruit .news-box01 .lis-s1 dd a {
      font-size: 14px;
      line-height: 35px;
      color: #080000;
      text-decoration: none;
    }
    #is-old-recruit .news-box01 .lis-s1 dd a:hover {
      text-decoration: underline;
    }
    #is-old-recruit .news-box01 .lis-s1 dd span.new {
      position: relative;
      top: -2px;
      display: inline-block;
      width: 45px;
      height: 16px;
      font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
      font-size: 9px;
      line-height: 16px;
      font-weight: bold;
      text-align: center;
      color: #ffffff;
      letter-spacing: 2px;
      background: #e12934;
      padding: 2px 0 0 0;
      margin: 0 0 0 5px;
      border-radius: 8px;
    }
  }
  #is-old-recruit {
    /*//////////////////////////////////////////////////////// */
    /* 【CMS】お知らせ(記事詳細)-------------*/
    /*//////////////////////////////////////////////////////// */
    /* news-box02--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .news-box02 {
      box-sizing: border-box;
      text-align: left;
      padding: 0 0 40px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .news-box02-in {
      background: #ffffff;
      width: 100%;
      box-sizing: border-box;
      padding: 45px 4% 40px 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .news-box02 {
      box-sizing: border-box;
      text-align: left;
      padding: 0 0 40px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .news-box02-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 45px 75px 40px 75px;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .news-box02 .home-box01_btn-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .news-box02 .home-box01_btn-01 {
      position: absolute;
      top: 210px;
      right: -180px;
    }
    #is-old-recruit .news-box02 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .news-box02 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  #is-old-recruit .news-box02 .txt-date {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 35px;
    text-align: left;
    margin: 0 0 20px 0;
  }
  #is-old-recruit .news-box02 .txt-date span {
    display: inline-block;
    max-width: 100px;
    width: 100%;
    height: 35px;
    background: #373737;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 35px;
    text-align: center;
    color: #ffffff;
    margin: 0 10px 0 0;
  }
  #is-old-recruit .news-box02 .txt-date span.s3 { /*重要*/
    background: #d3004b;
  }
  #is-old-recruit .news-box02 .txt-date span.s4 { /*お知らせ*/
    background: #23a4d3;
  }
  #is-old-recruit .news-box02 .txt-date span.s5 { /*見学・説明会*/
    background: #7363cc;
  }
  #is-old-recruit .news-box02 .txt-date span.s6 { /*イベント*/
    background: #f67800;
  }
  #is-old-recruit .news-box02 .txt-date span.s7 { /*新卒採用*/
    background: #fc899c;
  }
  #is-old-recruit .news-box02 .txt-date span.s8 { /*募集情報*/
    background: #736357;
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*タブレット用指定*/
    }
    #is-old-recruit .news-box02 .tit-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 500;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      line-height: 2;
      text-align: left;
      padding: 0 10px 15px 10px;
      border-bottom: 2px dotted #6798d6;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .news-box02 .tit-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 500;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      line-height: 2;
      text-align: left;
      padding: 0 10px 15px 10px;
      border-bottom: 2px dotted #6798d6;
      margin: 0 0 20px 0;
    }
  }
  #is-old-recruit .news-box02 p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    line-height: 2;
    margin-bottom: 30px;
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .news-box02 .lis-file {
      margin: 0 0 20px 0;
    }
    #is-old-recruit .news-box02 .lis-file li a {
      display: block;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .news-box02 .lis-file {
      margin: 0 0 40px 0;
    }
  }
  #is-old-recruit .news-box02 .lis-file li {
    font-size: 14px;
    text-align: left;
    margin-bottom: 20px;
  }
  #is-old-recruit .news-box02 .lis-file li a {
    display: inline-block;
    padding-left: 45px;
    font-size: 14px;
    line-height: 31px;
    color: #0071ba;
    min-height: 31px;
  }
  #is-old-recruit .news-box02 .lis-file li a:hover {
    text-decoration: underline;
  }
  #is-old-recruit .news-box02 .lis-file li a.file_pdf {
    background: url("../../recruit/shared/images/ico_pdf.png") left top no-repeat;
    background-size: 31px 31px;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit .news-box02 .lis-file li a.file_word {
    background: url("../../recruit/shared/images/ico_w.png") left top no-repeat;
    background-size: 31px 31px;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit .news-box02 .lis-file li a.file_excel {
    background: url("../../recruit/shared/images/ico_x.png") left top no-repeat;
    background-size: 31px 31px;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit .news-box02 .lis-file li a.file_powerpoint {
    background: url("../../recruit/shared/images/ico_p.png") left top no-repeat;
    background-size: 31px 31px;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit .news-box02 .lis-file li a.etc {
    background: url("../../recruit/shared/images/ico_etc.png") left top no-repeat;
    background-size: 31px 31px;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit .news-box02 .lis-file li a.link {
    background: url("../../recruit/shared/images/ico_link.png") left top no-repeat;
    background-size: 31px 31px;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
  }
  #is-old-recruit .news-box02 .news-box02_bana-01 {
    margin: 0 0 35px 0;
  }
  #is-old-recruit .news-box02 .news-box02_bana-01 img {
    max-width: 100%;
    height: auto;
  }
  #is-old-recruit .news-box02 .news-box02_bana-01 a:hover img {
    opacity: 0.7;
    -ms-filter: "alpha(opacity=70)";
    -moz-opacity: 0.7;
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .news-box02 .youtube {
      margin: 0 auto 25px auto;
    }
    #is-old-recruit .news-box02 .youtube p {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      margin: 0 0 35px 0;
    }
    #is-old-recruit .news-box02 .youtube p iframe {
      position: absolute;
      top: 0;
      right: 0;
      width: 100% !important;
      height: 100% !important;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .news-box02 .youtube {
      max-width: 850px;
      margin: 0 auto 50px auto;
    }
    #is-old-recruit .news-box02 .youtube p {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      margin: 0;
    }
    #is-old-recruit .news-box02 .youtube p iframe {
      position: absolute;
      top: 0;
      right: 0;
      width: 100% !important;
      height: 100% !important;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .news-box02 .googlemap {
      margin: 0 auto 15px auto;
    }
    #is-old-recruit .news-box02 .googlemap p {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .news-box02 .googlemap p iframe {
      position: absolute;
      top: 0;
      right: 0;
      width: 100% !important;
      height: 100% !important;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .news-box02 .googlemap {
      max-width: 850px;
      margin: 0 auto 15px auto;
    }
    #is-old-recruit .news-box02 .googlemap p {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      margin: 0;
    }
    #is-old-recruit .news-box02 .googlemap p iframe {
      position: absolute;
      top: 0;
      right: 0;
      width: 100% !important;
      height: 100% !important;
    }
  }
  #is-old-recruit .news-box02 .btn_googlemap {
    text-align: center;
    margin-bottom: 35px;
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .news-box02 .btn_googlemap {
      margin-bottom: 65px;
    }
  }
  #is-old-recruit .news-box02 .btn_googlemap a {
    display: inline-block;
    background: url("../../recruit/shared/images/ico_googlemap.png") 0 center no-repeat;
    background-size: 18px 21px;
    image-rendering: -webkit-optimize-contrast; /*Chrome*/
    box-sizing: border-box;
    padding: 0 0 0 25px;
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    color: #20bc9b;
    margin: 0 auto;
    text-decoration: none;
  }
  #is-old-recruit .news-box02 .btn_googlemap a:hover {
    text-decoration: underline;
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .news-box02 .photo li {
      font-size: 14px;
      text-align: left;
    }
    #is-old-recruit .news-box02 .photo li a {
      position: relative;
    }
    #is-old-recruit .news-box02 .photo li a span.see {
      display: none;
    }
    #is-old-recruit .news-box02 .photo li img {
      max-width: 100%;
      height: auto;
    }
    #is-old-recruit .news-box02 .photo li p {
      font-size: 14px;
      text-align: left;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .news-box02 .photo li {
      font-size: 14px;
      text-align: left;
    }
    #is-old-recruit .news-box02 .photo li a {
      position: relative;
    }
    #is-old-recruit .news-box02 .photo li a span.see {
      position: absolute;
      bottom: 10px;
      right: 5px;
      background: url("../../recruit/shared/images/ico_see.png") 0 0 no-repeat;
      background-size: 25px 25px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      width: 25px;
      height: 25px;
      z-index: 2;
      text-indent: -9999px;
    }
    #is-old-recruit .news-box02 .photo li img {
      max-width: 100%;
      height: auto;
    }
    #is-old-recruit .news-box02 .photo li p {
      font-size: 14px;
      text-align: left;
    }
  }
  #is-old-recruit .news-box02 strong,
  #is-old-recruit .news-box02 strong span {
    font-weight: bold;
  }
  #is-old-recruit .news-box02 .box-s1 {
    clear: both;
    margin: 0;
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .news-box02 .txt-lef-4,
    #is-old-recruit .news-box02 .txt-rig-4 {
      width: 100%;
      margin: 0;
    }
    #is-old-recruit .news-box02 .img-lef-4,
    #is-old-recruit .news-box02 .img-rig-4,
    #is-old-recruit .news-box02 .img-cen-4 {
      max-width: 200px;
      margin: 0 auto;
    }
    #is-old-recruit .news-box02 .txt-lef-3,
    #is-old-recruit .news-box02 .txt-rig-3 {
      width: 100%;
      margin: 0;
    }
    #is-old-recruit .news-box02 .img-lef-3,
    #is-old-recruit .news-box02 .img-rig-3,
    #is-old-recruit .news-box02 .img-cen-3 {
      max-width: 260px;
      margin: 0 auto;
    }
    #is-old-recruit .news-box02 .txt-lef-2,
    #is-old-recruit .news-box02 .txt-rig-2 {
      width: 100%;
      margin: 0;
    }
    #is-old-recruit .news-box02 .img-lef-2,
    #is-old-recruit .news-box02 .img-rig-2,
    #is-old-recruit .news-box02 .img-cen-2 {
      max-width: 410px;
      margin: 0 auto;
    }
    #is-old-recruit .news-box02 .img-cen-1 {
      width: 100%;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
      /*--位置　右　サイズ　4/1幅=====================================================--*/
    }
    #is-old-recruit .news-box02 .txt-lef-4 {
      float: left;
      width: 72.94%; /*620/850*/
    }
    #is-old-recruit .news-box02 .img-rig-4 {
      float: right;
      width: 23.52%; /*200/850*/
    }
    #is-old-recruit {
      /*--位置　左　サイズ　4/1幅=====================================================--*/
    }
    #is-old-recruit .news-box02 .txt-rig-4 {
      float: right;
      width: 72.94%; /*620/850*/
    }
    #is-old-recruit .news-box02 .img-lef-4 {
      float: left;
      width: 23.52%; /*200/850*/
    }
    #is-old-recruit {
      /*--位置　中央　サイズ　4/1幅=====================================================--*/
    }
    #is-old-recruit .news-box02 .img-cen-4 {
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 0 -15px;
    }
    #is-old-recruit .news-box02 .img-cen-4 li {
      flex-basis: calc(25% - 15px);
      max-width: calc(25% - 15px);
      margin: 0 0 0 15px;
    }
    #is-old-recruit {
      /*--位置　右　サイズ　3/1幅=====================================================--*/
    }
    #is-old-recruit .news-box02 .txt-lef-3 {
      float: left;
      width: 65.88%; /*560/850*/
    }
    #is-old-recruit .news-box02 .img-rig-3 {
      float: right;
      width: 30.58%; /*260/850*/
    }
    #is-old-recruit {
      /*--位置　左　サイズ　3/1幅=====================================================--*/
    }
    #is-old-recruit .news-box02 .txt-rig-3 {
      float: right;
      width: 65.88%; /*560/850*/
    }
    #is-old-recruit .news-box02 .img-lef-3 {
      float: left;
      width: 30.58%; /*260/850*/
    }
    #is-old-recruit {
      /*--位置　中央　サイズ　3/1幅=====================================================--*/
    }
    #is-old-recruit .news-box02 .img-cen-3 {
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 0 -30px;
    }
    #is-old-recruit .news-box02 .img-cen-3 li {
      flex-basis: calc(33.33% - 30px);
      max-width: calc(33.33% - 30px);
      margin: 0 0 0 30px;
    }
    #is-old-recruit {
      /*--位置　右　サイズ　2/1幅=====================================================--*/
    }
    #is-old-recruit .news-box02 .txt-lef-2 {
      float: left;
      width: 48.88%; /*440/900*/
    }
    #is-old-recruit .news-box02 .img-rig-2 {
      float: right;
      width: 48.88%; /*440/900*/
    }
    #is-old-recruit {
      /*--位置　左　サイズ　2/1幅=====================================================--*/
    }
    #is-old-recruit .news-box02 .txt-rig-2 {
      float: right;
      width: 48.88%; /*440/900*/
    }
    #is-old-recruit .news-box02 .img-lef-2 {
      float: left;
      width: 48.88%; /*440/900*/
    }
    #is-old-recruit {
      /*--位置　中央　サイズ　2/1幅=====================================================--*/
    }
    #is-old-recruit .news-box02 .img-cen-2 {
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 0 -30px;
    }
    #is-old-recruit .news-box02 .img-cen-2 li {
      flex-basis: calc(50% - 30px);
      max-width: calc(50% - 30px);
      margin: 0 0 0 30px;
    }
    #is-old-recruit {
      /*--位置　サイズ　最大幅=====================================================--*/
    }
    #is-old-recruit .news-box02 .img-cen-1 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .news-box02 .img-cen-1 li {
      margin: 0 0 40px 0;
    }
    #is-old-recruit .news-box02 .img-cen-1 li span.see {
      display: none;
    }
    #is-old-recruit .news-box02 .img-cen-1 li .txt-s2 {
      text-align: center;
    }
  }
  #is-old-recruit {
    /* ページナビ-------------*/
  }
  #is-old-recruit .news-box02 .pagenav {
    font-size: 0;
    margin: 0 auto;
  }
  #is-old-recruit .news-box02 .pagenav li.previous,
  #is-old-recruit .news-box02 .pagenav li.next {
    display: inline-block;
    max-width: 250px;
    width: 47%;
    margin: 0 1.5% 20px 1.5%;
  }
  #is-old-recruit .news-box02 .pagenav li.previous a {
    position: relative;
    display: block;
    background: #20bc9b;
    box-sizing: border-box;
    padding: 0 30%;
    width: 100%;
    height: 40px;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 40px;
    color: #ffffff;
    text-decoration: none;
  }
  #is-old-recruit .news-box02 .pagenav li.previous a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border: 2px solid;
    border-radius: 2px;
    border-color: transparent transparent #fff #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .news-box02 .pagenav li.next a {
    position: relative;
    display: block;
    background: #20bc9b;
    box-sizing: border-box;
    padding: 0 30%;
    width: 100%;
    height: 40px;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 40px;
    color: #ffffff;
    text-decoration: none;
  }
  #is-old-recruit .news-box02 .pagenav li.next a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .news-box02 .pagenav li.back {
    display: block;
    max-width: 270px;
    width: 100%;
    margin: 0 auto;
  }
  #is-old-recruit .news-box02 .pagenav li.back a {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #20bc9b;
    box-sizing: border-box;
    padding: 0 50px;
    width: 100%;
    height: 50px;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 50px;
    color: #474747;
    text-decoration: none;
  }
  #is-old-recruit .news-box02 .pagenav li.back a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-radius: 2px;
    border-color: transparent #578cc9 #578cc9 transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .news-box02 .pagenav li.previous a:hover,
  #is-old-recruit .news-box02 .pagenav li.next a:hover,
  #is-old-recruit .news-box02 .pagenav li.back a:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  #is-old-recruit {
    /*//////////////////////////////////////////////////////// */
    /* 【CMS】お問い合わせ-------------*/
    /*//////////////////////////////////////////////////////// */
    /* contact-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .contact-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .contact-box01-in {
      background: #ffffff;
      width: 100%;
      box-sizing: border-box;
      padding: 45px 4% 90px 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .contact-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .contact-box01-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 45px 75px 90px 75px;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .contact-box01 .home-box01_btn-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .contact-box01 .home-box01_btn-01 {
      position: absolute;
      top: 210px;
      right: -180px;
    }
    #is-old-recruit .contact-box01 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .contact-box01 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .contact-box01 .tit-s1 {
      border: 2px solid #fb516d;
      border-radius: 15px;
      padding: 10px;
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 0 15px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .contact-box01 .tit-s1 {
      border: 2px solid #fb516d;
      border-radius: 15px;
      padding: 10px;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 -25px 15px -25px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      color: #fb516d;
      text-align: center;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .contact-box01 .txt-s1 a {
      color: #fb516d;
      text-decoration: none;
    }
    #is-old-recruit .contact-box01 .txt-s1 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 19px;
      font-size: clamp(19px, 2.5vw, 25px);
      color: #000000;
      margin: 0 0 0 10px;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      color: #fb516d;
      text-align: center;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .contact-box01 .txt-s1 a {
      color: #fb516d;
      text-decoration: none;
    }
    #is-old-recruit .contact-box01 .txt-s1 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 25px;
      font-size: clamp(19px, 2.5vw, 25px);
      color: #000000;
      margin: 0 0 0 10px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s2 {
      font-size: 14px;
      text-align: center;
      margin: 0 0 30px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s2 {
      font-size: 14px;
      text-align: center;
      margin: 0 0 30px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s3 {
      font-size: 14px;
      text-align: left;
      line-height: 2;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .contact-box01 .txt-s3 em {
      font-weight: bold;
      color: #ff0000;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s3 {
      font-size: 14px;
      text-align: left;
      line-height: 2;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .contact-box01 .txt-s3 em {
      font-weight: bold;
      color: #ff0000;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .contact-box01 .box-s1 {
      background: #f8f8f8;
      padding: 30px 4% 50px 4%;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .contact-box01 .box-s1 {
      background: #f8f8f8;
      padding: 30px 100px 50px 100px;
      margin: 0;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s4 {
      font-size: 14px;
      text-align: left;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .contact-box01 .txt-s4 em {
      color: #ff0000;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s4 {
      font-size: 14px;
      text-align: left;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .contact-box01 .txt-s4 em {
      color: #ff0000;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s4 label {
      display: block;
      font-size: 14px;
      margin: 10px 0;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s4 label {
      display: inline-block;
      font-size: 14px;
      margin: 10px 1em 10px 0;
    }
    #is-old-recruit .contact-box01 .txt-s4 > span {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0;
    }
    #is-old-recruit .contact-box01 .txt-s4 > span > span:nth-child(2) {
      flex: 1;
    }
    #is-old-recruit .contact-box01 .txt-s4 > span > span:nth-child(2) input.s1,
    #is-old-recruit .contact-box01 .txt-s4 > span > span:nth-child(2) textarea.s1 {
      margin: 10px 0;
    }
  }
  #is-old-recruit .contact-box01 input.s1,
  #is-old-recruit .contact-box01 input.s2,
  #is-old-recruit .contact-box01 input.s3,
  #is-old-recruit .contact-box01 input.s4,
  #is-old-recruit .contact-box01 input.s5,
  #is-old-recruit .contact-box01 input.s6,
  #is-old-recruit .contact-box01 textarea {
    width: 100%;
    min-height: 26px;
    box-sizing: border-box;
    padding: 0 10px;
    border: 1px solid #a4a4a4;
    font-size: 16px;
    margin: 5px 0 0 0;
  }
  #is-old-recruit .contact-box01 textarea {
    padding: 10px;
    height: 190px;
  }
  #is-old-recruit .contact-box01 textarea.s1 {
    height: 56px;
  }
  #is-old-recruit .contact-box01 input.s3 {
    max-width: 70px;
  }
  #is-old-recruit .contact-box01 input.s6 {
    max-width: 40%;
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .contact-box01 input.s1,
    #is-old-recruit .contact-box01 textarea {
      font-size: 14px;
    }
    #is-old-recruit .contact-box01 input.s2 {
      max-width: 405px;
      font-size: 14px;
    }
    #is-old-recruit .contact-box01 input.s3 {
      max-width: 70px;
      font-size: 14px;
    }
    #is-old-recruit .contact-box01 input.s4 {
      max-width: 185px;
      font-size: 14px;
    }
    #is-old-recruit .contact-box01 input.s5 {
      max-width: 436px;
      font-size: 14px;
    }
    #is-old-recruit .contact-box01 input.s6 {
      max-width: 150px;
      font-size: 14px;
    }
  }
  #is-old-recruit .contact-box01 ::placeholder {
    color: #a4a4a4;
  }
  #is-old-recruit .contact-box01 ::-ms-input-placeholder { /* 旧Edge対応 */
    color: #a4a4a4;
  }
  #is-old-recruit .contact-box01 :-ms-input-placeholder { /* IE対応 */
    color: #a4a4a4;
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .contact-box01 .tit-s2 {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 30px 0;
      overflow: hidden;
    }
    #is-old-recruit .contact-box01 .tit-s2 span {
      position: relative;
      display: inline-block;
      margin: 0;
      padding: 0 1em;
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .contact-box01 .tit-s2 span::before,
    #is-old-recruit .contact-box01 .tit-s2 span::after {
      position: absolute;
      top: 50%;
      content: "";
      width: 100%;
      height: 1px;
      background-color: #fb516d;
    }
    #is-old-recruit .contact-box01 .tit-s2 span::before {
      right: 100%;
    }
    #is-old-recruit .contact-box01 .tit-s2 span::after {
      left: 100%;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .contact-box01 .tit-s2 {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 30px 0;
      overflow: hidden;
    }
    #is-old-recruit .contact-box01 .tit-s2 span {
      position: relative;
      display: inline-block;
      margin: 0;
      padding: 0 1em;
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .contact-box01 .tit-s2 span::before,
    #is-old-recruit .contact-box01 .tit-s2 span::after {
      position: absolute;
      top: 50%;
      content: "";
      width: 100%;
      height: 1px;
      background-color: #fb516d;
    }
    #is-old-recruit .contact-box01 .tit-s2 span::before {
      right: 100%;
    }
    #is-old-recruit .contact-box01 .tit-s2 span::after {
      left: 100%;
    }
  }
  #is-old-recruit .contact-box01 .btn-s1,
  #is-old-recruit .contact-box01 .btn-s2,
  #is-old-recruit .contact-box01 .btn-s3 {
    display: block;
    border: solid 2px #fb516d;
    border-radius: 32px;
    padding: 2px;
    max-width: 428px;
    width: 100%;
    height: 70px;
    margin: 40px auto 20px auto;
  }
  #is-old-recruit .contact-box01 .btn-s2 {
    border: solid 2px #ff8fb7;
  }
  #is-old-recruit .contact-box01 .btn-s1 a,
  #is-old-recruit .contact-box01 .btn-s2 a,
  #is-old-recruit .contact-box01 .btn-s3 a {
    position: relative;
    display: block;
    font-size: 16px;
    font-size: clamp(14px, 1.6vw, 16px);
    letter-spacing: 2px;
    line-height: 70px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: #fb516d;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 30px;
  }
  #is-old-recruit .contact-box01 .btn-s2 a {
    background: #ff8fb7;
  }
  #is-old-recruit .contact-box01 .btn-s1 a::after,
  #is-old-recruit .contact-box01 .btn-s2 a::after,
  #is-old-recruit .contact-box01 .btn-s3 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .contact-box01 .btn-s2 a::after {
    right: inherit;
    left: 5%;
    border-color: transparent transparent #fff #fff;
  }
  #is-old-recruit .contact-box01 .btn-s1 a:hover,
  #is-old-recruit .contact-box01 .btn-s2 a:hover,
  #is-old-recruit .contact-box01 .btn-s3 a:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s5 {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 0 50px 0;
    }
    #is-old-recruit .contact-box01 .txt-s5 span {
      color: #fb516d;
      text-decoration: none;
      padding: 0 40px;
      cursor: pointer;
      position: relative;
    }
    #is-old-recruit .contact-box01 .txt-s5 span::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      margin: auto;
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background: #fb516d;
    }
    #is-old-recruit .contact-box01 .txt-s5 span::after {
      content: "";
      position: absolute;
      top: 3px;
      right: 5px;
      margin: auto;
      width: 5px;
      height: 5px;
      border: 2px solid;
      border-radius: 2px;
      border-color: transparent #fff #fff transparent;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    #is-old-recruit .contact-box01 .txt-s5 span:hover {
      opacity: 0.8;
      -ms-filter: "alpha(opacity=80)";
      -moz-opacity: 0.8;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s5 {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 0 50px 0;
    }
    #is-old-recruit .contact-box01 .txt-s5 span {
      color: #fb516d;
      text-decoration: none;
      padding: 0 40px;
      cursor: pointer;
      position: relative;
    }
    #is-old-recruit .contact-box01 .txt-s5 span::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      margin: auto;
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background: #fb516d;
    }
    #is-old-recruit .contact-box01 .txt-s5 span::after {
      content: "";
      position: absolute;
      top: 3px;
      right: 5px;
      margin: auto;
      width: 5px;
      height: 5px;
      border: 2px solid;
      border-radius: 2px;
      border-color: transparent #fff #fff transparent;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    #is-old-recruit .contact-box01 .txt-s5 span:hover {
      opacity: 0.8;
      -ms-filter: "alpha(opacity=80)";
      -moz-opacity: 0.8;
    }
  }
  #is-old-recruit .contact-box01 #slideBox {
    display: none;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    padding: 30px;
    background: #ffffff;
    margin: -40px 0 50px 0;
  }
  #is-old-recruit .contact-box01 #slideBox p {
    font-size: 14px;
    text-align: left;
    margin: 0 0 40px 0;
  }
  #is-old-recruit .contact-box01 #slideBox ol {
    counter-reset: item;
    list-style-type: none;
    margin: 0;
  }
  #is-old-recruit .contact-box01 #slideBox ol li {
    font-size: 14px;
    text-align: left;
    text-indent: -2.6em;
    margin: 0 0 30px 2.6em;
  }
  #is-old-recruit .contact-box01 #slideBox ol li:last-child {
    margin: 0 0 0 2.6em;
  }
  #is-old-recruit .contact-box01 #slideBox ol li:before {
    counter-increment: item;
    content: "［" counter(item) "］";
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s6 {
      font-size: 12px;
      text-align: left;
      line-height: 2;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .contact-box01 .txt-s6:last-of-type {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .contact-box01 .txt-s6 {
      font-size: 12px;
      text-align: left;
      line-height: 2;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .contact-box01 .txt-s6:last-of-type {
      margin: 0;
    }
  }
  #is-old-recruit {
    /*//////////////////////////////////////////////////////// */
    /* 働くを知る ワーキングスタイル-------------*/
    /*//////////////////////////////////////////////////////// */
    /* ws-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .ws-box01-in {
      background: #ffffff;
      width: 100%;
      box-sizing: border-box;
      padding: 45px 4% 40px 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .ws-box01-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 45px 0 40px 0;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .home-box01_btn-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .home-box01_btn-01 {
      position: absolute;
      z-index: 2;
      top: 210px;
      right: -180px;
    }
    #is-old-recruit .ws-box01 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .ws-box01 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .txt-s1 {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 0 35px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .txt-s1 {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 0 35px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .box-s1 {
      position: relative;
      padding: 0 0 60px 0;
      margin: 0 0 60px 0;
    }
    #is-old-recruit .ws-box01 .box-s1::after {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      margin: auto;
      display: block;
      width: 150px;
      height: 100%;
      background: #ffecf2;
    }
    #is-old-recruit .ws-box01 .box-s1::before {
      content: "";
      position: absolute;
      z-index: 1;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      margin: auto;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 75px 110px 0 110px;
      border-color: #ffecf2 transparent transparent transparent;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .box-s1 {
      position: relative;
      margin: 0 0 60px 0;
    }
    #is-old-recruit .ws-box01 .box-s1::after {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      margin: auto;
      display: block;
      width: 150px;
      height: 100%;
      background: #ffecf2;
    }
    #is-old-recruit .ws-box01 .box-s1::before {
      content: "";
      position: absolute;
      z-index: 1;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      margin: auto;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 75px 110px 0 110px;
      border-color: #ffecf2 transparent transparent transparent;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .box-s2 {
      position: relative;
      z-index: 1;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 15px 15px 30px 15px;
      border-radius: 30px;
      background: #ffecf2;
      margin: 0 0 40px 0;
    }
    #is-old-recruit .ws-box01 .box-s2 > div {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .box-s2 {
      position: relative;
      z-index: 1;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 15px 15px 30px 15px;
      border-radius: 30px;
      background: #ffecf2;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 40px 0;
    }
    #is-old-recruit .ws-box01 .box-s2 > div {
      margin: 0;
    }
    #is-old-recruit .ws-box01 .box-s2 > div:nth-child(1) {
      margin: 0 65px 0 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_tit-01 {
      text-align: center;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .ws-box01 .ws-box01_tit-01 img {
      max-width: 259px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_tit-01 {
      text-align: left;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .ws-box01 .ws-box01_tit-01 img {
      max-width: 259px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .txt-s2 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      text-align: center;
      margin: 0 0 0 15px;
    }
    #is-old-recruit .ws-box01 .txt-s2 span.s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 34px;
      font-size: clamp(34px, 4vw, 40px);
      line-height: 1;
    }
    #is-old-recruit .ws-box01 .txt-s2 span.s2 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      color: #fb516d;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .txt-s2 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      text-align: left;
      margin: 0 0 0 15px;
    }
    #is-old-recruit .ws-box01 .txt-s2 span.s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 40px;
      font-size: clamp(34px, 4vw, 40px);
      line-height: 1;
    }
    #is-old-recruit .ws-box01 .txt-s2 span.s2 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      color: #fb516d;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-01 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-01 img {
      max-width: 519px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-01 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-01 img {
      max-width: 519px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .box-s3 {
      position: relative;
      z-index: 1;
      margin: 0;
    }
    #is-old-recruit .ws-box01 .box-s3 > div {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .box-s3 {
      position: relative;
      z-index: 1;
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -90px;
    }
    #is-old-recruit .ws-box01 .box-s3 > div {
      flex-basis: calc(50% - 90px);
      max-width: calc(50% - 90px);
      margin: 0 0 0 90px;
    }
    #is-old-recruit .ws-box01 .box-s3.s1 > div:nth-child(1) {
      order: 1;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .tit-s1 {
      background: url("../../recruit/shared/images/ws-box01_bg-01.png") 0 0 no-repeat;
      background-size: 99px 75px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 75px;
      box-sizing: border-box;
      padding: 25px 0 0 55px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(24px, 3vw, 30px);
      color: #fb516d;
      text-align: left;
      margin: 0 0 10px 0;
      position: relative;
    }
    #is-old-recruit .ws-box01 .tit-s1 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      line-height: 1;
      position: relative;
    }
    #is-old-recruit .ws-box01 .tit-s1 span.s1::after {
      content: "";
      position: absolute;
      top: -44px;
      right: -111px;
      margin: auto;
      width: 90px;
      height: 83px;
      background: url("../../recruit/shared/images/ws-box01_bg-06.png") 0 0 no-repeat;
      background-size: contain;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .tit-s1 {
      background: url("../../recruit/shared/images/ws-box01_bg-01.png") 0 0 no-repeat;
      background-size: 99px 75px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 75px;
      box-sizing: border-box;
      padding: 25px 0 0 55px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(24px, 3vw, 30px);
      color: #fb516d;
      text-align: left;
      margin: 0 0 10px 20px;
    }
    #is-old-recruit .ws-box01 .tit-s1.s1 {
      margin: 0 0 10px -45px;
    }
    #is-old-recruit .ws-box01 .tit-s1 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      line-height: 1;
      position: relative;
    }
    #is-old-recruit .ws-box01 .tit-s1 span.s1::after {
      content: "";
      position: absolute;
      top: -34px;
      right: -111px;
      margin: auto;
      width: 90px;
      height: 83px;
      background: url("../../recruit/shared/images/ws-box01_bg-06.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .ws-box01 .tit-s1 span.s2::after {
      content: "";
      position: absolute;
      top: -40px;
      right: -100px;
      margin: auto;
      width: 74px;
      height: 81px;
      background: url("../../recruit/shared/images/ws-box01_bg-07.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .ws-box01 .tit-s1 span.s3::after {
      content: "";
      position: absolute;
      top: -20px;
      right: -115px;
      margin: auto;
      width: 87px;
      height: 60px;
      background: url("../../recruit/shared/images/ws-box01_bg-08.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .ws-box01 .tit-s1 span.s4::after {
      content: "";
      position: absolute;
      top: -35px;
      right: -180px;
      margin: auto;
      width: 109px;
      height: 85px;
      background: url("../../recruit/shared/images/ws-box01_bg-09.png") 0 0 no-repeat;
      background-size: contain;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .txt-s3 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 25px 50px;
    }
    #is-old-recruit .ws-box01 .txt-s3.s2 {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .txt-s3 {
      max-width: 380px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 25px 70px;
    }
    #is-old-recruit .ws-box01 .txt-s3.s1 {
      margin: 0 0 25px 0;
    }
    #is-old-recruit .ws-box01 .txt-s3.s2 {
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-02 {
      text-align: center;
      margin: 0 0 50px 0;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-02 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #ffbdd0;
      border-radius: 15px;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-02 {
      text-align: left;
      margin: 25px 0 0 0;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-02 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #ffbdd0;
      border-radius: 15px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-03 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: center;
      margin: 0 auto 50px auto;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-03 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #ffbdd0;
      border-radius: 15px;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      opacity: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-03 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: left;
      margin: 117px 0 0 40px;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-03 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #ffbdd0;
      border-radius: 15px;
      position: absolute;
      opacity: 0;
    }
  }
  #is-old-recruit .ws-box01 .ws-box01_img-03 img,
  #is-old-recruit .ws-box01 .ws-box01_img-05 img,
  #is-old-recruit .ws-box01 .ws-box01_img-06 img {
    animation: change-img-anim 10s infinite;
  }
  #is-old-recruit .ws-box01 .ws-box01_img-03 img:nth-of-type(1),
  #is-old-recruit .ws-box01 .ws-box01_img-05 img:nth-of-type(1),
  #is-old-recruit .ws-box01 .ws-box01_img-06 img:nth-of-type(1) {
    animation-delay: 0s;
  }
  #is-old-recruit .ws-box01 .ws-box01_img-03 img:nth-of-type(2),
  #is-old-recruit .ws-box01 .ws-box01_img-05 img:nth-of-type(2),
  #is-old-recruit .ws-box01 .ws-box01_img-06 img:nth-of-type(2) {
    animation-delay: 5s;
  }
  @keyframes change-img-anim {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    75% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .lis-s1 {
      position: relative;
      z-index: 1;
      max-width: 695px;
      margin: 0 auto 30px auto;
    }
    #is-old-recruit .ws-box01 .lis-s1 li {
      position: relative;
      padding: 0 0 45px 0;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .ws-box01 .lis-s1 li.s1 {
      background: url("../../recruit/shared/images/ws-box01_bg-02.png") center bottom no-repeat;
      background-size: 126px 117px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 117px;
      box-sizing: border-box;
      padding: 0 0 162px 0; /*117+45*/
    }
    #is-old-recruit .ws-box01 .lis-s1 li.s3 {
      background: url("../../recruit/shared/images/ws-box01_bg-03.png") center bottom no-repeat;
      background-size: 153px 119px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 119px;
      box-sizing: border-box;
      padding: 0 0 164px 0; /*119+45*/
    }
    #is-old-recruit .ws-box01 .lis-s1 li.s5 {
      background: url("../../recruit/shared/images/ws-box01_bg-04.png") center bottom no-repeat;
      background-size: 124px 118px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 118px;
      box-sizing: border-box;
      padding: 0 0 163px 0; /*118+45*/
    }
    #is-old-recruit .ws-box01 .lis-s1 li div {
      max-width: 500px;
      box-sizing: border-box;
      background: #9ce0c9;
      border-radius: 20px;
      padding: 25px;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .ws-box01 .lis-s1 li div::before {
      content: "";
      position: absolute;
      bottom: -45px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      border: 15px solid transparent;
      border-top: 30px solid #9ce0c9;
    }
    #is-old-recruit .ws-box01 .lis-s1 li.s2 div,
    #is-old-recruit .ws-box01 .lis-s1 li.s4 div {
      background: #f2f2f2;
    }
    #is-old-recruit .ws-box01 .lis-s1 li.s2 div::before,
    #is-old-recruit .ws-box01 .lis-s1 li.s4 div::before {
      border: 15px solid transparent;
      border-top: 30px solid #f2f2f2;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .lis-s1 {
      position: relative;
      z-index: 1;
      max-width: 695px;
      margin: 0 auto 30px auto;
    }
    #is-old-recruit .ws-box01 .lis-s1 li {
      position: relative;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .ws-box01 .lis-s1 li.s1 {
      background: url("../../recruit/shared/images/ws-box01_bg-02.png") 13px 0 no-repeat;
      background-size: 126px 117px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 117px;
      box-sizing: border-box;
      padding: 20px 0 0 0;
    }
    #is-old-recruit .ws-box01 .lis-s1 li.s3 {
      background: url("../../recruit/shared/images/ws-box01_bg-03.png") 0 bottom no-repeat;
      background-size: 153px 119px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 119px;
      box-sizing: border-box;
      padding: 0 0 10px 0;
    }
    #is-old-recruit .ws-box01 .lis-s1 li.s5 {
      background: url("../../recruit/shared/images/ws-box01_bg-04.png") 15px 0 no-repeat;
      background-size: 124px 118px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 118px;
      box-sizing: border-box;
    }
    #is-old-recruit .ws-box01 .lis-s1 li div {
      max-width: 500px;
      box-sizing: border-box;
      background: #9ce0c9;
      border-radius: 20px;
      padding: 25px;
      margin: 0 0 0 195px;
      position: relative;
    }
    #is-old-recruit .ws-box01 .lis-s1 li div::before {
      content: "";
      position: absolute;
      top: 35%;
      left: -45px;
      border: 15px solid transparent;
      border-right: 30px solid #9ce0c9;
    }
    #is-old-recruit .ws-box01 .lis-s1 li.s2 div,
    #is-old-recruit .ws-box01 .lis-s1 li.s4 div {
      background: #f2f2f2;
      margin: 0 100px 0 95px;
    }
    #is-old-recruit .ws-box01 .lis-s1 li.s2 div::before,
    #is-old-recruit .ws-box01 .lis-s1 li.s4 div::before {
      content: "";
      position: absolute;
      top: 35%;
      left: 100%;
      border: 15px solid transparent;
      border-left: 30px solid #f2f2f2;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .txt-s4 {
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      text-align: left;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .txt-s4 {
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      text-align: left;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-04 {
      position: relative;
      z-index: 1;
      max-width: 519px;
      margin: 0 auto 30px auto;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-04::before {
      content: "";
      position: absolute;
      top: 30px;
      left: -207px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box01_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-04::after {
      content: "";
      position: absolute;
      top: 30px;
      right: -190px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box01_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      transform: scale(-1, 1);
    }
    #is-old-recruit .ws-box01 .ws-box01_img-04 img {
      max-width: 519px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-04 {
      position: relative;
      z-index: 1;
      max-width: 519px;
      margin: 0 auto 30px auto;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-04::before {
      content: "";
      position: absolute;
      top: 30px;
      left: -207px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box01_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-04::after {
      content: "";
      position: absolute;
      top: 30px;
      right: -190px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box01_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      transform: scale(-1, 1);
    }
    #is-old-recruit .ws-box01 .ws-box01_img-04 img {
      max-width: 519px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-05 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: center;
      margin: 0 auto 50px auto;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-05 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #ffbdd0;
      border-radius: 15px;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      opacity: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-05 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: left;
      margin: 60px 0 0 0;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-05 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #ffbdd0;
      border-radius: 15px;
      position: absolute;
      opacity: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-06 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: center;
      margin: 0 auto 25px auto;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-06 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #ffbdd0;
      border-radius: 15px;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      opacity: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-06 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: left;
      margin: 65px 0 0 40px;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-06 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #ffbdd0;
      border-radius: 15px;
      position: absolute;
      opacity: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-07 {
      position: relative;
      z-index: 1;
      max-width: 519px;
      margin: 0 auto 60px auto;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-07::before {
      content: "";
      position: absolute;
      top: 30px;
      left: -207px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box01_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-07::after {
      content: "";
      position: absolute;
      top: 30px;
      right: -190px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box01_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      transform: scale(-1, 1);
    }
    #is-old-recruit .ws-box01 .ws-box01_img-07 img {
      max-width: 519px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-07 {
      position: relative;
      z-index: 1;
      max-width: 519px;
      margin: 0 auto 60px auto;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-07::before {
      content: "";
      position: absolute;
      top: 30px;
      left: -207px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box01_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-07::after {
      content: "";
      position: absolute;
      top: 30px;
      right: -190px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box01_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      transform: scale(-1, 1);
    }
    #is-old-recruit .ws-box01 .ws-box01_img-07 img {
      max-width: 519px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .box-s4 {
      position: relative;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 60px 4% 45px 4%;
      border-radius: 30px;
      background: #ffecf2;
      margin: 0;
    }
    #is-old-recruit .ws-box01 .box-s4 > div {
      margin: 0;
    }
    #is-old-recruit .ws-box01 .box-s4 > div:nth-child(1) {
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .box-s4 {
      position: relative;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 60px 70px 45px 70px;
      border-radius: 30px;
      background: #ffecf2;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0;
    }
    #is-old-recruit .ws-box01 .box-s4 > div {
      margin: 0;
    }
    #is-old-recruit .ws-box01 .box-s4 > div:nth-child(1) {
      margin: 0 55px 0 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_tit-02 {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      margin: 0;
    }
    #is-old-recruit .ws-box01 .ws-box01_tit-02 img {
      max-width: 253px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_tit-02 {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      margin: 0;
    }
    #is-old-recruit .ws-box01 .ws-box01_tit-02 img {
      max-width: 253px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .txt-s5 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      line-height: 1.8;
      margin: 0;
    }
    #is-old-recruit .ws-box01 .txt-s5 span {
      font-size: 18px;
      font-size: clamp(18px, 2.4vw, 24px);
      font-weight: bold;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .txt-s5 {
      max-width: 500px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      line-height: 1.8;
      margin: 0;
    }
    #is-old-recruit .ws-box01 .txt-s5 span {
      font-size: 24px;
      font-size: clamp(18px, 2.4vw, 24px);
      font-weight: bold;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-08 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-08 img {
      max-width: 315px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box01 .ws-box01_img-08 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .ws-box01 .ws-box01_img-08 img {
      max-width: 315px;
      width: 100%;
      height: auto;
    }
  }
  #is-old-recruit {
    /* ws-box02--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0 0 45px 0;
      position: relative;
    }
    #is-old-recruit .ws-box02-in {
      background: #ffffff;
      width: 100%;
      box-sizing: border-box;
      padding: 40px 4% 0 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0 0 45px 0;
      position: relative;
    }
    #is-old-recruit .ws-box02-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 40px 0 0 0;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .box-s1 {
      position: relative;
      padding: 0 0 60px 0;
      margin: 0 0 60px 0;
    }
    #is-old-recruit .ws-box02 .box-s1::after {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      margin: auto;
      display: block;
      width: 150px;
      height: 100%;
      background: #dff5ee;
    }
    #is-old-recruit .ws-box02 .box-s1::before {
      content: "";
      position: absolute;
      z-index: 1;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      margin: auto;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 75px 110px 0 110px;
      border-color: #dff5ee transparent transparent transparent;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .box-s1 {
      position: relative;
      margin: 0 0 60px 0;
    }
    #is-old-recruit .ws-box02 .box-s1::after {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      margin: auto;
      display: block;
      width: 150px;
      height: 100%;
      background: #dff5ee;
    }
    #is-old-recruit .ws-box02 .box-s1::before {
      content: "";
      position: absolute;
      z-index: 1;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      margin: auto;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 75px 110px 0 110px;
      border-color: #dff5ee transparent transparent transparent;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .box-s2 {
      position: relative;
      z-index: 1;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 15px 15px 30px 15px;
      border-radius: 30px;
      background: #dff5ee;
      margin: 0 0 40px 0;
    }
    #is-old-recruit .ws-box02 .box-s2 > div {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .box-s2 {
      position: relative;
      z-index: 1;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 15px 15px 30px 15px;
      border-radius: 30px;
      background: #dff5ee;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 40px 0;
    }
    #is-old-recruit .ws-box02 .box-s2 > div {
      margin: 0;
    }
    #is-old-recruit .ws-box02 .box-s2 > div:nth-child(1) {
      margin: 0 65px 0 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_tit-01 {
      text-align: center;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .ws-box02 .ws-box02_tit-01 img {
      max-width: 273px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_tit-01 {
      text-align: left;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .ws-box02 .ws-box02_tit-01 img {
      max-width: 273px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .txt-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      color: #fb516d;
      text-align: center;
      margin: 0 0 0 15px;
    }
    #is-old-recruit .ws-box02 .txt-s1 span.s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 34px;
      font-size: clamp(34px, 4vw, 40px);
      line-height: 1;
      color: #000000;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .txt-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      color: #fb516d;
      text-align: left;
      margin: 0 0 0 15px;
    }
    #is-old-recruit .ws-box02 .txt-s1 span.s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 40px;
      font-size: clamp(34px, 4vw, 40px);
      line-height: 1;
      color: #000000;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-01 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-01 img {
      max-width: 519px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-01 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-01 img {
      max-width: 519px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .box-s3 {
      position: relative;
      z-index: 1;
      margin: 0;
    }
    #is-old-recruit .ws-box02 .box-s3 > div {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .box-s3 {
      position: relative;
      z-index: 1;
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -90px;
    }
    #is-old-recruit .ws-box02 .box-s3 > div {
      flex-basis: calc(50% - 90px);
      max-width: calc(50% - 90px);
      margin: 0 0 0 90px;
    }
    #is-old-recruit .ws-box02 .box-s3.s1 > div:nth-child(1) {
      order: 1;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .tit-s1 {
      background: url("../../recruit/shared/images/ws-box02_bg-01.png") 0 0 no-repeat;
      background-size: 99px 75px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 75px;
      box-sizing: border-box;
      padding: 25px 0 0 55px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(24px, 3vw, 30px);
      color: #00b597;
      text-align: left;
      margin: 0 0 10px 0;
      position: relative;
    }
    #is-old-recruit .ws-box02 .tit-s1 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      line-height: 1;
      position: relative;
    }
    #is-old-recruit .ws-box02 .tit-s1 span.s1::after {
      content: "";
      position: absolute;
      top: -44px;
      right: -111px;
      margin: auto;
      width: 90px;
      height: 83px;
      background: url("../../recruit/shared/images/ws-box02_bg-06.png") 0 0 no-repeat;
      background-size: contain;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .tit-s1 {
      background: url("../../recruit/shared/images/ws-box02_bg-01.png") 0 0 no-repeat;
      background-size: 99px 75px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 75px;
      box-sizing: border-box;
      padding: 25px 0 0 55px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(24px, 3vw, 30px);
      color: #00b597;
      text-align: left;
      margin: 0 0 10px 20px;
    }
    #is-old-recruit .ws-box02 .tit-s1.s1 {
      margin: 0 0 10px -45px;
    }
    #is-old-recruit .ws-box02 .tit-s1 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      line-height: 1;
      position: relative;
    }
    #is-old-recruit .ws-box02 .tit-s1 span.s1::after {
      content: "";
      position: absolute;
      top: -34px;
      right: -111px;
      margin: auto;
      width: 90px;
      height: 83px;
      background: url("../../recruit/shared/images/ws-box02_bg-06.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .ws-box02 .tit-s1 span.s2::after {
      content: "";
      position: absolute;
      top: -40px;
      right: -100px;
      margin: auto;
      width: 74px;
      height: 81px;
      background: url("../../recruit/shared/images/ws-box02_bg-07.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .ws-box02 .tit-s1 span.s3::after {
      content: "";
      position: absolute;
      top: -20px;
      right: -115px;
      margin: auto;
      width: 87px;
      height: 60px;
      background: url("../../recruit/shared/images/ws-box02_bg-08.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .ws-box02 .tit-s1 span.s4::after {
      content: "";
      position: absolute;
      top: -35px;
      right: -180px;
      margin: auto;
      width: 109px;
      height: 85px;
      background: url("../../recruit/shared/images/ws-box02_bg-09.png") 0 0 no-repeat;
      background-size: contain;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .txt-s2 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 25px 50px;
    }
    #is-old-recruit .ws-box02 .txt-s2.s2 {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .txt-s2 {
      max-width: 380px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 25px 70px;
    }
    #is-old-recruit .ws-box02 .txt-s2.s1 {
      margin: 0 0 25px 0;
    }
    #is-old-recruit .ws-box02 .txt-s2.s2 {
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-02 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: center;
      margin: 0 auto 50px auto;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-02 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #9ce0c9;
      border-radius: 15px;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      opacity: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-02 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: left;
      margin: 25px 0 0 0;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-02 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #9ce0c9;
      border-radius: 15px;
      position: absolute;
      opacity: 0;
    }
  }
  #is-old-recruit .ws-box02 .ws-box02_img-02 img,
  #is-old-recruit .ws-box02 .ws-box02_img-03 img,
  #is-old-recruit .ws-box02 .ws-box02_img-05 img,
  #is-old-recruit .ws-box02 .ws-box02_img-06 img {
    animation: change-img-anim 10s infinite;
  }
  #is-old-recruit .ws-box02 .ws-box02_img-02 img:nth-of-type(1),
  #is-old-recruit .ws-box02 .ws-box02_img-03 img:nth-of-type(1),
  #is-old-recruit .ws-box02 .ws-box02_img-05 img:nth-of-type(1),
  #is-old-recruit .ws-box02 .ws-box02_img-06 img:nth-of-type(1) {
    animation-delay: 0s;
  }
  #is-old-recruit .ws-box02 .ws-box02_img-02 img:nth-of-type(2),
  #is-old-recruit .ws-box02 .ws-box02_img-03 img:nth-of-type(2),
  #is-old-recruit .ws-box02 .ws-box02_img-05 img:nth-of-type(2),
  #is-old-recruit .ws-box02 .ws-box02_img-06 img:nth-of-type(2) {
    animation-delay: 5s;
  }
  @keyframes change-img-anim {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    75% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-03 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: center;
      margin: 0 auto 50px auto;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-03 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #9ce0c9;
      border-radius: 15px;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      opacity: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-03 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: left;
      margin: 25px 0 0 40px;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-03 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #9ce0c9;
      border-radius: 15px;
      position: absolute;
      opacity: 0;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .ws-box02 .lis-s1 {
      position: relative;
      z-index: 1;
      max-width: 695px;
      margin: 0 auto 30px auto;
    }
    #is-old-recruit .ws-box02 .lis-s1 li {
      position: relative;
      padding: 0 0 45px 0;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .ws-box02 .lis-s1 li.s2 {
      background: url("../../recruit/shared/images/ws-box02_bg-02.png") center bottom no-repeat;
      background-size: 143px 105px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 105px;
      box-sizing: border-box;
      padding: 0 0 150px 0; /*105+45*/
    }
    #is-old-recruit .ws-box02 .lis-s1 li.s3 {
      background: url("../../recruit/shared/images/ws-box02_bg-03.png") center bottom no-repeat;
      background-size: 84px 103px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 103px;
      box-sizing: border-box;
      padding: 0 0 148px 0; /*103+45*/
    }
    #is-old-recruit .ws-box02 .lis-s1 li.s5 {
      background: url("../../recruit/shared/images/ws-box02_bg-04.png") center bottom no-repeat;
      background-size: 101px 141px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 141px;
      box-sizing: border-box;
      padding: 0 0 186px 0; /*141+45*/
    }
    #is-old-recruit .ws-box02 .lis-s1 li div {
      max-width: 500px;
      box-sizing: border-box;
      background: #fcce8d;
      border-radius: 20px;
      padding: 25px;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .ws-box02 .lis-s1 li div::before {
      content: "";
      position: absolute;
      bottom: -45px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      border: 15px solid transparent;
      border-top: 30px solid #fcce8d;
    }
    #is-old-recruit .ws-box02 .lis-s1 li.s1 div,
    #is-old-recruit .ws-box02 .lis-s1 li.s4 div {
      background: #f2f2f2;
    }
    #is-old-recruit .ws-box02 .lis-s1 li.s1 div::before,
    #is-old-recruit .ws-box02 .lis-s1 li.s4 div::before {
      border: 15px solid transparent;
      border-top: 30px solid #f2f2f2;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*PC・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .lis-s1 {
      position: relative;
      z-index: 1;
      max-width: 695px;
      margin: 0 auto 30px auto;
    }
    #is-old-recruit .ws-box02 .lis-s1 li {
      position: relative;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .ws-box02 .lis-s1 li.s2 {
      background: url("../../recruit/shared/images/ws-box02_bg-02.png") 0 40px no-repeat;
      background-size: 143px 105px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 105px;
      box-sizing: border-box;
    }
    #is-old-recruit .ws-box02 .lis-s1 li.s3 {
      background: url("../../recruit/shared/images/ws-box02_bg-03.png") 35px 0 no-repeat;
      background-size: 84px 103px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 103px;
      box-sizing: border-box;
    }
    #is-old-recruit .ws-box02 .lis-s1 li.s5 {
      background: url("../../recruit/shared/images/ws-box02_bg-04.png") 25px bottom no-repeat;
      background-size: 101px 141px;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      min-height: 141px;
      box-sizing: border-box;
      padding: 33px 0 8px 0;
      margin: -20px 0 15px 0;
    }
    #is-old-recruit .ws-box02 .lis-s1 li div {
      max-width: 500px;
      box-sizing: border-box;
      background: #fcce8d;
      border-radius: 20px;
      padding: 25px;
      margin: 0 0 0 195px;
      position: relative;
    }
    #is-old-recruit .ws-box02 .lis-s1 li div::before {
      content: "";
      position: absolute;
      top: 35%;
      left: -45px;
      border: 15px solid transparent;
      border-right: 30px solid #fcce8d;
    }
    #is-old-recruit .ws-box02 .lis-s1 li.s1 div,
    #is-old-recruit .ws-box02 .lis-s1 li.s4 div {
      background: #f2f2f2;
      margin: 0 100px 0 95px;
    }
    #is-old-recruit .ws-box02 .lis-s1 li.s1 div::before,
    #is-old-recruit .ws-box02 .lis-s1 li.s4 div::before {
      content: "";
      position: absolute;
      top: 35%;
      left: 100%;
      border: 15px solid transparent;
      border-left: 30px solid #f2f2f2;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .txt-s3 {
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      text-align: left;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .txt-s3 {
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      text-align: left;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-04 {
      position: relative;
      z-index: 1;
      max-width: 519px;
      margin: 0 auto 30px auto;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-04::before {
      content: "";
      position: absolute;
      top: 30px;
      left: -207px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box02_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-04::after {
      content: "";
      position: absolute;
      top: 30px;
      right: -190px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box02_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      transform: scale(-1, 1);
    }
    #is-old-recruit .ws-box02 .ws-box02_img-04 img {
      max-width: 519px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-04 {
      position: relative;
      z-index: 1;
      max-width: 519px;
      margin: 0 auto 30px auto;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-04::before {
      content: "";
      position: absolute;
      top: 30px;
      left: -207px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box02_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-04::after {
      content: "";
      position: absolute;
      top: 30px;
      right: -190px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box02_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      transform: scale(-1, 1);
    }
    #is-old-recruit .ws-box02 .ws-box02_img-04 img {
      max-width: 519px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-05 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: center;
      margin: 0 auto 50px auto;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-05 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #9ce0c9;
      border-radius: 15px;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      opacity: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-05 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: left;
      margin: 60px 0 0 0;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-05 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #9ce0c9;
      border-radius: 15px;
      position: absolute;
      opacity: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-06 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: center;
      margin: 0 auto 25px auto;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-06 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #9ce0c9;
      border-radius: 15px;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      opacity: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-06 {
      position: relative;
      max-width: 381px;
      width: 100%;
      height: 241px;
      text-align: left;
      margin: 65px 0 0 40px;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-06 img {
      max-width: 381px;
      width: 100%;
      height: auto;
      box-shadow: 25px 25px 0 0 #9ce0c9;
      border-radius: 15px;
      position: absolute;
      opacity: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-07 {
      position: relative;
      z-index: 1;
      max-width: 519px;
      margin: 0 auto 60px auto;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-07::before {
      content: "";
      position: absolute;
      top: 30px;
      left: -207px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box02_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-07::after {
      content: "";
      position: absolute;
      top: 30px;
      right: -190px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box02_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      transform: scale(-1, 1);
    }
    #is-old-recruit .ws-box02 .ws-box02_img-07 img {
      max-width: 519px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-07 {
      position: relative;
      z-index: 1;
      max-width: 519px;
      margin: 0 auto 60px auto;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-07::before {
      content: "";
      position: absolute;
      top: 30px;
      left: -207px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box02_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-07::after {
      content: "";
      position: absolute;
      top: 30px;
      right: -190px;
      display: block;
      width: 170px;
      height: 172px;
      background: url("../../recruit/shared/images/ws-box02_bg-05.png") 0 bottom no-repeat;
      background-size: contain;
      image-rendering: -webkit-optimize-contrast; /*Chrome*/
      transform: scale(-1, 1);
    }
    #is-old-recruit .ws-box02 .ws-box02_img-07 img {
      max-width: 519px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .box-s4 {
      position: relative;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 60px 4% 45px 4%;
      border-radius: 30px;
      background: #dff5ee;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .ws-box02 .box-s4 > div {
      margin: 0;
    }
    #is-old-recruit .ws-box02 .box-s4 > div:nth-child(1) {
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .box-s4 {
      position: relative;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 60px 70px 45px 70px;
      border-radius: 30px;
      background: #dff5ee;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .ws-box02 .box-s4 > div {
      margin: 0;
    }
    #is-old-recruit .ws-box02 .box-s4 > div:nth-child(1) {
      margin: 0 55px 0 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_tit-02 {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      margin: 0;
    }
    #is-old-recruit .ws-box02 .ws-box02_tit-02 img {
      max-width: 253px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_tit-02 {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      margin: 0;
    }
    #is-old-recruit .ws-box02 .ws-box02_tit-02 img {
      max-width: 253px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .txt-s5 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      line-height: 1.8;
      margin: 0;
    }
    #is-old-recruit .ws-box02 .txt-s5 span {
      font-size: 18px;
      font-size: clamp(18px, 2.4vw, 24px);
      font-weight: bold;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .txt-s5 {
      max-width: 500px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      line-height: 1.8;
      margin: 0;
    }
    #is-old-recruit .ws-box02 .txt-s5 span {
      font-size: 24px;
      font-size: clamp(18px, 2.4vw, 24px);
      font-weight: bold;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-08 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-08 img {
      max-width: 304px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-08 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-08 img {
      max-width: 304px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-09 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-09 img {
      max-width: 577px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .ws-box02_img-09 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .ws-box02 .ws-box02_img-09 img {
      max-width: 577px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .ws-box02 .txt-s6 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 24px;
      font-size: clamp(24px, 3vw, 30px);
      line-height: 1.4;
      color: #fb516d;
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .ws-box02 .txt-s6 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(24px, 3vw, 30px);
      line-height: 1.4;
      color: #fb516d;
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  #is-old-recruit .ws-box02 .btn-s1 {
    display: block;
    border: solid 2px #fb516d;
    border-radius: 32px;
    padding: 2px;
    max-width: 460px;
    width: 100%;
    height: 70px;
    margin: 0 auto 20px auto;
  }
  #is-old-recruit .ws-box02 .btn-s1 a {
    position: relative;
    display: block;
    font-size: 16px;
    font-size: clamp(14px, 1.6vw, 16px);
    letter-spacing: 2px;
    line-height: 70px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: #fb516d;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 30px;
  }
  #is-old-recruit .ws-box02 .btn-s1 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .ws-box02 .btn-s1 a:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  #is-old-recruit {
    /*//////////////////////////////////////////////////////// */
    /* 若草会を知る-------------*/
    /*//////////////////////////////////////////////////////// */
    /* about-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .about-box01-in {
      background: #ffffff;
      width: 100%;
      box-sizing: border-box;
      padding: 45px 4% 70px 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
      padding-block: 30px 60px;
      background-color: #FFFDFB;
    }
    #is-old-recruit .about-box01-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 45px 75px 70px 75px;
      margin: 0 auto;
      position: relative;
      text-align: center;
      border-radius: 30px;
      box-shadow: 0 4px 24px rgba(58, 49, 35, 0.05);
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .home-box01_btn-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .home-box01_btn-01 {
      position: absolute;
      top: 210px;
      right: -180px;
    }
    #is-old-recruit .about-box01 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .about-box01 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .tit-s1 {
      border: 2px solid #ea932a;
      border-radius: 15px;
      padding: 10px;
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      color: #ea932a;
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .tit-s1 {
      border: 2px solid #ea932a;
      border-radius: 15px;
      padding: 10px;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      color: #ea932a;
      text-align: center;
      margin: 0 -25px 20px -25px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .box-s1 {
      max-width: 534px;
      min-height: 203px;
      box-sizing: border-box;
      padding: 40px 0 5px 0;
      background: url("../../recruit/shared/images/about-box01_bg-01.png") center center no-repeat;
      background-size: contain;
      margin: 0 auto 55px auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .box-s1 {
      max-width: 534px;
      min-height: 203px;
      box-sizing: border-box;
      padding: 40px 0 5px 0;
      background: url("../../recruit/shared/images/about-box01_bg-01.png") center center no-repeat;
      background-size: contain;
      margin: 0 auto 55px auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .txt-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .about-box01 .txt-s1 span {
      font-size: 34px;
      font-size: clamp(34px, 4vw, 40px);
      line-height: 1;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .txt-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .about-box01 .txt-s1 span {
      font-size: 40px;
      font-size: clamp(34px, 4vw, 40px);
      line-height: 1;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .txt-s2 {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #ea932a;
      text-align: center;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .txt-s2 {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #ea932a;
      text-align: center;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .txt-s3 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 55px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .txt-s3 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 55px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .box-s2 {
      margin: 0 0 50px 0;
    }
    #is-old-recruit .about-box01 .box-s2 > div {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .box-s2 {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 50px 0;
    }
    #is-old-recruit .about-box01 .box-s2 > div {
      flex-basis: 50%;
      max-width: 50%;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .about-box01_img-01 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .about-box01 .about-box01_img-01 img {
      max-width: 449px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .about-box01_img-01 {
      text-align: left;
      margin: 0 -25px 0 0;
    }
    #is-old-recruit .about-box01 .about-box01_img-01 img {
      max-width: 449px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .txt-s4 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 20px 0 0 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .txt-s4 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 15px 0 0 40px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .txt-s5 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 70px 0;
    }
    #is-old-recruit .about-box01 .txt-s5 span {
      font-size: 21px;
      font-size: clamp(19px, 2.1vw, 21px);
      font-weight: bold;
      color: #ea932a;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .txt-s5 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 70px 0;
    }
    #is-old-recruit .about-box01 .txt-s5 span {
      font-size: 21px;
      font-size: clamp(19px, 2.1vw, 21px);
      font-weight: bold;
      color: #ea932a;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .box-s3 {
      margin: 0 0 50px 0;
    }
    #is-old-recruit .about-box01 .box-s3 > div {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .box-s3 {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 50px 0;
    }
    #is-old-recruit .about-box01 .box-s3 > div {
      flex-basis: 50%;
      max-width: 50%;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .about-box01_img-02 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .about-box01 .about-box01_img-02 img {
      max-width: 501px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .about-box01_img-02 {
      text-align: left;
      margin: 0 -60px 0 0;
    }
    #is-old-recruit .about-box01 .about-box01_img-02 img {
      max-width: 501px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .txt-s6 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 20px 0 0 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .txt-s6 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 30px 0 0 95px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .lis-s1 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 25px -30px;
    }
    #is-old-recruit .about-box01 .lis-s1 li {
      margin: 0 0 25px 30px;
    }
    #is-old-recruit .about-box01 .lis-s1 li img {
      max-width: 261px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .lis-s1 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 25px -30px;
    }
    #is-old-recruit .about-box01 .lis-s1 li {
      flex-basis: calc(33.33% - 30px);
      max-width: calc(33.33% - 30px);
      margin: 0 0 25px 30px;
    }
    #is-old-recruit .about-box01 .lis-s1 li img {
      max-width: 261px;
      width: 100%;
      height: auto;
    }
  }
  #is-old-recruit .about-box01 .btn-s1 {
    display: block;
    border: solid 2px #ea932a;
    border-radius: 32px;
    padding: 2px;
    max-width: 460px;
    width: 100%;
    height: 70px;
    margin: 0 auto 65px auto;
  }
  #is-old-recruit .about-box01 .btn-s1 a {
    position: relative;
    display: block;
    font-size: 16px;
    font-size: clamp(14px, 1.6vw, 16px);
    letter-spacing: 2px;
    line-height: 70px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: #ea932a;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 30px;
  }
  #is-old-recruit .about-box01 .btn-s1 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .about-box01 .btn-s1 a:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .box-s4 {
      margin: 0 0 50px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .box-s4 {
      clear: both;
      margin: 0 0 50px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .about-box01_img-09 {
      text-align: center;
      margin: 0 0 20px 0;
    }
    #is-old-recruit .about-box01 .about-box01_img-09 img {
      max-width: 449px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .about-box01_img-09 {
      float: left;
      text-align: left;
      margin: 0 0 40px 0;
    }
    #is-old-recruit .about-box01 .about-box01_img-09 img {
      max-width: 449px;
      width: 100%;
      height: auto;
      margin: 0 15px 0 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .txt-s7 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 40px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .txt-s7 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      padding: 20px 0 0 0;
      margin: 0 0 40px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .txt-s8 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 40px 0;
    }
    #is-old-recruit .about-box01 .txt-s8 span {
      font-size: 21px;
      font-size: clamp(19px, 2.1vw, 21px);
      font-weight: bold;
      color: #ea932a;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .txt-s8 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 40px 0;
    }
    #is-old-recruit .about-box01 .txt-s8 span {
      font-size: 21px;
      font-size: clamp(19px, 2.1vw, 21px);
      font-weight: bold;
      color: #ea932a;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .lis-s2 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 65px -40px;
    }
    #is-old-recruit .about-box01 .lis-s2 li {
      margin: 0 0 20px 40px;
    }
    #is-old-recruit .about-box01 .lis-s2 li img {
      max-width: 401px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .lis-s2 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 85px -40px;
    }
    #is-old-recruit .about-box01 .lis-s2 li {
      flex-basis: calc(50% - 40px);
      max-width: calc(50% - 40px);
      margin: 0 0 0 40px;
    }
    #is-old-recruit .about-box01 .lis-s2 li img {
      max-width: 401px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .box-s5 {
      margin: 0 0 50px 0;
    }
    #is-old-recruit .about-box01 .box-s5 > div {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .box-s5 {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 50px 0;
    }
    #is-old-recruit .about-box01 .box-s5 > div {
      flex-basis: 50%;
      max-width: 50%;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .about-box01_img-12 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .about-box01 .about-box01_img-12 img {
      max-width: 501px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .about-box01_img-12 {
      text-align: left;
      margin: 0 -60px 0 0;
    }
    #is-old-recruit .about-box01 .about-box01_img-12 img {
      max-width: 501px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .txt-s9 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 20px 0 0 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .txt-s9 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 30px 0 0 95px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .lis-s3 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 25px -30px;
    }
    #is-old-recruit .about-box01 .lis-s3 li {
      margin: 0 0 25px 30px;
    }
    #is-old-recruit .about-box01 .lis-s3 li img {
      max-width: 261px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .lis-s3 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 25px -30px;
    }
    #is-old-recruit .about-box01 .lis-s3 li {
      flex-basis: calc(33.33% - 30px);
      max-width: calc(33.33% - 30px);
      margin: 0 0 25px 30px;
    }
    #is-old-recruit .about-box01 .lis-s3 li img {
      max-width: 261px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .box-s6 {
      margin: 0 0 50px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .box-s6 {
      clear: both;
      margin: 0 0 50px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .about-box01_img-19 {
      text-align: center;
      margin: 0 0 20px 0;
    }
    #is-old-recruit .about-box01 .about-box01_img-19 img {
      max-width: 449px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .about-box01_img-19 {
      float: left;
      text-align: left;
      margin: 0 0 40px 0;
    }
    #is-old-recruit .about-box01 .about-box01_img-19 img {
      max-width: 449px;
      width: 100%;
      height: auto;
      margin: 0 15px 0 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .txt-s10 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 40px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .txt-s10 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      padding: 20px 0 0 0;
      margin: 0 0 40px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .lis-s4 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 65px -40px;
    }
    #is-old-recruit .about-box01 .lis-s4 li {
      margin: 0 0 20px 40px;
    }
    #is-old-recruit .about-box01 .lis-s4 li img {
      max-width: 401px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .lis-s4 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 85px -40px;
    }
    #is-old-recruit .about-box01 .lis-s4 li {
      flex-basis: 100%;
      max-width: 100%;
      padding-left: 40px;
    }
    #is-old-recruit .about-box01 .lis-s4 li img {
      max-width: 401px;
      width: 100%;
      height: auto;
      margin-inline: auto;
    }
  }
  #is-old-recruit #ideal-candidates {
    margin-bottom: 40px;
  }
  #is-old-recruit .ideal-candidates__list {
    display: grid;
    gap: 20px;
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit .ideal-candidates__list {
      margin-inline: -25px;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
  }
  #is-old-recruit .ideal-candidates__item {
    max-width: 554px;
    margin-inline: auto;
  }
  #is-old-recruit .ideal-candidates__item .text {
    display: block;
    padding-block: 20px;
    font-size: 15px;
    text-align: left;
    line-height: 1.8;
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit .ideal-candidates__item .text {
      padding-inline: 30px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .about-box01_img-22 {
      text-align: center;
      margin: 0 0 45px 0;
    }
    #is-old-recruit .about-box01 .about-box01_img-22 img {
      max-width: 521px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .about-box01_img-22 {
      text-align: center;
      margin: 0 0 45px 0;
    }
    #is-old-recruit .about-box01 .about-box01_img-22 img {
      max-width: 521px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .lis-s5 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -80px;
    }
    #is-old-recruit .about-box01 .lis-s5 li {
      margin: 0 0 60px 80px;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .lis-s5 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: center;
      margin: 0;
    }
    #is-old-recruit .about-box01 .lis-s5 li {
      margin: 0 0 60px 0;
    }
    #is-old-recruit .about-box01 .lis-s5 li:nth-child(2) {
      margin: 0 0 60px 80px;
    }
    #is-old-recruit .about-box01 .lis-s5 li:nth-child(3) {
      margin: 0 0 60px 70px;
    }
    #is-old-recruit .about-box01 .lis-s5 li:nth-child(5) {
      margin: 0 0 60px 70px;
    }
    #is-old-recruit .about-box01 .lis-s5 li:nth-child(6) {
      margin: 0 0 60px 95px;
    }
    #is-old-recruit .about-box01 .lis-s5.s1 li:nth-child(2) {
      margin: 0 0 60px 130px;
    }
    #is-old-recruit .about-box01 .lis-s5.s2 li:nth-child(2) {
      margin: 0 0 60px 100px;
    }
    #is-old-recruit .about-box01 .lis-s5.s3 li:nth-child(2) {
      margin: 0 0 60px 90px;
    }
    #is-old-recruit .about-box01 .lis-s5.s3 li:nth-child(3) {
      width: 100%;
      margin: 0 0 60px 0;
    }
    #is-old-recruit .about-box01 .lis-s5.s3 li:nth-child(4) {
      flex-basis: 50%;
      max-width: 50%;
      margin: 0 0 60px 0;
    }
    #is-old-recruit .about-box01 .lis-s5.s3 li:nth-child(5) {
      flex-basis: calc(50% - 25px);
      max-width: calc(50% - 25px);
      margin: 0 0 60px 25px;
    }
    #is-old-recruit .about-box01 .lis-s5.s3 li:nth-child(6) {
      width: 100%;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .about-box01 .tit-s2 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      line-height: 1.4;
      text-align: center;
      color: #fb516d;
      margin: 0 0 15px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .about-box01 .tit-s2 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      line-height: 1.4;
      text-align: center;
      color: #fb516d;
      margin: 0 0 15px 0;
    }
  }
  #is-old-recruit .about-box01 .about-box01_img-23 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-23 img {
    max-width: 181px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-24 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-24 img {
    max-width: 181px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-25 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-25 img {
    max-width: 192px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-26 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-26 img {
    max-width: 193px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-27 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-27 img {
    max-width: 191px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-28 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-28 img {
    max-width: 159px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-29 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-29 img {
    max-width: 191px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-30 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-30 img {
    max-width: 203px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-31 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-31 img {
    max-width: 195px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-32 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-32 img {
    max-width: 200px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-33 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-33 img {
    max-width: 183px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-34 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-34 img {
    max-width: 291px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-35 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-35 img {
    max-width: 413px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-36 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-36 img {
    max-width: 406px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-37 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-37 img {
    max-width: 420px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit .about-box01 .about-box01_img-38 {
    text-align: center;
    margin: 0;
  }
  #is-old-recruit .about-box01 .about-box01_img-38 img {
    max-width: 364px;
    width: 100%;
    height: auto;
  }
  #is-old-recruit {
    /*//////////////////////////////////////////////////////// */
    /* 職員をサポート-------------*/
    /*//////////////////////////////////////////////////////// */
    /* support-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .support-box01-in {
      background: #ffffff;
      width: 100%;
      box-sizing: border-box;
      padding: 60px 4% 100px 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .support-box01-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 60px 75px 100px 75px;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .home-box01_btn-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .home-box01_btn-01 {
      position: absolute;
      top: 210px;
      right: -180px;
    }
    #is-old-recruit .support-box01 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .support-box01 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .txt-s1 {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #4a5db4;
      text-align: center;
      margin: 0 0 40px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .txt-s1 {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #4a5db4;
      text-align: center;
      margin: 0 0 40px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .box-s1 {
      margin: 0 0 25px 0;
    }
    #is-old-recruit .support-box01 .box-s1 > div {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .box-s1 {
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: space-between;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .support-box01 .box-s1 > div {
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .tit-s1 {
      background: url("../../recruit/shared/images/support-box01_bg-01.png") 0 0 no-repeat;
      background-size: 217px 218px;
      min-height: 218px;
      box-sizing: border-box;
      padding: 55px 0 0 75px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(20px, 3vw, 30px);
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .tit-s1 span.s1 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 14px;
      font-size: clamp(14px, 2vw, 20px);
      color: #fb516d;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .support-box01 .tit-s1 span.s2 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 44px;
      font-size: clamp(44px, 6vw, 60px);
      line-height: 1;
      color: #fb516d;
      margin: 10px 0 0 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .tit-s1 {
      background: url("../../recruit/shared/images/support-box01_bg-01.png") 0 0 no-repeat;
      background-size: 217px 218px;
      min-height: 218px;
      box-sizing: border-box;
      padding: 55px 0 0 75px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(20px, 3vw, 30px);
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .tit-s1 span.s1 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(14px, 2vw, 20px);
      color: #fb516d;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .support-box01 .tit-s1 span.s2 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 60px;
      font-size: clamp(44px, 6vw, 60px);
      line-height: 1;
      color: #fb516d;
      margin: 10px 0 0 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-01 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-01 img {
      max-width: 343px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-01 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-01 img {
      max-width: 343px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .txt-s2 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 55px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .txt-s2 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 55px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .box-s2 {
      border-top: 2px solid #e6e6e6;
      padding: 30px 0 0 0;
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: space-between;
      margin: 0 0 60px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .box-s2 {
      border-top: 2px solid #e6e6e6;
      padding: 30px 0 0 0;
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: space-between;
      margin: 0 0 60px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .tit-s2 {
      background: url("../../recruit/shared/images/support-box01_bg-02.png") 0 0 no-repeat;
      background-size: 217px 217px;
      min-height: 217px;
      box-sizing: border-box;
      padding: 55px 0 0 75px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(20px, 3vw, 30px);
      line-height: 1.3;
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .tit-s2 span.s1 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 14px;
      font-size: clamp(14px, 2vw, 20px);
      color: #8597dd;
      margin: 0 0 5px 0;
    }
    #is-old-recruit .support-box01 .tit-s2 span.s2 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 44px;
      font-size: clamp(44px, 6vw, 60px);
      line-height: 1;
      color: #8597dd;
      margin: 5px 0 0 0;
    }
    #is-old-recruit .support-box01 .tit-s2 span.s2 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 24px;
      font-size: clamp(24px, 4vw, 40px);
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .tit-s2 {
      background: url("../../recruit/shared/images/support-box01_bg-02.png") 0 0 no-repeat;
      background-size: 217px 217px;
      min-height: 217px;
      box-sizing: border-box;
      padding: 55px 0 0 75px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(20px, 3vw, 30px);
      line-height: 1.3;
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .tit-s2 span.s1 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(14px, 2vw, 20px);
      color: #8597dd;
      margin: 0 0 5px 0;
    }
    #is-old-recruit .support-box01 .tit-s2 span.s2 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 60px;
      font-size: clamp(44px, 6vw, 60px);
      line-height: 1;
      color: #8597dd;
      margin: 5px 0 0 0;
    }
    #is-old-recruit .support-box01 .tit-s2 span.s2 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 40px;
      font-size: clamp(24px, 4vw, 40px);
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-02 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-02 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-02 img {
      max-width: 369px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .box-s3 {
      margin: 0 0 70px 0;
    }
    #is-old-recruit .support-box01 .box-s3 div {
      margin: 0;
    }
    #is-old-recruit .support-box01 .box-s3 div:nth-child(1) {
      margin: 0 0 45px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .box-s3 {
      display: flex;
      flex-flow: row wrap;
      align-items: flex-start;
      justify-content: space-between;
      margin: 0 0 70px -45px;
    }
    #is-old-recruit .support-box01 .box-s3 div {
      flex-basis: calc(50% - 45px);
      max-width: calc(50% - 45px);
      margin: 0 0 0 45px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .txt-s3 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .txt-s3 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-03 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-03 img {
      max-width: 423px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-03 {
      text-align: left;
      margin: -135px 0 0 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-03 img {
      max-width: 423px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .tit-s3 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 24px;
      font-size: clamp(24px, 3vw, 30px);
      line-height: 1.4;
      color: #fb516d;
      text-align: center;
      padding: 0 0 15px 0;
      border-bottom: 4px solid #fb516d;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .tit-s3 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(24px, 3vw, 30px);
      color: #fb516d;
      text-align: center;
      padding: 0 0 15px 0;
      border-bottom: 4px solid #fb516d;
      margin: 0 0 20px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .box-s4 {
      margin: 0 0 100px 0;
    }
    #is-old-recruit .support-box01 .box-s4 div {
      margin: 0;
    }
    #is-old-recruit .support-box01 .box-s4 div:nth-child(1) {
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .box-s4 {
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: space-between;
      margin: 0 0 100px -20px;
    }
    #is-old-recruit .support-box01 .box-s4 div {
      flex-basis: calc(50% - 20px);
      max-width: calc(50% - 20px);
      margin: 0 0 0 20px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-04 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-04 img {
      max-width: 450px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-04 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-04 img {
      max-width: 450px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .txt-s4 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .txt-s4 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .box-s5 {
      border-top: 2px solid #e6e6e6;
      padding: 50px 0 0 0;
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: space-between;
      margin: 0 0 50px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .box-s5 {
      border-top: 2px solid #e6e6e6;
      padding: 50px 0 0 0;
      margin: 0 0 50px 0;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .tit-s4 {
      background: url("../../recruit/shared/images/support-box01_bg-03.png") 0 0 no-repeat;
      background-size: 217px 217px;
      min-height: 217px;
      box-sizing: border-box;
      padding: 55px 0 0 75px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 230px;
      font-size: clamp(20px, 3vw, 30px);
      line-height: 1.3;
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .tit-s4 span.s1 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 14px;
      font-size: clamp(14px, 2vw, 20px);
      color: #f15a24;
      margin: 0 0 5px 0;
    }
    #is-old-recruit .support-box01 .tit-s4 span.s2 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 44px;
      font-size: clamp(44px, 6vw, 60px);
      line-height: 1;
      color: #f15a24;
      margin: 5px 0 0 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .tit-s4 {
      background: url("../../recruit/shared/images/support-box01_bg-03.png") 0 0 no-repeat;
      background-size: 217px 217px;
      min-height: 217px;
      box-sizing: border-box;
      padding: 55px 0 0 75px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(20px, 3vw, 30px);
      line-height: 1.3;
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .tit-s4 span.s1 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(14px, 2vw, 20px);
      color: #f15a24;
      margin: 0 0 5px 0;
    }
    #is-old-recruit .support-box01 .tit-s4 span.s2 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 60px;
      font-size: clamp(44px, 6vw, 60px);
      line-height: 1;
      color: #f15a24;
      margin: 5px 0 0 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-05 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-05 {
      position: absolute;
      top: 85px;
      right: 0;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-05 img {
      max-width: 369px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .tit-s5 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 24px;
      font-size: clamp(24px, 3vw, 30px);
      line-height: 1.4;
      color: #f15a24;
      text-align: left;
      padding: 0 0 10px 0;
      border-bottom: 4px solid #f15a24;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .tit-s5 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(24px, 3vw, 30px);
      color: #f15a24;
      text-align: left;
      padding: 0 0 10px 0;
      border-bottom: 4px solid #f15a24;
      margin: 0 0 20px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .box-s6 {
      margin: 0 0 65px 0;
    }
    #is-old-recruit .support-box01 .box-s6 div {
      margin: 0;
    }
    #is-old-recruit .support-box01 .box-s6 div:nth-child(1) {
      margin: 0 0 30px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .box-s6 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 65px -30px;
    }
    #is-old-recruit .support-box01 .box-s6 div {
      flex-basis: calc(50% - 30px);
      max-width: calc(50% - 30px);
      margin: 0 0 0 30px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .txt-s5 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .txt-s5 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .lis-s1 {
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 0 -10px;
    }
    #is-old-recruit .support-box01 .lis-s1 li {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      line-height: 1.4;
      color: #ffffff;
      text-align: center;
      background: #f7931e;
      width: 118px;
      height: 118px;
      border-radius: 50%;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 10px 10px;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .lis-s1 {
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: flex-start;
      margin: 0 0 0 -10px;
    }
    #is-old-recruit .support-box01 .lis-s1 li {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      line-height: 1.4;
      color: #ffffff;
      text-align: center;
      background: #f7931e;
      width: 118px;
      height: 118px;
      border-radius: 50%;
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 10px 10px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-06 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-06 img {
      max-width: 342px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-06 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-06 img {
      max-width: 342px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .txt-s6 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 35px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .txt-s6 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 35px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-07 {
      text-align: center;
      margin: 0 0 85px 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-07 img {
      max-width: 603px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-07 {
      text-align: left;
      margin: 0 0 85px 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-07 span {
      display: block;
      background: url("../../recruit/shared/images/support-box01_img-07.png") 0 0 no-repeat;
      background-size: contain;
      padding-top: 66.38%; /*559/842*/
      height: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-07 span img {
      display: none;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .box-s7 {
      border-top: 2px solid #e6e6e6;
      padding: 35px 0 0 0;
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: space-between;
      margin: 0 0 50px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .box-s7 {
      border-top: 2px solid #e6e6e6;
      padding: 35px 0 0 0;
      margin: 0 0 50px 0;
      position: relative;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .tit-s6 {
      background: url("../../recruit/shared/images/support-box01_bg-04.png") 0 0 no-repeat;
      background-size: 217px 217px;
      min-height: 217px;
      box-sizing: border-box;
      padding: 55px 0 0 75px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(20px, 3vw, 30px);
      line-height: 1.3;
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .tit-s6 span.s1 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 14px;
      font-size: clamp(14px, 2vw, 20px);
      color: #42c497;
      margin: 0 0 5px 0;
    }
    #is-old-recruit .support-box01 .tit-s6 span.s2 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 44px;
      font-size: clamp(44px, 6vw, 60px);
      line-height: 1;
      color: #42c497;
      margin: 5px 0 0 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .tit-s6 {
      background: url("../../recruit/shared/images/support-box01_bg-04.png") 0 0 no-repeat;
      background-size: 217px 217px;
      min-height: 217px;
      box-sizing: border-box;
      padding: 55px 0 0 75px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(20px, 3vw, 30px);
      line-height: 1.3;
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .tit-s6 span.s1 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(14px, 2vw, 20px);
      color: #42c497;
      margin: 0 0 5px 0;
    }
    #is-old-recruit .support-box01 .tit-s6 span.s2 {
      display: block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 60px;
      font-size: clamp(44px, 6vw, 60px);
      line-height: 1;
      color: #42c497;
      margin: 5px 0 0 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-08 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-08 {
      position: absolute;
      top: 85px;
      right: 0;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-08 img {
      max-width: 369px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .tit-s7 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 24px;
      font-size: clamp(24px, 3vw, 30px);
      line-height: 1.4;
      color: #00b597;
      text-align: left;
      padding: 0 0 10px 0;
      border-bottom: 4px solid #00b597;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .tit-s7 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(24px, 3vw, 30px);
      color: #00b597;
      text-align: left;
      padding: 0 0 10px 0;
      border-bottom: 4px solid #00b597;
      margin: 0 0 20px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .box-s8 {
      margin: 0 0 65px 0;
    }
    #is-old-recruit .support-box01 .box-s8 div {
      margin: 0;
    }
    #is-old-recruit .support-box01 .box-s8 div:nth-child(1) {
      margin: 0 0 30px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .box-s8 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 65px -30px;
    }
    #is-old-recruit .support-box01 .box-s8 div:nth-child(1) {
      flex-basis: calc(61.17% - 30px); /*520*/
      max-width: calc(61.17% - 30px);
      margin: 0 0 0 30px;
    }
    #is-old-recruit .support-box01 .box-s8 div:nth-child(2) {
      flex-basis: calc(38.82% - 30px); /*350*/
      max-width: calc(38.82% - 30px);
      margin: 0 0 0 30px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .txt-s7 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .txt-s7.s1 {
      margin: 0 0 30px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .txt-s7 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .txt-s7.s1 {
      margin: 0 0 30px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-09 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-09 img {
      max-width: 261px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-09 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-09 img {
      max-width: 261px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-10 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-10 img {
      max-width: 272px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-10 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-10 img {
      max-width: 272px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .tit-s8 {
      font-size: 16px;
      font-size: clamp(16px, 1.6vw, 16px);
      font-weight: bold;
      color: #00b597;
      text-align: left;
      margin: 0 0 5px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .tit-s8 {
      font-size: 16px;
      font-size: clamp(16px, 1.6vw, 16px);
      font-weight: bold;
      color: #00b597;
      text-align: left;
      margin: 0 0 5px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .lis-s2 {
      margin: 0;
    }
    #is-old-recruit .support-box01 .lis-s2 li {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      margin: 0 0 5px 0;
    }
    #is-old-recruit .support-box01 .lis-s2 li::before {
      content: "● ";
      color: #00b597;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .lis-s2 {
      margin: 0;
    }
    #is-old-recruit .support-box01 .lis-s2 li {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      margin: 0 0 5px 0;
    }
    #is-old-recruit .support-box01 .lis-s2 li::before {
      content: "● ";
      color: #00b597;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-11 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-11 img {
      max-width: 261px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_img-11 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_img-11 img {
      max-width: 261px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .box-s9 {
      margin: 0;
    }
    #is-old-recruit .support-box01 .box-s9 div {
      margin: 0;
    }
    #is-old-recruit .support-box01 .box-s9 div:nth-child(1) {
      margin: 0 0 30px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .box-s9 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 0 -30px;
    }
    #is-old-recruit .support-box01 .box-s9 div {
      flex-basis: calc(50% - 30px);
      max-width: calc(50% - 30px);
      margin: 0 0 0 30px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .lis-s3 {
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 0 -10px;
    }
    #is-old-recruit .support-box01 .lis-s3 li {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 10px 10px;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .lis-s3 {
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: flex-start;
      margin: 0 0 0 -10px;
    }
    #is-old-recruit .support-box01 .lis-s3 li {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 10px 10px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_txt-01 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_txt-01 img {
      max-width: 144px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_txt-01 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_txt-01 img {
      max-width: 144px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_txt-02 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_txt-02 img {
      max-width: 130px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .support-box01 .support-box01_txt-02 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .support-box01 .support-box01_txt-02 img {
      max-width: 130px;
      width: 100%;
      height: auto;
    }
  }
  #is-old-recruit {
    /*//////////////////////////////////////////////////////// */
    /* 募集情報-------------*/
    /*//////////////////////////////////////////////////////// */
    /* chuto-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .chuto-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .chuto-box01-in {
      background: #ffffff;
      width: 100%;
      box-sizing: border-box;
      padding: 40px 4% 60px 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .chuto-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .chuto-box01-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 40px 75px 60px 75px;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .chuto-box01 .home-box01_btn-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .chuto-box01 .home-box01_btn-01 {
      position: absolute;
      top: 210px;
      right: -180px;
    }
    #is-old-recruit .chuto-box01 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .chuto-box01 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .chuto-box01 .box-s1 {
      width: 534px;
      width: 100%;
      min-height: 171px;
      box-sizing: border-box;
      padding: 30px 0 50px 0;
      background: url("../../recruit/shared/images/chuto-box01_bg-01.png") center center no-repeat;
      background-size: contain;
      margin: 0 auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .chuto-box01 .box-s1 {
      width: 534px;
      width: 100%;
      min-height: 171px;
      box-sizing: border-box;
      padding: 30px 0 50px 0;
      background: url("../../recruit/shared/images/chuto-box01_bg-01.png") center center no-repeat;
      background-size: contain;
      margin: 0 auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .chuto-box01 .txt-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .chuto-box01 .txt-s1 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 24px;
      font-size: clamp(24px, 3vw, 30px);
      line-height: 1.2;
      color: #8597dd;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .chuto-box01 .txt-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .chuto-box01 .txt-s1 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(24px, 3vw, 30px);
      line-height: 1.2;
      color: #8597dd;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .chuto-box01 .txt-s2 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 25px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .chuto-box01 .txt-s2 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 2;
      text-align: left;
      margin: 0 0 25px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .chuto-box01 .chuto-box01_bana-01 {
      text-align: center;
      margin: 0 0 35px 0;
    }
    #is-old-recruit .chuto-box01 .chuto-box01_bana-01 img {
      max-width: 725px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .chuto-box01 .chuto-box01_bana-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .chuto-box01 .chuto-box01_bana-01 {
      text-align: center;
      margin: 0 0 35px 0;
    }
    #is-old-recruit .chuto-box01 .chuto-box01_bana-01 img {
      max-width: 725px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .chuto-box01 .chuto-box01_bana-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  #is-old-recruit .chuto-box01 .btn-s1 {
    display: block;
    border: solid 2px #fb516d;
    border-radius: 32px;
    padding: 2px;
    max-width: 460px;
    width: 100%;
    height: 70px;
    margin: 0 auto 70px auto;
  }
  #is-old-recruit .chuto-box01 .btn-s1 a {
    position: relative;
    display: block;
    font-size: 16px;
    font-size: clamp(14px, 1.6vw, 16px);
    letter-spacing: 2px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: #fb516d;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 30px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }
  #is-old-recruit .chuto-box01 .btn-s1 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .chuto-box01 .btn-s1 a:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .chuto-box01 .tit-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      text-align: left;
      margin: 0 0 15px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .chuto-box01 .tit-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      text-align: left;
      margin: 0 0 15px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .chuto-box01 .lis-s1 {
      margin: 0 0 35px 0;
    }
    #is-old-recruit .chuto-box01 .lis-s1 dt {
      background: #ffbdd0;
      padding: 10px 60px 10px 10px;
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 10px 0;
      cursor: pointer;
      position: relative;
    }
    #is-old-recruit .chuto-box01 .lis-s1.s1 dt {
      background: #c1e4bb;
    }
    #is-old-recruit .chuto-box01 .lis-s1 dt span {
      display: inline-block;
      background: #ed1c24;
      padding: 7px 15px 5px 15px;
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      line-height: 1;
      font-weight: bold;
      color: #ffffff;
      text-align: center;
      margin: 0 10px 0 0;
    }
    #is-old-recruit .chuto-box01 .lis-s1 dt::before {
      content: "";
      position: absolute;
      top: 12px;
      right: 15px;
      margin: auto;
      display: block;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      background: #ffffff;
    }
    #is-old-recruit .chuto-box01 .lis-s1 dt::after {
      content: "";
      position: absolute;
      top: 18px;
      right: 22px;
      margin: auto;
      width: 8px;
      height: 8px;
      border-left: 2px solid #ffbdd0;
      border-bottom: 2px solid #ffbdd0;
      transform: translateX(0) rotate(-45deg);
      margin: auto;
    }
    #is-old-recruit .chuto-box01 .lis-s1.s1 dt::after {
      border-left: 2px solid #c1e4bb;
      border-bottom: 2px solid #c1e4bb;
    }
    #is-old-recruit .chuto-box01 .lis-s1 dt.active::after {
      content: "";
      position: absolute;
      top: 22px;
      right: 22px;
      margin: auto;
      width: 8px;
      height: 8px;
      border-left: none;
      border-bottom: none;
      border-right: 2px solid #ffbdd0;
      border-top: 2px solid #ffbdd0;
      transform: translateX(0) rotate(-45deg);
      margin: auto;
    }
    #is-old-recruit .chuto-box01 .lis-s1.s1 dt.active::after {
      border-right: 2px solid #c1e4bb;
      border-top: 2px solid #c1e4bb;
    }
    #is-old-recruit .chuto-box01 .lis-s1 dd {
      padding: 30px 0 50px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .chuto-box01 .lis-s1 {
      margin: 0 0 35px 0;
    }
    #is-old-recruit .chuto-box01 .lis-s1 dt {
      background: #ffbdd0;
      padding: 10px 60px 10px 10px;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 10px 0;
      cursor: pointer;
      position: relative;
    }
    #is-old-recruit .chuto-box01 .lis-s1.s1 dt {
      background: #c1e4bb;
    }
    #is-old-recruit .chuto-box01 .lis-s1 dt span {
      display: inline-block;
      background: #ed1c24;
      padding: 7px 15px 5px 15px;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      line-height: 1;
      font-weight: bold;
      color: #ffffff;
      text-align: center;
      margin: 0 10px 0 0;
    }
    #is-old-recruit .chuto-box01 .lis-s1 dt::before {
      content: "";
      position: absolute;
      top: 12px;
      right: 15px;
      margin: auto;
      display: block;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      background: #ffffff;
    }
    #is-old-recruit .chuto-box01 .lis-s1 dt::after {
      content: "";
      position: absolute;
      top: 18px;
      right: 22px;
      margin: auto;
      width: 8px;
      height: 8px;
      border-left: 2px solid #ffbdd0;
      border-bottom: 2px solid #ffbdd0;
      transform: translateX(0) rotate(-45deg);
      margin: auto;
    }
    #is-old-recruit .chuto-box01 .lis-s1.s1 dt::after {
      border-left: 2px solid #c1e4bb;
      border-bottom: 2px solid #c1e4bb;
    }
    #is-old-recruit .chuto-box01 .lis-s1 dt.active::after {
      content: "";
      position: absolute;
      top: 22px;
      right: 22px;
      margin: auto;
      width: 8px;
      height: 8px;
      border-left: none;
      border-bottom: none;
      border-right: 2px solid #ffbdd0;
      border-top: 2px solid #ffbdd0;
      transform: translateX(0) rotate(-45deg);
      margin: auto;
    }
    #is-old-recruit .chuto-box01 .lis-s1.s1 dt.active::after {
      border-right: 2px solid #c1e4bb;
      border-top: 2px solid #c1e4bb;
    }
    #is-old-recruit .chuto-box01 .lis-s1 dd {
      padding: 30px 0 50px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .chuto-box01 .tab-s1 {
      width: 100%;
      border: 1px solid #8597dd;
      border-collapse: collapse;
      word-wrap: break-word;
      overflow-wrap: break-word;
      margin: 0 0 20px 0;
    }
    #is-old-recruit .chuto-box01 .tab-s1 th {
      display: block;
      width: 100%;
      box-sizing: border-box;
      padding: 15px;
      border-bottom: 1px solid #8597dd;
      background: #f2f2f2;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .chuto-box01 .tab-s1 th br {
      display: none;
    }
    #is-old-recruit .chuto-box01 .tab-s1 td {
      display: block;
      width: 100%;
      box-sizing: border-box;
      padding: 15px;
      border-bottom: 1px solid #8597dd;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .chuto-box01 .tab-s1 {
      width: 100%;
      border: 1px solid #8597dd;
      border-collapse: collapse;
      word-wrap: break-word;
      overflow-wrap: break-word;
      margin: 0 0 20px 0;
    }
    #is-old-recruit .chuto-box01 .tab-s1 th {
      width: 135px;
      box-sizing: border-box;
      padding: 15px 30px;
      border-bottom: 1px solid #8597dd;
      background: #f2f2f2;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .chuto-box01 .tab-s1 td {
      padding: 15px 30px;
      border-bottom: 1px solid #8597dd;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
    }
  }
  #is-old-recruit .chuto-box01 .btn-s2 {
    display: block;
    border: solid 2px #8597dd;
    border-radius: 32px;
    padding: 2px;
    max-width: 420px;
    width: 100%;
    height: 70px;
    margin: 0 auto;
  }
  #is-old-recruit .chuto-box01 .btn-s2 a {
    position: relative;
    display: block;
    font-size: 16px;
    font-size: clamp(14px, 1.6vw, 16px);
    letter-spacing: 2px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: #8597dd;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 30px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }
  #is-old-recruit .chuto-box01 .btn-s2 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .chuto-box01 .btn-s2 a:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  #is-old-recruit {
    /*//////////////////////////////////////////////////////// */
    /* 【CMS】募集エントリーフォーム-------------*/
    /*//////////////////////////////////////////////////////// */
    /* entry-boshu-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-boshu-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .entry-boshu-box01-in {
      background: #ffffff;
      width: 100%;
      box-sizing: border-box;
      padding: 45px 4% 35px 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .entry-boshu-box01-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 45px 75px 35px 75px;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .home-box01_btn-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .home-box01_btn-01 {
      position: absolute;
      top: 210px;
      right: -180px;
    }
    #is-old-recruit .entry-boshu-box01 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .entry-boshu-box01 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .tit-s1 {
      border: 2px solid #fb516d;
      border-radius: 15px;
      padding: 10px;
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 0 15px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .tit-s1 {
      border: 2px solid #fb516d;
      border-radius: 15px;
      padding: 10px;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 -25px 15px -25px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      color: #fb516d;
      text-align: center;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s1 a {
      color: #fb516d;
      text-decoration: none;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s1 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 19px;
      font-size: clamp(19px, 2.5vw, 25px);
      color: #000000;
      margin: 0 0 0 10px;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      color: #fb516d;
      text-align: center;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s1 a {
      color: #fb516d;
      text-decoration: none;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s1 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 25px;
      font-size: clamp(19px, 2.5vw, 25px);
      color: #000000;
      margin: 0 0 0 10px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s2 {
      font-size: 14px;
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 0 30px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s2 {
      font-size: 14px;
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 0 30px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s3 {
      font-size: 14px;
      text-align: left;
      line-height: 2;
      margin: 0 0 55px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s3 em {
      font-weight: bold;
      color: #ff0000;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s3 {
      font-size: 14px;
      text-align: left;
      line-height: 2;
      margin: 0 0 55px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s3 em {
      font-weight: bold;
      color: #ff0000;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s4 {
      background: #fb516d;
      padding: 10px 4%;
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #ffffff;
      text-align: left;
      margin: 0 0 3px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s4:last-of-type {
      margin: 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s4 span {
      display: inline-block;
      border-right: 1px solid #ffffff;
      min-width: 155px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      margin: 0 15px 0 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s4 {
      background: #fb516d;
      padding: 10px 100px;
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #ffffff;
      text-align: left;
      margin: 0 0 3px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s4:last-of-type {
      margin: 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s4 span {
      display: inline-block;
      border-right: 1px solid #ffffff;
      min-width: 155px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      margin: 0 15px 0 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .box-s1 {
      background: #f8f8f8;
      padding: 30px 4% 25px 4%;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .box-s1 {
      background: #f8f8f8;
      padding: 30px 100px 25px 100px;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .box-s2 {
      margin: 0;
    }
    #is-old-recruit .entry-boshu-box01 .box-s2 > div {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .box-s2 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: flex-start;
      margin: 0 0 0 -29px;
    }
    #is-old-recruit .entry-boshu-box01 .box-s2 > div {
      margin: 0 0 0 29px;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s5 {
      font-size: 14px;
      text-align: left;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s5 em {
      color: #ff0000;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s5 {
      font-size: 14px;
      text-align: left;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s5 em {
      color: #ff0000;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s5 label {
      display: block;
      font-size: 14px;
      margin: 10px 0;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s5 label {
      display: inline-block;
      font-size: 14px;
      margin: 10px 1em 10px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s5 > span {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s5 > span > span:nth-child(2) {
      flex: 1;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s5 > span > span:nth-child(2) input.s1,
    #is-old-recruit .entry-boshu-box01 .txt-s5 > span > span:nth-child(2) textarea.s1 {
      margin: 10px 0;
    }
  }
  #is-old-recruit .entry-boshu-box01 input.s1,
  #is-old-recruit .entry-boshu-box01 input.s2,
  #is-old-recruit .entry-boshu-box01 input.s3,
  #is-old-recruit .entry-boshu-box01 input.s4,
  #is-old-recruit .entry-boshu-box01 input.s5,
  #is-old-recruit .entry-boshu-box01 input.s6,
  #is-old-recruit .entry-boshu-box01 textarea {
    width: 100%;
    min-height: 26px;
    box-sizing: border-box;
    padding: 0 10px;
    border: 1px solid #a4a4a4;
    font-size: 16px;
    margin: 5px 0 0 0;
  }
  #is-old-recruit .entry-boshu-box01 textarea {
    padding: 10px;
    height: 190px;
  }
  #is-old-recruit .entry-boshu-box01 textarea.s1 {
    height: 56px;
  }
  #is-old-recruit .entry-boshu-box01 input.s3 {
    max-width: 70px;
  }
  #is-old-recruit .entry-boshu-box01 input.s6 {
    max-width: 40%;
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 input.s1,
    #is-old-recruit .entry-boshu-box01 textarea {
      font-size: 14px;
    }
    #is-old-recruit .entry-boshu-box01 input.s2 {
      max-width: 405px;
      font-size: 14px;
    }
    #is-old-recruit .entry-boshu-box01 input.s3 {
      max-width: 70px;
      font-size: 14px;
    }
    #is-old-recruit .entry-boshu-box01 input.s4 {
      max-width: 185px;
      font-size: 14px;
    }
    #is-old-recruit .entry-boshu-box01 input.s5 {
      /*max-*/
      width: 436px;
      font-size: 14px;
    }
    #is-old-recruit .entry-boshu-box01 input.s6 {
      max-width: 150px;
      font-size: 14px;
    }
  }
  #is-old-recruit .entry-boshu-box01 ::placeholder {
    color: #a4a4a4;
  }
  #is-old-recruit .entry-boshu-box01 ::-ms-input-placeholder { /* 旧Edge対応 */
    color: #a4a4a4;
  }
  #is-old-recruit .entry-boshu-box01 :-ms-input-placeholder { /* IE対応 */
    color: #a4a4a4;
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .tit-s2 {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 30px 0;
      overflow: hidden;
    }
    #is-old-recruit .entry-boshu-box01 .tit-s2 span {
      position: relative;
      display: inline-block;
      margin: 0;
      padding: 0 1em;
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .entry-boshu-box01 .tit-s2 span::before,
    #is-old-recruit .entry-boshu-box01 .tit-s2 span::after {
      position: absolute;
      top: 50%;
      content: "";
      width: 100%;
      height: 1px;
      background-color: #fb516d;
    }
    #is-old-recruit .entry-boshu-box01 .tit-s2 span::before {
      right: 100%;
    }
    #is-old-recruit .entry-boshu-box01 .tit-s2 span::after {
      left: 100%;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .tit-s2 {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 30px 0;
      overflow: hidden;
    }
    #is-old-recruit .entry-boshu-box01 .tit-s2 span {
      position: relative;
      display: inline-block;
      margin: 0;
      padding: 0 1em;
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .entry-boshu-box01 .tit-s2 span::before,
    #is-old-recruit .entry-boshu-box01 .tit-s2 span::after {
      position: absolute;
      top: 50%;
      content: "";
      width: 100%;
      height: 1px;
      background-color: #fb516d;
    }
    #is-old-recruit .entry-boshu-box01 .tit-s2 span::before {
      right: 100%;
    }
    #is-old-recruit .entry-boshu-box01 .tit-s2 span::after {
      left: 100%;
    }
  }
  #is-old-recruit .entry-boshu-box01 .btn-s1,
  #is-old-recruit .entry-boshu-box01 .btn-s2,
  #is-old-recruit .entry-boshu-box01 .btn-s3 {
    display: block;
    border: solid 2px #fb516d;
    border-radius: 32px;
    padding: 2px;
    max-width: 428px;
    width: 100%;
    height: 70px;
    margin: 40px auto 20px auto;
  }
  #is-old-recruit .entry-boshu-box01 .btn-s2 {
    border: solid 2px #ff8fb7;
  }
  #is-old-recruit .entry-boshu-box01 .btn-s1 a,
  #is-old-recruit .entry-boshu-box01 .btn-s2 a,
  #is-old-recruit .entry-boshu-box01 .btn-s3 a {
    position: relative;
    display: block;
    font-size: 16px;
    font-size: clamp(14px, 1.6vw, 16px);
    letter-spacing: 2px;
    line-height: 70px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: #fb516d;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 30px;
  }
  #is-old-recruit .entry-boshu-box01 .btn-s2 a {
    background: #ff8fb7;
  }
  #is-old-recruit .entry-boshu-box01 .btn-s1 a::after,
  #is-old-recruit .entry-boshu-box01 .btn-s2 a::after,
  #is-old-recruit .entry-boshu-box01 .btn-s3 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .entry-boshu-box01 .btn-s2 a::after {
    right: inherit;
    left: 5%;
    border-color: transparent transparent #fff #fff;
  }
  #is-old-recruit .entry-boshu-box01 .btn-s1 a:hover,
  #is-old-recruit .entry-boshu-box01 .btn-s2 a:hover,
  #is-old-recruit .entry-boshu-box01 .btn-s3 a:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s6 {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 0 50px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s6 span {
      color: #fb516d;
      text-decoration: none;
      padding: 0 40px;
      cursor: pointer;
      position: relative;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s6 span::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      margin: auto;
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background: #fb516d;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s6 span::after {
      content: "";
      position: absolute;
      top: 3px;
      right: 5px;
      margin: auto;
      width: 5px;
      height: 5px;
      border: 2px solid;
      border-radius: 2px;
      border-color: transparent #fff #fff transparent;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    #is-old-recruit .entry-boshu-box01 .txt-s6 span:hover {
      opacity: 0.8;
      -ms-filter: "alpha(opacity=80)";
      -moz-opacity: 0.8;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s6 {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 0 50px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s6 span {
      color: #fb516d;
      text-decoration: none;
      padding: 0 40px;
      cursor: pointer;
      position: relative;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s6 span::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      margin: auto;
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background: #fb516d;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s6 span::after {
      content: "";
      position: absolute;
      top: 3px;
      right: 5px;
      margin: auto;
      width: 5px;
      height: 5px;
      border: 2px solid;
      border-radius: 2px;
      border-color: transparent #fff #fff transparent;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    #is-old-recruit .entry-boshu-box01 .txt-s6 span:hover {
      opacity: 0.8;
      -ms-filter: "alpha(opacity=80)";
      -moz-opacity: 0.8;
    }
  }
  #is-old-recruit .entry-boshu-box01 #slideBox {
    display: none;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    padding: 30px;
    background: #ffffff;
    margin: -40px 0 50px 0;
  }
  #is-old-recruit .entry-boshu-box01 #slideBox p {
    font-size: 14px;
    text-align: left;
    margin: 0 0 40px 0;
  }
  #is-old-recruit .entry-boshu-box01 #slideBox ol {
    counter-reset: item;
    list-style-type: none;
    margin: 0;
  }
  #is-old-recruit .entry-boshu-box01 #slideBox ol li {
    font-size: 14px;
    text-align: left;
    text-indent: -2.6em;
    margin: 0 0 30px 2.6em;
  }
  #is-old-recruit .entry-boshu-box01 #slideBox ol li:last-child {
    margin: 0 0 0 2.6em;
  }
  #is-old-recruit .entry-boshu-box01 #slideBox ol li:before {
    counter-increment: item;
    content: "［" counter(item) "］";
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s7 {
      font-size: 12px;
      text-align: left;
      line-height: 2;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s7:last-of-type {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-boshu-box01 .txt-s7 {
      font-size: 12px;
      text-align: left;
      line-height: 2;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .entry-boshu-box01 .txt-s7:last-of-type {
      margin: 0;
    }
  }
  #is-old-recruit {
    /*//////////////////////////////////////////////////////// */
    /* 採用イベント(見学会・説明会)-------------*/
    /*//////////////////////////////////////////////////////// */
    /* kengakukai-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .kengakukai-box01-in {
      background: #ffffff;
      width: 100%;
      box-sizing: border-box;
      padding: 30px 4% 55px 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .kengakukai-box01-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 30px 75px 55px 75px;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .home-box01_btn-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .home-box01_btn-01 {
      position: absolute;
      top: 210px;
      right: -180px;
    }
    #is-old-recruit .kengakukai-box01 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .kengakukai-box01 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .kengakukai-box01_img-01 {
      text-align: center;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .kengakukai-box01 .kengakukai-box01_img-01 img {
      max-width: 850px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .kengakukai-box01_img-01 {
      text-align: center;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .kengakukai-box01 .kengakukai-box01_img-01 img {
      max-width: 850px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .txt-s1 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      line-height: 2;
      color: #2f2f2f;
      text-align: left;
      margin: 0 0 40px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .txt-s1 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      line-height: 2;
      color: #2f2f2f;
      text-align: left;
      margin: 0 0 40px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .box-s1 {
      background: #ffbdd0;
      padding: 30px 4% 25px 4%;
      margin: 0 -4% 45px -4%;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .box-s1 {
      background: #ffbdd0;
      padding: 30px 75px 25px 75px;
      margin: 0 -75px 45px -75px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .tit-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      color: #ffffff;
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .kengakukai-box01 .tit-s1 span {
      display: inline-block;
      padding: 0 59px 0 49px;
      position: relative;
    }
    #is-old-recruit .kengakukai-box01 .tit-s1 span::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -10px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: auto;
      width: 49px;
      height: 53px;
      background: url("../../recruit/shared/images/bg_02.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .kengakukai-box01 .tit-s1 span::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -10px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: auto;
      width: 59px;
      height: 51px;
      background: url("../../recruit/shared/images/bg_03.png") 0 0 no-repeat;
      background-size: contain;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .tit-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      color: #ffffff;
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .kengakukai-box01 .tit-s1 span {
      position: relative;
    }
    #is-old-recruit .kengakukai-box01 .tit-s1 span::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -100px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: auto;
      width: 49px;
      height: 53px;
      background: url("../../recruit/shared/images/bg_02.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .kengakukai-box01 .tit-s1 span::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -100px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: auto;
      width: 59px;
      height: 51px;
      background: url("../../recruit/shared/images/bg_03.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .kengakukai-box01 .tit-s1 span br {
      display: none;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .lis-s1 {
      margin: 0;
    }
    #is-old-recruit .kengakukai-box01 .lis-s1 li {
      background: #ffffff;
      border: 1px solid #fc899c;
      padding: 130px 4% 25px 4%;
      border-radius: 37px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .kengakukai-box01 .lis-s1 li:nth-child(1) {
      background: #ffffff url("../../recruit/shared/images/kengakukai-box01_bg-03.png") center 25px no-repeat;
      background-size: 53px 95px;
    }
    #is-old-recruit .kengakukai-box01 .lis-s1 li:nth-child(2) {
      background: #ffffff url("../../recruit/shared/images/kengakukai-box01_bg-04.png") center 25px no-repeat;
      background-size: 51px 96px;
    }
    #is-old-recruit .kengakukai-box01 .lis-s1 li:nth-child(3) {
      background: #ffffff url("../../recruit/shared/images/kengakukai-box01_bg-05.png") center 25px no-repeat;
      background-size: 52px 88px;
    }
    #is-old-recruit .kengakukai-box01 .lis-s1 li span {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .lis-s1 {
      margin: 0;
    }
    #is-old-recruit .kengakukai-box01 .lis-s1 li {
      background: #ffffff;
      border: 1px solid #fc899c;
      padding: 25px 70px 25px 130px;
      border-radius: 37px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .kengakukai-box01 .lis-s1 li:nth-child(1) {
      background: #ffffff url("../../recruit/shared/images/kengakukai-box01_bg-03.png") 35px center no-repeat;
      background-size: 53px 95px;
    }
    #is-old-recruit .kengakukai-box01 .lis-s1 li:nth-child(2) {
      background: #ffffff url("../../recruit/shared/images/kengakukai-box01_bg-04.png") 35px center no-repeat;
      background-size: 51px 96px;
    }
    #is-old-recruit .kengakukai-box01 .lis-s1 li:nth-child(3) {
      background: #ffffff url("../../recruit/shared/images/kengakukai-box01_bg-05.png") 35px center no-repeat;
      background-size: 52px 88px;
    }
    #is-old-recruit .kengakukai-box01 .lis-s1 li span {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
    }
  }
  #is-old-recruit .kengakukai-box01 .btn-s1 {
    display: block;
    border: solid 2px #fb516d;
    border-radius: 32px;
    padding: 2px;
    max-width: 830px;
    width: 100%;
    height: 70px;
    margin: 0 auto 50px auto;
  }
  #is-old-recruit .kengakukai-box01 .btn-s1 a {
    position: relative;
    display: block;
    font-size: 20px;
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 2px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: #fb516d;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 30px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }
  #is-old-recruit .kengakukai-box01 .btn-s1 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .kengakukai-box01 .btn-s1 a:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .tit-s2 {
      position: relative;
      z-index: 1;
      background: #ffffff;
      border: 3px solid #42c497;
      padding: 20px 40px;
      border-radius: 28px;
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      text-align: left;
      line-height: 2;
      margin: 0;
    }
    #is-old-recruit .kengakukai-box01 .tit-s2 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      font-weight: bold;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .tit-s2 {
      position: relative;
      z-index: 1;
      background: #ffffff;
      border: 3px solid #42c497;
      padding: 20px 40px;
      border-radius: 28px;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: bold;
      text-align: left;
      line-height: 2;
      margin: 0;
    }
    #is-old-recruit .kengakukai-box01 .tit-s2 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      font-weight: bold;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .box-s2 {
      background: #f8f8f8;
      padding: 60px 4% 30px 4%;
      border-bottom: 3px solid #42c497;
      margin: -20px 0 50px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .box-s2 {
      background: #f8f8f8;
      padding: 60px 40px 30px 40px;
      border-bottom: 3px solid #42c497;
      margin: -20px 0 50px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .txt-s2 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      line-height: 1.8;
      margin: 0 0 15px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .txt-s2 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      line-height: 1.8;
      margin: 0 0 15px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .box-s3 {
      margin: 0 0 40px 0;
    }
    #is-old-recruit .kengakukai-box01 .box-s3 > div {
      margin: 0;
    }
    #is-old-recruit .kengakukai-box01 .box-s3 > div:nth-child(1) {
      margin: 0 0 25px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .box-s3 {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 40px -50px;
    }
    #is-old-recruit .kengakukai-box01 .box-s3 > div {
      flex-basis: calc(50% - 50px);
      max-width: calc(50% - 50px);
      margin: 0 0 0 50px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .img-s1 {
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .kengakukai-box01 .img-s1 img {
      max-width: 370px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .img-s1 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .kengakukai-box01 .img-s1 img {
      max-width: 370px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .txt-s3 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      line-height: 1.8;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .txt-s3 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      line-height: 1.8;
      margin: 0 0 20px 0;
    }
  }
  #is-old-recruit .kengakukai-box01 .btn-s2 {
    display: block;
    max-width: 270px;
    width: 100%;
    height: 45px;
    margin: 0 auto;
  }
  #is-old-recruit .kengakukai-box01 .btn-s2 a,
  #is-old-recruit .kengakukai-box01 .btn-s2 span {
    position: relative;
    display: block;
    font-size: 16px;
    font-size: clamp(14px, 1.6vw, 16px);
    letter-spacing: 2px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #42c497;
    background: #ffffff;
    border: 2px solid #42c497;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 30px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  #is-old-recruit .kengakukai-box01 .btn-s2 a::after,
  #is-old-recruit .kengakukai-box01 .btn-s2 span::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #42c497 #42c497 transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .kengakukai-box01 .btn-s2 a:hover,
  #is-old-recruit .kengakukai-box01 .btn-s2 span:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .tab-s1 {
      width: 100%;
      border: 1px solid #42c497;
      border-collapse: collapse;
      word-wrap: break-word;
      overflow-wrap: break-word;
      margin: 0 0 20px 0;
    }
    #is-old-recruit .kengakukai-box01 .tab-s1 th {
      display: block;
      width: 100%;
      box-sizing: border-box;
      padding: 15px;
      border-bottom: 1px solid #42c497;
      background: #d9f3ea;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .kengakukai-box01 .tab-s1 th br {
      display: none;
    }
    #is-old-recruit .kengakukai-box01 .tab-s1 td {
      display: block;
      width: 100%;
      box-sizing: border-box;
      padding: 15px;
      border-bottom: 1px solid #42c497;
      background: #ffffff;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .tab-s1 {
      width: 100%;
      border: 1px solid #42c497;
      border-collapse: collapse;
      word-wrap: break-word;
      overflow-wrap: break-word;
      margin: 0 0 20px 0;
    }
    #is-old-recruit .kengakukai-box01 .tab-s1 th {
      width: 160px;
      box-sizing: border-box;
      padding: 20px 30px;
      border-bottom: 1px solid #42c497;
      background: #d9f3ea;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .kengakukai-box01 .tab-s1 td {
      padding: 20px 30px;
      border-bottom: 1px solid #42c497;
      background: #ffffff;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
    }
  }
  #is-old-recruit .kengakukai-box01 .btn-s3 {
    display: block;
    border: solid 2px #42c497;
    border-radius: 32px;
    padding: 2px;
    max-width: 420px;
    width: 100%;
    height: 70px;
    margin: 0 auto;
  }
  #is-old-recruit .kengakukai-box01 .btn-s3 a {
    position: relative;
    display: block;
    font-size: 16px;
    font-size: clamp(14px, 1.6vw, 16px);
    letter-spacing: 2px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: #42c497;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 30px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }
  #is-old-recruit .kengakukai-box01 .btn-s3 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .kengakukai-box01 .btn-s3 a:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .txt-s4 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 19px;
      font-size: clamp(19px, 2.5vw, 25px);
      text-align: center;
      color: #fb516d;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .txt-s4 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 25px;
      font-size: clamp(19px, 2.5vw, 25px);
      text-align: center;
      color: #fb516d;
      margin: 0 0 20px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .tit-s3 {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 10px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .tit-s3 {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 10px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .box-s4 {
      background: #f7f7f7;
      padding: 20px 4% 35px 4%;
      margin: 0 -4%;
    }
    #is-old-recruit .kengakukai-box01 .box-s4 .box-s4-in {
      margin: 0 0 25px 0;
    }
    #is-old-recruit .kengakukai-box01 .box-s4 .box-s4-in > div {
      margin: 0;
    }
    #is-old-recruit .kengakukai-box01 .box-s4 .box-s4-in > div:nth-child(1) {
      margin: 0 0 30px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .box-s4 {
      background: #f7f7f7;
      padding: 20px 45px 35px 45px;
      margin: 0 -75px;
    }
    #is-old-recruit .kengakukai-box01 .box-s4 .box-s4-in {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 25px -30px;
    }
    #is-old-recruit .kengakukai-box01 .box-s4 .box-s4-in > div {
      flex-basis: calc(50% - 30px);
      max-width: calc(50% - 30px);
      margin: 0 0 0 30px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .lis-s2 {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 15px -5px;
    }
    #is-old-recruit .kengakukai-box01 .lis-s2 li {
      margin: 0 0 0 5px;
    }
    #is-old-recruit .kengakukai-box01 .lis-s2 li a {
      background: #ffffff;
      border: 1px solid #fb516d;
      padding: 5px 15px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      color: #fb516d;
      text-align: center;
      text-decoration: none;
    }
    #is-old-recruit .kengakukai-box01 .lis-s2 li:nth-child(1) a::before {
      content: "< ";
    }
    #is-old-recruit .kengakukai-box01 .lis-s2 li:nth-child(2) a::after {
      content: " >";
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .lis-s2 {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 15px -5px;
    }
    #is-old-recruit .kengakukai-box01 .lis-s2 li {
      margin: 0 0 0 5px;
    }
    #is-old-recruit .kengakukai-box01 .lis-s2 li a {
      background: #ffffff;
      border: 1px solid #fb516d;
      padding: 5px 15px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      color: #fb516d;
      text-align: center;
      text-decoration: none;
    }
    #is-old-recruit .kengakukai-box01 .lis-s2 li:nth-child(1) a::before {
      content: "< ";
    }
    #is-old-recruit .kengakukai-box01 .lis-s2 li:nth-child(2) a::after {
      content: " >";
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .tit-s4 {
      font-size: 15px;
      font-size: clamp(15px, 1.7vw, 17px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 15px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .tit-s4 {
      font-size: 17px;
      font-size: clamp(15px, 1.7vw, 17px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 15px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .calendar {
      width: 100%;
      table-layout: fixed;
      border-collapse: collapse;
      word-wrap: break-word;
      overflow-wrap: break-word;
      margin: 0;
    }
    #is-old-recruit .kengakukai-box01 .calendar th {
      padding: 15px;
      border: 1px solid #ffffff;
      background: #e1e1e1;
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      color: #767676;
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .kengakukai-box01 .calendar th:first-child {
      background: #eeaac4;
    }
    #is-old-recruit .kengakukai-box01 .calendar th:last-child {
      background: #c2e5ee;
    }
    #is-old-recruit .kengakukai-box01 .calendar td {
      vertical-align: top;
      height: 60px;
      box-sizing: border-box;
      padding: 10px 2px;
      border: 1px solid #dedede;
      background: #ffffff;
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      color: #767676;
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .kengakukai-box01 .calendar td.s1 {
      color: #cdcdcd;
    }
    #is-old-recruit .kengakukai-box01 .calendar td span {
      display: block;
    }
    #is-old-recruit .kengakukai-box01 .calendar td span img {
      width: 24px;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .calendar {
      width: 100%;
      table-layout: fixed;
      border-collapse: collapse;
      word-wrap: break-word;
      overflow-wrap: break-word;
      margin: 0;
    }
    #is-old-recruit .kengakukai-box01 .calendar th {
      padding: 15px;
      border: 1px solid #ffffff;
      background: #e1e1e1;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      color: #767676;
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .kengakukai-box01 .calendar th:first-child {
      background: #eeaac4;
    }
    #is-old-recruit .kengakukai-box01 .calendar th:last-child {
      background: #c2e5ee;
    }
    #is-old-recruit .kengakukai-box01 .calendar td {
      vertical-align: top;
      height: 60px;
      box-sizing: border-box;
      padding: 10px 2px;
      border: 1px solid #dedede;
      background: #ffffff;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      color: #767676;
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .kengakukai-box01 .calendar td.s1 {
      color: #cdcdcd;
    }
    #is-old-recruit .kengakukai-box01 .calendar td span {
      display: block;
    }
    #is-old-recruit .kengakukai-box01 .calendar td span img {
      width: 24px;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .kengakukai-box01 .lis-s3 {
      margin: 0;
    }
    #is-old-recruit .kengakukai-box01 .lis-s3 li {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 28px;
      text-align: left;
      color: #2f2f2f;
      min-height: 28px;
      padding: 0 0 0 35px;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .kengakukai-box01 .lis-s3 li:nth-child(1) {
      background: url("../../recruit/shared/images/ico_ca01.png") left 0 no-repeat;
      background-size: 28px auto;
    }
    #is-old-recruit .kengakukai-box01 .lis-s3 li:nth-child(2) {
      background: url("../../recruit/shared/images/ico_ca02.png") left 0 no-repeat;
      background-size: 28px auto;
    }
    #is-old-recruit .kengakukai-box01 .lis-s3 li:nth-child(3) {
      background: url("../../recruit/shared/images/ico_ca03.png") left 0 no-repeat;
      background-size: 28px auto;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .kengakukai-box01 .lis-s3 {
      margin: 0;
    }
    #is-old-recruit .kengakukai-box01 .lis-s3 li {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 28px;
      text-align: left;
      color: #2f2f2f;
      min-height: 28px;
      padding: 0 0 0 35px;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .kengakukai-box01 .lis-s3 li:nth-child(1) {
      background: url("../../recruit/shared/images/ico_ca01.png") left 0 no-repeat;
      background-size: 28px auto;
    }
    #is-old-recruit .kengakukai-box01 .lis-s3 li:nth-child(2) {
      background: url("../../recruit/shared/images/ico_ca02.png") left 0 no-repeat;
      background-size: 28px auto;
    }
    #is-old-recruit .kengakukai-box01 .lis-s3 li:nth-child(3) {
      background: url("../../recruit/shared/images/ico_ca03.png") left 0 no-repeat;
      background-size: 28px auto;
      margin: 0;
    }
  }
  #is-old-recruit {
    /*//////////////////////////////////////////////////////// */
    /* 見学会・説明会お申し込み-------------*/
    /*//////////////////////////////////////////////////////// */
    /* entry-kengaku-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0 0 40px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .entry-kengaku-box01-in {
      background: #ffffff;
      width: 100%;
      box-sizing: border-box;
      padding: 30px 4% 85px 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0 0 40px 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .entry-kengaku-box01-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 30px 75px 85px 75px;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .home-box01_btn-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .home-box01_btn-01 {
      position: absolute;
      top: 210px;
      right: -180px;
    }
    #is-old-recruit .entry-kengaku-box01 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .entry-kengaku-box01 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .tit-s1 {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 10px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .tit-s1 {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 10px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .box-s1 {
      background: #f7f7f7;
      padding: 20px 4% 35px 4%;
      margin: 0 -4% 25px -4%;
    }
    #is-old-recruit .entry-kengaku-box01 .box-s1 .box-s1-in {
      margin: 0 0 25px 0;
    }
    #is-old-recruit .entry-kengaku-box01 .box-s1 .box-s1-in > div {
      margin: 0;
    }
    #is-old-recruit .entry-kengaku-box01 .box-s1 .box-s1-in > div:nth-child(1) {
      margin: 0 0 30px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .box-s1 {
      background: #f7f7f7;
      padding: 20px 45px 35px 45px;
      margin: 0 -75px 25px -75px;
    }
    #is-old-recruit .entry-kengaku-box01 .box-s1 .box-s1-in {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 25px -30px;
    }
    #is-old-recruit .entry-kengaku-box01 .box-s1 .box-s1-in > div {
      flex-basis: calc(50% - 30px);
      max-width: calc(50% - 30px);
      margin: 0 0 0 30px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s1 {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 15px -5px;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s1 li {
      margin: 0 0 0 5px;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s1 li a {
      background: #ffffff;
      border: 1px solid #fb516d;
      padding: 5px 15px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      color: #fb516d;
      text-align: center;
      text-decoration: none;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s1 li:nth-child(1) a::before {
      content: "< ";
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s1 li:nth-child(2) a::after {
      content: " >";
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s1 {
      display: flex;
      flex-flow: row nowrap;
      align-items: center;
      justify-content: center;
      margin: 0 0 15px -5px;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s1 li {
      margin: 0 0 0 5px;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s1 li a {
      background: #ffffff;
      border: 1px solid #fb516d;
      padding: 5px 15px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      color: #fb516d;
      text-align: center;
      text-decoration: none;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s1 li:nth-child(1) a::before {
      content: "< ";
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s1 li:nth-child(2) a::after {
      content: " >";
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .tit-s2 {
      font-size: 15px;
      font-size: clamp(15px, 1.7vw, 17px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 15px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .tit-s2 {
      font-size: 17px;
      font-size: clamp(15px, 1.7vw, 17px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 15px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .calendar {
      width: 100%;
      table-layout: fixed;
      border-collapse: collapse;
      word-wrap: break-word;
      overflow-wrap: break-word;
      margin: 0;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar th {
      padding: 15px;
      border: 1px solid #ffffff;
      background: #e1e1e1;
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      color: #767676;
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar th:first-child {
      background: #eeaac4;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar th:last-child {
      background: #c2e5ee;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar td {
      vertical-align: top;
      height: 60px;
      box-sizing: border-box;
      padding: 10px 2px;
      border: 1px solid #dedede;
      background: #ffffff;
      font-size: 14px;
      font-size: clamp(14px, 1.6vw, 16px);
      color: #767676;
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar td.s1 {
      color: #cdcdcd;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar td span {
      display: block;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar td span img {
      width: 24px;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .calendar {
      width: 100%;
      table-layout: fixed;
      border-collapse: collapse;
      word-wrap: break-word;
      overflow-wrap: break-word;
      margin: 0;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar th {
      padding: 15px;
      border: 1px solid #ffffff;
      background: #e1e1e1;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      color: #767676;
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar th:first-child {
      background: #eeaac4;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar th:last-child {
      background: #c2e5ee;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar td {
      vertical-align: top;
      height: 60px;
      box-sizing: border-box;
      padding: 10px 2px;
      border: 1px solid #dedede;
      background: #ffffff;
      font-size: 16px;
      font-size: clamp(14px, 1.6vw, 16px);
      color: #767676;
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar td.s1 {
      color: #cdcdcd;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar td span {
      display: block;
    }
    #is-old-recruit .entry-kengaku-box01 .calendar td span img {
      width: 24px;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s2 {
      margin: 0;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s2 li {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 28px;
      text-align: left;
      color: #2f2f2f;
      min-height: 28px;
      padding: 0 0 0 35px;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s2 li:nth-child(1) {
      background: url("../../recruit/shared/images/ico_ca01.png") left 0 no-repeat;
      background-size: 28px auto;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s2 li:nth-child(2) {
      background: url("../../recruit/shared/images/ico_ca02.png") left 0 no-repeat;
      background-size: 28px auto;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s2 li:nth-child(3) {
      background: url("../../recruit/shared/images/ico_ca03.png") left 0 no-repeat;
      background-size: 28px auto;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s2 {
      margin: 0;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s2 li {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      line-height: 28px;
      text-align: left;
      color: #2f2f2f;
      min-height: 28px;
      padding: 0 0 0 35px;
      margin: 0 0 10px 0;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s2 li:nth-child(1) {
      background: url("../../recruit/shared/images/ico_ca01.png") left 0 no-repeat;
      background-size: 28px auto;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s2 li:nth-child(2) {
      background: url("../../recruit/shared/images/ico_ca02.png") left 0 no-repeat;
      background-size: 28px auto;
    }
    #is-old-recruit .entry-kengaku-box01 .lis-s2 li:nth-child(3) {
      background: url("../../recruit/shared/images/ico_ca03.png") left 0 no-repeat;
      background-size: 28px auto;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s1 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s1 em {
      color: #ff0000;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s1 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      margin: 0 100px 15px 100px;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s1 em {
      color: #ff0000;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .box-s2 {
      background: #d9efdb;
      padding: 20px 4% 15px 4%;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .box-s2 {
      background: #d9efdb;
      padding: 20px 100px 15px 100px;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .box-s3 {
      padding: 30px 4% 25px 4%;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .box-s3 {
      padding: 30px 100px 25px 100px;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .box-s4 {
      margin: 0;
    }
    #is-old-recruit .entry-kengaku-box01 .box-s4 > div {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .box-s4 {
      display: flex;
      flex-flow: row wrap;
      align-items: stretch;
      justify-content: flex-start;
      margin: 0 0 0 -29px;
    }
    #is-old-recruit .entry-kengaku-box01 .box-s4 > div {
      margin: 0 0 0 29px;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s2 {
      font-size: 14px;
      text-align: left;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s2 em {
      color: #ff0000;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s2 em.s1 {
      color: #ed1c24;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s2 {
      font-size: 14px;
      text-align: left;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s2 em {
      color: #ff0000;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s2 em.s1 {
      color: #ed1c24;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s3 {
      font-size: 16px;
      font-weight: bold;
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s3 em {
      color: #ed1c24;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s3 {
      font-size: 16px;
      font-weight: bold;
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s3 em {
      color: #ed1c24;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s2 label {
      display: block;
      font-size: 14px;
      margin: 10px 0;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s2 label {
      display: inline-block;
      font-size: 14px;
      margin: 10px 1em 10px 0;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s2 > span {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s2 > span > span:nth-child(2) {
      flex: 1;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s2 > span > span:nth-child(2) input.s1,
    #is-old-recruit .entry-kengaku-box01 .txt-s2 > span > span:nth-child(2) textarea.s1 {
      margin: 10px 0;
    }
  }
  #is-old-recruit .entry-kengaku-box01 input.s1,
  #is-old-recruit .entry-kengaku-box01 input.s2,
  #is-old-recruit .entry-kengaku-box01 input.s3,
  #is-old-recruit .entry-kengaku-box01 input.s4,
  #is-old-recruit .entry-kengaku-box01 input.s5,
  #is-old-recruit .entry-kengaku-box01 input.s6,
  #is-old-recruit .entry-kengaku-box01 textarea,
  #is-old-recruit .entry-kengaku-box01 select {
    width: 100%;
    min-height: 26px;
    box-sizing: border-box;
    padding: 0 10px;
    border: 1px solid #a4a4a4;
    background: #ffffff;
    font-size: 16px;
    margin: 5px 0 0 0;
  }
  #is-old-recruit .entry-kengaku-box01 textarea {
    padding: 10px;
    height: 190px;
  }
  #is-old-recruit .entry-kengaku-box01 textarea.s1 {
    height: 56px;
  }
  #is-old-recruit .entry-kengaku-box01 input.s3 {
    max-width: 70px;
  }
  #is-old-recruit .entry-kengaku-box01 input.s6 {
    max-width: 40%;
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 input.s1,
    #is-old-recruit .entry-kengaku-box01 textarea {
      font-size: 14px;
    }
    #is-old-recruit .entry-kengaku-box01 input.s2 {
      max-width: 405px;
      font-size: 14px;
    }
    #is-old-recruit .entry-kengaku-box01 input.s3 {
      max-width: 70px;
      font-size: 14px;
    }
    #is-old-recruit .entry-kengaku-box01 input.s4 {
      max-width: 185px;
      font-size: 14px;
    }
    #is-old-recruit .entry-kengaku-box01 input.s5 {
      /*max-*/
      width: 436px;
      font-size: 14px;
    }
    #is-old-recruit .entry-kengaku-box01 input.s6 {
      max-width: 150px;
      font-size: 14px;
    }
    #is-old-recruit .entry-kengaku-box01 select {
      max-width: 245px;
      font-size: 14px;
    }
  }
  #is-old-recruit .entry-kengaku-box01 ::placeholder {
    color: #a4a4a4;
  }
  #is-old-recruit .entry-kengaku-box01 ::-ms-input-placeholder { /* 旧Edge対応 */
    color: #a4a4a4;
  }
  #is-old-recruit .entry-kengaku-box01 :-ms-input-placeholder { /* IE対応 */
    color: #a4a4a4;
  }
  #is-old-recruit .entry-kengaku-box01 .btn-s1,
  #is-old-recruit .entry-kengaku-box01 .btn-s2,
  #is-old-recruit .entry-kengaku-box01 .btn-s3 {
    display: block;
    border: solid 2px #fb516d;
    border-radius: 32px;
    padding: 2px;
    max-width: 428px;
    width: 100%;
    height: 70px;
    margin: 40px auto 20px auto;
  }
  #is-old-recruit .entry-kengaku-box01 .btn-s2 {
    border: solid 2px #ff8fb7;
  }
  #is-old-recruit .entry-kengaku-box01 .btn-s1 a,
  #is-old-recruit .entry-kengaku-box01 .btn-s2 a,
  #is-old-recruit .entry-kengaku-box01 .btn-s3 a {
    position: relative;
    display: block;
    font-size: 16px;
    font-size: clamp(14px, 1.6vw, 16px);
    letter-spacing: 2px;
    line-height: 70px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: #fb516d;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 30px;
  }
  #is-old-recruit .entry-kengaku-box01 .btn-s2 a {
    background: #ff8fb7;
  }
  #is-old-recruit .entry-kengaku-box01 .btn-s1 a::after,
  #is-old-recruit .entry-kengaku-box01 .btn-s2 a::after,
  #is-old-recruit .entry-kengaku-box01 .btn-s3 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .entry-kengaku-box01 .btn-s2 a::after {
    right: inherit;
    left: 5%;
    border-color: transparent transparent #fff #fff;
  }
  #is-old-recruit .entry-kengaku-box01 .btn-s1 a:hover,
  #is-old-recruit .entry-kengaku-box01 .btn-s2 a:hover,
  #is-old-recruit .entry-kengaku-box01 .btn-s3 a:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s4 {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 0 50px 0;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s4 span {
      color: #fb516d;
      text-decoration: none;
      padding: 0 40px;
      cursor: pointer;
      position: relative;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s4 span::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      margin: auto;
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background: #fb516d;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s4 span::after {
      content: "";
      position: absolute;
      top: 3px;
      right: 5px;
      margin: auto;
      width: 5px;
      height: 5px;
      border: 2px solid;
      border-radius: 2px;
      border-color: transparent #fff #fff transparent;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s4 span:hover {
      opacity: 0.8;
      -ms-filter: "alpha(opacity=80)";
      -moz-opacity: 0.8;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*タブレット・PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s4 {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: center;
      margin: 0 0 50px 0;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s4 span {
      color: #fb516d;
      text-decoration: none;
      padding: 0 40px;
      cursor: pointer;
      position: relative;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s4 span::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      margin: auto;
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background: #fb516d;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s4 span::after {
      content: "";
      position: absolute;
      top: 3px;
      right: 5px;
      margin: auto;
      width: 5px;
      height: 5px;
      border: 2px solid;
      border-radius: 2px;
      border-color: transparent #fff #fff transparent;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s4 span:hover {
      opacity: 0.8;
      -ms-filter: "alpha(opacity=80)";
      -moz-opacity: 0.8;
    }
  }
  #is-old-recruit .entry-kengaku-box01 #slideBox {
    display: none;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    padding: 30px;
    background: #ffffff;
    margin: -40px 0 50px 0;
  }
  #is-old-recruit .entry-kengaku-box01 #slideBox p {
    font-size: 14px;
    text-align: left;
    margin: 0 0 40px 0;
  }
  #is-old-recruit .entry-kengaku-box01 #slideBox ol {
    counter-reset: item;
    list-style-type: none;
    margin: 0;
  }
  #is-old-recruit .entry-kengaku-box01 #slideBox ol li {
    font-size: 14px;
    text-align: left;
    text-indent: -2.6em;
    margin: 0 0 30px 2.6em;
  }
  #is-old-recruit .entry-kengaku-box01 #slideBox ol li:last-child {
    margin: 0 0 0 2.6em;
  }
  #is-old-recruit .entry-kengaku-box01 #slideBox ol li:before {
    counter-increment: item;
    content: "［" counter(item) "］";
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s5 {
      font-size: 12px;
      text-align: left;
      line-height: 2;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s5:last-of-type {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s5 {
      font-size: 12px;
      text-align: left;
      line-height: 2;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .entry-kengaku-box01 .txt-s5:last-of-type {
      margin: 0;
    }
  }
  #is-old-recruit {
    /*//////////////////////////////////////////////////////// */
    /* 2023年度新卒採用-------------*/
    /*//////////////////////////////////////////////////////// */
    /* shinsotsu-box01--------------------------*/
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .shinsotsu-box01-in {
      background: #ffffff;
      width: 100%;
      box-sizing: border-box;
      padding: 40px 4% 50px 4%;
      margin: 0;
      position: relative;
      text-align: center;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 {
      box-sizing: border-box;
      text-align: left;
      padding: 0;
      margin: 0;
      position: relative;
    }
    #is-old-recruit .shinsotsu-box01-in {
      background: #ffffff;
      max-width: 1000px;
      width: 100%;
      box-sizing: border-box;
      padding: 40px 75px 50px 75px;
      margin: 0 auto;
      position: relative;
      text-align: center;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .home-box01_btn-01 {
      display: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .home-box01_btn-01 {
      position: absolute;
      top: 210px;
      right: -180px;
    }
    #is-old-recruit .shinsotsu-box01 .home-box01_btn-01 img {
      max-width: 250px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .shinsotsu-box01 .home-box01_btn-01 a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      color: #42c497;
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      color: #42c497;
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s1 {
      border: 5px solid #d9f3ea;
      padding: 20px;
      margin: 0 0 30px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s1 {
      border: 5px solid #d9f3ea;
      padding: 20px;
      margin: 0 0 30px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s2 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .shinsotsu-box01 .txt-s2 span {
      display: inline-block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 24px;
      font-size: clamp(24px, 3vw, 30px);
      font-weight: bold;
      margin: 0 0 0 1em;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s2 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
      margin: 0;
    }
    #is-old-recruit .shinsotsu-box01 .txt-s2 span {
      display: inline-block;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(24px, 3vw, 30px);
      font-weight: bold;
      margin: 0 0 0 1em;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .lis-s1 {
      margin: 0 4% 40px 4%;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s1 dt {
      clear: both;
      float: left;
      width: 160px;
      padding: 0 0 5px 0;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s1 dt::before {
      content: "● ";
      color: #42c497;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s1 dd {
      padding: 0 0 5px 160px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .lis-s1 {
      margin: 0 40px 40px 40px;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s1 dt {
      clear: both;
      float: left;
      width: 160px;
      padding: 0 0 5px 0;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s1 dt::before {
      content: "● ";
      color: #42c497;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s1 dd {
      padding: 0 0 5px 160px;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s10 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: clamp(24px, 2.8vw, 28px);
      font-weight: bold;
      color: #fc899c;
      margin: 0 0 10px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s10 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: clamp(26px, 2.8vw, 28px);
      font-weight: bold;
      color: #fc899c;
      margin: 0 0 10px 0;
    }
  }
  @media screen and (max-width: 559px) {
    #is-old-recruit {
      /*スマホ用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .lis-s5 {
      margin: 0 0 20px 0;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s5 li {
      margin: 0 0 10px 0;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s5 li img {
      max-width: 276px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s5 li a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media print, screen and (min-width: 560px) {
    #is-old-recruit {
      /*PC・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .lis-s5 {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 20px -10px;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s5 li {
      flex-basis: 33.3333333333%;
      margin: 0 0 0 10px;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s5 li img {
      max-width: 276px;
      width: 100%;
      height: auto;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s5 li a:hover img {
      opacity: 0.7;
      -ms-filter: "alpha(opacity=70)";
      -moz-opacity: 0.7;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s11 {
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      margin: 0 0 25px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s11 {
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      margin: 0 0 25px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s8 {
      padding: 0 0 237px 0;
      border-bottom: 1px solid #42c497;
      margin: 0 0 70px 0;
      position: relative;
    }
    #is-old-recruit .shinsotsu-box01 .box-s8::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      display: block;
      width: 280px;
      height: 237px;
      background: url("../../recruit/shared/images/shinsotsu-box01_bg-04.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .shinsotsu-box01 .box-s8 .btn-s1 {
      margin: 0 auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s8 {
      padding: 0 0 65px 0;
      border-bottom: 1px solid #42c497;
      margin: 0 0 70px 0;
      position: relative;
    }
    #is-old-recruit .shinsotsu-box01 .box-s8::after {
      content: "";
      position: absolute;
      top: 0;
      right: -75px;
      margin: auto;
      display: block;
      width: 280px;
      height: 237px;
      background: url("../../recruit/shared/images/shinsotsu-box01_bg-04.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .shinsotsu-box01 .box-s8 .btn-s1 {
      margin: 0 auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s9 {
      width: fit-content;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      color: #42c497;
      margin: 0 auto 15px auto;
      position: relative;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s9::before {
      content: "";
      position: absolute;
      left: -30px;
      top: 0;
      bottom: 0;
      margin: auto;
      display: block;
      width: 15px;
      height: 3px;
      background: #42c497;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s9::after {
      content: "";
      position: absolute;
      right: -30px;
      top: 0;
      bottom: 0;
      margin: auto;
      display: block;
      width: 15px;
      height: 3px;
      background: #42c497;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s9 {
      width: fit-content;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      color: #42c497;
      margin: 0 auto 15px auto;
      position: relative;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s9::before {
      content: "";
      position: absolute;
      left: -30px;
      top: 0;
      bottom: 0;
      margin: auto;
      display: block;
      width: 15px;
      height: 3px;
      background: #42c497;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s9::after {
      content: "";
      position: absolute;
      right: -30px;
      top: 0;
      bottom: 0;
      margin: auto;
      display: block;
      width: 15px;
      height: 3px;
      background: #42c497;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s12 {
      width: fit-content;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      text-align: left;
      margin: 0 auto 15px auto;
    }
    #is-old-recruit .shinsotsu-box01 .txt-s12 span {
      display: inline-block;
      width: 10em;
    }
    #is-old-recruit .shinsotsu-box01 .txt-s12 a {
      color: #42c497;
      text-decoration: none;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s12 {
      width: fit-content;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      text-align: left;
      margin: 0 auto 15px auto;
    }
    #is-old-recruit .shinsotsu-box01 .txt-s12 span {
      display: inline-block;
      width: 10em;
    }
    #is-old-recruit .shinsotsu-box01 .txt-s12 a {
      color: #42c497;
      text-decoration: none;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      color: #42c497;
      text-align: center;
      margin: 0 0 25px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s1 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      color: #42c497;
      text-align: center;
      margin: 0 0 25px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1 {
      width: 100%;
      border-top: 1px solid #42c497;
      border-left: 1px solid #42c497;
      border-right: 1px solid #42c497;
      border-collapse: collapse;
      word-wrap: break-word;
      overflow-wrap: break-word;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1.s1 {
      border-top: 1px solid #8597dd;
      border-left: 1px solid #8597dd;
      border-right: 1px solid #8597dd;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1 th {
      display: block;
      width: 100%;
      box-sizing: border-box;
      padding: 15px;
      border-bottom: 1px solid #42c497;
      background: #d9f3ea;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1.s1 th {
      border-bottom: 1px solid #8597dd;
      background: #eceffd;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1 th br {
      display: none;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1 td {
      display: block;
      width: 100%;
      box-sizing: border-box;
      padding: 15px;
      border-bottom: 1px solid #42c497;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1.s1 td {
      border-bottom: 1px solid #8597dd;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1 td span.s1 {
      display: inline-block;
      width: 7em;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1 {
      width: 100%;
      border: 1px solid #42c497;
      border-collapse: collapse;
      word-wrap: break-word;
      overflow-wrap: break-word;
      margin: 0 0 30px 0;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1.s1 {
      border: 1px solid #8597dd;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1 th {
      width: 135px;
      box-sizing: border-box;
      padding: 15px 10px;
      border-bottom: 1px solid #42c497;
      background: #d9f3ea;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1.s1 th {
      border-bottom: 1px solid #8597dd;
      background: #eceffd;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1 td {
      padding: 15px 30px;
      border-bottom: 1px solid #42c497;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1.s1 td {
      border-bottom: 1px solid #8597dd;
    }
    #is-old-recruit .shinsotsu-box01 .tab-s1 td span.s1 {
      display: inline-block;
      width: 7em;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .lis-s2 {
      font-size: 0;
      margin: 0;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s2 li {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      text-indent: -1.3em;
      margin: 0 0 0 1.3em;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s2 li::before {
      content: "● ";
      color: #42c497;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .lis-s2 {
      font-size: 0;
      margin: 0;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s2 li {
      display: inline-block;
      width: 45%;
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      text-indent: -1.3em;
      margin: 0 0 0 1.3em;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s2 li::before {
      content: "● ";
      color: #42c497;
    }
  }
  #is-old-recruit .shinsotsu-box01 .btn-s1 {
    display: block;
    border: solid 2px #42c497;
    border-radius: 32px;
    padding: 2px;
    max-width: 420px;
    width: 100%;
    height: 70px;
    margin: 0 auto 40px auto;
  }
  #is-old-recruit .shinsotsu-box01 .btn-s1 a {
    position: relative;
    display: block;
    font-size: 16px;
    font-size: clamp(14px, 1.6vw, 16px);
    letter-spacing: 2px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: #42c497;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 30px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }
  #is-old-recruit .shinsotsu-box01 .btn-s1 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .shinsotsu-box01 .btn-s1 a:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s2 {
      border: 2px solid #42c497;
      border-radius: 30px;
      padding: 35px 4% 25px 4%;
      margin: 0 0 50px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s2 {
      border: 2px solid #42c497;
      border-radius: 30px;
      padding: 35px 35px 25px 35px;
      margin: 0 0 50px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s2 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      color: #42c497;
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s2 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      color: #42c497;
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s3 {
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      font-weight: bold;
      text-align: center;
      line-height: 1.8;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s3 {
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      font-weight: bold;
      text-align: center;
      line-height: 1.8;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s3 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 24px;
      font-size: clamp(24px, 3vw, 30px);
      color: #fb516d;
      text-align: center;
      line-height: 1.6;
      margin: 0 0 15px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s3 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(24px, 3vw, 30px);
      color: #fb516d;
      text-align: center;
      margin: 0 0 15px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s4 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      margin: 0 0 25px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s4 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      margin: 0 0 50px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .shinsotsu-box01_img-01 {
      text-align: center;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .shinsotsu-box01 .shinsotsu-box01_img-01 img {
      max-width: 851px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .shinsotsu-box01_img-01 {
      text-align: center;
      margin: 0 0 15px 0;
    }
    #is-old-recruit .shinsotsu-box01 .shinsotsu-box01_img-01 img {
      max-width: 851px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s3 {
      width: 534px;
      width: 100%;
      min-height: 171px;
      box-sizing: border-box;
      padding: 30px 0 50px 0;
      background: url("../../recruit/shared/images/shinsotsu-box01_bg-01.png") center center no-repeat;
      background-size: contain;
      text-align: center;
      margin: 0 auto 50px auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s3 {
      width: 534px;
      width: 100%;
      min-height: 171px;
      box-sizing: border-box;
      padding: 0 0 15px 0;
      background: url("../../recruit/shared/images/shinsotsu-box01_bg-01.png") center center no-repeat;
      background-size: contain;
      text-align: center;
      margin: 0 auto 50px auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s4 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      color: #fb516d;
      text-align: center;
      margin: 0 0 25px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s4 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      color: #fb516d;
      text-align: center;
      margin: 0 0 25px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .lis-s3 {
      display: inline-block;
      margin: 0;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s3 li {
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      font-weight: bold;
      text-align: left;
      text-indent: -1.3em;
      margin: 0 0 5px 1.3em;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s3 li::before {
      content: "✓ ";
      color: #fb516d;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .lis-s3 {
      display: inline-block;
      margin: 0;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s3 li {
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      font-weight: bold;
      text-align: left;
      text-indent: -1.3em;
      margin: 0 0 5px 1.3em;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s3 li::before {
      content: "✓ ";
      color: #fb516d;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s4 {
      background: #ffbdd0;
      padding: 40px 4% 25px 4%;
      margin: 0 -4% 65px -4%;
      position: relative;
    }
    #is-old-recruit .shinsotsu-box01 .box-s4::after {
      content: "";
      position: absolute;
      right: 130px;
      bottom: 70px;
      margin: auto;
      width: 94px;
      height: 103px;
      background: url("../../recruit/shared/images/shinsotsu-box01_bg-02.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .shinsotsu-box01 .box-s4 .box-s4-in {
      margin: 0;
    }
    #is-old-recruit .shinsotsu-box01 .box-s4 .box-s4-in ul:nth-child(1) {
      margin: 0 0 30px 0;
    }
    #is-old-recruit .shinsotsu-box01 .box-s4 .box-s4-in ul:nth-child(2) {
      margin: 0 0 150px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s4 {
      background: #ffbdd0;
      padding: 40px 75px 25px 75px;
      margin: 0 -75px 65px -75px;
      position: relative;
    }
    #is-old-recruit .shinsotsu-box01 .box-s4::after {
      content: "";
      position: absolute;
      right: 130px;
      bottom: 70px;
      margin: auto;
      width: 94px;
      height: 103px;
      background: url("../../recruit/shared/images/shinsotsu-box01_bg-02.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .shinsotsu-box01 .box-s4 .box-s4-in {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: center;
      margin: 0 0 0 -30px;
    }
    #is-old-recruit .shinsotsu-box01 .box-s4 .box-s4-in ul {
      flex-basis: calc(50% - 30px);
      max-width: calc(50% - 30px);
      margin: 0 0 0 30px;
    }
    #is-old-recruit .shinsotsu-box01 .box-s4 .box-s4-in ul:nth-child(2) {
      margin: 0 0 135px 30px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s5 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      color: #ffffff;
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s5 span {
      display: inline-block;
      padding: 0 59px 0 49px;
      position: relative;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s5 span::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -10px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: auto;
      width: 49px;
      height: 53px;
      background: url("../../recruit/shared/images/bg_02.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s5 span::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -10px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: auto;
      width: 59px;
      height: 51px;
      background: url("../../recruit/shared/images/bg_03.png") 0 0 no-repeat;
      background-size: contain;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s5 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      color: #ffffff;
      text-align: center;
      margin: 0 0 25px 0;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s5 span {
      position: relative;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s5 span::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -100px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: auto;
      width: 49px;
      height: 53px;
      background: url("../../recruit/shared/images/bg_02.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s5 span::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -100px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      margin: auto;
      width: 59px;
      height: 51px;
      background: url("../../recruit/shared/images/bg_03.png") 0 0 no-repeat;
      background-size: contain;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s5 span br {
      display: none;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .lis-s4 {
      margin: 0;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s4 li {
      background: #ffffff;
      border: 1px solid #fc899c;
      padding: 30px 4%;
      border-radius: 30px;
      margin: 0 0 15px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .lis-s4 {
      margin: 0;
    }
    #is-old-recruit .shinsotsu-box01 .lis-s4 li {
      background: #ffffff;
      border: 1px solid #fc899c;
      padding: 30px 35px;
      border-radius: 30px;
      margin: 0 0 15px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s6 {
      font-size: 16px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: left;
      line-height: 1.6;
      margin: 0 0 10px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s6 {
      font-size: 18px;
      font-size: clamp(16px, 1.8vw, 18px);
      font-weight: bold;
      color: #fb516d;
      text-align: left;
      line-height: 1.6;
      margin: 0 0 10px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s5 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      line-height: 1.8;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s5 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      text-align: left;
      line-height: 1.8;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s5 {
      width: 534px;
      width: 100%;
      min-height: 171px;
      box-sizing: border-box;
      padding: 20px 0 35px 0;
      background: url("../../recruit/shared/images/shinsotsu-box01_bg-03.png") center center no-repeat;
      background-size: contain;
      text-align: center;
      margin: 0 auto 15px auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s5 {
      width: 534px;
      width: 100%;
      min-height: 171px;
      box-sizing: border-box;
      padding: 20px 0 35px 0;
      background: url("../../recruit/shared/images/shinsotsu-box01_bg-03.png") center center no-repeat;
      background-size: contain;
      text-align: center;
      margin: 0 auto 15px auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s6 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      color: #333333;
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s6 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      color: #333333;
      text-align: center;
      margin: 0 0 20px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s7 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 18px;
      font-size: clamp(18px, 2vw, 20px);
      color: #333333;
      text-align: center;
      line-height: 1.6;
      margin: 0;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s7 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 24px;
      font-size: clamp(24px, 3vw, 30px);
      color: #8597dd;
      line-height: 1;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s7 {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 20px;
      font-size: clamp(18px, 2vw, 20px);
      color: #333333;
      text-align: center;
      line-height: 1.6;
      margin: 0;
    }
    #is-old-recruit .shinsotsu-box01 .tit-s7 span {
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 900;
      font-size: 30px;
      font-size: clamp(24px, 3vw, 30px);
      color: #8597dd;
      line-height: 1;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s6 {
      margin: 0 0 50px 0;
    }
    #is-old-recruit .shinsotsu-box01 .box-s6 > div {
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s6 {
      display: flex;
      flex-flow: row nowrap;
      align-items: stretch;
      justify-content: space-between;
      margin: 0 0 50px 0;
    }
    #is-old-recruit .shinsotsu-box01 .box-s6 > div {
      flex-basis: 50%;
      max-width: 50%;
      margin: 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .shinsotsu-box01_img-02 {
      text-align: center;
      margin: 0 0 40px 0;
    }
    #is-old-recruit .shinsotsu-box01 .shinsotsu-box01_img-02 img {
      max-width: 420px;
      width: 100%;
      height: auto;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .shinsotsu-box01_img-02 {
      text-align: left;
      margin: 0;
    }
    #is-old-recruit .shinsotsu-box01 .shinsotsu-box01_img-02 img {
      max-width: 420px;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s7 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      color: #272727;
      text-align: left;
      margin: 0 4% 30px 4%;
    }
    #is-old-recruit .shinsotsu-box01 .txt-s7:last-of-type {
      margin: 0 4% 0 4%;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s7 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      color: #272727;
      text-align: left;
      margin: 0 45px 30px 50px;
    }
    #is-old-recruit .shinsotsu-box01 .txt-s7:last-of-type {
      margin: 0 45px 0 50px;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s8 {
      font-size: 16px;
      font-size: clamp(16px, 1.6vw, 16px);
      font-weight: bold;
      color: #fb516d;
      text-align: left;
      margin: 0 4% 30px 4%;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s8 {
      font-size: 16px;
      font-size: clamp(16px, 1.6vw, 16px);
      font-weight: bold;
      color: #fb516d;
      text-align: left;
      margin: 0 45px 30px 50px;
    }
  }
  #is-old-recruit .shinsotsu-box01 .btn-s2 {
    display: block;
    border: solid 2px #fb516d;
    border-radius: 32px;
    padding: 2px;
    max-width: 460px;
    width: 100%;
    height: 70px;
    margin: 0 auto 20px auto;
  }
  #is-old-recruit .shinsotsu-box01 .btn-s2 a {
    position: relative;
    display: block;
    font-size: 16px;
    font-size: clamp(14px, 1.6vw, 16px);
    letter-spacing: 2px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    background: #fb516d;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 30px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }
  #is-old-recruit .shinsotsu-box01 .btn-s2 a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 2px;
    border-color: #fff #fff transparent transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #is-old-recruit .shinsotsu-box01 .btn-s2 a:hover {
    opacity: 0.8;
    -ms-filter: "alpha(opacity=80)";
    -moz-opacity: 0.8;
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s7 {
      border: 2px solid #8597dd;
      border-radius: 27px;
      padding: 30px 4% 30px 4%;
      margin: 0 0 40px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .box-s7 {
      border: 2px solid #8597dd;
      border-radius: 27px;
      padding: 30px 45px 30px 45px;
      margin: 0 0 40px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s8 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 10px 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .tit-s8 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: center;
      margin: 0 0 10px 0;
    }
  }
  @media screen and (max-width: 959px) {
    #is-old-recruit {
      /*スマホ・タブレット用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s9 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      line-height: 2;
      margin: 0;
    }
  }
  @media print, screen and (min-width: 960px) {
    #is-old-recruit {
      /*PC用指定*/
    }
    #is-old-recruit .shinsotsu-box01 .txt-s9 {
      font-size: 14px;
      font-size: clamp(14px, 1.4vw, 14px);
      font-weight: bold;
      text-align: left;
      line-height: 2;
      margin: 0;
    }
  }
}
@layer new {
  #stats {
    background-color: #FFFDFB;
    color: #000000;
  }
  #stats *,
  #stats *::before,
  #stats *::after {
    box-sizing: border-box;
  }
  #stats img {
    display: block;
    height: auto;
    image-rendering: auto;
  }
  .stats-container {
    position: relative;
    width: 100%;
    margin-inline: auto;
    padding-inline: 4%;
  }
  @media (min-width: 768px) {
    .stats-container {
      padding-inline: 0;
      max-width: 1000px;
    }
  }
  .stats-section {
    padding-block: clamp(2.5rem, 1.9318181818rem + 2.4242424242vw, 3.75rem) clamp(2.8125rem, 2.2443181818rem + 2.4242424242vw, 4.0625rem);
  }
  .stats-section + .stats-section {
    border-top: 1px solid #C9BC9C;
  }
  .stats-section__inner {
    width: min(100% - 40px, 950px);
    margin: 0 auto;
  }
  .section-heading {
    margin: 0 auto 38px;
    text-align: center;
  }
  .section-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.3125rem, 0.1704545455rem + 0.6060606061vw, 0.625rem);
    margin: 0 0 12px;
    font-size: clamp(1.125rem, 0.8977272727rem + 0.9696969697vw, 1.625rem);
    font-weight: 600;
    line-height: 1.2;
  }
  .section-heading__eyebrow::before, .section-heading__eyebrow::after {
    display: block;
    width: clamp(1.125rem, 1.0113636364rem + 0.4848484848vw, 1.375rem);
    height: clamp(1.125rem, 1.0113636364rem + 0.4848484848vw, 1.375rem);
    border-radius: 50%;
    background: #EA932A;
    content: "";
  }
  .section-heading__title {
    margin: 0;
    color: #EA932A;
    font-size: clamp(1.25rem, 0.7954545455rem + 1.9393939394vw, 2.25rem);
    font-weight: 900;
    line-height: 1.42857143;
  }
  .section-heading__title span {
    display: inline-block;
  }
  .section-heading__lead {
    max-width: 720px;
    margin: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem) auto 0;
    font-size: clamp(0.875rem, 0.7897727273rem + 0.3636363636vw, 1.0625rem);
    font-weight: 600;
    line-height: 1.6;
  }
  .section-heading__lead span {
    display: inline-block;
  }
  .stat-card__wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 0.6818181818rem + 2.4242424242vw, 2.5rem);
  }
  .stats-grid {
    display: grid;
    gap: clamp(1.25rem, 0.6818181818rem + 2.4242424242vw, 2.5rem);
  }
  @media print, screen and (min-width: 768px) {
    .stats-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .stats-grid.non-gap {
      gap: 0;
    }
  }
  .stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px 20px;
    border-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
    background: #FFFFFF;
    box-shadow: 0 4px 24px rgba(58, 49, 35, 0.05);
    text-align: center;
  }
  @media print, screen and (min-width: 768px) {
    .stat-card {
      padding: 40px 30px;
    }
  }
  .stats-grid__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }
  @media print, screen and (min-width: 768px) {
    .stat-card--center {
      grid-column: 1/-1;
      width: min(100%, 430px);
      justify-self: center;
    }
  }
  .stat-card__title {
    font-size: clamp(1.25rem, 1.1363636364rem + 0.4848484848vw, 1.5rem);
    font-weight: 600;
    line-height: 1.42857143;
  }
  .stat-card__title.stat-card__title--colored {
    color: #EA932A;
  }
  .stat-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }
  .stat-card__visual img {
    width: 100%;
  }
  .stat-card__image {
    max-width: 400px;
  }
  .stat-card__text {
    margin: 0;
    font-size: clamp(0.875rem, 0.7613636364rem + 0.4848484848vw, 1.125rem);
    font-weight: 600;
    line-height: 1.8;
  }
  @media print, screen and (max-width: 767px) {
    .stat-card__text br {
      display: none;
    }
    .stat-card__text span {
      display: inline-block;
    }
  }
  .stat-card__list {
    margin: 0 auto;
    width: fit-content;
    text-align: left;
  }
  .stat-card__item {
    position: relative;
    padding-left: 22px;
    font-size: clamp(0.9375rem, 0.8522727273rem + 0.3636363636vw, 1.125rem);
    font-weight: 600;
  }
  .stat-card__item::before {
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #EA932A;
    content: "";
  }
  .mbti-section__image {
    width: min(100%, 770px);
    margin-inline: auto;
  }
  .teacher-section {
    padding-top: 0;
    border: none !important;
  }
  .teacher-section__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(5rem, 4.4318181818rem + 2.4242424242vw, 6.25rem);
  }
  .teacher-profile {
    display: grid;
    gap: clamp(1.25rem, 0.3977272727rem + 3.6363636364vw, 3.125rem);
  }
  @media print, screen and (min-width: 768px) {
    .teacher-profile {
      grid-template-columns: 43% 1fr;
    }
  }
  .teacher-profile__wrapper {
    padding-bottom: 50px;
  }
  .teacher-profile__media {
    position: relative;
    max-width: 460px;
    height: fit-content;
    margin-inline: auto;
    padding: 0 10px 10px 0;
    background-color: #FFFFFF;
  }
  .teacher-profile__media::before, .teacher-profile__media::after {
    position: absolute;
    right: -10px;
    content: "";
  }
  .teacher-profile__media::before {
    bottom: -10px;
    left: 0;
    height: 10px;
    background-color: #EA932A;
  }
  .teacher-profile__media::after {
    top: 0;
    bottom: -10px;
    width: 10px;
    background-color: #EA932A;
  }
  .teacher-profile__photo {
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .teacher-profile__chart {
    position: absolute;
    z-index: 2;
    right: 8%;
    bottom: -24%;
    width: clamp(7.8125rem, 7.1022727273rem + 3.0303030303vw, 9.375rem);
  }
  .teacher-profile__lead {
    margin-block: 0 20px;
    font-size: clamp(1.125rem, 0.9545454545rem + 0.7272727273vw, 1.5rem);
    font-weight: 600;
    line-height: 1.6;
  }
  .teacher-profile__text {
    margin: 0;
    line-height: 1.8;
  }
  .ranking-card {
    position: relative;
  }
  .ranking-card__title {
    margin-bottom: 20px;
    font-size: clamp(1.125rem, 0.9545454545rem + 0.7272727273vw, 1.5rem);
    font-weight: 600;
    line-height: 1.42857143;
    text-align: center;
  }
  .ranking-card__title span {
    padding-right: 0.2em;
    color: #EA932A;
    font-family: sans-serif;
    font-size: 1.5em;
  }
  .ranking-card__columns {
    display: grid;
    gap: 25px;
  }
  @media print, screen and (min-width: 768px) {
    .ranking-card__columns {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 50px;
    }
  }
  .ranking-card__image {
    width: 150px;
    margin: 0 auto;
  }
  @media print, screen and (min-width: 768px) {
    .ranking-card__image {
      position: absolute;
      right: 30px;
      bottom: 40px;
      width: clamp(3.125rem, 0.2840909091rem + 12.1212121212vw, 9.375rem);
    }
  }
  .ranking-card__subtitle {
    margin-bottom: 10px;
    color: #EA932A;
    font-size: clamp(1.0625rem, 0.8920454545rem + 0.7272727273vw, 1.4375rem);
    font-weight: 900;
    line-height: 1.42857143;
  }
  .stat-list {
    margin: 0 auto;
    width: fit-content;
  }
  .stat-list__item {
    margin-top: 0.75em;
    font-size: clamp(1rem, 0.9147727273rem + 0.3636363636vw, 1.1875rem);
    font-weight: 600;
    color: #EA932A;
  }
  @media print, screen and (min-width: 768px) {
    .stat-list__item {
      margin-top: 0.5em;
    }
  }
  .stat-list__item:nth-child(even) {
    color: #EA5F00;
  }
  .stat-list__item span {
    display: inline-block;
  }
  .ranking-list {
    text-align: left;
  }
  .ranking-list .stat-list__item {
    color: #000000;
    font-size: clamp(0.9375rem, 0.8522727273rem + 0.3636363636vw, 1.125rem);
  }
  .ranking-list .stat-list__item span {
    padding-right: 1em;
    color: #EA932A;
  }
}

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