@charset "utf-8";

.p-about {
  margin-top: -55px;
  background: #fff;
  border-radius: 40px 40px 0 0;
  overflow: hidden;

  .l-inner {
    max-width: 1216px;
  }
}

.p-about__nav {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 30px 0 20px;
  border-bottom: 1px solid hsla(160, 3%, 19%, 0.2);

  @media (width < 768px) {
    flex-direction: column;
    align-items: start;
    padding: 30px 0 0px;
  }
}

.p-about__nav-link {
  display: inline-flex;
  padding-block: 10px;
  padding-right: 20px;
  align-items: center;
  gap: 6px;

  @media (width < 768px) {
    width: 100%;
    padding-left: 20px;
  }

  p {
    color: #3c3c3c;
    font-size: 14px;
    font-weight: 500;
    line-height: calc(20 / 14);
    letter-spacing: 0.08em;

    @media (width < 1120px) {
      font-size: 13px;
    }
  }
}

.p-about__nav-link:hover {
  opacity: 0.7;
}

.p-about__nav-link:not(:first-of-type) {
  border-left: 1px solid hsla(160, 3%, 19%, 0.2);
  padding-left: 20px;

  @media (width < 768px) {
    border-left: none;
    border-top: 1px solid hsla(160, 3%, 19%, 0.2);
  }
}

.p-about__nav-link::after {
  content: "";
  width: 18px;
  height: 18px;
  background: url("https://mountfield.co.jp/system_panel/uploads/images/arrow-down-green.svg") no-repeat center center / contain;
}

.p-about__flex {
  padding: 110px 0 145px;
  margin: 0 auto;
  max-width: 1030px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  @media (width < 768px) {
    padding: 80px 0 100px;
    flex-direction: column;
    gap: 40px;
  }
}

.p-about__heading-en {
  color: var(--color-l-green);
  font-family: var(--font-roboto);
  font-size: 66px;
  line-height: 1.3;
}

.p-about__heading-ja {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
}

.p-about__text {
  margin-top: 40px;
  max-width: 468px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;

  @media (width < 768px) {
    max-width: none;
  }
}

.p-about__img {
  width: 44%;
  margin-right: 30px;
  aspect-ratio: 45/34;
  border-radius: 10px;
  position: relative;

  @media (width < 768px) {
    width: 100%;
    margin-right: 0;
  }

  img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
  }
}

.p-about__img::before {
  content: "";
  position: absolute;
  bottom: -14%;
  right: -18%;
  width: 70%;
  aspect-ratio: 323/252;
  background: url("https://mountfield.co.jp/system_panel/uploads/images/top-value-bg.png") no-repeat center center / contain;
}

.gjs-dashed *[data-highlightable] {
  .p-about__img {
    z-index: 1;
  }

  .p-about__img::before {
    z-index: -1;
  }
}

.p-service-company {
  background: #fdf3e3;
  padding: 94px 0 186px;
  border-radius: 40px 40px 0 0;

  @media (width < 768px) {
    padding: 80px 0 150px;
  }

  .l-inner {
    max-width: 1188px;
  }
}

.p-service-company__heading {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-l-green);

  .c-sub-heading__ja span {
    display: inline-block;
  }
}

.p-service-company__cards {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(vw / 13.66);
  gap: clamp(12px, calc(34vw / 13.66), 34px);

  @media (width < 768px) {
    grid-template-columns: repeat(1, 1fr);
    margin: 70ox auto 0;
  }
}

.p-service-company-card {
  border-radius: 0 0 10px 0;
  border-bottom: 1px solid #9ad9cb;
  border-right: 1px solid #9ad9cb;
  padding: 0 34px 16px 0;

  @media (width < 768px) {
    max-width: 400px;
    margin: auto;
    width: 100%;
  }
}

.p-service-company-card__title {
  font-size: 18px;
  color: var(--color-green);
  font-weight: 500;
  line-height: normal;
}

.p-service-company-card__flex {
  margin-top: 22px;
  display: flex;
  align-items: start;
  gap: 8px;
}

.p-service-company-card__icon {
  width: 31%;
  max-width: 95px;
  aspect-ratio: 95/86;
  object-fit: contain;
}

.p-service-company-card__body {
  margin-top: 22px;
  flex: 1 1 auto;
  display: flex;
  justify-content: end;
  align-items: baseline;
  gap: 4px;
}

.p-service-company-card__num {
  font-family: var(--font-roboto);
  font-size: clamp(56px, calc(86vw / 13.66), 86px);
  line-height: normal;
  color: var(--color-l-green);
}

.p-service-company-card__unit {
  color: var(--color-green);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.p-service-company-card__lists {
  width: 50%;
  min-width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: clamp(0px, calc(52vw / 13.66), 52px);
}

.p-service-company-card__list {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-green);
}

.p-service {
  margin-top: -50px;
  padding: 98px 0 150px;
  border-radius: 40px 40px 0 0;

  @media (width < 768px) {
    padding: 60px 0 120px;
  }

  .l-inner {
    max-width: 1190px;
  }
}

.p-service.is-job-search,
.p-service.is-business {
  background: #fffbf3;
}

.p-service.is-startup {
  background: #fdf3e3;
}

.p-service__heading {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-l-green);
  margin-bottom: 85px;
}

.p-service__flex {
  margin: 0 auto;
  max-width: 1045px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  @media (width < 768px) {
    flex-direction: column-reverse;
    gap: 40px;
    align-items: start;
  }
}

.p-service__img {
  width: 46%;
  max-width: 480px;
  aspect-ratio: 48/40;
  border-radius: 10px;
  object-fit: cover;

  @media (width < 768px) {
    margin: auto;
    width: 100%;
  }
}

.p-service__body {
  max-width: 486px;

  @media (width < 768px) {
    max-width: none;
  }
}

.p-service__sub-heading {
}

.p-service__text {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-size: 14px;
  line-height: calc(32 / 14);
}

.p-service-feature {
  margin-top: 70px;
  background: #fff;
  border-radius: 10px;
  padding: 50px 52px;

  @media (width < 1120px) {
    padding: 40px 20px;
  }
}

.p-service-feature__heading {
  color: var(--color-green);
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px solid var(--color-l-green);
  padding-bottom: 15px;
}

.p-service-feature__lists {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;

  @media (width < 768px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-service-feature-list {
}

.p-service-feature-list__img {
  width: 100%;
  max-width: 318px;
  margin: auto;
  aspect-ratio: 318/270;
  border-radius: 10px;
  object-fit: cover;
}

.p-service-feature-list__head {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color-green);
  font-weight: 500;
}

.p-service-feature-list__num {
}

.p-service-feature-list__title {
}

.p-service-feature-list__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: calc(32 / 14);
}
