.entryMain {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 12px;
}

.entryMain--center {
  min-height: calc(100svh - 64px);
  display: grid;
  place-items: center;
  padding-top: 10px;
  padding-bottom: calc(var(--footer-h) + 16px);
}

/* ヒーロー画像は各地区の index で inline style で指定（例: .hero { background: url("img/xxx.webp") ... }） */
.hero {
  width: 100%;
  height: 280px;
  position: relative;
}

@media (min-width: 820px) {
  .hero {
    height: 600px;
  }
}

.heroInner {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.heroLabel {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 20px;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
}

.entryCard {
  width: min(520px, 100%);
  display: grid;
  gap: 12px;
}

.entryTitle {
  font-size: 18px;
  line-height: 1.4;
  margin: 4px 0 18px;
  text-align: center;
}

.entryActions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.btnPrimary {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .14);
  background: #fff;
  border-radius: 14px;
  padding: 32px 14px;
  font: inherit;
  text-decoration: none;
  color: inherit;
  text-align: center;
  font-size: 18px;
}

.btnSub {
  width: 70%;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .9);
  border-radius: 14px;
  padding: 32px 14px;
  font: inherit;
  text-decoration: none;
  color: inherit;
  text-align: center;
  opacity: .85;
  margin: 30px auto;
}

.btnSub--quiet {
  font-size: 13px;
  padding: 9px 14px;
  opacity: .65;
}

.btnSub--quiet:hover {
  opacity: .85;
}
