* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  --font-zenmaru: 'Zen Maru Gothic', sans-serif;
  --font-roboto: 'Roboto', sans-serif;
}
body {
  background: #fcf2d8;
  font-family: var(--font-zenmaru);
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.modal-open {
    overflow: hidden;
    padding-right: 15px;
}
body#page-search-results, #job-openings, #apply-job ,#job-advisor {
  background: #ffffff;
  font-family: var(--font-zenmaru);
}
header {
  width: 100%;
  background: #ffffff;
  font-family: var(--font-roboto);
  color: #2A2A2A;
  box-shadow: 0px 8px 16px #00000033;
  position: fixed;
  top: 0;
  z-index: 999;
  .block-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 56px;
    gap: 24px;
    .logo {
      padding: 28px 0;
      flex: 1;
      display: flex;
      gap: 24px;
      align-items: center;
      a {
        width: 304px;
        display: block;
        img {
          width: 100%;
        }
      }
      p.sub-logo {
        font-size: 12px;
        font-weight: 500;
      }
    }
    .block-action {
      padding: 24px 0;
      flex: 1;
      display: flex;
      justify-content: flex-end;
      gap: 8px;
      a {
        height: 56px;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        color: #FFF;
        padding: 17.5px 24px;
        display: flex;
        text-decoration: none;
        transition: all 0.3s ease;
        &:hover {
          opacity: 0.8;
        }
      }
      .companies-considering {
        background: #493D31;
        border-radius: 50px;
        transition: background-color 0.3s ease, color 0.3s ease;
        &:hover {
          background-color: #493D31B2;
        }
        a {
          img {
            width: 24px;
            height: 24px;
            margin-right: 8px;
          }
        }
      }
      .career-support {
        background: #FB9800;
        border-radius: 50px;
        transition: background-color 0.3s ease, color 0.3s ease;
        &:hover {
          background-color: #FB9800B2;
        }
        span {
          background: #FFF;
          color: #FB9800;
          font-size: 14px;
          padding: 4px 8px;
          margin-right: 8px;
          border-radius: 2px;
          height: 24px;
          line-height: 18px;
        }
      }
    }
    .customer-service {
      display: none;
    }
  }
  .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
  }
  .block-bottom {
    padding: 0px 56px;
    nav {
      ul {
        display: flex;
        li {
          position: relative;
          list-style: none;
          width: 25%;
          padding: 16px 0 22px 0;
          text-align: center;
          a {
            color: #2A2A2A;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s linear;
          }
          a:hover {
            border-bottom: 1px solid #51AEDD;
            color: #51AEDD;
          }
          a:before {
            content: '';
            position: absolute;
            top: 25%;
            left: 0;
            display: inline-block;
            width: 1px;
            height: 25px;
            background: #D2D2D2;
          }
        }
        li:last-child{
          a:after{
            content: '';
            position: absolute;
            top: 25%;
            right: 0;
            display: inline-block;
            width: 1px;
            height: 25px;
            background-color: #D2D2D2;
          }
        }
        li:first-child {
          a.active {
            border-bottom: none;
            color: #2A2A2A;
          }
        }
      }
    }
    /* sp */
    .sp-menu {
      display: none;
      position: absolute;
      right: 0;
      width: 100%;
      min-height: 100vh;
      max-width: 100%;
      background: #FCF2D8;
      z-index: 999;
      padding-top: 24px;
      overflow: hidden;
      &.active {
        display: block;
      }
      ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
        li {
          padding: 0px 24px;
          width: 100%;
          a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            padding: 14px 20px;
            text-decoration: none;
            color: #2a2a2a;
            background-color: #ffffff;
            border-radius: 4px;
            font-family: var(--font-roboto);
            font-size: 16px;
            font-weight: 600;
            line-height: 16px;
            text-align: left;
            position: relative;
            box-shadow: 4px 4px #493D311A;

            &:hover {
              background-color: #f0f0f0;
            }

            &.special-dark {
              background-color: #4d3c2c;
              color: #fff;
            }

            &.special-orange {
              background-color: #ff9900;
              color: #fff;
            }
            &::before {
                width: 0px;
            }
            i.fa-chevron-right {
              margin-left: auto;
              color: #51AEDD;
              font-size: 16px;
            }
          }
          &:last-child {
            ::after {
                content: '';
                position: absolute;
                top: 25%;
                right: 0;
                display: inline-block;
                width: 0px;
                height: 25px;
                background-color: #D2D2D2;
            }
        }
        }
      }
      .block-action {
        padding: 32px 24px 0px;
        flex: 1;
        display: flex;
        justify-content: center;
        gap: 8px;
        a {
          height: 56px;
          align-items: center;
          font-size: 18px;
          font-weight: 600;
          color: #FFF;
          padding: 17.5px 24px;
          display: flex;
          text-decoration: none;
          transition: all 0.3s ease;
          &:hover {
            opacity: 0.8;
          }
        }
        .companies-considering {
          background: #493D31;
          border-radius: 50px;
          transition: background-color 0.3s ease, color 0.3s ease;
          &:hover {
            background-color: #493D31B2;
          }
          a {
            img {
              width: 24px;
              height: 24px;
              margin-right: 8px;
            }
          }
        }
      .career-support {
        background: #FB9800;
        border-radius: 50px;
        transition: background-color 0.3s ease, color 0.3s ease;
        &:hover {
          background-color: #FB9800B2;
        }
          span {
            background: #FFF;
            color: #FB9800;
            font-size: 14px;
            padding: 4px 8px;
            margin-right: 8px;
            border-radius: 2px;
            height: 24px;
            line-height: 18px;
          }
        }
      }
    }
    /* sp */
  }
}
header + main {
  margin-top: 175px;
}
.container {
  width: 1022px;
  max-width: 95%;
  margin: auto;
}
/* dialog */
.search-modal {
  font-family: var(--font-roboto);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 4px;
  width: 1022px;
  max-width: 90%;
  &::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .modal-content-wrapper {
    .tab-header {
      display: flex;
      button.tab-button {
        font-size: 22px;
        font-weight: 600;
        line-height: 100%;
        color: #6C6C6C;
        width: 511px;
        height: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        border: none;
        border-radius: 4px 4px 0 0;
        background: #F5F5F5;
        img {
          width: 24px;
          margin-right: 4px;
        }
        span {
          font-size: 18px;
          color: #6C6C6C;
        }
      }
      button.tab-button.active {
        color: #51AEDD;
        background: #FFFFFF;
        border-top: 6px solid #51AEDD;
      }
    }
    .tab-body {
      display: flex;
      flex-wrap: wrap;
      margin-top: 20px;
      padding: 40px;
      .tab-content {
        display: none;
        flex: 1;
        gap: 32px 16px;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        width: 100%;
        li {
          list-style: none;
          display: block;
          cursor: pointer;
          width: 140px;
          height: 56px;
          align-content: center;
          text-align: center;
          label, a {
            height: 100%;
            color: #493D31;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            line-height: 140%;
            display: flex;
            border-bottom: 1px solid #493D31;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            span {
              display: block;
            }
          }
          label input {
            opacity: 0;
            height: 0;
          }
        }
        li:has(input:checked), li:has(.active) {
          label, a {
            border-bottom: 1px solid #51AEDD;
            color: #51AEDD;
          }
        }
      }
      .tab-content.active {
        display: flex;
      }
      .tab-content.tab-2 {
        gap: 24px 16px;
        li {
          width: 102px;
          height: 60px;
        }
        .groups-container {
          width: 100%;
          .checkbox-group {
            display: none;
            width: 100%;
            padding: 10px 0;
            transition: all 0.3s linear;
            label {
              display: flex;
              align-items: center;
              font-weight: 400;
              font-size: 16px;
              line-height: 140%;
              color: #493D31;
              cursor: pointer;
              input[type="checkbox"] {
                margin-right: 8px;
                width: 20px;
                height: 20px;
                border: 1.25px solid #E7E5E1;
                position: relative;
                transition: all 0.3s linear;
                cursor: pointer;
              }
              input[type="checkbox"]:checked::after {
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                content: "✔";
                background-color: #51AEDD;
                color: white;
                font-size: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 100%;
                width: 100%;
                cursor: pointer;
              }
            }
          }
          .checkbox-group.active {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 64px;
            padding: 0 16px;
          }
        }
      }
      .tab-content.tab-2.active {
        .groups-container {
          display: block;
        }
      }
      .tab-actions {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 56px;
        button {
          width: 250px;
          height: 54px;
          font-weight: 600;
          font-size: 16px;
          line-height: 140%;
          color: #493D31;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50px;
          border: 1px solid #493D31;
          cursor: pointer;
          i {
            font-size: 21px;
            margin-right: 8px;
          }
        }
        button.search-button {
          color: #FFF;
          background: #493D31;
          i {
            color: #FFF;
            font-size: 16px;
          }
        }
      }
    }
  }
}
/* breadcrumb */
.breadcrumb {
  padding: 16px 56px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-roboto);
  border-bottom: 1px solid #D9D9D9;
  background: #FFFFFF;
  ol {
    display: flex;
    gap: 26px;
    align-items: center;
    li {
      color: #493D31;
      list-style: none;
      position: relative;
      a {
        color: #51AEDD;
      }
      &::after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f105";
        position: absolute;
        right: -18px;
        top: 50%;
        transform: translateY(-50%);
      }
    }
    li:last-child {
      &::after {
        display: none;
      }
    }
  }
}
.banner {
  position: relative;
  .main-image {
    width: 100%;
    padding-left: 48px;
    margin-top: -10px;
    img {
      margin: 0 auto;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: top center;
      border-radius: 0 0 0 8px;
      border-bottom: 8px solid #51AEDD;
    }
    img.sp {
      display: none;
    }
  }
  .scroll-down {
    position: absolute;
    bottom: 0;
    left: 16px;
    z-index: 1;
    a {
      display: flex;
      gap: 8px;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: #2A2A2A;
      font-size: 14px;
      font-family: var(--font-roboto);
      font-weight: 400;
      p {
        writing-mode: vertical-rl;
      }
    }
  }
  .into-banner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 96px;
    .main-title {
      width: 550px;
      max-width: 100%;
      h1 {
        font-size: 46px;
        font-family: var(--font-zenmaru);
        font-weight: 700;
        margin-bottom: 24px;
        span {
          background: rgb(255 255 255 / 85%);
          color: #493D31;
          display: inline-block;
          margin-bottom: 8px;
          padding: 0 16px;
          line-height: 160%;
        }
        span:last-child {
          margin-bottom: 0px;
        }
      }
      .career-support {
          background: #FB9800;
          border-radius: 40px;
          font-family: var(--font-roboto);
        a {
          font-size: 20px;
          font-weight: 600;
          color: #FFF;
          padding: 18px 62px;
          text-decoration: none;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          span {
            font-size: 16px;
            background: #FFF;
            color: #FB9800;
            padding: 4px 8px;
            border-radius: 2px;
          }
        }
      }
    }
  }
}
.filter-search {
  font-family: var(--font-roboto);
  position: relative;
  z-index: 1;
  .group-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    a {
      width: 100%;
      height: 52px;
      font-weight: 500;
      border-radius: 4px;
      padding: 16px;
      color: #949494;
      display: flex;
      border: 1px solid #D9D9D9;
      text-decoration: none;
      justify-content: space-between;
      p {
        span {
          font-size: 16px;
          font-weight: 500;
          color: #2A2A2A;
          img {
            width: 20px;
            margin-bottom: -4px;
            margin-right: 8px;
          }
          + .ellipsis {
            max-width: 230px;
            display: block;
          }
        }
        i {
          font-size: 14px;
          margin-top: -4px;
          color: #2A2A2A;
        }
      }
    }
  }
  .group-modal.sp {
    display: none;
  }
  .group {
    padding: 40px 56px;
    background: #FFF;
    border-radius: 8px;
    box-shadow: 8px 8px #493D311A;
    .block-row {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-bottom: 24px;
      p {
        line-height: 100%;
        font-size: 16px;
        font-weight: 600;
        color: #493D31;
        display: flex;
        align-items: center;
      }
      > .col-right p {
        justify-content: center;
      }
      input {
        font-family: var(--font-roboto);
        font-size: 16px;
        font-weight: 500;
        color: #000;
        padding: 16px;
        border:1px solid #D9D9D9;
        border-radius: 4px;
        width: 100%;
      }
      input::placeholder {
        color: #D2D2D2;
      }
      input:focus-visible {
        border: 1px solid #D9D9D9;;
        outline: none;
      }
      .col-left {
        width: 200px;
        p {
          line-height: 100%;
        }
      }
      .col-right {
        width: 678px;
        position: relative;
        .two-col {
          display: flex;
          justify-content: space-between;
          align-items: center;
          .dropdown-container {
            width: 315px;
          }
          .text {
            p {
              width: 48px;
              font-size: 30px;
              font-weight: 300;
              color: #2A2A2A;
              text-align: center;
              margin-top: -5px;
            }
          }
        }
        .icon-search {
          color: #51AEDD;
          position: absolute;
          right: 16px;
          top: 50%;
          transform: translateY(-50%);
        }
      }
      button {
        width: 250px;
        font-size: 18px;
        font-weight: 600;
        margin: auto;
        border-radius: 50px;
        padding: 17.5px 10px;
        background: #493D31;
        color: #FFF;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
        border: none;
        line-height: 100%;
        &:hover {
          background-color: #493D31CC;
        }
        i {
          font-size: 17.58px;
          color: #FFF;
          margin-right: 8px;
        }
      }
    }
    .block-row:last-child {
      margin-bottom: 0;
    }
  }
}
.referral-service {
  color: #493D31;
  margin-top: 64px;
  .card-header {
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    &::after {
      content: "";
      position: absolute;
      width: 40px;
      border-bottom: 3px solid #51AEDD;
      bottom: -24px;
      left: 50%;
      transform: translateX(-50%);
    }
    small {
      font-size: 24px;
      letter-spacing: 0.03em;
      margin-bottom: 12px;
      display: block;
      span {
        font-size: 22px;
        letter-spacing: 0.03em;
      }
    }
    h2 {
      height: 85px;
      font-size: 32px;
      letter-spacing: 0.05em;
    }
  }
  .main-card {
    display: flex;
    gap: 24px;
    /* flex-wrap: wrap; */
    .card {
      width: 324.67px;
      background: #FFF;
      border-radius: 8px;
      padding: 32px 10px;
      box-shadow: 8px 8px #493D311A;
      .card-image {
        width: 120px;
        height: 120px;
        margin-bottom: 16px;
        margin: auto;
        img {
          width: 100%;
        }
      }
    }
    .card-content {
      margin-top: 16px;
      .card-title {
        text-align: center;
        small {
          font-size: 12px;
          color: #51AEDD;
          font-weight: 500;
          display: block;
          margin-bottom: 6px;
          span {
            font-size: 18px;
          }
        }
        h3 {
          font-size: 18px;
          font-weight: 600;
          line-height: 150%;
        }
      }
    }
  }
}
.card-header {
  text-align: center;
  margin-bottom: 32px;
  img {
    width: 32px;
    margin-bottom: 8px;
  }
  h2 {
    line-height: 100%;
    font-size: 24px;
    font-weight: 700;
    color: #493D31;
  }
}
.pick-up {
  margin-top: 90px;
  background: #51AEDD;
  border-radius: 100% 100% 0 0 / 16% 16% 0 0;
  .container {
    max-width: 100%;
  }
  .card-header {
    padding-bottom: 32px;
    margin-bottom: 0;
    text-align: center;
    padding-top: 86px;
    background: linear-gradient(transparent 50px, #51AEDD 50px),
    url(../img/pick-up/bg-header.svg) no-repeat top center / cover;
    h2 {
      font-size: 30px;
      font-weight: 700;
      color: #FFF;
    }
  }
  .main-block {
    padding-bottom: 72px;
    .main-card {
      position: relative;
      .carousel-container {
        width: 100%;
        overflow: hidden;
        .carousel-items {
          display: flex;
          transition: transform 0.5s ease;
          justify-content: center;
          gap: 16px;
          .item {
            margin-right: 8px;
          }
        }
        .carousel-icon {
          display: none;
          button.carousel-btn {
            width: 40px;
            height: 40px;
            background: #FB9800;
            color: #FFF;
            border-radius: 50%;
            cursor: pointer;
            border: none;
            transition: background-color 0.3s ease, color 0.3s ease;
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            z-index: 10;
            i {
              font-size: 22px;
            }
            &:hover {
              background-color: #FB9800B2;
            }
          }
          button.carousel-btn.prev {
            left: 16px;
          }
          button.carousel-btn.next {
            right: 16px;
          }
        }
        .carousel-dots {
          display: none;
          justify-content: center;
          margin-top: 32px;
          gap: 16px;
          .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #E9DFC7;
            cursor: pointer;
            transition: background-color 0.3s ease;
          }
          .carousel-dot.active {
            background-color: #FB9800;
          }
        }
      }
      .card {
            width: 322px;
            max-width: 100%;
            height: 398px;
            box-shadow: 8px 8px #493D3126;
            border-radius: 8px;
            position: relative;
        .card-image {
          img {
            width: 100%;
            border-radius: 8px 8px 0 0;
          }
        }
        .card-content {
          font-weight: 600;
          font-family: var(--font-roboto);
          color: #FFF;
          .absolute-content {
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            .block-list {
              padding: 16px 16px 0 16px;
              ul {
                display: flex;
                gap: 4px;
                li {
                  list-style: none;
                  text-align: center;
                  a {
                    font-size: 14px;
                    color: #FFF;
                    line-height: 26px;
                    padding: 4px 16px 3px;
                    text-decoration: none;
                    border-radius: 20px;
                    border: 1px solid #FFF
                  }
                }
              }
            }
            .description {
              padding: 80px 24px 24px 24px;
              background: linear-gradient(180deg, rgba(42, 42, 42, 0) 0%, #2A2A2A 44.71%);
              border-radius: 0 0 8px 8px;
              h3 {
                font-size: 18px;
                font-weight: 600;
                line-height: 26px;
              }
              p {
                font-size: 12px;
                line-height: 20px;
                margin-top: 16px;
                display: flex;
                align-items: center;
                img {
                  width: 18px;
                  margin-right: 4px;
                }
              }
            }
          }
        }
      }
    }
  }
}
.job-preferences {
  margin-top: 64px;
  .card-header {
    margin-bottom: 32px;
    h2 {
      font-size: 24px;
      font-weight: 700;
    }
  }
  .main-card {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    .card {
      position: relative;
      width: 243.5px;
      padding: 24px 16px 16px;
      background: #FFF;
      border-radius: 8px;
      box-shadow: 8px 8px #493D311A;
      .card-image {
        width: 211.5px;
        height: 145px;
      }
      .card-content {
        margin-top: 16px;
        font-size: 14px;
        font-family: var(--font-roboto);
        color: #493D31;
        .card-title {
          text-align: center;
          h3 {
            font-size: 18px;
            line-height: 26px;
            font-weight: 600;
            margin-bottom: 8px;
          }
          small {
            font-size: 14px;
            line-height: 26px;
            font-weight: 500;
          }
        }
        a {
          background: #FB9800;
          color: #FFF;
          font-weight: 600;
          padding: 8px 0;
          margin-top: 16px;
          display: block;
          text-decoration: none;
          border-radius: 50px;
          text-align: center;
          position: relative;
          transition: background-color 0.3s ease, color 0.3s ease;
          i {
            font-size: 14px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 15.5px;
          }
          &:hover {
            background-color: #FB9800B2;
          }
        }
      }
    }
    .card:before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      background: #51AEDD;
      height: 6px;
      border-radius: 8px 8px 0 0;
      width: 100%;
    }
  }
}
.job-new {
  margin-top: 128px;
  .contents {
    .main-card {
      position: relative;
      padding: 0 56px;
      .carousel-container {
        width: 100%;
        overflow: hidden;
        .carousel-items {
          max-width: 285px;
          display: flex;
          transition: transform 0.5s ease;
          gap: 16px;
          .item {
            font-family: var(--font-roboto);
            background: #fff;
            color: #493D31;
            padding: 16px;
            box-shadow: 8px 8px #493D311A;
            border-radius: 8px;
            text-decoration: none;
            position: relative;
            cursor: pointer;
            .card {
              .card-image {
                width: 255.33px;
                height: 145px;
                img {
                  width: 100%;
                  height: 100%;
                  object-fit: cover;
                  border-radius: 4px;
                }
              }
              .card-body {
                width: 255px;
                margin-top: 16px;
                h3 {
                  font-size: 16px;
                  font-weight: 600;
                  line-height: 24px;
                  margin-bottom: 8px;
                }
                p {
                  font-size: 14px;
                  line-height: 20px;
                  font-weight: 500;
                  img {
                    width: 14px;
                    margin-right: 4px;
                  }
                }
                p.currency,
                p.map {
                  width: 100%;
                  display: flex;
                }
                p.currency {
                  margin-bottom: 8px;
                  img {
                    width: 9px;
                    margin-left: 3px;
                  }
                }
              }
            }
            .badge-title {
              font-size: 14px;
              font-weight: 600;
              line-height: 26px;
              background: #51AEDD;
              color: #FFF;
              padding: 0 8px;
              border-radius: 8px 0 0 0;
              position: absolute;
              top: 0;
              left: 0;
            }
          }
        }
        .carousel-icon {
          button.carousel-btn {
            width: 40px;
            height: 40px;
            background: #FB9800;
            color: #FFF;
            border-radius: 50%;
            cursor: pointer;
            border: none;
            transition: background-color 0.3s ease, color 0.3s ease;
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            z-index: 10;
            i {
              font-size: 22px;
            }
            &:hover {
              background-color: #FB9800B2;
            }
          }
          button.carousel-btn.prev {
            left: 0;
          }
          button.carousel-btn.next {
            right: 0;
          }
        }
        .carousel-dots {
          display: flex;
          justify-content: center;
          margin-top: 32px;
          gap: 24px;
          .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #E9DFC7;
            cursor: pointer;
            transition: background-color 0.3s ease;
          }
          .carousel-dot.active {
            background-color: #FB9800;
          }
        }
      }
    }
  }
}
.job-search {
  margin-top: 132px;
  margin-bottom: 72px;
  .card-header {
    h2 {
      color: #FFF;
    }
  }
  .main-card {
    background: #51AEDD;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 8px 8px #493D311A;
    .group-card {
      font-size: 16px;
      font-family: var(--font-roboto);
      background: #FFF;
      color: #493D31;
      font-weight: 500;
      border-radius: 4px;
      padding: 40px;
      .card-content {
        p, a {
          line-height: 26px;
        }
      }
      .card:first-child {
        border-top: none;
      }
      .card {
        padding: 40px 0;
        border-top: 1px solid #D9D9D9;
        .card-title {
          h4 {
            font-size: 18px;
            font-weight: 600;
            display: flex;
            line-height: 24px;
            img {
              width: 20px;
              margin-right: 8px;
            }
          }
        }
        .card-content {
          margin-top: 16px;
          .row:last-child {
            margin-bottom: 0px;
          }
          .row {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
            .left {
              width: 150px;
              p.active {
                color: #51AEDD;
              }
            }
            .right {
              display: flex;
              gap: 10px 32px;
              flex-wrap: wrap;
              a, p {
                position: relative;
                &::after {
                  content: "";
                  width: 1px;
                  height: 12px;
                  background: #D9D9D9;
                  position: absolute;
                  right: -16px;
                  top: 50%;
                  transform: translateY(-50%);
                }
              }
              a:last-child {
                &::after {
                  display: none;
                }
              }
              a, p {
                color: #2A2A2A;
                text-decoration: none;
              }
              a:hover {
                color: #51AEDD;
              }
              a.active {
                color: #51AEDD;
              }
            }
          }
          .group-list {
            ul {
              display: flex;
              flex-wrap: wrap;
              gap: 8px;
              li {
                list-style: none;
                a {
                  border: 1px solid #51AEDD;
                  border-radius: 20px;
                  padding: 6px 48px 6px 24px;
                  color: #51AEDD;
                  line-height: 24px;
                  text-decoration: none;
                  display: flex;
                  background: url("../img/icon/icon-arrow-right.svg") no-repeat right 24px center / 16px;
                  transition: 0.2s;
                }
                a:hover {
                  background-image: url("../img/icon/icon-arrow-right-white.svg");
                  background-color: #51AEDD;
                  color: #FFF;
                }
                a.active {
                  background-image: url("../img/icon/icon-arrow-right-white.svg");
                  background-color: #51AEDD;
                  color: #FFF;
                }
              }
            }
          }
          .block-search {
            position: relative;
            input {
              font-size: 16px;
              font-weight: 500;
              color: #000;
              padding: 16px 24px;
              border:1px solid #D9D9D9;
              border-radius: 4px;
              width: 100%;
            }
            input::placeholder {
              color: #D2D2D2;
            }
            input:focus-visible {
              border: 1px solid #D9D9D9;
              outline: none;
            }
            img {
              width: 20px;
              position: absolute;
              right: 24px;
              top: 50%;
              transform: translateY(-50%);
            }
          }
          .action {
            text-align: center;
            margin-top: 15px;
            padding-top: 15px;
            button {
              width: 250px;
              font-size: 18px;
              font-weight: 600;
              margin: auto;
              border-radius: 50px;
              padding: 17.5px 20px;
              background: #493D31;
              color: #FFF;
              cursor: pointer;
              transition: background-color 0.3s ease, color 0.3s ease;
              display: flex;
              justify-content: center;
              align-items: center;
              border: none;
              img {
                width: 24px;
                margin-right: 8px;
              }
              &:hover {
                background-color: #493D31B2;
              }
            }
          }
        }
      }
      .card:first-child{
        padding-top: 0;
      }
      .card:last-child{
      padding-bottom: 0;
      }
    }
  }
}
.main-specific-skills {
  position: relative;
  background-color: #ffffff;
  border-radius:24px 24px 0 0;
  padding-bottom: 65px;
  .container {
    .specific-skills {
        .header {
          display: flex;
          justify-content: center;
          font-family: var(--font-zenmaru);
          font-weight: 700;
          font-size: 24px;
          letter-spacing: 0.6px;
          color: #493D31;
          padding-top: 72px;
          margin-bottom: 4px;
        }
        .title {
          display: flex;
          justify-content: center;
          font-family: var(--font-zenmaru);
          font-weight: 700;
          color: #493D31;
          position: relative;
          font-size: 32px;
          letter-spacing: 1.6px;
          &::after {
            content: "";
            position: absolute;
            width: 40px;
            border-bottom: 3px solid #51AEDD;
            bottom: -32px;
          }
        }
      .wrap-card {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 64px;
        .card-body {
          background-color: #fff;
          border-radius: 10px;
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          .skill {
            height: 200px;
            position: relative;
            .point {
              position: absolute;
              left: -1px;
              bottom: -1px;
              width: 72px;
              height: 72px;
              background-color: #fff;
              border-top-right-radius: 8px;
              display: flex;
              flex-direction: column;
              align-items: center;
              justify-content: center;
              span {
                font-family: var(--font-zenmaru);
                font-weight: 700;
                color: #51AEDD;
                font-size: 12px;
              }
              h2 {
                font-family: var(--font-zenmaru);
                font-weight: 700;
                color: #51AEDD;
                font-size: 38px;
                line-height: 100%;
              }
            }
            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
              border-radius: 8px;
            }
          }
          .content {
            margin-top: 24px;
            h2 {
              font-family: var(--font-roboto);
              font-size: 20px;
              margin-bottom: 16px;
              color: #51AEDD;
              text-align: left;
              line-height: 150%;
            }
            p {
              font-family: var(--font-roboto);
              text-align: left;
              font-size: 16px;
              font-weight: 500;
              color: #493D31;
              line-height: 24px;
            }
          }
        }
      }
    }
  }
}
.job-filter {
  background: linear-gradient(#ffffff 191px,transparent 191px);
  padding-bottom: 72px;
  .container {
    /* margin: 65px auto 0px; */
    .wrap-job-filter {
      display: flex;
      flex-direction: column;
      gap: 50px;
      .advisors-specialist {
        img {
          position: relative;
          width: 100%;
          border-radius: 8px;
          box-shadow: 8px 8px #493D311A;
        }
      }
      .wrap-card {
      background-color: #ffffff;
      padding: 40px;
      border-radius: 8px;
        .title {
          display: flex;
          align-items: center;
          flex-direction: row;
          gap: 8px;
          color: #51AEDD;
          font-family: var(--font-roboto);
          font-weight: 600;
          font-size: 18px;
          line-height: 26px;
        }
        .filters {
          display: flex;
          flex-direction: column;
          .row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            flex-direction: row;
            .filter {
              position: relative;
              font-family: var(--font-roboto);
              font-weight: 500;
              padding: 0px 15px;
              line-height: 26px;
              font-size: 16px;
              margin-top: 16px;
              color: #2a2a2a;
              cursor: pointer;
              &:first-child {
                padding-left: 0;
              }
              &.active {
                color: #51AEDD;
                border-radius: 4px;
              }
            }
            .filter:before{
              content: '';
              position: absolute;
              left: 0;
              top: 26.95%;
              display: inline-block;
              width: 1px;
              height: 12px;
              background-color: #D9D9D9;
            }
            .filter:first-child:before{
              display: none;
            }
            a.filter:hover{
              color: #51AEDD;
            }
            .last {
              border-right: none;
            }
          }
        }
      }
    }
  }
}
footer {
  background-color: #493D31;
  .contact-info {
    padding-top: 72px;
      .block-info {
        margin: 0px auto;
        width: 1022px;
        max-width: 100%;
        padding-bottom: 40px;
        display: flex;
        justify-content: left;
        flex-direction: column;
        img {
          width: 100%;
        }
        h2 {
          margin-top: 40px;
          font-family: var(--font-roboto);
          font-weight: 600;
          font-size: 26px;
          line-height: 34px;
          margin-bottom: 16px;
          color: #ffffff;
        }
        p {
          background-color: #ffffff;
          padding: 24px 32px;
          font-family: var(--font-roboto);
          font-weight: 500;
          font-size: 16px;
          line-height: 26px;
          color: #2a2a2a;
          border-radius: 8px;
        }
        img.sp {
          display: none;
        }
      }
    }
  .wrap-foooter {
    margin: 0px auto;
    width: 1022px;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 80px;
    .footer-column {
      display: flex;
      flex-direction: column;
      gap: 24px;
      a {
        display: block;
        font-family: var(--font-roboto);
        font-weight: 500;
        font-size: 16px;
        line-height: 26px;
        color: #ffffff;
        text-decoration: none;
        cursor: pointer;
      }
    }
  }
  .copyright {
    margin-top: 72px;
    p {
      display: flex;
      justify-content: center;
      padding: 16px;
      font-family: var(--font-roboto);
      font-weight: 500;
      font-size: 16px;
      line-height: 26px;
      color: #ffffff;
      background: #2A2A2A;
    }
  }
}
.wrap-title {
  .main-title {
    h1 {
      font-family: var(--font-zenmaru);
      font-weight: 700;
      font-size: 32px;
      letter-spacing: 1.6px;
      text-align: center;
      padding-top: 72px;
      color: #493D31;
      position: relative;
      &::after {
        text-align: center;
        content: "";
        display: block;
        width: 40px;
        height: 3px;
        background-color: #51AEDD;
        margin: 24px auto 0;
        border-radius: 2px;
      }
    }
  }
  .sub-title {
    p {
      font-weight: var(--font-roboto);
      font-weight: 500;
      color: #493D31;
      text-align: center;
      padding-top: 32px;
    }
  }
}
/* filter-search */
#top-page {
  .filter-search {
    margin-top: -115px;
  }
}
#page-search-results, #job-openings {
  .filter-search {
    .container {
      form {
        .group {
          border: 1px solid #E7E5E1;
          .block-row {
            button {
              border: none;
            }
          }
        }
      }
    }
  }
  .search-result {
    padding: 50px 0;
    margin-bottom: 50px;
    background-color: #FFFCF5;
    position: relative;
    z-index: 0;
    &.minus-margin {
      margin-top: -75px;
      .empty {
        margin-top: 85px;
      }
    }
    .container {
      .search-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 32px;
        margin-top: 140px;
        .result-info {
          font-weight: 600;
          font-family: var(--font-roboto);
          color: #493D31;
          .count {
            font-size: 24px;
          }
          .result-title,
          .range  {
            font-size: 16px;
            line-height: 100%;
          }
          .result-title {
            margin-bottom: 8px;
          }
          .label {
            font-size: 18px;
            margin: 0 8px;
          }
          .range {
            font-weight: 400;
          }
        }
        .filter-dropdown {
          position: relative;
          padding: 16px;
          border-radius: 4px;
          border: 1px solid #ECEBEA;
          background-color: #ffffff;
          width: 230px;
          max-width: 100%;
          color: #2a2a2a;
          &::after {
            content: "";
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 15px;
            background: url('data:image/svg+xml;utf8,<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.33317 5.94442L6.99984 10.6111L11.6665 5.94442" stroke="%232A2A2A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
            background-size: contain;
            pointer-events: none;
          }
          .filter-select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border: none;
            background-color: transparent;
            padding-right: 20px;
            cursor: pointer;
            outline: none;
            width: 100%;
            font-weight: 500;
            font-family: var(--font-roboto);
            font-size: 16px;
            color: #2a2a2a;
          }
        }
      }
      .job-card {
        position: relative;
        background-color: var(--card-bg);
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        padding: 40px;
        margin-bottom: 30px;
        background-color: #ffffff;
        box-shadow: 8px 8px #493D311A;
        .card-content {
          display: flex;
          gap: 20px;
          .job-details {
            flex-grow: 1;
            .head {
              display: flex;
              justify-content: space-between;
              align-items: center;
              .contract-type {
                display: inline-block;
                background-color: #51AEDD;
                padding:0 8px;
                font-family: var(--font-roboto);
                font-size: 14px;
                font-weight: 600;
                line-height: 180%;
                color: #fff;
              }
              .fav-btn {
                display: none;
              }
            }
            h3 {
              &.job-title {
                font-family: var(--font-roboto);
                font-weight: 600;
                font-size: 18px;
                line-height: 26px;
                color: #493D31;
                padding: 16px 0px;
              }
            }
            .company-name {
              font-family: var(--font-roboto);
              font-weight: 500;
              font-size: 16px;
              line-height: 24px;
              margin: 0px;
              border-bottom: 1px solid #D9D9D9;
              padding-bottom: 16px;
              color: #493D31;
            }
            .tag-list {
              margin: 16px 0;
              .job-tag {
                color: #51AEDD;
                padding: 4px 16px;
                border-radius: 20px;
                font-family: var(--font-roboto);
                font-size: 14px;
                border: 1px solid #51AEDD;

              }
            }
            .job-description {
              font-family: var(--font-roboto);
              font-weight: 600;
              font-size: 16px;
              line-height: 24px;
              color: #493D31;
              padding-bottom: 8px;
            }
            .info-row {
              display: flex;
              align-items: center;
              gap: 4px;
              margin-bottom: 4px;
              .luxury-hotels,
              .address,
              .salary {
                font-family: var(--font-roboto);
                font-weight: 500;
                font-size: 14px;
                color: #493D31;
              }
              .luxury-hotels {
                line-height: 20px;
              }
              .address,
              .salary {
                line-height: 22px;
              }
            }
          }
          .wrap-visual{
            position: relative;
            .visual-profile {
              width: 300px;
              max-width: 100%;
              height: 200px;
              background-color: #D9D9D9;
              border-radius: 4px;

              img {
                width: 100%;
                height: 100%;
                object-fit: cover;
              }
            }
            .like-btn {
              position: absolute;
              top: 8px;
              right: 8px;
              width: 50px;
              height: 50px;
              border-radius: 50%;
              background-color: #fff;
              border: none;
              cursor: pointer;
              display: flex;
              justify-content: center;
              align-items: center;
              svg {
                width: 30px;
                height: 30px;
                transition: opacity 0.25s ease, transform 0.25s ease;
              }
              .heart-inactive {
                display: block;
              }
              &.active {
                .heart-inactive {
                  display: none;
                }
              }
              &:active svg {
                transform: scale(0.9);
              }
            }
            .job-card {
              &:first-child {
                .like-btn {
                  .heart-inactive {
                    display: none;
                  }
                }
              }
              &:not(:first-child) {
                .like-btn {
                  .heart-inactive {
                    display: block;
                  }
                }
              }
            }
          }
        }
        .content {
          margin-top: 20px;
          p {
            font-family: var(--font-roboto);
            font-weight: 500;
            font-size: 14px;
            line-height: 20px;
            color: #493D31;
          }
          img, .info-row {
            display: none;
          }
        }
        .card-actions {
          display: flex;
          gap: 16px;
          margin-top: 24px;
        }
        .apply-btn,
        .details-btn {
          flex: 1;
          border: none;
          padding: 16px 25px;
          border-radius: 50px;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
          padding-right: 45px;
          white-space: nowrap;
          font-family: var(--font-roboto);
          font-size: 18px;
          font-weight: 600;
          line-height: 120%;
          text-decoration: none;
          transition: background-color 0.3s ease, color 0.3s ease;
        }
        .apply-btn {
          background-color: #51AEDD;
          color: white;
          transition: background-color 0.3s ease, color 0.3s ease;
          &:hover {
            background-color: #51AEDDB2;
          }
        }
        .details-btn {
          background-color: #FB9800;
          color: white;
          &:hover {
            background-color: #FB9800B2;
          }
        }
        .apply-btn::after,
        .details-btn::after {
          content: "";
          position: absolute;
          top: 50%;
          right: 16px;
          transform: translateY(-50%);
          width: 20px;
          height: 20px;
          background-image: url('../img/icon/icon-arrow-right-white2.svg');
          background-repeat: no-repeat;
          background-size: contain;
        }
      }
      .pagination {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        font-family: sans-serif;
        font-weight: 500;
        z-index: 2;
        .paginate {
          border: none;
          background: none;
          cursor: pointer;
          border-radius: 40px;
          font-family: var(--font-zenmaru);
          font-weight: 900;
          font-size: 20px;
          line-height: 24px;
          transition: background 0.2s, color 0.2s;
          width: 40px;
          height: 40px;
          color: #493D31;
          letter-spacing: 0;
          width: 26px;
          height: 26px;
          &:hover {
            background-color: #f0f0f0;
          }
          &.active {
            background-color: #FFA500;
            color: white;
          }
        }
        .dots {
          display: flex;
          align-items: center;
          font-size: 20px;
          color: #493D31;
          padding: 3px 0;
          margin: 0 -8px;
        }
        button.prev,
        button.next {
          border: none;
          background: none;
          height: 14px;
          cursor: pointer;
          margin: 6px 0;
        }
      }
      .pagination.sp {
        display: none;
      }
    }
  }
  .job-filter {
    background-color: #FCF2D8;
    .container {
        margin: 0px auto;
    }
  }
}
#page-search-results {
  .wrap-title {
    .main-title {
      h1 {
        line-height: 100%;
      }
    }
    .sub-title{
      p {
        font-family: var(--font-roboto);
        font-size: 18px;
        line-height: 140%;
        padding-bottom: 32px;
        text-align: left;
      }
    }
  }
}

