h2.title-ja {
  color: #fff;
}

.hero {
  background-image: url(../images/top/bg_hero.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(110%);
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  .hero-wrapper {
    h2 {
      font-size: 80px;
      color: white;
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
      font-weight: 800;
      letter-spacing: 8px;
    }
  }

  .catch {
    font-weight: 800;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  }
}

@media screen and (max-width: 768px) {
  .hero {
    max-height: 600px;
    .hero-wrapper {
      padding: 0 24px;

      h2 {
        font-size: 40px;
      }
    }

    .catch {
      font-size: 36px;
    }
  }
}

.service {
  color: #fff;
  background-image: url(../images/lp/bg_hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 700px;

  .service-wrapper {
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 700px;
  }

  .section-content {
    margin-top: 40px;
    text-align: center;
    font-size: 24px;

    .btn-link {
      display: inline-block;
      margin-top: 40px;
      font-size: 18px;
      border: 1px solid #fff;
      padding: 8px 20px;
    }

    .btn-swipe {
      transition: ease-out 0.25s;
    }

    .btn-swipe:hover {
      box-shadow: inset 200px 0 0 0 #fff;
      color: #000;
    }
  }
}

@media screen and (max-width: 768px) {
  .service {
    min-height: 500px;
    .service-wrapper {
      padding: 60px 24px;
      height: 500px;
    }

    .section-content {
      margin-top: 32px;
      flex-direction: column;
      row-gap: 24px;
      font-size: 20px;

      img {
        width: 100%;
      }
    }
  }
}

.company {
  background-color: #164ca0;
  color: #fff;
  .company-wrapper {
    padding: 80px 24px;
  }

  .section-content {
    max-width: 760px;
    margin: 0 auto;
    margin-top: 60px;
    display: flex;
    gap: 32px;

    .company-image {
      img {
        width: 560px;
      }
    }

    .company-info {
      width: 100%;

      table {
        width: 100%;
      }

      th {
        padding: 24px;
        max-width: 5rem;
        border-bottom: 1px solid #abc1d6;
      }

      tr:nth-child(1) th {
        border-top: 1px solid #abc1d6;
      }

      td {
        padding: 24px;
        border-bottom: 1px solid #d9d9d9;
      }

      tr:nth-child(1) td {
        border-top: 1px solid #d9d9d9;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .company {
    .company-wrapper {
      padding: 60px 24px;
    }

    .section-content {
      max-width: 960px;
      margin: 0 auto;
      margin-top: 32px;
      flex-direction: column;
      gap: 32px;

      .company-image {
        img {
          width: 100%;
        }
      }

      .company-info {
        width: 100%;
        font-size: 14px;
        th,
        td {
          padding: 24px 12px;
        }
      }
    }
  }
}

.access {
  background-color: #abc1d6;
  color: #fff;
  .access-wrapper {
    padding: 80px 24px;
  }

  .section-content {
    max-width: 960px;
    margin: 0 auto;
    margin-top: 60px;

    iframe {
      width: 100%;
    }
    p {
      margin-top: 12px;
    }

    a {
      color: #164ca0;
      text-decoration: underline;
    }
  }
}

@media screen and (max-width: 768px) {
  .access {
    .access-wrapper {
      padding: 60px 24px;
    }

    .section-content {
      margin-top: 32px;
      max-width: 100%;

      iframe {
        width: 100%;
      }

      p {
        margin-top: 12px;
      }

      a {
        color: #164ca0;
        text-decoration: underline;
      }
    }
  }
}
