@charset "utf-8";
/* CSS Document */

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
固定ページ
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/* 共通 */
body.page {
  /* 画像付きタイトル */
  hgroup.title_img_wrap {
    width: 100%;
    height: 35.5vw;
    position: relative;
    background-repeat: no-repeat;
    background-position: left 5vw top;
    background-size: cover;
    box-sizing: border-box;
    @media screen and (max-width: 480px) {
      height: 50vw;
      background-position: left top;
    }
    .inner {
      position: absolute;
      left: 8.22vw;
      bottom: 3.8rem;
      color: #fff;
      @media screen and (max-width: 480px) {
        left: 3.2rem;
        bottom: 1.4rem;
      }
      .en {
        font-size: 3.6rem;
        letter-spacing: 0.24em;
        font-weight: 300;
        font-style: italic;
        @media screen and (max-width: 480px) {
          font-size: 1.6rem;
        }
      }
      h1 {
        font-size: 1.6rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        margin-top: 1.3rem;
        @media screen and (max-width: 480px) {
          margin-top: 0.8rem;
          font-size: 1.3rem;
        }
      }
    }
  }
  /* ページコピー */
  .page_copy_wrap {
    margin: 6.8rem 0 10.2rem;
    @media screen and (max-width: 480px) {
      margin: 3.2rem 0 6rem;
    }
    hgroup {
      max-width: 80rem;
      padding: 0 2rem;
      margin: auto auto 5.6rem;
      @media screen and (max-width: 480px) {
        margin: auto auto 3.2rem;
      }
      h4 {
        color: var(--color-blue);
        font-size: 3rem;
        letter-spacing: 0.1em;
        line-height: 1.75;
        font-weight: 400;
        margin-bottom: 2.6rem;
        @media screen and (max-width: 480px) {
          font-size: 1.8rem;
          margin-bottom: 1em;
        }
      }
      p {
        font-size: 1.8rem;
        letter-spacing: 0.05em;
        width: 51.2rem;
        line-height: 1.89;
        @media screen and (max-width: 480px) {
          width: 100%;
          font-size: 1.2rem;
        }
      }
    }
    .sub_img {
      text-align: right;
      img {
        width: 66.17vw;
      }
    }
  }
  /* セクション分け */
  section.blue_white_wrap {
    margin-bottom: 7rem;
    @media screen and (max-width: 480px) {
      margin-bottom: 4rem;
    }
    &:nth-of-type(2n) {
      background-color: var(--color-ex-light-blue);
      margin-bottom: 10.5rem;
      padding-bottom: 1.5rem;
      @media screen and (max-width: 480px) {
        margin-bottom: 8rem;
      }
    }
    .inner {
      padding: 0 2rem;
      max-width: 80rem;
      margin: auto;

      h3 {
        transform: translateY(-50%);
        margin-bottom: 1.2rem;
        span {
          display: inline-block;
          background-color: var(--color-blue);
          font-size: 2.4rem;
          line-height: 1.3;
          padding: 0.28em 0.8em 0.38em 0.7em;
          color: #fff;
          font-weight: 500;
          min-width: 19.6rem;
          text-align: center;
          letter-spacing: 0.1em;
          @media screen and (max-width: 480px) {
            font-size: 1.8rem;
            min-width: 6em;
          }
        }
      }
    }
  }
}
/* 社会貢献事業 */
body.social {
  hgroup.title_img_wrap {
    background-image: url(../img/social/main-img.webp?ver2);
  }
  section.blue_white_wrap {
    .inner {
      ul.item_list-social {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        @media screen and (max-width: 480px) {
          display: block;
          padding: 0 2rem;
        }
        &.mt-minus {
          margin-top: -3rem;
          @media screen and (max-width: 480px) {
            margin-top: 0;
          }
        }
        li {
          /* 変数 */
          --pd-b: 4.6rem;
          --pb-lr: 4.6rem;

          @media screen and (max-width: 480px) {
            --pd-b: 3rem;
            --pb-lr: 0rem;
          }
          /*-*/
          width: 35.4rem;
          position: relative;
          padding-bottom: var(--pd-b);
          margin-bottom: var(--pd-b);
          @media screen and (max-width: 480px) {
            width: 100%;
          }
          &.left {
            padding-right: var(--pb-lr);
          }
          &.right {
            padding-left: var(--pb-lr);
          }
          &::before,
          &::after {
            content: "";
            display: block;
            background-color: var(--color-blue);
            position: absolute;
          }
          &.left::before {
            width: 1px;
            height: calc(100% - var(--pd-b));
            right: 0;
            top: 0;
          }
          @media screen and (max-width: 480px) {
            &.left::before {
              display: none;
            }
          }
          &.left::after,
          &.right::after {
            width: calc(100% - var(--pb-lr));
            height: 1px;
            bottom: 0;
            left: 0;
          }
          &.right::after {
            left: auto;
            right: 0;
          }
          @media screen and (min-width: 481px) {
            &:nth-last-child(-n + 2) {
              margin-bottom: 0;
            }
            &:nth-last-child(-n + 2)::after {
              display: none;
            }
          }
          @media screen and (max-width: 480px) {
            &:last-child {
              margin-bottom: 0;
            }
            &:last-child::after {
              display: none;
            }
          }
          &.maxwidth {
            width: 100%;
            display: flex;
            flex-direction: row-reverse;
            padding-right: 0;
            justify-content: space-between;
            align-items: flex-end;
            @media screen and (max-width: 480px) {
              display: block;
            }
            .img_wrap,
            .text_wrap {
              max-width: 35.6rem;
              flex-shrink: 0;
              margin: 0;
            }
            @media screen and (max-width: 480px) {
              .img_wrap {
                margin-bottom: 2rem;
              }
            }
            &::before {
              display: none;
            }
            &::after {
              width: 100%;
            }
          }

          /* 中身 */
          .img_wrap {
            margin-bottom: 2.2rem;
            @media screen and (max-width: 480px) {
              margin-bottom: 2rem;
            }
          }
          .text_wrap {
            hgroup {
              margin-bottom: 2rem;
              @media screen and (max-width: 480px) {
                margin-bottom: 1.6rem;
              }
              h4 {
                font-size: 2.4rem;
                letter-spacing: 0.04em;
                font-weight: 500;
                margin-bottom: 0.4em;
                @media screen and (max-width: 480px) {
                  font-size: 1.8rem;
                }
              }
              span {
                font-size: 1.8rem;
                font-weight: 500;
                letter-spacing: 0.06em;
                @media screen and (max-width: 480px) {
                  font-size: 1.4rem;
                }
              }
            }
            .text {
              display: flex;
              gap: 2.6rem;
              p {
                font-size: 1.6rem;
                letter-spacing: 0.05em;
                line-height: 1.875;
                font-weight: 300;
                @media screen and (max-width: 480px) {
                  font-size: 1.4rem;
                }
              }
              .mark {
                width: 29%;
                max-width: 10rem;
                flex-shrink: 0;
                &.mkk {
                  width: 31%;
                  max-width: 10.7rem;
                }
              }
            }
          }
        }
      }
    }
  }
}
/* 事業内容 */
body.business {
  h2.gen {
    &:last-of-type {
      margin-bottom: 6rem;
      @media screen and (max-width: 480px) {
        margin-bottom: 4rem;
      }
    }
  }
  hgroup.title_img_wrap {
    background-image: url(../img/business/main-img.webp?ver2);
  }
  section.blue_white_wrap {
    &:last-child {
      margin-bottom: 12rem;
      @media screen and (max-width: 480px) {
        margin-bottom: 8rem;
      }
    }
    .inner {
      .copy_wrap {
        display: flex;
        justify-content: space-between;
        margin-bottom: 6.6rem;
        @media screen and (max-width: 480px) {
          display: block;
          margin-bottom: 3rem;
        }
        .text_wrap {
          width: 41.6rem;
          @media screen and (max-width: 480px) {
            width: 100%;
            margin-bottom: 2.4rem;
          }
          h4 {
            font-size: 2.4rem;
            line-height: 1.75;
            letter-spacing: 0.2em;
            font-weight: 500;
            margin-bottom: 0.8em;
            @media screen and (max-width: 480px) {
              font-size: 1.8rem;
            }
          }
          p {
            font-weight: 300;
            font-size: 1.6rem;
            letter-spacing: 0.3en;
            line-height: 1.875;
            @media screen and (max-width: 480px) {
              font-size: 1.4rem;
            }
          }
        }
        .img_wrap {
          margin-top: 0.9rem;
          width: 31.6rem;
          flex-shrink: 0;
          @media screen and (max-width: 480px) {
            width: 100%;
          }
        }
      }
      ul.item_list-business {
        display: flex;
        justify-content: space-between;
        margin-bottom: 7rem;
        @media screen and (max-width: 480px) {
          flex-direction: column;
          gap: 2rem;
          margin-bottom: 4rem;
        }
        li {
          width: 31%;
          max-width: 24.2rem;
          @media screen and (max-width: 480px) {
            width: 100%;
            max-width: 100%;
            display: flex;
            gap: 1.4rem;
            &:nth-child(2n) {
              flex-direction: row-reverse;
            }
          }
          .img_wrap {
            margin-bottom: 1.2rem;
            @media screen and (max-width: 480px) {
              margin-bottom: 0;
              width: 45%;
              flex-shrink: 0;
            }
          }
          .text_wrap {
            h5 {
              font-size: 1.8rem;
              line-height: 1.5;
              letter-spacing: 0.1em;
              font-weight: 500;
              margin-bottom: 1rem;
              @media screen and (max-width: 480px) {
                font-size: 1.4rem;
              }
            }
            p {
              font-size: 1.4rem;
              letter-spacing: 0.02em;
              line-height: 1.64;
              font-weight: 300;
              @media screen and (max-width: 480px) {
                font-size: 1.2rem;
              }
            }
          }
        }
        &.before_after {
          @media screen and (max-width: 480px) {
            flex-direction: row;
            gap: 0.6rem;
          }
          li {
            @media screen and (max-width: 480px) {
              display: block;
              .img_wrap {
                width: auto;
              }
            }
          }
          li:first-child {
            position: relative;
            &::after {
              content: "";
              position: absolute;
              width: 1rem;
              aspect-ratio: 10/22;
              background-color: var(--color-blue);
              clip-path: polygon(0 0, 100% 50%, 0 100%);
              top: 7rem;
              right: -2.4rem;
            }
            @media screen and (max-width: 480px) {
              margin-right: 1.2rem;
              &::after {
                content: "";
                position: absolute;
                width: 0.6rem;
                aspect-ratio: 10/22;
                background-color: var(--color-blue);
                clip-path: polygon(0 0, 100% 50%, 0 100%);
                top: 3rem;
                right: -1.2rem;
              }
            }
          }
        }
      }
    }
    .button_wrap {
      margin-bottom: 5.8rem;
      @media screen and (max-width: 480px) {
        margin-bottom: 3rem;
      }
    }
  }
}
/* 私たちのこと */
body.about {
  h2 {
    font-size: 3rem;
    letter-spacing: 0.1em;
    color: var(--color-blue);
    font-weight: 500;
    @media screen and (max-width: 480px) {
      font-size: 2rem;
    }
  }
  hgroup.title_img_wrap {
    background-image: url(../img/about/main-img.webp?ver3);
  }
  section.blue_white_wrap {
    padding: 9rem 0 !important;
    margin: 0 !important;
    @media screen and (max-width: 480px) {
      padding: 5rem 0 !important;
    }
    .inner {
      display: flex;
      max-width: 100rem;
      margin: auto;
      @media screen and (max-width: 480px) {
        display: block;
      }
      h2 {
        width: 30.8rem;
        padding-left: 10rem;
        box-sizing: border-box;
        flex-shrink: 0;
        @media screen and (max-width: 1024px) {
          padding-left: 0;
          width: 21rem;
        }
        @media screen and (max-width: 480px) {
          width: 100%;
          text-align: center;
          margin-bottom: 1.5em;
        }
      }
      .text_area {
        width: 100%;
      }
    }
  }

  /* 初めに */

  section.hajimeni {
    .inner {
      .text_area {
        h4 {
          font-size: 2rem;
          letter-spacing: 0.05em;
          margin-bottom: 1em;
          font-weight: 500;
          @media screen and (max-width: 480px) {
            font-size: 1.6rem;
          }
        }
        p {
          font-size: 1.6em;
          line-height: 1.875em;
          margin-bottom: 2em;
          font-weight: 300;
          @media screen and (max-width: 480px) {
            font-size: 1.4rem;
          }
        }
        .signature {
          text-align: right;
          span {
            display: inline-block;
            width: 25rem;
            @media screen and (max-width: 480px) {
              width: 18rem;
            }
          }
        }
      }
    }
  }
  /* 概要 */
  section.gaiyo {
    table {
      width: 100%;
      font-size: 1.8rem;
      line-height: 1.89;
      letter-spacing: 0.04em;
      @media screen and (max-width: 480px) {
        font-size: 1.4rem;
      }
      tbody {
        tr {
          padding: 1.1em 0;
          border-bottom: 1px dashed #727171;
          &:first-of-type {
            th,
            td {
              padding-top: 0;
            }
          }
          &:last-of-type {
            border-bottom: none;
          }
          th,
          td {
            padding: 1.1em 0;
          }
          th {
            vertical-align: top;
            width: 6.24em;
            padding-right: 2em;
            text-align-last: justify;
            font-weight: 500;
          }
          td {
            font-weight: 300;
          }
        }
      }
    }
  }

  /* 沿革 */
  section.enkaku {
    dl.history-item {
      display: flex;
      gap: 1.8rem;
      font-size: 1.8rem;
      letter-spacing: 0.04em;
      font-weight: 300;
      line-height: 1.5;
      @media screen and (max-width: 480px) {
        font-size: 1.4rem;
      }
      & > dt,
      & > dd {
        padding: 0 0 1em;
      }
      & > dt {
        width: 14.8rem;
        padding-right: 2.8rem;
        box-sizing: border-box;
        flex-shrink: 0;
        display: flex;
        justify-content: space-between;
        position: relative;
        @media screen and (max-width: 480px) {
          width: 12rem;
        }
        &::before {
          content: "";
          display: block;
          position: absolute;
          height: 100%;
          width: 1px;
          background-color: #727171;
          right: 0.6rem;
          top: 0.75em;
        }

        &::after {
          content: "";
          display: block;
          position: absolute;
          width: 1.3rem;
          aspect-ratio: 1/1;
          border-radius: 100%;
          background-color: #000;
          border: 2px solid #fff;
          box-sizing: border-box;
          right: 0;
          top: 0.75em;
          transform: translate(0, -50%);
        }
        @media screen and (max-width: 480px) {
          &::before {
            right: 0.4rem;
          }
          &::after {
            content: "";
            display: block;
            position: absolute;
            width: 0.9rem;
            aspect-ratio: 1/1;
            border-radius: 100%;
            background-color: #000;
            border: 2px solid #fff;
            box-sizing: border-box;
            right: 0;
            top: 0.75em;
            transform: translate(0, -50%);
          }
        }
        span.yera {
        }
        span.monnth {
        }
      }

      &:last-of-type {
        & > dt {
          &::before {
            display: none;
          }
        }
      }
    }
  }
  /* 資格取得 */
  section.shikaku {
    ul.shikaku_list {
      width: 100%;
      column-count: 2;
      column-width: 30.5rem;
      column-gap: 8.2rem;
      font-size: 1.8rem;
      font-weight: 300;
      @media screen and (max-width: 480px) {
        columns: 1;
        column-width: 100%;
        column-gap: 0;
        font-size: 1.4rem;
        width: 80%;
        margin: auto;
      }
      li {
        width: 100%;
        line-height: 2.2;
        @media screen and (max-width: 480px) {
          width: 100%;
          line-height: 1.6;
          padding: 0.3em 0;
        }
        &.shikaku-item {
          display: flex;
          justify-content: space-between;
          flex-shrink: 0;
          align-items: flex-end;
        }
        &:last-child {
          text-align: right;
          font-size: 1.4rem;
          align-self: flex-end;
          @media screen and (max-width: 480px) {
            font-size: 1.2rem;
          }
        }
      }
    }
  }
  /* 所在地 */
  section.access {
    padding: 9rem 2rem 12rem;
    @media screen and (max-width: 480px) {
      padding: 5rem 2rem 8rem;
    }
    h2 {
      text-align: center;
      padding-left: 0.1em;
      margin-bottom: 4.8rem;
      @media screen and (max-width: 480px) {
        margin-bottom: 1.5em;
      }
    }
    .inner {
      display: flex;
      max-width: 100rem;
      justify-content: space-between;
      margin: auto;
      @media screen and (max-width: 480px) {
        display: block;
      }
      .text_wrap {
        width: 40.8rem;
        @media screen and (max-width: 480px) {
          width: 100%;
        }
        h3 {
          background-color: var(--color-blue);
          font-size: 1.6rem;
          text-align: center;
          letter-spacing: 0.2em;
          padding-left: 0.2em;
          width: 26.8rem;
          padding: 0.6em 0 0.7em;
          color: #fff;
          margin-bottom: 1em;
          @media screen and (max-width: 480px) {
            font-size: 1.4rem;
            width: 22rem;
            margin: auto auto 1em;
          }
        }
        p {
          font-size: 1.8rem;
          font-weight: 300;
          line-height: 1.56;
          @media screen and (max-width: 480px) {
            font-size: 1.4rem;
          }
          &:first-of-type {
            border-bottom: 1px solid var(--color-blue);
            padding-bottom: 1.5em;
            margin-bottom: 1.5em;
          }
          @media screen and (max-width: 480px) {
            &:first-of-type {
              padding-bottom: 1.8em;
              margin-bottom: 1.8em;
            }
          }
        }
      }

      /* Googleマップ */
      .google_map_wrap {
        width: 53.6rem;
        height: 32.8rem;
        overflow: hidden;
        @media screen and (max-width: 480px) {
          width: 100%;
          height: 28rem;
          margin-bottom: 3rem;
        }
        iframe {
          width: 300%;
          height: 100%;
          transform: translateX(-33.33%);
        }
      }
    }
  }
  /* 基本方針 */
  section.kihonhoushin {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0.05em;
    @media screen and (max-width: 480px) {
      font-size: 1.4rem;
    }
    .iso_badge {
      float: right;
      width: 10rem;
      margin: 0 0 1.25em 1.25em;
      @media screen and (max-width: 480px) {
        width: 8rem;
      }
    }
    p.lead {
      margin-bottom: 2.5em;
    }
    p.sub_lead {
      font-weight: 300;
      margin-bottom: 1em;
    }
    h4 {
      font-size: 2rem;
      line-height: 1;
      color: var(--color-blue);
      font-weight: 400;
      margin: 0 0 0.8em;
      @media screen and (max-width: 480px) {
        font-size: 1.6rem;
      }
    }
    h5 {
      span {
        display: inline-block;
        border: 1px solid #000;
        line-height: 1;
        padding: 0.15em 0.5em 0.25em;
        margin-bottom: 0.625em;
        font-weight: 400;
      }
    }
    ol {
      list-style: decimal;
      padding-left: 1.5em;
      font-weight: 300;
      margin-bottom: 2.5em;
    }
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
リクルート
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
/* 共通 */
body.is-recruit {
  #contents_wrap {
    margin-bottom: 15rem;
    @media screen and (max-width: 480px) {
      margin-bottom: 7rem;
    }
    /* ページタイトル */
    .page_title_wrap.recruit_gen {
      margin: 0 auto 8.4rem;
      @media screen and (max-width: 480px) {
        margin-bottom: 6rem;
      }
      hgroup {
        text-align: center;
        margin-bottom: 3.6rem;
        @media screen and (max-width: 480px) {
          margin-bottom: 3rem;
        }
        h1 {
          font-size: 3.6rem;
          letter-spacing: 0.1em;
          padding-left: 0.1em;
          font-weight: 300;
          margin-bottom: 0.55em;
          @media screen and (max-width: 480px) {
            font-size: 2.6rem;
          }
        }
        .en {
          font-size: 1.8rem;
          letter-spacing: 0.24em;
          padding-left: 0.24em;
          display: block;
          font-style: italic;
          font-weight: 300;
          @media screen and (max-width: 480px) {
            font-size: 1.4rem;
          }
        }
        .dotte {
          width: 5.3rem;
          margin: 4rem auto 0;
          @media screen and (max-width: 480px) {
            width: 3rem;
            margin-top: 2rem;
          }
        }
      }
      .title_copy {
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.64;
        text-align: center;
        padding-left: 0.05em;
        font-weight: 500;
      }

      ul.info {
        max-width: 41rem;
        margin: 3rem auto 0;
        @media screen and (max-width: 480px) {
          margin-top: 4rem;
          padding: 0 2rem;
        }
        li {
          font-size: 2rem;
          margin-top: 0.4em;
          font-weight: 500;
          @media screen and (max-width: 480px) {
            font-size: 1.6rem;
          }
          span {
            display: inline-block;
            font-size: 0.9em;
            letter-spacing: 0.09em;
            border: 2px solid #000;
            line-height: 1.72;
            padding: 0 0.5em 0.1em;
            font-weight: 700;
            margin-right: 0.5em;
          }
        }
      }
    }
    /* 概要 */
    .description_wrap {
      padding: 0 2rem 3.6rem;
      .inner {
        max-width: 80rem;
        margin: auto;
        h2 {
          font-size: 2rem;
          letter-spacing: 0.17em;
          font-weight: 500;
          color: #fff;
          text-align: center;
          padding: 0.55em 0 0.65em 0.17em;
          transform: translateY(-50%);
          @media screen and (max-width: 480px) {
            font-size: 1.6rem;
          }
        }
        dl {
          margin-bottom: 11rem;
          display: flex;
          flex-wrap: wrap;
          font-size: 1.8rem;
          line-height: 1.67;
          @media screen and (max-width: 480px) {
            font-size: 1.4rem;
            display: block;
            margin-bottom: 6rem;
          }
          dt {
            width: 9.8rem;
            flex-shrink: 0;
            text-align-last: justify;
            font-weight: 500;
            padding: 1em 0;
            border-bottom: 2px solid #000;
            @media screen and (max-width: 480px) {
              border-bottom: none;
              border-left: 2px solid #000;
              width: auto;
              text-align-last: left;
              padding: 0.25em 0 0.25em 1em;
            }
          }
          dd {
            width: calc(100% - 9.8rem);
            box-sizing: border-box;
            padding: 1em 0 1em 2.1em;
            border-bottom: 2px solid #fff;
            @media screen and (max-width: 480px) {
              width: 100%;
              padding: 0.25em 0 0.25em 1em;
              border-left: 2px solid #fff;
              border-bottom: none;
              margin-bottom: 1em;
            }
          }
        }
      }
    }
    .contact {
      max-width: 80rem;
      margin: auto;
      padding: 0 2rem;
      h3 {
        font-size: 2rem;
        letter-spacing: 0.17em;
        font-weight: 500;
        text-align: center;
        padding: 0.55em 0 0.65em 0.17em;
        transform: translateY(-50%);
        border: 2px solid #000;
        background-color: #fff;
        box-sizing: border-box;
        margin-bottom: 0.6em;
        @media screen and (max-width: 480px) {
          font-size: 1.6rem;
        }
      }
      p {
        font-size: 1.6rem;
        letter-spacing: 0.07em;
        text-align: center;
        padding-left: 0.07em;
        line-height: 1.5;
        font-weight: 300;
        margin-bottom: 1.875em;
        @media screen and (max-width: 480px) {
          font-size: 1.4rem;
        }
      }
      h4 {
        font-size: 2rem;
        letter-spacing: 0.06em;
        padding-left: 0.06em;
        font-weight: 500;
        text-align: center;
        @media screen and (max-width: 480px) {
          font-size: 1.6rem;
        }
      }
      .tel {
        display: flex;
        justify-content: center;
        letter-spacing: 0.04em;
        font-size: 3rem;
        font-weight: 700;
        gap: 3rem;
        margin: 2.4rem 0;
        @media screen and (max-width: 480px) {
          margin: 2.4rem 0 2rem;
          font-size: 1.6rem;
          flex-direction: column;
          gap: 1.6rem;
          align-items: center;
        }
        li.telnumber {
          @media screen and (max-width: 480px) {
            width: 80%;
          }
          a {
            color: #000;
            @media screen and (max-width: 480px) {
              display: block;
              font-size: 2rem;
              padding: 0.75em;
              text-align: center;
              border-radius: 1rem;
            }
          }
        }
      }
      .eigyo {
        text-align: center;
        font-size: 1.8rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        padding-left: 0.06em;
        line-height: 1.5;
        @media screen and (max-width: 480px) {
          font-size: 1.4rem;
        }
      }
      .button_wrap {
        margin-top: 4rem;
      }
    }
  }
  &.new_graduate {
    #contents_wrap {
      .page_title_wrap.recruit_gen {
        hgroup {
          .dotte {
            svg {
              fill: var(--color-blue);
            }
          }
        }
        ul.info {
          li {
            span {
              border-color: var(--color-blue);
              color: var(--color-blue);
            }
          }
        }
      }
      .description_wrap {
        background-color: var(--color-ex-light-blue);
        .inner {
          h2 {
            background-color: var(--color-blue);
          }
          dl {
            dt {
              border-color: var(--color-blue);
            }
          }
        }
      }
      .contact {
        h3 {
          border-color: var(--color-blue);
          color: var(--color-blue);
        }
        .tel {
          li.telnumber {
            a {
              @media screen and (max-width: 480px) {
                background-color: var(--color-ex-light-blue);
                color: var(--color-blue);
              }
            }
          }
        }
      }
    }
  }
  &.career {
    #contents_wrap {
      .page_title_wrap.recruit_gen {
        hgroup {
          .dotte {
            svg {
              fill: var(--color-green);
            }
          }
        }
        ul.info {
          li {
            span {
              border-color: var(--color-green);
              color: var(--color-green);
            }
          }
        }
      }
      .description_wrap {
        background-color: var(--color-ex-light-green);
        .inner {
          h2 {
            background-color: var(--color-green);
          }
          dl {
            dt {
              border-color: var(--color-green);
            }
          }
        }
      }
      .contact {
        h3 {
          border-color: var(--color-green);
          color: var(--color-green);
        }
        .tel {
          li.telnumber {
            a {
              @media screen and (max-width: 480px) {
                background-color: var(--color-ex-light-green);
                color: var(--color-green);
              }
            }
          }
        }
      }
    }
  }

  /* 福利厚生 */
  &.benefits {
    hgroup.title_img_wrap {
      background-image: url(../img/benefits/main-img.webp?ver2);
      margin-bottom: 7.2rem;
      @media screen and (max-width: 480px) {
        margin-bottom: 3.6rem;
      }
    }
    .item_wrap {
      padding: 0 2rem;
      @media screen and (max-width: 480px) {
        padding: 0 3rem;
      }
      p.page_lead_copy {
        font-size: 1.8rem;
        letter-spacing: 0.1em;
        padding-left: 0.1em;
        line-height: 1.67;
        margin-bottom: 8.2rem;
        text-align: center;
        @media screen and (max-width: 480px) {
          font-size: 1.4rem;
          margin-bottom: 4rem;
        }
      }
      section.item {
        background-image: radial-gradient(circle, #84cf00 0.3rem, transparent 0.3rem);
        background-position: left -0.9rem bottom;
        background-repeat: repeat-x;
        background-size: 2.4rem 0.6rem;
        margin: auto auto 7rem;
        padding: 0 0 4.2rem;
        max-width: 80rem;
        &:last-of-type {
          background-image: none;
          padding-bottom: 0;
          margin-bottom: 0;
        }
        @media screen and (max-width: 480px) {
          background-image: radial-gradient(circle, #84cf00 0.2rem, transparent 0.2rem);
          background-position: left -0.6rem bottom;
          background-repeat: repeat-x;
          background-size: 1.5rem 0.4rem;
          margin: auto auto 4rem;
          padding: 0 0 2.4rem;
        }
        h2 {
          font-size: 2.8rem;
          letter-spacing: 0.06em;
          font-weight: 700;
          line-height: 1.4;
          display: flex;
          align-items: flex-start;
          gap: 0.85em;
          margin-bottom: 1.64em;
          word-break: keep-all;
          text-align: left;
          @media screen and (max-width: 480px) {
            font-size: 2rem;
            margin-bottom: 1.2em;
          }
          span.number {
            font-size: 4.6rem;
            font-weight: 700;
            color: var(--color-green);
            line-height: 1;
            @media screen and (max-width: 480px) {
              font-size: 3.2rem;
            }
          }
        }
        .inner {
          display: flex;
          gap: 5.2rem;
          @media screen and (max-width: 480px) {
            display: block;
          }
          .img_wrap {
            width: 29.7rem;
            flex-shrink: 0;
            @media screen and (max-width: 480px) {
              width: 90%;
              margin: auto auto 3rem;
            }
          }
          .text_wrap {
            h3 {
              font-size: 2rem;
              letter-spacing: 0.06em;
              margin-bottom: 0.5em;
              @media screen and (max-width: 480px) {
                font-size: 1.6rem;
              }
              &::before {
                content: "■";
                color: var(--color-green);
                display: inline-block;
                padding-right: 0.25em;
              }
            }
            p {
              font-size: 1.8rem;
              letter-spacing: 0.06em;
              line-height: 1.55;
              margin-bottom: 1.7em;
              @media screen and (max-width: 480px) {
                font-size: 1.4rem;
              }
            }
          }
        }
      }
    }
  }
  /* 先輩の声 */
  &.voice {
    hgroup.title_img_wrap {
      background-image: url(../img/voice/main-img.webp?ver2);
      margin-bottom: 7.2rem;
      @media screen and (max-width: 480px) {
        margin-bottom: 3.6rem;
        background-position: left -4vw top;
      }
    }
    .intro {
      padding: 0 2rem;
      margin-bottom: 9.6rem;
      @media screen and (max-width: 480px) {
        margin-bottom: 4rem;
      }
      p {
        font-size: 2.2rem;
        letter-spacing: 0.05em;
        padding-left: 0.05em;
        font-weight: 500;
        line-height: 1.8;
        text-align: center;
        margin-bottom: 2.5em;
        @media screen and (max-width: 480px) {
          font-size: 1.4rem;
        }
      }
      ul {
        display: flex;
        justify-content: center;
        gap: 5.4rem;
        @media screen and (max-width: 480px) {
          gap: 1.4rem;
        }
        li {
          max-width: 19.9rem;
          width: 33%;
          text-align: center;
          .img_wrap {
            margin-bottom: 1.9rem;
            @media screen and (max-width: 480px) {
              margin-bottom: 1rem;
            }
          }
          h3 {
            font-size: 1.6rem;
            line-height: 1.375;
            letter-spacing: 0.1em;
            padding-left: 0.1em;
            font-weight: 400;
            margin-bottom: 0.75em;
            @media screen and (max-width: 480px) {
              font-size: 1.2rem;
              margin-bottom: 0.5em;
            }
          }
          .name {
            font-size: 2.6rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            padding-left: 0.1em;
            margin-bottom: 0.5em;
            @media screen and (max-width: 480px) {
              font-size: 1.4rem;
            }
          }
          .year {
            font-size: 1.6rem;
            letter-spacing: 0.1em;
            padding-left: 0.1em;
            @media screen and (max-width: 480px) {
              font-size: 1.2rem;
            }
          }
        }
      }
    }
    .interview {
      padding: 0 2rem;
      max-width: 80rem;
      margin: auto;
      h2 {
        font-size: 2.6rem;
        letter-spacing: 0.1em;
        font-weight: 400;
        line-height: 1.75;
        margin: 3.15em 0 1.46em;
        position: relative;
        padding-left: 1.675em;
        &::after {
          content: "";
          display: block;
          width: 0.5em;
          height: 2.75em;
          background-color: var(--color-green);
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%);
        }
        @media screen and (max-width: 480px) {
          font-size: 1.6rem;
          padding-left: 1.25em;
        }
      }
      p {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
        line-height: 2.22;
        font-weight: 300;
        margin: 2.3em 0;
        @media screen and (max-width: 480px) {
          font-size: 1.4rem;
          line-height: 2;
        }
        span {
          font-weight: 500;
          display: inline-block;
          margin-right: 1em;
        }
      }
      .img_wrap {
        max-width: 71.1rem;
        margin: 6.4rem auto;
        @media screen and (max-width: 480px) {
          margin: 4rem auto;
        }
      }
    }
  }
}
/* リクルート */
body.recruit {
  #contents_wrap {
    margin: 0;
    .main_img_wrap {
      @media screen and (max-width: 480px) {
        padding: 9.8rem 0 0;
      }
      .inner {
        position: relative;
        width: 83.33%;
        aspect-ratio: 100/124;
        margin: auto;
        @media screen and (max-width: 1024px) {
          width: 100%;
        }
        @media screen and (max-width: 480px) {
          aspect-ratio: 375/760;
        }
        .img-item {
          position: absolute;

          &.img-01 {
            top: 0;
            left: 0;
            width: 55.4%;
            box-shadow: 2.6rem 2.6rem 0 #daedfa;
            @media screen and (max-width: 480px) {
              width: 52.5%;
              left: 2rem;
              width: 19.7rem;
              box-shadow: 1.2rem 1.2rem 0 #daedfa;
            }
          }
          &.img-02 {
            right: 0;
            top: 35%;
            width: 50%;
            box-shadow: -2.3rem 2.3rem 0 #f3fae5;
            @media screen and (max-width: 480px) {
              width: 18.7rem;
              top: 19.8rem;
              box-shadow: -0.6rem -0.6rem 0 #f3fae5;
            }
          }
          &.img-03 {
            left: 0;
            top: 46%;
            width: 39.5%;
            box-shadow: 2.3rem 2.3rem 0 #f3fae5;
            @media screen and (max-width: 480px) {
              left: 2rem;
              top: 28.1rem;
              width: 14.7rem;
              box-shadow: 0.6rem 0.6rem 0 #f3fae5;
            }
          }
          &.img-04 {
            right: 0;
            bottom: 5.5%;
            width: 39.9%;
            box-shadow: -2.8rem 2.8rem 0 #daedfa;
            @media screen and (max-width: 480px) {
              bottom: auto;
              top: 37.5rem;
              right: 3.5rem;
              width: 14.1rem;
              box-shadow: -0.6rem 0.6rem 0 #daedfa;
            }
          }
        }
        h1 {
          position: absolute;
          left: -3.5%;
          top: 30%;
          display: flex;
          width: 107%;
          @media screen and (max-width: 1024px) {
            left: 0;
            width: 100%;
            justify-content: center;
          }
          @media screen and (max-width: 480px) {
            flex-direction: column;
            width: 31.5rem;
            gap: 2.6rem;
            left: 2.2rem;
            top: 8rem;
          }
          span {
            flex-shrink: 0;
            width: 50%;
            padding-left: 3.27%;
            box-sizing: border-box;
            @media screen and (max-width: 1024px) {
              padding: 0 1% 0 3%;
            }
            @media screen and (max-width: 480px) {
              width: auto;
              padding: 0;
            }
          }
        }

        .text_wrap {
          position: absolute;
          bottom: 0;
          left: 0;
          @media screen and (max-width: 1024px) {
            left: 5%;
          }
          @media screen and (max-width: 480px) {
            left: 2rem;
            bottom: 0;
          }
          hgroup {
            .en {
              font-size: max(1.5vw, 1.8rem);
              letter-spacing: 0.18em;
              color: var(--color-blue);
              font-weight: 700;
              margin-bottom: 1.3em;
              @media screen and (max-width: 480px) {
                font-size: 1.2rem;
              }
            }
            h2 {
              font-size: max(2.66vw, 3.2rem);
              letter-spacing: 0.2em;
              margin-bottom: 1.125em;
              @media screen and (max-width: 480px) {
                font-size: 2.2rem;
              }
            }
          }
          p {
            font-size: max(1.5vw, 1.8rem);
            letter-spacing: 0.18em;
            line-height: 2;
            @media screen and (max-width: 480px) {
              font-size: 1.4rem;
            }
          }
        }
      }
    }

    /* 動画 */
    .movie_wrap {
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      max-height: 64.6vw;
      @media screen and (max-width: 480px) {
        height: 27.5rem;
        max-height: 100%;
      }
      .movie {
        aspect-ratio: 16/9;
        margin: auto;
        width: 66.67%;
        min-width: 80rem;
        @media screen and (max-width: 1024px) {
          width: 90%;
          min-width: auto;
        }
        video {
          width: 100%;
          height: auto;
        }
      }
    }

    /* タイトル共通 */
    hgroup.recruit-gen {
      text-align: center;
      .en {
        font-size: 1.8rem;
        letter-spacing: 0.18em;
        padding-left: 0.18em;
        color: var(--color-blue);
        font-weight: 700;
        margin-bottom: 1.4em;
        @media screen and (max-width: 480px) {
          font-size: 1.2rem;
        }
      }
      h2 {
        font-size: 3.4rem;
        letter-spacing: 0.2em;
        padding-left: 0.2em;
        @media screen and (max-width: 480px) {
          font-size: 2.2rem;
        }
      }
      p {
        font-size: 1.8rem;
        letter-spacing: 0.1em;
        padding-left: 0.1em;
        line-height: 1.7;
        margin-top: 2.3em;
        @media screen and (max-width: 480px) {
          font-size: 1.4rem;
        }
      }
    }

    /* データ */
    .data_wrap {
      padding: 0 2rem;
      margin-bottom: 10.8rem;
      @media screen and (max-width: 480px) {
        margin-bottom: 5rem;
      }
      .inner {
        max-width: 80rem;
        margin: auto;
        hgroup {
          margin-bottom: 5rem;
          @media screen and (max-width: 480px) {
            margin-bottom: 3rem;
          }
        }
        .genzai {
          font-size: 1.8rem;
          margin-top: 1.67em;
          text-align: right;
          letter-spacing: 0.1em;
          @media screen and (max-width: 480px) {
            font-size: 1.2rem;
            text-align: center;
          }
        }
        .data {
          position: relative;
          aspect-ratio: 800/869;
          font-size: 1rem;
          .item {
            position: absolute;
            background-color: var(--color-blue);
            border-radius: 1rem;
            color: #fff;

            padding: 3em 3.6em 3.6em;
            box-sizing: border-box;
            @media screen and (max-width: 480px) {
              font-size: 0.41875rem;
            }
            &.green {
              background-color: var(--color-green);
            }
            h3 {
              font-size: 2.8em;
              line-height: 1.3;
              letter-spacing: 0.05em;
            }
            .icon {
              position: absolute;
            }

            .suji {
              text-align: right;
              position: absolute;
              .value,
              .space {
                display: inline-block;
                letter-spacing: 0.1em;
                & + .tani {
                  display: inline-block;
                  padding-left: 0.25em;
                }
                &.siz-ll {
                  font-size: 11em;
                  letter-spacing: 0.16em;
                  & + .tani {
                    font-size: 4.6em;
                  }
                }
                &.size-l {
                  font-size: 10em;
                  letter-spacing: 0;
                  & + .tani {
                    font-size: 4em;
                  }
                }
                &.size-m {
                  font-size: 9.2em;
                  letter-spacing: 0.04em;
                  & + .tani {
                    font-size: 3.6em;
                  }
                }
                &.size-s {
                  font-size: 7.7em;
                  letter-spacing: 0;
                  & + .tani {
                    font-size: 3em;
                  }
                }
              }
            }

            &.item-01 {
              width: 45em;
              aspect-ratio: 450/236;
              top: 0;
              left: 0;
              .suji {
                right: 3.6em;
                bottom: 3.4em;
              }
              .icon {
                width: 7.4em;
                left: 5.3em;
                top: 11.2em;
              }
            }
            &.item-02 {
              width: 30.8em;
              aspect-ratio: 308/332;
              top: 0;
              right: 0;
              .suji {
                right: 6em;
                bottom: 7.6em;
              }
              .icon {
                width: 7.9em;
                left: 18.9em;
                top: 4.3em;
              }
              .ano {
                position: absolute;
                width: 100%;
                bottom: 1.2em;
                font-size: 3em;
                left: 0;
                letter-spacing: 0.05em;
                text-align: center;
              }
            }
            &.item-03 {
              width: 26.3em;
              aspect-ratio: 263/338;
              left: 0;
              top: 32.22%;
              .suji {
                right: 4.5em;
                bottom: 2.3em;
              }
              .icon {
                width: 15.7em;
                left: 4.9em;
                top: 11.8em;
              }
            }
            &.item-04 {
              width: 49.4em;
              aspect-ratio: 494/233;
              right: 0;
              top: 43.5%;
              .icon.icon-01 {
                width: 3.8em;
                left: 5.9em;
                top: 10em;
              }
              .icon.icon-02 {
                width: 5.2em;
                left: 38.5em;
                top: 10em;
              }
              .suji {
                left: 0;
                width: 100%;
                text-align: center;
                bottom: 2.5em;
                .space {
                  letter-spacing: 0;
                  display: inline-block;
                  padding: 0 0.2em;
                  vertical-align: 0.1em;
                }

                .men,
                .women {
                  position: relative;
                  letter-spacing: 0;
                  &::before {
                    content: "";
                    letter-spacing: 0.1em;
                    font-size: 0.18em;
                    position: absolute;
                    top: 0;
                    left: 50%;
                    transform: translate(-50%, -130%);
                    width: 3em;
                    padding-left: 0.1em;
                    text-align: center;
                  }
                }
                .men {
                  &::before {
                    content: "男性";
                  }
                }
                .women {
                  &::before {
                    content: "女性";
                  }
                }
              }
            }
            &.item-05,
            &.item-06 {
              width: 37.3em;
              aspect-ratio: 373/214;
              left: 0;
              bottom: 0;
              .suji {
                right: 3.3em;
                bottom: 2.5em;
              }
            }
            &.item-05 {
              .icon {
                width: 3.83em;
                left: 7.7em;
                top: 9.6em;
              }
            }
            &.item-06 {
              left: auto;
              right: 0;
              .icon {
                width: 6.1em;
                left: 4.9em;
                top: 10.1em;
              }
            }
          }
        }
      }
    }

    /* 環境 */
    .benefits_wrap {
      background-color: var(--color-ex-light-green);
      padding: 10.7rem 2rem;
      @media screen and (max-width: 480px) {
        padding: 2rem;
      }
      .inner {
        max-width: 100rem;
        background-color: #fff;
        margin: auto;
        padding: 11rem 2.2rem 9.2rem;
        @media screen and (max-width: 480px) {
          padding: 3.6rem 2.2rem 4rem;
        }
      }
      hgroup {
        margin-bottom: 5.8rem;
        @media screen and (max-width: 480px) {
          margin-bottom: 3rem;
        }
        .en {
          color: var(--color-green);
        }
      }

      ul.list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 2rem;
        @media screen and (max-width: 480px) {
          display: block;
          margin-bottom: 4.2rem;
        }
        li {
          display: flex;
          align-items: center;
          gap: 2.7rem;
          width: 38rem;
          margin: 0 2.8rem 7.2rem;
          &:nth-child(3) {
            margin: 0 15rem 7.2rem;
          }
          @media screen and (max-width: 480px) {
            width: 28rem;
            margin: 0 0 3rem;
            &:nth-child(3) {
              margin: 0 0 3rem;
            }
          }

          .img_wrap {
            width: 16.6rem;
            flex-shrink: 0;
            position: relative;
            @media screen and (max-width: 480px) {
              width: 10.8rem;
            }
            .img_inner {
              overflow: hidden;
              border-radius: 9999px;
              position: relative;
              z-index: 10;
            }
            &::before,
            &::after {
              content: "";
              display: block;
              width: 100%;
              height: 100%;
              position: absolute;
              border-radius: 9999px;
            }
            &::before {
              border: 1px solid var(--color-green);
              left: -0.6rem;
              top: -0.6rem;
              z-index: 20;
              @media screen and (max-width: 480px) {
                left: -0.4rem;
                top: -0.4rem;
              }
            }
            &::after {
              background-color: var(--color-ex-light-green);
              right: -0.6rem;
              bottom: -0.6rem;
              z-index: 5;
              @media screen and (max-width: 480px) {
                right: -0.4rem;
                bottom: -0.4rem;
              }
            }
          }
          .text_wrap {
            h3 {
              font-size: 1.8rem;
              position: relative;
              line-height: 1.55;
              margin-bottom: 0.6em;
              @media screen and (max-width: 480px) {
                font-size: 1.4rem;
              }
              span {
                display: inline-block;
                position: absolute;
                font-size: 1.67em;
                letter-spacing: 0.05em;
                color: var(--color-green);
                left: -1.75em;
                z-index: 30;
                top: -0.25em;
              }
            }
            p {
              font-size: 1.6rem;
              line-height: 1.625;
              letter-spacing: 0.04em;
              @media screen and (max-width: 480px) {
                font-size: 1.2rem;
              }
            }
          }
        }
      }
    }
  }

  /* 先輩の声 */
  .voice_wrap {
    width: 100%;
    position: relative;
    z-index: 1;
    .sticky_wrap {
      width: 100%;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: -1;
      @media screen and (max-width: 480px) {
        height: 75dvh;
      }
      .voice_img_wrap {
        position: relative;
        width: 66.67%;
        min-width: 80rem;
        min-height: 60rem;
        aspect-ratio: 800/460;
        display: block;
        margin: auto;
        @media screen and (max-width: 1024px) {
          width: 100%;
          min-width: auto;
          min-height: auto;
        }
        @media screen and (max-width: 480px) {
          transform: translateY(37.5%);
        }
        span {
          position: absolute;
          font-size: 5.33vw;
          display: block;
          padding-left: 0.18em;
          letter-spacing: 0.18em;
          color: #fff;
          top: 50%;
          left: 50%;
          font-weight: 700;
          transform: translate(-50%, -50%);
        }
      }
    }

    .over_wrap {
      position: relative;
      z-index: 20;
      width: 83.33%;
      aspect-ratio: 1/1.5;
      margin: auto;
      @media screen and (max-width: 1024px) {
        width: 100%;
        aspect-ratio: 1/2.5;
        margin-top: 0;
      }
      .item {
        font-size: 0.833vw;
        width: 34em;
        aspect-ratio: 1/1;
        background-color: var(--color-blue);
        border-radius: 1em;
        position: absolute;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        z-index: 40;
        @media screen and (max-width: 1024px) {
          font-size: 1.2vw;
        }
        @media screen and (max-width: 480px) {
          font-size: 1.55vw;
        }
        .fukidashi {
          font-size: 2.2em;
          letter-spacing: 0.2em;
          margin-bottom: 0.75em;
          span {
            display: inline-block;
            position: relative;
            padding: 0 0.7em 0 0.9em;
            &::before,
            &::after {
              content: "";
              position: absolute;
              border-left: 1px solid #fff;
              height: 1.2em;
            }
            &::before {
              left: 0;
              transform: rotate(-30deg);
            }
            &::after {
              right: 0;
              transform: rotate(30deg);
            }
          }
        }

        h3 {
          font-size: 3em;
          letter-spacing: 0.18em;
          line-height: 1.55;
          font-weight: 700;
          text-align: center;
          padding-left: 0.18em;
          margin-bottom: 0.5em;
        }
        p {
          font-size: 1.8em;
          line-height: 1.7;
          text-align: center;
          margin-bottom: 1.75em;
          letter-spacing: 0.1em;
          padding-left: 0.1em;
        }

        .button_wrap {
          .maru_button {
            font-size: 1.8em;
          }
        }

        &.item-01 {
          top: 0;
          left: 0;
        }

        &.item-02 {
          right: 0;
          top: 45%;
          background-color: var(--color-deep-blue);
          h3 {
            margin-bottom: 1em;
          }
        }
      }
    }
  }
}
/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
TOP
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