#job-openings {
  .search-result {
    margin-top: 0;
    &::before {
      top: 0;
    }
    &::after {
      height: 0px;
    }
    .container {
      .job-card:last-child{
        margin-bottom: 0;
      }
      .title {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 72px;
        h2 {
          font-family: var(--font-zenmaru);
          font-weight: 700;
          font-size: 24px;
          color: #493D31;
          margin-top: 8px;
        }
      }
      .search-header {
        margin-top: 72px;
        .result-info {
          .count{
            font-size: 16px;
          }
          .label {
            font-size: 24px;
          }
          .range {
            font-size: 18px;
            font-weight: 600;
          }
        }
      }
    }
  }
  .page-banner {
    height: auto;
    padding-bottom: 32px;
  }
  .hotel-intro {
    .container {
      .wrap-card {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 40px;
        .content {
          flex: 1;
          max-width: 482px;
          width: 100%;
          h3 {
            font-family: var(--font-roboto);
            font-weight: 600;
            font-size: 18px;
            line-height: 26px;
            color: #51AEDD;
          }
          p {
            font-family: var(--font-roboto);
            font-size: 16px;
            font-weight: 500;
            line-height: 26px;
            color: #493D31;
            margin-top: 16px;
          }
        }
        .visual {
          width: 500px;
          max-width: 100%;
          img {
            width: 100%;
          }
        }
      }
    }
  }
  .pick-up {
    background: linear-gradient(transparent 132px, #FCF2D8 132px);
    margin-top: 48px;
    padding: 0px 15px 56px;
    .container {
      background-color: #51AEDD;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 8px 8px #493D311A;
      .wrap-title {
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-bottom: 32px;
        h2 {
          font-family: var(--font-roboto);
          font-weight: 600;
          font-size: 24px;
          color: #fff;
          margin: 8px 0;
        }
        p {
          font-family: var(--font-roboto);
          font-weight: 600;
          font-size: 16px;
          color: #fff;
        }
      }
      .wrap-card {
        display: flex;
        flex-direction: column;
        gap: 16px;
        .card {
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: flex-start;
          gap: 40px;
          padding: 40px;
          background-color: #fff;
          border-radius: 4px;
          .visual {
            width: 100%;
            max-width: 300px;
            .wrap-visual {
              position: relative;
              display: inline-block;
              img {
                width: 100%;
                display: block;
              }
              .ribbon {
                display: flex;
                flex-direction: column;
                align-items: center;
                position: absolute;
                bottom: 0px;
                left: 0px;
                padding: 13px 22px 14px 23px;
                background-color: #fff;
                color: #51AEDD;
                font-family: var(--font-zenmaru);
                font-weight: 700;
                border-top-right-radius: 8px;
                .label {
                  font-size: 12px;
                }
                .number {
                  font-size: 38px;
                  line-height: 30px;
                }
              }
            }
          }
          .content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;

            h3 {
              font-family: var(--font-roboto);
              font-weight: 600;
              font-size: 16px;
              line-height: 140%;
              color: #51AEDD;
            }

            p {
              font-family: var(--font-roboto);
              font-weight: 500;
              font-size: 14px;
              line-height: 22.4px;
              color: #493D31;
            }
          }
        }
      }

    }
  }
  .more-information {
    padding:0 0 72px 0;
    background: #FCF2D8;
    .container {
      .wrap-card {
        padding: 40px 80px;
        background-color: #fff;
        box-shadow: 8px 8px #493D311A;
        border-radius: 8px;
        position: relative;
        &::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0px;
          right: 0px;
          height: 6px;
          background-color: #51AEDD;
          border-top-left-radius: 8px;
          border-top-right-radius: 8px;
        }
        h2 {
          margin-bottom: 32px;
          font-family: var(--font-roboto);
          font-weight: 600;
          font-size: 24px;
          color: #493D31;
        }
        .card-body {
          display: flex;
          flex-direction: column;
          .company, .location, .homepage {
            display: flex;
            flex-direction: row;
            align-items: center;
            span {
              min-width: 165px;
              display: flex;
              align-items: center;
              flex-direction: row;
              gap: 8px;
              font-family: var(--font-roboto);
              font-weight: 500;
              font-size: 16px;
              color: #493D31;
              line-height: 26px;
            }
            p {
              font-family: var(--font-roboto);
              font-weight: 400;
              font-size: 16px;
              line-height: 26px;
              color: #2a2a2a;
            }
          }
          .company, .location{
            border-bottom: 1px solid #D9D9D9;
            padding-bottom: 16px;
          }
          .location, .homepage {
            padding-top: 16px;
          }
          .homepage a {
            display: flex;
            color: #2A2A2A;
            gap: 8px;
          }
        }
      }
    }
  }
}
/* end search-results */

