@charset "UTF-8";

/* =====================
  mv
===================== */
.recruit_mv {
  position: relative;
  margin-top: calc((100 / 750) * 130 * 1vw);
  &::before {
    content: '';
    display: block;
    width: 100%;
    height: calc((100 / 750) * 582 * 1vw);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    background-image: url('../img/recruit/second_mv_bg_2x.png');
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .mv-title_wrap {
    position: relative;
    min-height: calc((100 / 750) * 695 * 1vw);
    margin-inline: auto;
    padding-top: calc((100 / 750) * 39 * 1vw);
    padding-inline: calc((100 / 750) * 40 * 1vw);
    display: grid;
    grid-template-areas:
      'h1'
      'mv'
      'bread';
    grid-template-rows: max-content max-content auto;
    & picture {
      display: block;
      grid-area: mv;
      margin-top: calc((100 / 750) * 53 * 1vw);
      & img {
        width: 100%;
      }
    }
    .h1-title {
      grid-area: h1;
      display: grid;
      gap: calc((100 / 750) * 10 * 1vw);
      height: fit-content;
      & > p[lang='en'] {
        font-family: var(--lexend);
        font-size: calc((100 / 750) * 64 * 1vw);
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: calc((100 / 750) * 2.56 * 1vw);
        color: #24845b;
      }
      & > h1 {
        font-size: calc((100 / 750) * 28 * 1vw);
        font-weight: 500;
        line-height: 1.7;
        letter-spacing: normal;
      }
    }
  }
}

/* =====================
  Bread
===================== */
.bread {
  grid-area: bread;
  position: relative;
  width: fit-content;
  margin-inline: auto 0;
  margin-top: calc((100 / 750) * 34 * 1vw);

  ul {
    font-size: calc((100 / 750) * 28 * 1vw);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.7em;
    justify-content: flex-end;
    li {
      display: flex;
      align-items: center;
      gap: 0.7em;
      position: relative;
      &::after {
        content: '－';
        display: inline;
        color: #595959;
      }
    }
  }
}
.link {
  color: #595959;
  border-bottom: none;
}

.bread ul li:last-child::after {
  display: none;
}
/* =====================
  LINK BTN
===================== */
.link-btn {
  position: relative;
  width: calc((100 / 750) * 327 * 1vw);
  height: fit-content;
  font-weight: 600;
  border-radius: 50rem;
  background-image: linear-gradient(108deg, #24845b 7%, #2fa371 92%);
  z-index: 5;
  &::before {
    display: none;
  }
  .link-anchor {
    display: block;
    width: 100%;
    height: 100%;
    padding-inline: calc((100 / 750) * 58 * 1vw) calc((100 / 750) * 40 * 1vw);
    padding-block: calc((100 / 750) * 32 * 1vw);

    & span {
      position: relative;
      display: block;
      font-weight: 500;
      line-height: 1;
      letter-spacing: normal;
      color: #fff;
      &.mont {
        line-height: 1.5;
        letter-spacing: calc((100 / 750) * 0.32 * 1vw);
      }
      &::before {
        display: none;
      }
      &::after {
        content: '';
        display: block;
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;
        mask-image: var(--arrow);
        background-color: #fff;
        width: calc((100 / 750) * 21 * 1vw);
        aspect-ratio: 1/1;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
      }
    }
  }
}
/* =====================
  H2-Title
===================== */
.h2-title {
  display: grid;
  gap: calc((100 / 750) * 13 * 1vw);
  & > p[lang='en'] {
    display: block;
    font-family: var(--lexend);
    font-size: calc((100 / 750) * 76 * 1vw);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: calc((100 / 750) * 3.04 * 1vw);
    color: #24845b;
    position: relative;
    &::before {
      display: none;
    }
  }
  & > h2 {
    position: relative;
    font-weight: 500;
    font-size: calc((100 / 750) * 28 * 1vw);
    line-height: 1;
    letter-spacing: normal;
    display: flex;
    align-items: center;
    gap: calc((100 / 750) * 12 * 1vw);
    &::before {
      content: '';
      display: block;
      width: calc((100 / 750) * 12 * 1vw);
      aspect-ratio: 1/1;
      border-radius: 50rem;
      background-color: #2fa371;
    }
  }
}
.h2-title-c {
  justify-content: center;
}
.h2-title-w {
  & > p[lang='en'] {
    color: #fff;
  }
  & > h2 {
    color: #fff;
    &::before {
      background-color: #fff;
    }
  }
}
/* =====================
  Recruit-Hgroup
===================== */
.recruit-hgroup {
  & > p {
    font-family: var(--lexend);
    font-size: calc((100 / 750) * 30 * 1vw);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: calc((100 / 750) * 1.2 * 1vw);
    color: #9e9e9e;
  }
  & > h4 {
    font-weight: 500;
    line-height: 1;
    color: #1b1b1e;
  }
}
/* =====================
  colorblock
===================== */
.colorblock {
  position: relative;
  background: linear-gradient(127deg, #24845b 5%, #2fa371 94%);
  border-radius: calc((100 / 750) * 30 * 1vw);
  &::before {
    content: '';
    position: absolute;
    top: calc((100 / 750) * 4 * 1vw);
    bottom: calc((100 / 750) * 4 * 1vw);
    left: calc((100 / 750) * 4 * 1vw);
    right: calc((100 / 750) * 4 * 1vw);
    background-color: #fff;
    border-radius: calc((100 / 750) * 28 * 1vw);
    pointer-events: none;
  }
}
/* =====================
  en-catch
===================== */
.en-catch {
  background-image: linear-gradient(93deg, #24845b 8%, #2fa371 92%);
  font-family: var(--lexend);
  font-size: calc((100 / 750) * 36 * 1vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: calc((100 / 750) * 1.44 * 1vw);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* =====================
  テーブル
===================== */
.table {
  width: 776px;

  tbody tr {
    th,
    td {
      font-size: 15px;
      border: solid 1px #babaca;
      padding-inline: 24px;
      padding-block: 16px;
      vertical-align: top;
    }
    th {
      width: 200px;
      font-weight: 600;
      background-color: #edf0f5;
    }
    td {
      background-color: #fff;
      p + p {
        margin-top: 1.8em;
      }
    }
  }
}
/* =====================
  Lineテーブル
===================== */
.table-inline {
  padding-inline: calc((100 / 750) * 80 * 1vw);
  .line-table {
    width: 100%;

    tbody tr {
      border-bottom: solid 1px #babaca;
      th,
      td {
        padding-block: calc((100 / 750) * 40 * 1vw);
        vertical-align: top;
      }
      th {
        width: calc((100 / 750) * 216 * 1vw);
        font-weight: 600;
        line-height: 2;
      }
      td {
        padding-inline: calc((100 / 750) * 40 * 1vw);
        p + p {
          margin-top: 1.8em;
        }
      }
    }
  }
}
/* =====================
  ヘッダー
===================== */
.recruit_header {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: calc((100 / 750) * 130 * 1vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding-inline: calc((100 / 750) * 35 * 1vw);
  padding-block: calc((100 / 750) * 19 * 1vw);
}
.recruit_header .logo {
  position: relative;
  width: fit-content;
  /* margin-top: calc((100 / 750) * 16 * 1vw); */

  & > a {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-rows: max-content auto;
    gap: calc((100 / 750) * 8 * 1vw);

    & picture {
      display: block;
      & img {
        width: calc((100 / 750) * 399 * 1vw);
      }
    }
    & span {
      font-family: var(--lexend);
      font-size: calc((100 / 750) * 20 * 1vw);
      line-height: 1;
      letter-spacing: calc((100 / 750) * 0.4 * 1vw);
      color: #9e9e9e;
    }
  }
}
.recruit_header .nav {
  .unit {
    display: none;
  }
  .menu_unit {
    display: none;
  }
}
/* =====================
  footer
===================== */
/* ==== aside ==== */
.recruit_footer {
  position: relative;
  .aside-linkset {
    & > li {
      position: relative;
      & > a {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        padding-inline: calc((100 / 750) * 88 * 1vw);
        padding-top: calc((100 / 750) * 133 * 1vw);
        &::before {
          content: '';
          display: block;
          width: calc((100 / 750) * 120 * 1vw);
          height: calc((100 / 750) * 120 * 1vw);
          border-radius: 50rem;
          border: solid 1px #fff;
          position: absolute;
          top: 50%;
          right: calc((100 / 750) * 88 * 1vw);
          transform: translateY(-50%);
        }
        &::after {
          content: '';
          display: block;
          width: calc((100 / 750) * 36 * 1vw);
          aspect-ratio: 1/1;
          mask-repeat: no-repeat;
          mask-size: contain;
          mask-position: center;
          mask-image: var(--arrow);
          background-color: #fff;
          position: absolute;
          top: 50%;
          right: calc((100 / 750) * 130 * 1vw);
          transform: translateY(-50%);
        }
        .h2-title {
          display: grid;
          grid-template-rows: max-content max-content;
          gap: calc((100 / 750) * 22 * 1vw);
          & p[lang='en'] {
            font-family: var(--lexend);
            font-size: calc((100 / 750) * 76 * 1vw);
            font-weight: 500;
            line-height: 1;
            letter-spacing: calc((100 / 750) * 3.04 * 1vw);
            color: #fff;
            position: relative;
            display: block;
            &::before {
              display: none;
            }
          }
          & h2 {
            position: relative;
            font-size: calc((100 / 750) * 28 * 1vw);
            font-weight: 500;
            line-height: 1;
            color: #fff;
            display: flex;
            align-items: center;
            gap: calc((100 / 750) * 12 * 1vw);
            &::before {
              content: '';
              display: block;
              width: calc((100 / 750) * 12 * 1vw);
              aspect-ratio: 1/1;
              border-radius: 50rem;
              background-color: #fff;
            }
          }
        }
      }
      &::before {
        content: '';
        display: block;
        width: calc((100 / 750) * 670 * 1vw);
        height: calc((100 / 750) * 280 * 1vw);
        border-radius: calc((100 / 750) * 20 * 1vw);
        background-color: rgba(255, 255, 255, 0.3);
        position: absolute;
        top: calc((100 / 750) * 64 * 1vw);
        left: calc((100 / 750) * 40 * 1vw);
      }
      &.careers {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-image: url('../img/recruit/careers_bg_2x.png');
        width: 100%;
        height: calc((100 / 750) * 408 * 1vw);
      }
      &.entry {
        position: relative;
        background-image: linear-gradient(124deg, #24845b 6%, #2fa371 94%);
        width: 100%;
        height: calc((100 / 750) * 408 * 1vw);
      }
    }
  }
}

/* ==== menu ==== */
.recruit_footer .footer-menu {
  position: relative;
  padding-block: calc((100 / 750) * 88 * 1vw) 0;
  display: grid;
  align-items: start;
  grid-template-areas:
    'info'
    'nav'
    'foot';
  grid-template-rows: auto auto auto;
}
/* info */
.recruit_footer .company-info {
  grid-area: info;
  height: fit-content;
  .logo {
    & a {
      & picture {
        & img {
          width: calc((100 / 750) * 398 * 1vw);
        }
      }
      & span {
        display: block;
        font-family: var(--lexend);
        font-size: calc((100 / 750) * 26 * 1vw);
        line-height: 1;
        letter-spacing: calc((100 / 750) * 0.52 * 1vw);
        color: #9e9e9e;
        margin-top: calc((100 / 750) * 16 * 1vw);
      }
    }
  }
}
/* nav */
.recruit_footer .nav {
  grid-area: nav;
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: calc((100 / 750) * 60 * 1vw);
  row-gap: calc((100 / 750) * 42 * 1vw);
  margin-top: calc((100 / 750) * 59 * 1vw);
  .nav-unit {
    .head {
      & a {
        position: relative;
        &::before {
          content: attr(data-text);
          display: block;
          font-family: var(--lexend);
          font-size: calc((100 / 750) * 40 * 1vw);
          font-weight: 500;
          line-height: 1.5;
          letter-spacing: calc((100 / 750) * 1.6 * 1vw);
          color: #24845b;
        }
        & span {
          position: relative;
          font-size: calc((100 / 750) * 24 * 1vw);
          font-weight: 500;
          line-height: 1;
          color: #1b1b1e;
          display: flex;
          align-items: center;
          gap: calc((100 / 750) * 8 * 1vw);
          &::before {
            content: '';
            display: block;
            width: calc((100 / 750) * 8 * 1vw);
            aspect-ratio: 1/1;
            border-radius: 50rem;
            background-color: #2fa371;
          }
        }
      }
      & + .head {
        margin-top: calc((100 / 750) * 24 * 1vw);
      }
    }
    .middle {
      & ul {
        margin-top: calc((100 / 750) * 28 * 1vw);
        & li {
          & a {
            position: relative;
            font-size: calc((100 / 750) * 26 * 1vw);
            font-weight: 600;
            color: #595959;
          }
          & + li {
            margin-top: calc((100 / 750) * 8 * 1vw);
          }
        }
      }
    }
  }
}

/* foot */
.recruit_footer .foot {
  grid-area: foot;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((100 / 750) * 44 * 1vw);
  padding-block: calc((100 / 750) * 36 * 1vw) calc((100 / 750) * 53 * 1vw);
  border-top: solid 1px #1b1b1e;
  margin-top: calc((100 / 750) * 67 * 1vw);
  small {
    display: block;
    font-family: Lexend;
    font-size: calc((100 / 750) * 24 * 1vw);
    font-weight: 300;
    line-height: 1;
    color: #9e9e9e;
  }
  .sub-nav {
    font-size: calc((100 / 750) * 26 * 1vw);
    line-height: 1;
    color: #9e9e9e;
    & li {
      & a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: calc((100 / 750) * 4 * 1vw);
        &::after {
          content: '';
          display: block;
          width: calc((100 / 750) * 24 * 1vw);
          aspect-ratio: 1/1;
          background-repeat: no-repeat;
          background-size: contain;
          background-position: center;
          background-image: url('../img/recruit/icon_browsers.svg');
        }
      }
    }
  }
}

/* =====================
  totop
===================== */
.to-top {
  position: absolute;
  right: 0px;
  bottom: calc((100 / 750) * 225 * 1vw);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../img/recruit/top-btn_2x.png');
  width: calc((100 / 750) * 96 * 1vw);
  height: calc((100 / 750) * 96 * 1vw);
  z-index: 15;
}

/* =====================
  SPメニュー
===================== */
/* ==== ボタン ==== */
.sp-menu {
  position: fixed;
  top: calc((100 / 750) * 18 * 1vw);
  right: calc((100 / 750) * 35 * 1vw);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../img/recruit/hamburger_2x.png');
  width: calc((100 / 750) * 92 * 1vw);
  height: calc((100 / 750) * 93 * 1vw);
  z-index: 220;
}

/* ==== ナビ ==== */
.sp-nav {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  z-index: 250;
  transition: left 600ms var(--easeOutExpo) 0s;
  background-color: #fff;
  opacity: 0;
}

body.menu-on .sp-nav {
  opacity: 1;
  left: 0;
}

.sp-nav-inner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  display: grid;
  grid-template-rows: max-content auto max-content;
  /* ==== ヘッド ==== */
  .sp-menu-head {
    position: relative;
    width: 100%;
    min-height: calc((100 / 750) * 130 * 1vw);
    top: 0;
    left: 0;
    padding-inline: calc((100 / 750) * 35 * 1vw);
    .close-menu {
      position: absolute;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      background-image: url('../img/recruit/close_2x.png');
      width: calc((100 / 750) * 92 * 1vw);
      height: calc((100 / 750) * 92 * 1vw);
      top: calc((100 / 750) * 19 * 1vw);
      right: calc((100 / 750) * 35 * 1vw);
    }
    /* logo */
    .logo {
      position: relative;
      background-color: #fff;
      padding-inline: 0;
      padding-bottom: calc((100 / 750) * 13 * 1vw);
      & > a {
        display: flex;
        align-items: center;
        gap: calc((100 / 750) * 24 * 1vw);
        & > img {
          width: calc((100 / 750) * 321 * 1vw);
        }
        & > span {
          display: block;
          font-family: var(--lexend);
          font-size: calc((100 / 750) * 18 * 1vw);
          line-height: 1;
          letter-spacing: calc((100 / 750) * 0.36 * 1vw);
        }
      }
    }
  }
  /* ==== 内容 ==== */
  .body {
    padding-inline: calc((100 / 750) * 40 * 1vw);
    padding-block: calc((100 / 750) * 55 * 1vw) calc((100 / 750) * 47 * 1vw);
    .nav {
      display: grid;
      grid-template-columns: repeat(2, auto);
      grid-template-rows: max-content max-content max-content;
      grid-auto-flow: row;
      gap: calc((100 / 750) * 50 * 1vw) calc((100 / 750) * 60 * 1vw);
      border-bottom: 1px solid #1b1b1e;
      padding-bottom: calc((100 / 750) * 100 * 1vw);
      .nav-unit {
        .head {
          & a {
            position: relative;
            &::before {
              content: attr(data-text);
              display: block;
              font-family: var(--lexend);
              font-size: calc((100 / 750) * 40 * 1vw);
              font-weight: 500;
              line-height: 1.5;
              letter-spacing: calc((100 / 750) * 1.6 * 1vw);
              color: #24845b;
            }
            & span {
              position: relative;
              font-size: calc((100 / 750) * 24 * 1vw);
              font-weight: 500;
              line-height: 1;
              color: #1b1b1e;
              display: flex;
              align-items: center;
              gap: calc((100 / 750) * 8 * 1vw);
              &::before {
                content: '';
                display: block;
                width: calc((100 / 750) * 8 * 1vw);
                aspect-ratio: 1/1;
                border-radius: 50rem;
                background-color: #2fa371;
              }
            }
          }
          & + .head {
            margin-top: calc((100 / 750) * 24 * 1vw);
          }
        }
        .middle {
          & > ul {
            margin-top: calc((100 / 750) * 28 * 1vw);
            & > li {
              & > a {
                position: relative;
                font-size: calc((100 / 750) * 26 * 1vw);
                font-weight: 600;
                color: #595959;
              }
              & + li {
                margin-top: calc((100 / 750) * 8 * 1vw);
              }
            }
          }
        }
        &[data-id='2'] {
          grid-row: unset;
        }
      }
    }
    .sub-nav {
      margin-top: calc((100 / 750) * 34 * 1vw);
      & > li {
        & > a {
          font-size: calc((100 / 750) * 26 * 1vw);
          font-weight: normal;
          line-height: 1;
          color: #9e9e9e;
          position: relative;
          display: flex;
          align-items: center;
          gap: calc((100 / 750) * 8 * 1vw);
          &::after {
            content: '';
            display: block;
            width: calc((100 / 750) * 32 * 1vw);
            aspect-ratio: 1/1;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
            background-image: url('../img/recruit/icon_browsers.svg');
          }
        }
      }
    }
    .foot {
      & > small {
        display: block;
        font-family: var(--lexend);
        font-size: calc((100 / 750) * 24 * 1vw);
        font-weight: 300;
        line-height: 1;
        text-align: center;
        color: #9e9e9e;
        margin-top: calc((100 / 750) * 41 * 1vw);
      }
    }
  }
}