body.home {
  .main_area_wrap {
    position: relative;

    .main_img_wrap {
      padding-left: 6rem;
      box-sizing: border-box;
      width: 100%;
      height: 100vh;
      @media screen and (max-width: 1024px) {
        padding-left: 0;
        height: 66.7vw;
      }
      @media screen and (max-width: 480px) {
      }
      .top_slider_wrap {
        height: 100%;
        .slider-item {
          height: 100vh;
          background-size: cover;
          background-position: center center;
          background-repeat: no-repeat;
          span {
            display: none;
          }
          @media screen and (max-width: 1024px) {
            height: 66.7vw;
          }
          /*           &.item-01 {
            background-image: url(../img/top/main-img-01.webp?ver2);
          }
          &.item-02 {
            background-image: url(../img/top/main-img-02.webp?ver2);
          }
          &.item-03 {
            background-image: url(../img/top/main-img-03.webp?ver2);
          }
          &.item-04 {
            background-image: url(../img/top/main-img-04.webp?ver2);
          } */
          &.item-01 {
            background-image: url(../img/top/main-img-01-test.webp?ver4);
          }
          &.item-02 {
            background-image: url(../img/top/main-img-02-test.webp?ver4);
          }
          &.item-03 {
            background-image: url(../img/top/main-img-03-test.webp?ver4);
          }
          &.item-04 {
            background-image: url(../img/top/main-img-04-test2.webp);
          }
        }
      }
    }

    /* キャッチコピー */
    .wrapper {
      position: absolute;
      top: 0;
      left: 8.33vw;
      height: calc(100vh + 17.16vw);
      z-index: 10;
      @media screen and (max-width: 1024px) {
        height: calc(66.7vw + 22vw);
        left: 7.12vw;
      }
    }

    .sticky {
      position: sticky;
      top: calc(100vh - 16.8vw);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 2.25vw;
      @media screen and (max-width: 1024px) {
        top: calc(66.7vw - 16.8vw);
        position: absolute;
        top: auto;
        bottom: 0;
        gap: 2.89vw;
      }
    }

    svg {
      height: 5.4vw;
      fill: currentColor;
    }
    @media screen and (max-width: 1024px) {
      #icon1 {
        svg {
          height: 6.67vw;
          fill: #1978d2;
        }
      }
      #icon2 {
        svg {
          height: 6.67vw;
          fill: #2549aa;
        }
      }
    }
  }
  /* メインコピー */
  .main_copu_wrap {
    padding: 22vw 2rem 9rem;
    overflow: hidden;
    @media screen and (max-width: 1024px) {
      padding-top: 28vw;
    }
    @media screen and (max-width: 480px) {
      padding-top: 10.8rem;
      padding-left: 7.12vw;
      padding-bottom: 5.2rem;
      overflow: hidden;
    }
    .inner {
      margin: auto;
      max-width: 100rem;
      display: flex;
      position: relative;

      @media screen and (max-width: 480px) {
        display: block;
      }
      h3 {
        font-size: 3.2rem;
        line-height: 1.3;
        letter-spacing: 0.2em;
        width: 51rem;
        position: relative;
        z-index: 5;
        @media screen and (max-width: 480px) {
          font-size: 2rem;
          margin-bottom: 1em;
          width: auto;
        }
      }
      p {
        font-size: 1.8rem;
        line-height: 1.72;
        letter-spacing: 0.16em;
        position: relative;
        z-index: 5;
        @media screen and (max-width: 480px) {
          letter-spacing: 0.05em;
          font-size: 1.4rem;
        }
      }

      .logomark {
        width: 50.8rem;
        aspect-ratio: 1/1;
        right: 0;
        top: 0;
        transform: translate(50%, -50%);
        position: absolute;
        z-index: 1;
        @media screen and (max-width: 480px) {
          width: 25.4rem;
          transform: translate(7.3rem, -7.7rem);
        }
        svg {
          width: 100%;
          height: 100%;
          fill: var(--color-ex-light-blue);
        }
      }
    }
  }
  /* お知らせ */
  .news_wrap {
    background-color: var(--color-ex-light-blue);
    padding: 8.8rem 2rem;
    @media screen and (max-width: 480px) {
      padding: 4.6rem 2rem;
    }
    h2 {
      font-size: 3.6rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      max-width: 100rem;
      margin: auto;
      @media screen and (max-width: 480px) {
        font-size: 2rem;
      }
    }
    .inner {
      max-width: 100rem;
      margin: auto auto 7rem;
      display: flex;
      justify-content: space-between;
      @media screen and (max-width: 480px) {
        display: block;
        margin-bottom: 2rem;
      }
      .menu {
        padding-top: 3.2rem;

        @media screen and (max-width: 480px) {
          padding-top: 2.6rem;
          margin-bottom: 3.6rem;
        }
        h3 {
          font-weight: 300;
          font-size: 1.4rem;
          letter-spacing: 0.04em;
          margin-bottom: 1.1rem;
          color: var(--color-blue);
        }
        .taxonomy-list {
          width: 16.4rem;
          @media screen and (max-width: 480px) {
            width: 100%;
            display: flex;
            gap: 1%;
          }
          .taxonomy-item {
            margin: 0.4rem;
            @media screen and (max-width: 480px) {
              width: 32.66%;
              margin: 0;
            }
            a {
              display: block;
              background-color: var(--color-blue);
              color: #fff;
              font-size: 1.6rem;
              letter-spacing: 0.22em;
              padding: 0.6em 1em 0.7em;
              @media screen and (max-width: 480px) {
                padding: 0.6em 0.75em 0.7em;
              }
            }
          }
        }
      }
      .post_list_wrap {
        margin: 0;
        .post_list {
          padding: 0;
        }
      }
    }
  }
  /* 事業内容 */
  .business_wrap {
    position: relative;
    padding: 11.2rem 2rem 7.8rem;
    @media screen and (max-width: 480px) {
      padding: 21.6rem 2rem 9rem;
    }
    /* イラスト */
    .img_wrap {
      position: absolute;
      top: 0;
      left: 0;
      width: 42.8%;
      aspect-ratio: 514/344;
      max-height: 40rem;
      @media screen and (max-width: 480px) {
        width: 25.4rem;
        max-height: 100%;
      }

      .illust {
        position: absolute;
        right: -5.26%;
        bottom: -23.55%;
        width: 34.44%;
        max-width: 22.2rem;

        /*         &.illust-01 {
          width: 11.67%;
          right: -1.75%;
          bottom: 40.12%;
        }
        &.illust-02 {
          width: 19.65%;
          right: 8.75%;
          bottom: 16.28%;
        }
        &.illust-03 {
          width: 27.63%;
          right: -5.26%;
          bottom: -23.55%;
        }
        &.illust-04 {
          width: 12.26%;
          right: -6.03%;
          bottom: 18.31%;
        } */
      }
    }
    /* テキスト */
    .text_wrap {
      padding-left: 53.4rem;
      max-width: 100rem;
      box-sizing: border-box;
      margin: auto;
      position: relative;
      @media screen and (max-width: 480px) {
        padding: 0;
      }

      hgroup {
        margin-bottom: 3.6rem;
        @media screen and (max-width: 480px) {
          margin-bottom: 3rem;
        }
        .en {
          font-size: 4.6rem;
          letter-spacing: 0.18em;
          color: var(--color-blue);
          font-weight: 300;
          @media screen and (max-width: 480px) {
            font-size: 2.8rem;
          }
        }
        h2 {
          font-size: 1.8rem;
          letter-spacing: 0.18em;
          font-weight: 400;
          margin-top: 0.8em;
          margin-bottom: 1.8em;
          @media screen and (max-width: 480px) {
            font-size: 1.2rem;
          }
        }
        p {
          font-size: 3rem;
          letter-spacing: 0.1em;
          line-height: 1.75;
          @media screen and (max-width: 480px) {
            font-size: 2rem;
          }
        }
      }

      ul {
        li {
          font-size: 2.2rem;
          margin: 0 0 1.1em;
          @media screen and (max-width: 480px) {
            font-size: 1.6rem;
          }
          span {
            &::before {
              content: "─";
              display: inline-block;
              padding-right: 0.5em;
              color: var(--color-blue);
            }
          }
        }
      }

      .button_wrap {
        position: absolute;
        right: 0;
        bottom: -0.8rem;
      }
    }
  }

  /* 社会貢献事業 */
  .social_wrap {
    position: relative;
    padding: 17.5rem 2rem 12rem;
    @media screen and (max-width: 480px) {
      padding: 30.6rem 2rem 3.8rem;
    }

    /* イラスト */
    .img_wrap {
      position: absolute;
      top: 0;
      left: 0;
      width: 42.8%;
      aspect-ratio: 514/432;
      max-height: 48rem;
      @media screen and (max-width: 480px) {
        width: 25.4rem;
        max-height: 100%;
      }
      .img_inner {
        display: flex;
        gap: 2%;
        height: 100%;
        width: 100%;
        overflow: hidden;
        .img_item {
          width: 32%;
          img {
            object-fit: cover;
            width: 100%;
            height: 100%;
          }
        }
      }

      .illust {
        position: absolute;
        right: -9.73%;
        bottom: -38.87%;
        width: 67.31%;
        max-width: 43.2rem;

        /*         &.illust-01 {
          width: 17.12%;
          right: 5.45%;
          bottom: 33.56%;
        }
        &.illust-02 {
          width: 16.73%;
          right: -9.34%;
          bottom: 10.19%;
        }
        &.illust-03 {
          width: 29.57%;
          right: 27.82%;
          bottom: -14.35%;
        }
        &.illust-04 {
          width: 33.07%;
          right: -9.73%;
          bottom: -38.87%;
        }
        &.illust-05 {
          width: 13.24%;
          right: 10.89%;
          bottom: 18.98%;
        } */
      }
    }
    /* テキスト */
    .text_wrap {
      padding-left: 53.4rem;
      max-width: 100rem;
      box-sizing: border-box;
      margin: auto;
      position: relative;
      @media screen and (max-width: 480px) {
        padding: 0;
      }

      hgroup {
        margin-bottom: 3.6rem;
        @media screen and (max-width: 480px) {
          margin-bottom: 1.6rem;
        }
        .en {
          font-size: 4.6rem;
          letter-spacing: 0.18em;
          color: var(--color-blue);
          font-weight: 300;
          @media screen and (max-width: 480px) {
            font-size: 2.8rem;
          }
        }
        h2 {
          font-size: 1.8rem;
          letter-spacing: 0.18em;
          font-weight: 400;
          margin-top: 0.8em;
          margin-bottom: 1.8em;
          @media screen and (max-width: 480px) {
            font-size: 1.2rem;
          }
        }
        p {
          font-size: 3rem;
          letter-spacing: 0.1em;
          line-height: 1.75;
          @media screen and (max-width: 480px) {
            font-size: 2rem;
          }
        }
      }

      ul {
        li {
          font-size: 2rem;
          margin: 0 0 1.1em;
          @media screen and (max-width: 480px) {
            font-size: 1.6rem;
          }
          span {
            &::before {
              content: "■";
              display: inline-block;
              padding-right: 0.25em;
              color: var(--color-blue);
            }
          }
        }
      }

      .button_wrap {
        margin-top: 5.6rem;
        justify-content: flex-start;
        @media screen and (max-width: 480px) {
          margin-top:;
          justify-content: center;
        }
      }
    }
  }
  /* 施工実績 */
  .case_wrap {
    background-color: var(--color-deep-blue);
    padding: 13rem 0 10.8rem;

    @media screen and (max-width: 480px) {
      padding: 5.6rem 0 3.4rem;
    }
    .inner {
      position: relative;
      max-width: 104rem;
      margin: auto;
      hgroup {
        margin: auto auto 6.5rem;
        letter-spacing: 0.18em;
        color: #fff;
        max-width: 100rem;
        padding: 0 2rem;
        @media screen and (max-width: 480px) {
          margin-bottom: 3.8rem;
        }
        .en {
          font-size: 4.6rem;
          font-weight: 300;
          @media screen and (max-width: 480px) {
            font-size: 2.8rem;
          }
        }
        h2 {
          margin-top: 1em;
          font-size: 1.8rem;
          font-weight: 400;
          @media screen and (max-width: 480px) {
            font-size: 1.2rem;
          }
        }
      }
      .menu {
        position: absolute;
        right: 2rem;
        top: 2.8rem;

        @media screen and (max-width: 480px) {
          position: static;
          margin-bottom: 3.6rem;
          padding: 0 2rem;
        }
        h3 {
          font-weight: 300;
          font-size: 1.4rem;
          letter-spacing: 0.04em;
          margin-bottom: 1.1rem;
          color: #fff;
          padding-left: 0.5em;
          @media screen and (max-width: 480px) {
            padding: 0;
          }
        }
        .taxonomy-list {
          display: flex;
          @media screen and (max-width: 480px) {
            width: 100%;
            flex-wrap: wrap;
          }
          .taxonomy-item {
            width: 16rem;
            margin: 0.4rem;
            @media screen and (max-width: 480px) {
              width: 48.5%;
              margin: 0 0 1%;
              &:nth-child(2n + 1) {
                margin-right: 1%;
              }
            }
            a {
              display: block;
              background-color: #fff;
              color: var(--color-deep-blue);
              font-size: 1.6rem;
              letter-spacing: 0.22em;
              padding: 0.6em 1em 0.7em;
              @media screen and (max-width: 480px) {
                padding: 0.6em 0.75em 0.7em;
              }
            }
          }
        }
      }
      .post_list_wrap {
        margin-bottom: 3rem;
        .entry_item {
          .permalink {
            background: #1978d2;
            background: linear-gradient(
              180deg,
              rgba(25, 120, 210, 1) 0%,
              rgba(25, 120, 210, 1) 70%,
              rgba(37, 73, 170, 1) 100%
            );
          }
        }
      }
    }
  }
}