#job-information {
  background: #FFF;
  .block-manufacturing {
    padding-top: 72px;
    background: #FFFFFF;
    font-family: var(--font-roboto);
    padding-bottom: 32px;
    .main-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #D9D9D9;
      padding-bottom: 24px;
      .block-left {
        font-size: 14px;
        font-weight: 500;
        color: #493D31;
        p {
          font-size: 16px;
          line-height: 140%;
          span {
            display: inline-block;
          }
          span.bg {
            font-weight: 600;
            font-size: 14px;
            background: #51AEDD;
            color: #FFF;
            line-height: 180%;
            padding: 0px 8px;
            text-align: center;
            margin-right: 16px;
          }
          span.h-border {
            padding: 4px 16px;
            border-radius: 20px;
            border:1px solid #51AEDD;
            color: #51AEDD;
            font-size: 14px;
          }
        }
        h1 {
          font-weight: 600;
          font-size: 24px;
          margin: 16px 0;
          line-height: 120%;
        }
      }
      .block-right {
        button {
          background-color: #fff;
          color: #493D31;
          padding: 19px 25px;
          font-weight: 600;
          font-size: 18px;
          line-height: 120%;
          border-radius: 50px;
          border: 1px solid #D9D9D9;
          display: flex;
          align-items: center;
          cursor: pointer;
          transition: all 0.25s ease;
          svg {
            width: 22px;
            height: 22px;
            margin-right: 8px;
            transition: opacity 0.25s ease;
          }
          .heart-inactive {
            display: block;
          }
          &.active {
            border: 1px solid #51AEDD;
            .heart-inactive {
              display: none;
            }
          }
        }
      }
    }
    .block-list {
      box-shadow: 8px 8px #493D311A;
      padding: 30px 24px 24px 24px;
      border: 1px solid #E7E5E1;
      border-top: none;
      border-radius: 8px 8px 4px 4px;
      margin-top: 32px;
      position: relative;
      &:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background-color: #51AEDD;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom: 1px solid #E7E5E1;
      }
      .group-list {
        display: flex;
        font-size: 14px;
        gap: 8px;
        p {
          margin-bottom: 8px;
          span {
            color: #2A2A2A;
            font-weight: 500;
            line-height: 22px;
            display: inline-block;
          }
          span.style-b {
            width: 70px;
            font-weight: 600;
            color: #493D31;
            margin-right: 24px;
            img {
              width: 16px;
              margin-right: 8px;
              margin-bottom: -3px;
            }
            img.currency {
              height: 13px;
              margin-bottom: -1px;
            }
          }
        }
        .list-left {
          flex: 1;
        }
        .list-right {
          flex: 1;
        }
      }
      ul {
        display: flex;
        gap: 12px;
        padding-top: 2px;
        li {
          list-style: none;
          color: #FB9800;
          font-weight: 400;
          font-size: 14px;
          line-height: 140%;
        }
      }
    }
    .card-content {
      margin-top: 32px;
      .card {
        display: flex;
        gap: 40px;
        .card-image {
          width: 400px;
          max-width: 100%;
          img {
            width: 100%;
            border-radius: 4px;
          }
        }
        .card-body {
          flex: 1;
          h2 {
            font-weight: 600;
            font-size: 16px;
            line-height: 140%;
            color: #51AEDD;
          }
          .description {
            p {
              font-weight: 500;
              font-size: 14px;
              line-height: 140%;
              color: #2A2A2A;
              margin-top: 16px;
            }
          }
        }
      }
    }
  }
  .card-header {
    font-family: var(--font-roboto);
    color: #FFFFFF;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    img {
      width: 32px;
      margin-bottom: 8px;
    }
    h2 {
      font-size: 24px;
      font-weight: 600;
      color: #FFFFFF;
      line-height: 100%;
      margin-bottom: 8px;
    }
    small {
      font-size: 16px;
      display: block;
    }
  }
  .block-pick-up {
    background: linear-gradient(transparent 132px, #FCF2D8 132px);
    .main-card {
      padding: 40px;
      border-radius: 8px;
      background: #51AEDD;
      box-shadow: 8px 8px #493D311A;
      .card {
        background: #FFF;
        padding: 40px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        gap: 40px;
        margin-bottom: 16px;
        .card-image {
          width: 300px;
          max-width: 100%;
          position: relative;
          img {
            width: 100%;
            border-radius: 4px;
          }
          .sub-badge {
            width: 72px;
            height: 72px;
            background: #FFF;
            font-weight: 700;
            color: #51AEDD;
            border-radius: 0px 8px 0 0;
            position: absolute;
            left: 0;
            bottom: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            p {
              font-size: 12px;
              line-height: 100%;
            }
            p.number {
              font-size: 38px;
            }
          }
        }
        .card-body {
          flex: 1;
          font-family: var(--font-roboto);
          h3 {
            font-weight: 600;
            font-size: 16px;
            line-height: 140%;
            color: #51AEDD;
            margin-bottom: 16px;
          }
          p {
            font-weight: 500;
            font-size: 14px;
            line-height: 160%;
            color: #493D31;
          }
        }
      }
      .card:last-child {
        margin-bottom: 0;
      }
    }
    .blok-recruiter {
      padding: 40px;
      background: #FFF;
      box-shadow: 8px 8px #493D311A;
      border-radius: 8px;
      font-family: var(--font-roboto);
      margin-top: 32px;
      h2 {
        color: #51AEDD;
        font-weight: 700;
        font-size: 22px;
        line-height: 140%;
        margin-bottom: 16px;
        text-align: center;
      }
      .card {
        display: flex;
        gap: 32px;
        align-items: center;
        .card-image {
          width: 110px;
        }
        .card-body {
          flex: 1;
          p {
            color: #493D31;
            font-weight: 500;
            font-size: 14px;
            line-height: 160%;
          }
        }
      }
    }
  }
  .block-recruiting {
    margin-top: 32px;
    font-family: var(--font-roboto);
    font-weight: 600;
    text-align: center;
    padding-bottom: 72px;
    h3 {
      color: #51AEDD;
      font-size: 16px;
      line-height: 150%;
      margin-bottom: 4px;
      font-weight: 600;
    }
    .apply-job {
      a {
        width: 500px;
        max-width: 100%;
        display: inline-block;
        font-size: 18px;
        line-height: 120%;
        padding: 16px 24px;
        border-radius: 50px;
        color: #FFF;
        background: #51AEDD;
        text-decoration: none;
        position: relative;
        text-align: center;
        transition: background-color 0.3s ease, color 0.3s ease;
        &:after {
          content: "";
          position: absolute;
          top: 50%;
          right: 24px;
          transform: translateY(-50%);
          width: 20px;
          height: 20px;
          background-image: url('../img/icon/icon-arrow-right-white2.svg');
          background-repeat: no-repeat;
          background-size: contain;
        }
        &:hover {
          background-color: #51AEDDB2;
        }
      }
    }
    p {
      color: #2A2A2A;
      font-weight: 500;
      font-size: 14px;
      line-height: 22px;
      margin-top: 32px;
    }
  }
  .block-requirements {
    background: #FFFCF5;
    padding-top: 72px;
    .card-header {
      font-family: var(--font-zenmaru);
      h2 {
        color: #493D31;
        font-weight: 700;
        margin-bottom: 0;
      }
    }
    .main-card {
      padding: 40px;
      background: #FFF;
      border-radius: 8px;
      box-shadow: 8px 8px #493D311A;
      .card-row {
        font-family: var(--font-roboto);
        display: flex;
        gap: 16px;
        border-bottom: 1px solid #D9D9D9;
        margin-bottom: 40px;
        padding-bottom: 40px;
        .card-col.left {
          width: 150px;
          p {
            font-weight: 600;
            font-size: 16px;
            line-height: 26px;
            color: #493D31;
          }
        }
        .card-col.right {
          flex: 1;
          p {
            font-weight: 500;
            font-size: 14px;
            line-height: 160%;
            color: #2A2A2A;
            margin-bottom: 16px;
          }
          .fixed-career-bar {
            display: none;
          }
          p:last-child {
            margin-bottom: 0;
          }
          img {
            width: 100%;
            margin-top: -8px;
          }
        }
      }
      .card-row:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
      }
    }
    .block-recruiting {
      .group-apply {
        display: flex;
        gap: 24px;
        align-items: flex-end;
        justify-content: center;
        .keep {
          button {
            width: 169px;
            height: 60px;
            border-radius: 50px;
            background: #FFF;
            border: 1px solid #D9D9D9;
            color: #493D31;
            text-decoration: none;
            font-family: var(--font-roboto);
            font-weight: 600;
            font-size: 18px;
            line-height: 120%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.25s ease;
            svg {
              width: 22px;
              height: 22px;
              transition: opacity 0.25s ease;
            }
            .heart-inactive {
              display: block;
            }
            &.active {
              border: 1px solid #51AEDD;
              .heart-inactive {
                display: none;
              }
            }
          }
        }
      }
    }
  }
  .block-happens {
    background: #FCF2D8;
    padding: 72px 0;
    .main-block-happens {
      background: #FFF;
      padding: 48px 84px;
      border-radius: 8px;
      box-shadow: 8px 8px #493D311A;
      .card-header {
        h2 {
          font-family: var(--font-zenmaru);
          font-weight: 700;
          color: #493D31;
          margin-bottom: 0;
        }
      }
      .card-group {
        display: flex;
        gap: 62px;
        .card {
          text-align: center;
          position: relative;
          .card-image {
            width: 120px;
            img {
              width: 100%;
            }
          }
          .card-body {
            margin-top: 8px;
            h3 {
              font-family: var(--font-roboto);
              font-weight: 600;
              font-size: 18px;
              line-height: 26px;
              color: #493D31;
            }
          }
          &::after {
            content: "";
            width: 30px;
            height: 30px;
            background: url(../img/icon/icon-arrow-right-black.svg) no-repeat center center;
            position: absolute;
            right: -46px;
            top: 50%;
            transform: translateY(-50%);
          }
        }
        .card:last-child {
          &::after {
            display: none;
          }
        }
      }
    }
  }
  .block-hotel {
    padding: 72px 0;
    background: #FCF2D8;
    color: #FFF;
    font-family: var(--font-roboto);
    font-weight: 600;
    line-height: 26px;
    .card {
      position: relative;
      border-radius: 8px;
      box-shadow: 8px 8px #493D311A;
      background: linear-gradient(180deg, rgba(42, 42, 42, 0) 0%, #2A2A2A 44.71%);
      .card-image {
        width: 100%;
        img {
          width: 100%;
        }
        img.sp {
          display: none;
        }
      }
      .card-body {
        width: 100%;
        padding: 80px 40px 24px 40px;
        position: absolute;
        bottom: 0;
        text-align: center;
        background: linear-gradient(180deg, rgba(42, 42, 42, 0) 0%, #2A2A2A 44.71%);
        border-radius: 0 0 8px 8px;
        .content {
          padding-bottom: 24px;
          margin-bottom: 24px;
          border-bottom: 1px solid #FFF;
          text-align: left;
          h2 {
            font-size: 26px;
            font-weight: 600;
            margin-bottom: 24px;
          }
          h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
          }
          p {
            font-size: 14px;
            line-height: 20px;
            font-weight: 500;
          }
        }
        a {
          font-weight: 600;
          font-size: 18px;
          line-height: 20px;
          color: #FFF;
          text-decoration: none;
          position: relative;
          padding-right: 36px;
          &::after {
            content: "";
            width: 20px;
            height: 20px;
            background: url(../img/icon/icon-arrow-right-white2.svg) no-repeat center center;
            position: absolute;
            right: 0px;
            top: 50%;
            transform: translateY(-50%);
          }
        }
      }
    }
  }
  .block-facility-information {
    padding: 72px 0;
    background: #FCF2D8;
    .main-card {
      .card-row {
        .card-col.right {
          p {
            a {
              color: #2A2A2A;
              text-decoration: underline;
              img {
                width: 16px;
                margin-left: 6px;
                margin-bottom: -3px;
              }
            }
          }
        }
      }
    }
    .group-btn-link {
      display: flex;
      gap: 16px;
      margin-top: 32px;
      a {
        background: #51AEDD;
        flex: 1;
        padding: 16px 24px;
        border-radius: 50px;
        font-family: var(--font-roboto);
        font-weight: 600;
        font-size: 18px;
        line-height: 120%;
        color: #FFFFFF;
        position: relative;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s linear;
        &::after {
          content: "";
          width: 20px;
          height: 20px;
          background: url(../img/icon/icon-arrow-right-white2.svg) no-repeat center center;
          position: absolute;
          right: 24px;
          top: 50%;
          transform: translateY(-50%);
        }
        &:hover {
          opacity: 0.8;
        }
      }
      a:last-child {
        background: #FB9800;
      }
    }
  }
  .block-faq {
    padding: 72px 0;
    .card-header {
      h2 {
        font-family: var(--font-zenmaru);
        font-weight: 700;
        color: #493D31;
        margin-bottom: 0;
      }
    }
    .answers-questions {
      font-family: var(--font-roboto);
      border-radius: 8px;
      padding: 32px;
      margin-bottom: 16px;
      box-shadow: 8px 8px #493D311A;
      border: 1px solid #ECEBEA;
      .block-title {
        display: flex;
        column-gap: 16px;
        align-items: center;
        p.a,
        p.q {
          min-width: 40px;
          height: 40px;
          font-family: var(--font-poppins);
          background: #FB9800;
          border-radius: 50%;
          font-weight: 500;
          font-size: 20px;
          line-height: 26px;
          color: #FFF;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        h4 {
          color: #493D31;
          font-weight: 600;
          font-size: 18px;
          line-height: 26px;
        }
      }
      .questions {
        .block-title {
          position: relative;
          &::after {
            width: 30px;
            height: 30px;
            font-size: 20px;
            content: "";
            background: url(../img/icon/icon-plus.svg) no-repeat center center;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            transition: all 0.3s ease;
          }
          &.active::after {
            background: url(../img/icon/icon-minus.svg) no-repeat center center;
          }
        }
      }
      .answers {
        display: none;
        .block-title {
          p.a {
            background: #51AEDD;
          }
          p.description {
            font-weight: 500;
            font-size: 18px;
            line-height: 26px;
            color: #493D31;
          }
        }
      }
    }
    .answers-questions:last-child {
      margin-bottom: 0px;
      .questions {
        border-bottom: none;
      }
    }
  }
  .block-slide {
    background: #FFFCF5;
    margin: 0;
    padding: 72px 0;
    .card-header {
      margin-bottom: 24px;
      h2 {
        font-weight: 700;
        font-family: var(--font-zenmaru);
        color: #493D31;
        line-height: 100%;
        margin-bottom: 0;
      }
    }
    .job-new {
      padding: 40px 0;
      margin-top: 0;
      margin-bottom: 32px;
      .contents {
        .main-card {
          .carousel-container {
            .carousel-items {
              .item {
                .card {
                  .card-body {
                    p.currency, p.map {
                      align-items: center;
                      justify-content: flex-start;
                      gap: 4px;
                    }
                    img {
                      width: 14px;
                      margin: 0;
                    }
                    p.currency {
                      img {
                        width: 14px;
                        transform: scale(0.6);
                      }
                    }
                  }
                }
              }
            }
            .carousel-dots {
              margin-top: 24px;
            }
          }
        }
      }
    }
    .job-new:last-child {
      margin: 0;
    }
  }
}
#apply-job {
  .apply-job {
    background: linear-gradient(transparent 88px, #FCF2D8 88px);
    padding-bottom: 72px;
    .container {
      .job-advisor {
        margin-top: 30px;
        .application-form {
          display: flex;
          flex-direction: column;
          .form-group {
            background-color: #ffffff;
            border-radius: 8px;
            font-family: Arial, sans-serif;
            padding: 48px 80px;
            box-shadow: 8px 8px #493D311A;
            border: 1px solid #E7E5E1;
            margin-bottom: 32px;
            &:nth-last-child(2) {
              margin-bottom: 40px;
            }
            .form-question {
              color: #51AEDD;
              font-family: var(--font-zenmaru);
              font-weight: 700;
              font-size: 18px;
              line-height: 120%;
              letter-spacing: 0;
              margin-bottom: 24px;
              .number {
                margin-right: 4px;
              }
              .icon-writing {
                margin-left: 8px;
                width: 14px;
                height: 14px;
              }
            }
            .wrap-country, .wrap-visa,
            .wrap-skills, .wrap-duration,
            .wrap-location {
              display: grid;
              grid-template-columns: repeat(2, 1fr);
              gap: 16px;
              label {
                display: block;
                position: relative;
                cursor: pointer;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                input[type="radio"] {
                  position: absolute;
                  opacity: 0;
                  cursor: pointer;
                }
                span {
                  display: block;
                  padding: 16px 0px;
                  text-align: center;
                  border: 1px solid #D9D9D9;
                  border-radius: 94px;
                  color: #2a2a2a;
                  font-size: 16px;
                  font-family: var(--font-roboto);
                  font-weight: 500;
                  transition: all 0.3s ease;
                  background-color: #ffffff;
                }
                &:hover span {
                  background-color: #ffffff;
                }
                input[type="radio"]:checked + span {
                  background-color: #51AEDD;
                  color: #ffffff;
                  font-weight: 600;
                  border-color: #51AEDD;
                  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
                }
                &:first-child input[type="radio"]:checked + span {
                  background-color: #51AEDD;
                  border-color: #51AEDD;
                  color: #ffffff;
                  font-weight: 600;
                }
              }
            }
            .contact-inputs {
              display: flex;
              flex-direction: column;
              gap: 24px;
              .group-field {
                display: flex;
                flex-direction: column;
                gap: 8px;
                margin-bottom: 0;
                label {
                  font-family: var(--font-roboto);
                  font-weight: 400;
                  font-size: 16px;
                  line-height: 120%;
                  color: #2a2a2a;
                  .english-sub {
                    margin-left: 8px;
                  }
                }
                input {
                  padding: 16px;
                  border: 1px solid #D9D9D9;
                  border-radius: 4px;
                  font-size: 16px;
                  color: #2a2a2a;
                  &::placeholder {
                    color: #D2D2D2;
                    font-family: var(--font-roboto);
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 120%;
                    opacity: 1;
                    align-items: center;
                    padding: 0;
                  }
                  &:focus {
                    outline: none;
                  }
                }
              }
            }
            .error-txt {
              margin-top: 10px;
              color: #f00;
              display: block;
            }
            .group-field {
              display: flex;
              flex-direction: column;
              gap: 8px;
              margin-bottom: 24px;
              label {
                font-family: var(--font-roboto);
                font-weight: 400;
                font-size: 16px;
                line-height: 19.2px;
                .english-sub {
                  margin-left: 8px;
                }
              }
              input, textarea {
                font-family: var(--font-roboto);
                font-weight: 400;
                font-size: 16px;
                line-height: 19.2px;
                padding: 16px;
                border: 1px solid #D9D9D9;
                border-radius: 4px;
                color: #2a2a2a;
                &:focus {
                  outline: none;
                }
                &::placeholder {
                  font-family: var(--font-roboto);
                  font-weight: 500;
                  font-size: 16px;
                  line-height: 19.2px;
                  padding: 16px;
                  color: #D2D2D2;
                  opacity: 1;
                  padding: 0;
                }
              }
              .select-wrapper {
                position: relative;
                display: block;
                flex: 1;
                select {
                  width: 100%;
                  padding: 16px;
                  border: 1px solid #D9D9D9;
                  border-radius: 4px;
                  background-color: #ffffff;
                  appearance: none;
                  -webkit-appearance: none;
                  cursor: pointer;
                  font-family: var(--font-roboto);
                  font-weight: 400;
                  font-size: 16px;
                  line-height: 19.2px;
                  color: #2a2a2a;
                  &:focus {
                    outline: none;
                  }
                }
                &::after {
                  content: '';
                  position: absolute;
                  top: 50%;
                  right: 15px;
                  transform: translateY(-50%) rotate(45deg);
                  pointer-events: none;
                  width: 8px;
                  height: 8px;
                  border: solid #2a2a2a;
                  border-width: 0 2px 2px 0;
                  transition: transform 0.3s ease;
                }
                &.open::after {
                  transform: translateY(-50%) rotate(-135deg);
                }
              }
            }
            .group-field.date-of-birth {
              margin-bottom: 0;
            }
          }
          .final-group {
              display: flex;
              flex-direction: column;
              align-items: center;
              gap: 16px;
              .privacy-checkbox {
                display: flex;
                align-items: center;
                font-size: 1rem;
                color: #333;
                justify-content: center;
                input[type="checkbox"] {
                  display: none;
                }
                label {
                  position: relative;
                  cursor: pointer;
                  padding-left: 25px;
                  &::before {
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 20px;
                    height: 20px;
                    border: 1px solid #ccc;
                    background-color: #fff;
                    border-radius: 4px;
                  }
                }
                  input[type="checkbox"]:checked + label::before {
                    background-color: #51AEDD;
                    border-color: #51AEDD;
                  }
                  input[type="checkbox"]:checked + label::after {
                    content: '';
                    position: absolute;
                    left: 7px;
                    top: 15px;
                    transform: translateY(-50%) rotate(45deg);
                    width: 5px;
                    height: 10px;
                    border: solid white;
                    border-width: 0 2px 2px 0;
                  }
                  .privacy-link {
                    font-family: var(--font-roboto);
                    font-weight: 600;
                    font-size: 18px;
                    line-height: 180%;
                    text-decoration: underline;
                    color: #51AEDD;
                    margin-left: 8px;
                  }
                  span {
                    font-family: var(--font-roboto);
                    font-weight: 500;
                    font-size: 18px;
                    line-height: 180%;
                    color: #493D31;
                  }
              }
            }
          .submit-button {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: #51AEDD;
            border: none;
            border-radius: 94px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            max-width: 500px;
            width: 100%;
            font-family: var(--font-roboto);
            font-weight: 600;
            font-size: 18px;
            line-height: 120%;
            color: #ffffff;
            padding: 16px 0px;
            &:hover {
              background-color: #51AEDDB2;
            }
            &:after {
              content: "";
              position: absolute;
              top: 35%;
              right: 24px;
              width: 20px;
              height: 20px;
              background-image: url('../img/icon/icon-arrow-right-white2.svg');
              background-repeat: no-repeat;
              background-size: contain;
            }
          }
          .cancel-button {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: #cccccc;
            border: none;
            border-radius: 94px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            max-width: 500px;
            width: 100%;
            font-family: var(--font-roboto);
            font-weight: 600;
            font-size: 18px;
            line-height: 120%;
            color: #ffffff;
            padding: 16px 0px;
            &:after {
              content: "";
              position: absolute;
              top: 35%;
              left: 24px;
              transform: rotate(180deg);
              width: 20px;
              height: 20px;
              background-image: url('../img/icon/icon-arrow-right-white2.svg');
              background-repeat: no-repeat;
              background-size: contain;
            }
          }
        }
      }
    }
  }
}
#job-advisor {
  .application {
    position: relative;
    &::after {
      content: "";
      position: absolute;
      top: 88px;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #FCF2D8;
      z-index: -3;
    }
    .container{
      .wrap-card {
        display: flex;
        flex-direction: column;
        gap: 32px;
        .card {
          img {
            width: 100%;
          }
          img.banner {
            max-width: 1022px;
            border-radius: 8px;
            box-shadow: 8px 8px #493D311A;
          }
        }
        .card.customer-service {
          display: flex;
          flex-direction: row;
          gap: 48px;
          .profile {
            display: flex;
            align-items: flex-end;
            img {
              width: 140px;
              height: 140px;
              max-width: 100%;
            }
          }
          .content {
            position: relative;
            padding: 32px 28px 32px 40px;
            display: flex;
            flex-direction: column;
            flex: 1;
            gap: 8px;
            box-shadow: 8px 8px #493D311A;
            border-radius: 8px;
            background-color: #ffffff;
            img.polygon {
              position: absolute;
              bottom: 51px;
              left: -30px;
              width: 35px;
              height: 35px;
              z-index: -2;
              filter: drop-shadow(8px 8px #493D311A);
            }
            h2 {
              font-family: var(--font-roboto);
              font-weight: 700;
              font-size: 24px;
              line-height: 140%;
              color: #51AEDD;
              letter-spacing: 0;
            }
            ul {
              li {
                font-family: var(--font-roboto);
                font-weight: 500;
                font-size: 16px;
                line-height: 160%;
                color: #2a2a2a;
                margin-left: 25px;
                &::marker {
                  font-size: 14px;
                  color: #2a2a2a
                }
              }
            }
          }
        }
        .card.residence {
          .residence-form {
            display: flex;
            flex-direction: column;
            gap: 32px;
            h3 {
              .number {
                margin-right: 4px;
              }
             .icon-writing {
                margin-left: 8px;
                width: 14px;
                height: 14px;
              }
            }
            .form-group {
              background-color: #ffffff;
              border-radius: 8px;
              font-family: Arial, sans-serif;
              padding: 48px 80px;
              box-shadow: 8px 8px #493D311A;
              .form-question {
                color: #51AEDD;
                font-family: var(--font-zenmaru);
                font-weight: 700;
                font-size: 18px;
                line-height: 21.6px;
                margin-bottom: 24px;
              }
              .wrap-residence {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
                 label {
                  display: block;
                  position: relative;
                  cursor: pointer;
                  -webkit-user-select: none;
                  -moz-user-select: none;
                  -ms-user-select: none;
                  user-select: none;
                  input[type="radio"] {
                    position: absolute;
                    opacity: 0;
                    cursor: pointer;
                  }
                  span {
                    display: block;
                    padding: 16px 0px;
                    text-align: center;
                    border: 1px solid #D9D9D9;
                    border-radius: 94px;
                    color: #2a2a2a;
                    font-size: 16px;
                    font-family: var(--font-roboto);
                    font-weight: 500;
                    transition: all 0.3s ease;
                    background-color: #ffffff;
                  }
                  &:hover span {
                    background-color: #ffffff;
                  }
                  input[type="radio"]:checked + span {
                    background-color: #51AEDD;
                    color: #ffffff;
                    font-weight: 600;
                    border-color: #51AEDD;
                    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
                  }
                  &:first-child input[type="radio"]:checked + span {
                    background-color: #51AEDD;
                    border-color: #51AEDD;
                    color: #ffffff;
                    font-weight: 600;
                  }
                }
              }
              .next-button {
                margin: 24px auto 0px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                padding: 16px 0px;
                font-size: 18px;
                font-weight: 600;
                font-family: var(--font-roboto);
                color: #ffffff;
                background-color: #493D31;
                border: none;
                border-radius: 50px;
                cursor: pointer;
                transition: background-color 0.3s ease;
                min-width: 200px;
                width: 250px;
                position: relative;
                &::after {
                  content: "";
                  position: absolute;
                  top: 50%;
                  right: 16px;
                  transform: translateY(-50%);
                  width: 20px;
                  height: 20px;
                  background-image: url('../img/icon/icon-arrow-right-white2.svg');
                  background-repeat: no-repeat;
                  background-size: contain;
                }
              }
              .next-button:hover {
                background-color: #493D31B2;
              }
            }
          }
        }
      }
    }
  }
}
.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  padding: 10px;
  background: #FFFFFFB2;
  box-sizing: border-box;
  z-index: 1000;
  .btn-consultation, .btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Hiragino Sans';
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    border-radius: 30px;
    margin: 0 5px;
    white-space: nowrap;
  }
  .btn-consultation {
    flex-grow: 1;
    background-color: #FB9801;
    padding: 18px 42px 14px 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    span {
      transform: translateX(50px);
      position: relative;
    }
    .icon-placeholder {
      transform: translateX(-35px);
      position: absolute;
      overflow: hidden;
      left: 17%;
      bottom: -0.5px;
      img {
        width: 35%;
        display: block;
      }
    }
  }
  .btn-search {
    width: 150px;
    background-color: #493D31;
    color: #ffffff;
    .icon-magnifier {
      width: 15px;
      height: 15px;
      border: 3px solid #ffffff;
      border-radius: 50%;
      margin-right: 10px;
      margin-top: -6px;
      position: relative;
      &::after {
        content: '';
        position: absolute;
        top: 11px;
        left: 8px;
        width: 8px;
        height: 3px;
        background: #ffffff;
        transform: rotate(45deg);
      }
    }
  }
}
.fixed-bottom-apply-job {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 70px;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFFB2;
  padding: 0 10px;
  .keep-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 59px;
    height: 59px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    background-color: #ffffff;
    cursor: pointer;
    margin-right: 10px;
    box-sizing: border-box;
    user-select: none;
    padding-top: 2px;
    .heart-icon {
      width: 25px;
      height: 25px;
    }
    .keep-text {
      font-family: 'Hiragino Sans';
      font-size: 10px;
      font-weight: 600;
      color: #493D30;
      margin-top: 2px;
    }
  }
  .application-container {
    position: relative;
    flex-grow: 1;
    height: 100%;
    display: flex;
    align-items: center;
    .apply-button {
      width: 100%;
      height: 70%;
      border: none;
      border-radius: 35px;
      background-color: #46a2d9;
      color: #ffffff;
      font-family: 'Hiragino Sans';
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      padding: 0 20px;
      user-select: none;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      .apply-text {
        z-index: 1;
      }
      .arrow-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 22px;
        font-weight: 300;
        pointer-events: none;
      }
    }
    .promotion-bubble {
      position: absolute;
      top: -8px;
      right: 30%;
      transform: translateX(-30%);
      background-color: #ffffff;
      color: #ff9900;
      font-size: 12px;
      font-weight: bold;
      padding: 3px 10px;
      border-radius: 5px;
      border: 1px solid #ff9900;
      z-index: 10;
      &::before {
        content: '';
        position: absolute;
        bottom: -9px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-top: 9px solid #ff9900;
        z-index: 9;
      }
      &::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #ffffff;
        z-index: 10;
      }
    }
  }
}
