@charset "UTF-8";
/*
Theme Name: pre-dc
*/

/* ヒーローエリア */
.hero {
  height: 75vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  background: url("./images/hero.webp") center center / cover no-repeat;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

.hero .container {
  z-index: 2;
}

.lead-copy {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {

  .hero {
    height: 60vh;
  }

  .lead-copy {
    font-size: 1.5rem;
  }

}

