@charset "UTF-8";

/* =====================
  mv
===================== */
.recruit_mv {
  position: relative;
  margin-top: 112px;
  &::before {
    content: '';
    display: block;
    width: 100%;
    height: 418px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url('../img/recruit/second_mv_bg.png');
    position: absolute;
    top: 0;
    left: 0;
  }
  .mv-title_wrap {
    position: relative;
    width: 1300px;
    min-height: 418px;
    margin-inline: auto;
    padding-top: 16px;
    padding-inline: 80px;
    display: grid;
    grid-template-areas:
      'mv h1'
      'mv bread';
    grid-template-columns: auto 1fr;
    grid-template-rows: max-content auto;
    column-gap: 48px;
    & picture {
      display: block;
      grid-area: mv;
    }
    .h1-title {
      grid-area: h1;
      display: grid;
      gap: 10px;
      height: fit-content;
      margin-top: 66px;
      & > p[lang='en'] {
        font-family: var(--lexend);
        font-size: 52px;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: 2.08px;
        color: #24845b;
      }
      & > h1 {
        font-size: 16px;
        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: 140px;

  ul {
    font-size: 16px;
    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: 197px;
  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: 32px 24px;
    padding-block: 18px;

    & span {
      position: relative;
      display: block;
      font-weight: 500;
      line-height: 1;
      letter-spacing: normal;
      color: #fff;
      &.mont {
        line-height: 1.5;
        letter-spacing: 0.32px;
      }
      &::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: 13px;
        aspect-ratio: 1/1;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
      }
    }
  }
}
/* =====================
  H2-Title
===================== */
.h2-title {
  display: flex;
  gap: 20px;
  & > p[lang='en'] {
    display: block;
    font-family: var(--lexend);
    font-size: 64px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 2.56px;
    color: #24845b;
    position: relative;
    &::before {
      display: none;
    }
  }
  & > h2 {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: normal;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    &::before {
      content: '';
      display: block;
      width: 8px;
      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: 18px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.72px;
    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: 30px;
  &::before {
    content: '';
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    background-color: #fff;
    border-radius: 28px;
    pointer-events: none;
  }
}
/* =====================
  gray-list
===================== */
.en-catch {
  background-image: linear-gradient(93deg, #24845b 8%, #2fa371 92%);
  font-family: var(--lexend);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.96px;
  -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: 80px;
  .line-table {
    width: 100%;

    tbody tr {
      border-bottom: solid 1px #babaca;
      th,
      td {
        padding-block: 40px;
        vertical-align: top;
      }
      th {
        width: 216px;
        font-weight: 600;
        line-height: 2;
      }
      td {
        padding-inline: 40px;
        p + p {
          margin-top: 1.8em;
        }
      }
    }
  }
}
/* =====================
  ヘッダー
===================== */
.recruit_header {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1240px;
  height: 90px;
  display: flex;
  justify-content: space-between;
  background-color: transparent;
  padding-inline: 40px;
  transition: background-color 250ms ease 0s;
  will-change: background-color;
}

.isHeaderColor .recruit_header {
  background-color: #fff;
}
@media not all and (min-width: 1301px) {
  .recruit_header {
    min-width: 1080px;
  }
}
.recruit_header .logo {
  position: relative;
  width: fit-content;
  height: 90px;
  & > a {
    display: grid;
    width: 100%;
    height: 100%;
    place-content: center;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 20px;
    padding-block: 24px;

    & picture {
      & img {
        width: 223px;
      }
    }
    & span {
      font-family: var(--lexend);
      font-size: 13px;
      line-height: 2;
      letter-spacing: 0.26px;
      color: #9e9e9e;
    }
  }
}
.recruit_header {
  & > .nav {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    gap: 30px;

    .unit {
      position: relative;
      width: fit-content;
      height: fit-content;
      border-style: solid;
      border-radius: 50rem;
      background: linear-gradient(129deg, #32be81 17%, #24845b 83%);
      margin-bottom: 6px;
      &::before {
        content: '';
        position: absolute;
        top: 1px;
        bottom: 1px;
        left: 1px;
        right: 1px;
        background-color: #fff;
        border-radius: 50rem;
      }
      & > a {
        width: 100%;
        height: 100%;
        display: grid;
        place-content: center;
        padding-inline: 27px;
        padding-block: 21px;
        & > span {
          position: relative;
          font-family: var(--lexend);
          font-weight: 500;
          line-height: 1;
          color: #24845b;
          display: flex;
          align-items: center;
          gap: 8px;
          &::before {
            content: '';
            display: block;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
            background-image: url('../img/common/icon_mail.svg');
            width: 13px;
            height: 11px;
          }
        }
      }
    }
  }
}
/* ==== メニュー ==== */
.menu_unit {
  height: 68px;
  .pc-menu {
    position: relative;
    z-index: 20;
    width: 68px;
    height: 68px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../img/recruit/hamburger.png');
  }
}
.pc-nav {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  transition: left 600ms var(--easeOutExpo) 0s;
  opacity: 0;
  background-color: rgba(27, 27, 30, 0.6);
  pointer-events: none;
}
body.menu-on .pc-nav {
  opacity: 1;
  left: 0;
  pointer-events: auto;
}

.pc-nav-inner {
  position: relative;
  width: 653px;
  height: 100vh;
  background-color: #fff;
  margin-inline: auto 0;
  border-radius: 48px 0 0 48px;
  /* ==== ヘッド ==== */
  .menu-head {
    position: relative;
    min-height: 90px;
    background-color: #fff;
    border-radius: 48px 0 0 0;
    .close-menu {
      position: absolute;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      background-image: url('../img/recruit/close.png');
      width: 68px;
      height: 68px;
      top: 22px;
      right: 40px;
    }
  }
  /* ==== 内容 ==== */
  .menu-body {
    position: relative;
    padding-inline: 106px 70px;
    padding-block: 54px;
    & > .nav {
      height: 580px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      gap: 45px 90px;
      .nav-unit {
        .head {
          & a {
            position: relative;
            &::before {
              content: attr(data-text);
              display: block;
              font-family: var(--lexend);
              font-size: 26px;
              font-weight: 500;
              line-height: 1.5;
              letter-spacing: 1.04px;
              color: #24845b;
            }
            & span {
              position: relative;
              font-size: 13px;
              font-weight: 500;
              line-height: 1;
              color: #1b1b1e;
              display: flex;
              align-items: center;
              gap: 8px;
              &::before {
                content: '';
                display: block;
                width: 5px;
                aspect-ratio: 1/1;
                border-radius: 50rem;
                background-color: #2fa371;
              }
            }
          }
          & + .head {
            margin-top: 24px;
          }
        }
        .middle {
          & ul {
            margin-top: 16px;
            & li {
              & a {
                position: relative;
                font-size: 15px;
                font-weight: 600;
                color: #595959;
                display: flex;
                align-items: center;
                gap: 16px;
              }
              & + li {
                margin-top: 8px;
              }
            }
          }
        }
        &[data-id='1'],
        &[data-id='2'],
        &[data-id='3'] {
          min-height: 159px;
        }
      }
      .sub-nav {
        display: block;
        margin-top: 24px;
        & > li {
          & > a {
            position: relative;
            font-size: 14px;
            line-height: 1;
            color: #9e9e9e;
            display: flex;
            align-items: center;
            gap: 4px;
            &::after {
              content: '';
              display: block;
              width: 16px;
              aspect-ratio: 1/1;
              background-repeat: no-repeat;
              background-size: contain;
              background-position: center;
              background-image: url('../img/recruit/icon_browsers.svg');
            }
          }
        }
      }
    }
  }
}

/* =====================
  footer
===================== */
/* ==== aside ==== */
.recruit_footer {
  position: relative;
  .aside-linkset {
    display: flex;
    align-items: center;
    justify-content: center;
    & > li {
      position: relative;
      & > a {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        padding-inline: 80px;
        padding-top: 94px;
        &::before {
          content: '';
          display: block;
          width: 64px;
          height: 64px;
          border-radius: 50rem;
          border: solid 1px #fff;
          position: absolute;
          bottom: 104px;
          left: 80px;
        }
        &::after {
          content: '';
          display: block;
          width: 21px;
          aspect-ratio: 1/1;
          mask-repeat: no-repeat;
          mask-size: contain;
          mask-position: center;
          mask-image: var(--arrow);
          background-color: #fff;
          position: absolute;
          bottom: 124px;
          left: 102px;
        }
        .h2-title {
          display: flex;
          align-items: center;
          gap: 22px;
          & p[lang='en'] {
            font-family: var(--lexend);
            font-size: 64px;
            font-weight: 500;
            line-height: 1;
            letter-spacing: 2.56px;
            color: #fff;
            position: relative;
            display: block;
            &::before {
              display: none;
            }
          }
          & h2 {
            position: relative;
            font-size: 16px;
            font-weight: 500;
            line-height: 1;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            &::before {
              content: '';
              display: block;
              width: 8px;
              aspect-ratio: 1/1;
              border-radius: 50rem;
              background-color: #fff;
            }
          }
        }
      }
      &::before {
        content: '';
        display: block;
        width: 570px;
        height: 285px;
        border-radius: 20px;
        background-color: rgba(255, 255, 255, 0.3);
        position: absolute;
        top: 40px;
        left: 40px;
      }
      &.careers {
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        background-image: url('../img/recruit/careers_bg.png');
        width: 650px;
        height: 365px;
      }
      &.entry {
        position: relative;
        background-image: linear-gradient(124deg, #24845b 6%, #2fa371 94%);
        width: 650px;
        height: 365px;
        &::after {
          content: '';
          display: block;
          background-repeat: no-repeat;
          background-size: contain;
          background-position: center;
          background-image: url('../img/recruit/entry_deco.png');
          width: 65px;
          height: 81px;
          position: absolute;
          bottom: 56px;
          right: 56px;
        }
      }
    }
  }
}

/* ==== menu ==== */
.recruit_footer .footer-menu {
  position: relative;
  padding-block: 78px 0;
  display: grid;
  align-items: start;
  grid-template-areas:
    'info nav'
    'foot foot';
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  justify-content: space-between;
}
/* info */
.recruit_footer .company-info {
  grid-area: info;
  height: fit-content;
  .logo {
    margin-top: 10px;
    & a {
      display: flex;
      align-items: center;
      gap: 16px;
      & picture {
        & img {
          width: 223px;
        }
      }
      & span {
        font-family: Lexend;
        line-height: 1;
        letter-spacing: 0.32px;
        color: #9e9e9e;
      }
    }
  }
}
/* nav */
.recruit_footer .nav {
  grid-area: nav;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: auto auto;
  margin-inline: auto 0;
  column-gap: 87px;
  row-gap: 30px;
  padding-right: 40px;
  .nav-unit {
    .head {
      & a {
        position: relative;
        &::before {
          content: attr(data-text);
          display: block;
          font-family: var(--lexend);
          font-size: 26px;
          font-weight: 500;
          line-height: 1.5;
          letter-spacing: 1.04px;
          color: #24845b;
        }
        & span {
          position: relative;
          font-size: 13px;
          font-weight: 500;
          line-height: 1;
          color: #1b1b1e;
          display: flex;
          align-items: center;
          gap: 8px;
          &::before {
            content: '';
            display: block;
            width: 5px;
            aspect-ratio: 1/1;
            border-radius: 50rem;
            background-color: #2fa371;
          }
        }
      }
      & + .head {
        margin-top: 24px;
      }
    }
    .middle {
      & ul {
        margin-top: 16px;
        & li {
          & a {
            position: relative;
            font-size: 15px;
            font-weight: 600;
            color: #595959;
            display: flex;
            align-items: center;
            gap: 16px;
          }
          & + li {
            margin-top: 8px;
          }
        }
      }
    }
  }
}

/* foot */
.recruit_footer .foot {
  grid-area: foot;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding-block: 29px 50px;
  border-top: solid 1px #1b1b1e;
  margin-top: 99px;
  small {
    display: block;
    font-family: Lexend;
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
    color: #9e9e9e;
  }
  .sub-nav {
    font-size: 14px;
    line-height: 1;
    color: #9e9e9e;
    & li {
      & a {
        position: relative;
        display: flex;
        align-items: center;
        gap: 4px;
        &::after {
          content: '';
          display: block;
          width: 16px;
          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: 120px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../img/recruit/top-btn.png');
  width: 64px;
  height: 64px;
  z-index: 15;
}
