body {
  background-color: var(--color-white);
}

.intro-section {
  max-width: 1360px;
}

.intro-section-title-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 5rem;

  @media (width <= 767px) {
    gap: 0.5rem;
    margin-top: 3.75rem;
  }

  .page-title {
    margin-bottom: 7.5rem;

    @media (width <= 767px) {
      margin-bottom: 3.75rem;
    }
  }
}

.intro-section-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
}

.industry-section {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 7.5rem;

  @media (width <= 1440px) {
    max-width: none;
    margin-left: 8.3%;
  }

  @media (width <= 767px) {
    margin-bottom: 3.75rem;
    margin-left: 0;
  }
}

.section-title {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);

  @media (width <= 767px) {
    margin-left: 4.25%;
  }
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;

  @media (width <= 767px) {
    gap: 1.5rem;
  }
}

.industry-item {
  position: relative;
  display: grid;
  grid-template: 'body image' / 1fr 1.2fr;
  gap: 7.5%;

  @media (width <= 767px) {
    grid-template: 'image' 'body' / 1fr;
    gap: 1.5rem;
  }

  .industry-item-image-container {
    grid-area: image;
    overflow: hidden;

    img {
      transition: transform 0.6s ease;

      :is(.industry-item:hover) & {
        transform: scale(1.03);
      }
    }
  }

  .industry-item-body {
    display: flex;
    flex-direction: column;
    grid-area: body;
    gap: 1.5rem;

    @media (width <= 767px) {
      width: 91.5%;
      margin: auto;
    }
  }

  .link-button {
    &::after {
      position: absolute;
      inset: 0;
      content: '';
    }

    @media (width <= 767px) {
      align-self: flex-end;
    }
  }

  .industry-item-title {
    font-size: clamp(1.875rem, 1.554rem + 1.61vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);

    :is(html[lang='ja'], html[lang='jp']) :is(&:not(.en-label)) {
      font-size: clamp(1.75rem, 1.536rem + 1.07vw, 2.5rem);
    }
  }

  .industry-item-subtitle {
    font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
    line-height: 1;
    color: var(--color-gray);
  }
}
