.about-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;

  .content-wrap {
    display: flex;
    height: 100%;
    padding-bottom: 80px;
    align-items: end;
    @media (min-width: 809px) {
      padding-bottom: 120px;
    }
  }

  .text-group {
    position: relative;
    z-index: 1;
    color: #fff;
    @media (min-width: 650px) {
      max-width: 85%;
    }

    h1 {
      font-size: 32px;
      font-weight: 600;
      line-height: 1.3;
      margin: 24px 0 0;
      @media (min-width: 809px) {
        display: block;
        font-size: 52px;
      }
      @media (min-width: 1440px) {
        font-size: 64px;
      }
    }

    p {
      display: none;
      @media (min-width: 809px) {
        display: block;
        font-size: 20px;
        margin: 16px 0 0 0;
        line-height: 1.3;
        font-weight: 400;
      }
      @media (min-width: 1440px) {
        font-size: 24px;
        margin-left: 0;
      }
    }
  }

  .media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 85% 50%;
    }

    .mask {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 40%;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 95.16%);
    }
  }
}

.about-us {
  color: #fff;
  background: #020202;

  .content-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
    @media (min-width: 1440px) {
      padding-top: 160px;
      padding-bottom: 160px;
    }
  }

  h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 24px;
    @media (min-width: 690px) {
      font-weight: 500;
      font-size: 36px;
    }
    @media (min-width: 1440px) {
      margin-bottom: 40px;
      font-size: 40px;
    }
  }

  ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    @media (min-width: 690px) {
      font-size: 24px;
    }

    li + li {
      margin-top: 16px;
    }
  }
}

.mission {
  .content-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
    @media (min-width: 1440px) {
      padding-top: 160px;
      padding-bottom: 160px;
    }
  }

  h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 24px;
    @media (min-width: 690px) {
      font-weight: 500;
      font-size: 36px;
    }
    @media (min-width: 1440px) {
      margin-bottom: 40px;
      font-size: 40px;
    }
  }

  p.text {
    font-size: 20px;
    margin: 24px 0 64px;
    color: var(--text-secondary);
    max-width: 980px;
    @media (min-width: 690px) {
      font-size: 24px;
    }
  }

  .photo {
    margin: 24px 0 64px;
    img {
      max-width: 100%;
      display: block;
    }
  }

  ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    @media (min-width: 1280px) {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 32px;
    }
    [lang="ja"] & {
      @media (min-width: 1280px) {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
      }
    }

    li {
      width: 300px;
      flex: 0 0 auto;
      border-radius: 24px;
      background: #F9F9FB;
      padding: 24px;
      font-size: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      aspect-ratio: 1;
      line-height: 1.3;
      text-align: center;
      @media (min-width: 1280px) {
        width: auto;
      }
      [lang="ja"] & {
        @media (min-width: 1280px) {
          aspect-ratio: 1.5;
        }
      }

      strong {
        font-size: 64px;
        color: var(--text-primary);

        img {
          max-width: 100%;
        }
      }

      span {
        display: flex;
        align-items: center;
        min-height: 2.6em;
        text-wrap: balance;

        &.secondary {
          font-size: 16px;
        }
      }
    }
  }

  .controls {
    @media (min-width: 1280px) {
      display: none;
    }
  }
}

.investor {
  .content-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
    @media (min-width: 1440px) {
      padding-top: 160px;
      padding-bottom: 160px;
    }
  }

  h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 24px;
    @media (min-width: 690px) {
      font-weight: 500;
      font-size: 36px;
    }
    @media (min-width: 1440px) {
      margin-bottom: 40px;
      font-size: 40px;
    }
  }

  ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    @media (min-width: 670px) {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    @media (min-width: 850px) {
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    @media (min-width: 1380px) {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 32px;
    }

    li {
      display: flex;
      justify-content: center;
      align-items: center;
      aspect-ratio: 305 / 130;
      overflow: hidden;

      img {
        width: 100%;
      }
    }
  }
}

.about-grid {
  .content-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
    @media (min-width: 1440px) {
      padding-top: 160px;
      padding-bottom: 160px;
    }
  }

  h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 24px;
    @media (min-width: 690px) {
      font-weight: 500;
      font-size: 36px;
    }
    @media (min-width: 1440px) {
      margin-bottom: 40px;
      font-size: 48px;
    }
  }

  p {
    font-size: 20px;
    margin: 24px 0 64px;
    color: var(--text-secondary);
    @media (min-width: 690px) {
      font-size: 24px;
    }
  }

  .wrap {
    @media (min-width: 690px) {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    & > div + div {
      margin: 64px 0 0;
      @media (min-width: 690px) {
        margin-top: 0;
      }
    }

    img {
      max-width: 100%;
      display: block;
    }

    h3 {
      font-size: 20px;
      font-weight: 500;
      line-height: 1.3;
      margin: 24px 0 16px;
      .location & {
        font-size: 24px;
      }
      @media (min-width: 809px) {
        font-size: 28px;
      }
      @media (min-width: 1440px) {
        font-size: 32px;
      }
    }

    p {
      margin: 16px 0 0;
      font-size: 16px;
      .business & {
        min-height: 103px;
      }
    }

    a.outline {
      margin: 16px 0 0;
    }
  }
}
