body {
  margin: 0;
  font-family: 'Arial', 'Meiryo', sans-serif;
  background: #FFF;
  color: #fff;
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeIn 1.5s forwards 1.5s;
  z-index: 1;
  max-width: 100%;
  height: 100%;
}

.hero-text {
  text-align: center;
  padding: 1rem;
  color: #fff;
  background: rgba(0, 0, 50, 0.8);
  font-weight: bold;
  line-height: 1.4;
  animation: slideFadeIn 1.5s forwards;
　animation-fill-mode: forwards;
  opacity: 0;
  transform: translateY(50px);
  font-size: clamp(1rem, 4vw, 2.5rem);
  z-index: 2;
  position: relative;
　white-space: nowrap;
}

.hero-text .highlight {
  color: #ffff00;
  font-size: 1.2em;
  text-shadow: 0 0 10px #ff0;
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideFadeIn {
  to { transform: translateY(0); opacity: 1; }
}


.gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 10px;
  background: #111;
  flex-wrap: nowrap;       /* 折り返さない */
}

.photo {
  flex: 1 1 0;
  max-width: calc((100% - 20px) / 3);
  min-width: inherit;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.photo.visible {
  opacity: 1;
}

@media screen and (max-width: 480px) {
  .photo {
    flex: 1 1 100%;
  }
}

.carousel {
  overflow: hidden;
  background: #000;
  padding: 20px 0;
}
.carousel-track {
  display: flex;
  width: max-content;
  gap: 10px;
}
.carousel-track img {
  height: 150px;
  width: auto;
  flex-shrink: 0;
  border: 2px solid #fff;
  border-radius: 8px;
}
.access {
  background: #222;
  padding: 40px 20px;
  text-align: center;
}
iframe, img.map {
  max-width: 100%;
  height: 300px;
  border: none;
}

.btn-store {
  display: inline-block;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 1rem 2rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
}

.footer-section {
  text-align: center;
  padding: 40px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.copyright {
	color: rgba( 0, 0, 50, 1);
}


@media screen and (min-width: 769px) {
  .gallery .container {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .gallery .container {
    max-width: 100%;
  }
}
