.page-mv {
  position: relative;
  .mv-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  .page-title {
    position: absolute;
    top: 55%;
    left: 50%;
    translate: -50% -50%;
    width: max-content;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 0.75);
  }
  @media (max-width: 960px) {
    .mv-img {
      height: 300px;
    }
    .page-title {
      font-size: 1.75rem;
    }
  }
}

/*=========================
  company
=========================*/
section.company {
  padding: var(--section-padding);
  background: url(../img/index/company-bg.png) no-repeat;
  background-position: 0% 100%;
  background-size: 80%;
  background-color: var(--light-orange);
  .section-title {
    text-align: center;
    text-wrap: balance;
    margin-bottom: 3rem;
    .jp {
      font-size: 3rem;
      font-weight: 700;
    }
    .en {
      color: var(--orange);
      font-size: 2rem;
    }
  }
  .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    .flex-left {
      width: 50%;
    }
    .flex-right {
      width: 50%;
    }
  }
  .table {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10%;
    font-size: 1.15rem;
    .row {
      display: grid;
      grid-template-columns: subgrid;
      grid-column: 1/-1;
      border-bottom: 1px solid var(--text-color);
      padding-bottom: 0.5rem;
      margin-bottom: 0.5rem;
      .th {
        font-weight: 800;
      }
      .td {
        font-weight: 600;
      }
    }
  }
}
@media (max-width: 960px) {
  section.company {
    .section-title {
      margin-bottom: 3rem;
      .jp {
        font-size: 2rem;
      }
      .en {
        font-size: 1.25rem;
      }
    }
    .flex {
      flex-direction: column-reverse;
      gap: 2rem;
      margin-bottom: 3rem;
      .flex-left {
        width: 100%;
      }
      .flex-right {
        width: 100%;
      }
    }
    .table {
      display: grid;
      grid-template-columns: 1fr;
      font-size: 1rem;
      margin-bottom: 2rem;
      .row {
        grid-template-columns: 1fr;
        .th {
        }
        .td {
        }
      }
    }
    .company-img {
      width: 100%;
      max-width: 500px;
      margin-inline: auto;
    }
  }
}
