/* Section-bg */
section:nth-last-child(even) {
  background-color: var(--color-bg);
}

/* Parallax */
.section-bg-parallax {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 100px 0;
}

.section-bg-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
}

.section-bg-parallax>.container {
  position: relative;
  z-index: 1;
}

.welcome.section-bg-parallax,
.information.section-bg-parallax {
  background-image: url("../images/sakurazima-city.jpg");
}

/* Hero */
.hero {
  position: relative;
  z-index: 0;
  height: 95vh;
  display: flex;
  align-items: center;
}

.hero video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 230%;
}

.hero p {
  font-size: 120%;
  margin-top: var(--space-sm);
}

/* Welcome Section */
.welcome-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.welcome-content,
.welcome-img {
  flex: 1 1 400px;
}

.welcome-content {
  color: var(--color-white);
}

.welcome-content p {
  margin-top: var(--space);
}

.welcome-img {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
}

.welcome-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Information Section */
.information {
  background-color: #f1f1f1;
  text-align: center;
}

.information p {
  margin-top: var(--space);
}