/* ============================================
   メインビジュアル
   ============================================ */


.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: auto;
  background-color: #f5f5f5;
  background: url(../images/top-mv-bg-gd.png) repeat-x bottom left;
  background-size: cover;
  overflow: hidden; /* はみ出し対策 */
  color: var(--color-black);
  text-align: center;
  padding: calc(70px + 72px) 1.5rem 70px;
  position: relative;
}

.hero-section::before {
  content: "";
  display: block;
  position: absolute;
  left: -150px;
  bottom: -150px;
  z-index: 0;
  width: 100%;
  height: 160%;
  background: url(../images/top-mv-bg-gear@2x.png) no-repeat;
  background-position: left bottom;
  background-size: contain;
  opacity: .65;
}
/* 
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
} */

.hero-content {
  position: relative;
  z-index: 2;
  color: #333;
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.hero-subtitle {
  font-size: .9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: .5rem;
}

/* ============================================
   パンくずリスト
   ============================================ */
.breadcrumb-area {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: .35rem 0;
  font-size: .85rem;
}

.breadcrumb {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item.active,
.breadcrumb .breadcrumb-item+.breadcrumb-item::before,
.breadcrumb a {
  color: var(--color-white);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  /* .hero-section {
    padding: 70px 10px;
  } */

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
}
