.about-us-image-container {
  width: 100%;
  background-color: #B5B5B5;
  object-fit: cover;
  aspect-ratio: 1360 / 510;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

  @media screen and (max-width: 768px) {
    aspect-ratio: 1 / 1;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100vw;
    transform: translateX(-12px);
    margin-bottom: 36px;
  }

  .about-us-sub-text {
    font-family: var(--mymoods-font-poppins), sans-serif;
    font-weight: var(--mymoods-font-weight-black);
    font-size: 28px;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
  }

  .about-us-image-text {
    font-family: var(--mymoods-font-poppins), sans-serif;
    font-weight: var(--mymoods-font-weight-black);
    font-size: 120px;
    color: white;
    line-height: 1;
    text-align: center;

    @media (max-width: 768px) {
      font-size: 64px;
      text-align: center;
    }
  }
}

.about-us-content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;

  .about-us-content {
    width: 100%;
    padding: 80px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 6px #0000000A;

    @media screen and (max-width: 768px) {
      padding: 40px 20px;
    }

    &.first {
      border-top-left-radius: 0;
      border-top-right-radius: 0;
    }

    .about-us-content-inner {
      max-width: 960px;
      margin: 0 auto;

      .about-us-content__title {
        font-family: var(--mymoods-font-poppins), sans-serif;
        font-size: 28px;
        font-weight: bold;
        color: #222222;
        margin-top: -120px;
        padding-top: 120px;

        @media screen and (max-width: 768px) {
          font-size: 18px;
        }
      }

      .about-us-content__subtitle {
        font-size: 18px;
        margin-bottom: 28px;
        color: #222222;

        @media screen and (max-width: 768px) {
          font-size: 12px;
        }
      }

      .about-us-content__content {
        p {
          font-size: 16px;
          line-height: 2;
          padding-block-start: 0;
          padding-block-end: 1em;
          margin-block-start: 0;
          margin-block-end: 0;

          &:empty {
            display: block;
          }

          @media screen and (max-width: 768px) {
            font-size: 12px;
          }
        }

        table.kaisha {
          width: 100% !important;
          border-spacing: 0 14px;

          th {
            width: 20%;
            text-align: left;
            min-width: 100px;
          }

          td {
            @media screen and (max-width: 768px) {
              font-size: 12px;
            }
          }
        }
      }
    }
  }
}