.hero {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 90%;

  color: white;
  text-align: center;
  z-index: 2;
}

.hero-text h1 {
  font-size: 48px;
  margin: 0 0 20px;
}

.hero-text p {
  font-size: 22px;
  margin: 0;
}

.top-message {
  text-align: center;
  padding: 50px 20px;

  font-size: 22px;
  font-weight: bold;
  line-height: 1.8;

  opacity: 0;
  transform: translateY(80px);

  transition: all 1s ease;
}

.top-message.show {
  opacity: 1;
  transform: translateY(0);
}

.top-content {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;

  padding: 40px 80px 80px;
}

.top-image,
.top-buttons {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease;
}

.top-image.show,
.top-buttons.show {
  opacity: 1;
  transform: translateY(0);
}

.top-image img {
  width: 420px;
  height: 300px;
  object-fit: cover;
  object-position: center 80%;
}

.top-buttons {
  display: grid;
  grid-template-columns: repeat(2, 280px);
  gap: 30px;
}

.menu-card {
  display: flex;
  align-items: center;

  height: 110px;
  padding: 0 20px;

  background-color: #60ac4f;
  color: white;

  text-decoration: none;

  transition: all 0.3s ease;
}

.menu-card:hover {
  background-color: #4b8d3d;
  transform: translateY(-3px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 20px;
}

.menu-icon img {
  width: 40px;
  height: 40px;

  filter: brightness(0) invert(1);
}

.menu-text {
  flex: 1;

  display: flex;
  flex-direction: column;
}

.jp {
  font-size: 21px;
  font-weight: bold;
}

.en {
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 6px;
}

.arrow {
  font-size: 28px;
  font-weight: bold;
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .hero {
    height: 600px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .top-content {
    flex-direction: column;
    gap: 40px;

    padding: 40px 40px 80px;
  }

  .top-image img {
    width: 100%;
    max-width: 600px;
    height: 320px;
  }

  .top-buttons {
    grid-template-columns: repeat(2, 280px);
  }
}

/* スマホ */
@media screen and (max-width: 768px) {
  .hero {
    height: 500px;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.4;
  }

  .hero-text p {
    font-size: 16px;
  }

  .top-message {
    padding: 40px 20px;
    font-size: 18px;
  }

  .top-content {
    padding: 30px 20px 70px;
  }

  .top-image {
    width: 100%;
  }

  .top-image img {
    width: 100%;
    height: 240px;
  }

  .top-buttons {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-card {
    height: 95px;
    padding: 0 18px;
  }

  .menu-icon {
    width: 34px;
    height: 34px;
    margin-right: 16px;
  }

  .menu-icon img {
    width: 34px;
    height: 34px;
  }

  .jp {
    font-size: 19px;
  }

  .en {
    font-size: 11px;
  }

  .arrow {
    font-size: 24px;
  }
}

/* 小さいスマホ */
@media screen and (max-width: 480px) {
  .hero {
    height: 430px;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .top-message {
    font-size: 16px;
  }

  .top-image img {
    height: 210px;
  }
}