/* Page Specific Overrides */
    .hero {
      height: 85vh;
      /* Slightly shorter than full screen for modern feel */
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.7);
      opacity: 0;
      transition: opacity 3s ease;
    }

    .hero-bg.active {
      opacity: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding-bottom: 80px;
    }

    .hero h1 {
      font-size: 2.5rem;
      line-height: 1.4;
      margin-bottom: 24px;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    }

    .hero-sub-text {
      font-size: 1.1rem;
      margin-bottom: 40px;
      opacity: 0.9;
      line-height: 2;
    }

    .feature-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 24px;
      color: var(--color-text-dark);
    }

    /* Contrast Section Background */
    .section-contrast {
      background-color: #f7f7f7;
    }

    /* Mobile Responsive - Hero & Headings */
    @media (max-width: 768px) {
      .hero {
        height: 75vh;
      }

      .hero-content {
        padding-bottom: 40px;
        text-align: center;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
      }

      .hero h1 {
        font-size: 1.5rem;
        line-height: 1.5;
      }

      .hero-sub-text {
        font-size: 0.85rem;
        line-height: 1.8;
        display: inline-block;
        text-align: left;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.3rem;
      }

      .hero-sub-text {
        font-size: 0.8rem;
        margin-bottom: 24px;
      }
    }
/* =============================================
   index.html ページ固有スタイル
   （インラインstyleをここに集約）
   ============================================= */

/* 店舗情報マップラッパー */
.shop-map-wrapper {
    background: #eee;
    height: 100%;
    min-height: 300px;
    border-radius: 4px;
    overflow: hidden;
}

/* 店舗情報DLリスト */
.shop-info-dl {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 8px;
    row-gap: 16px;
    border-top: 1px solid #eee;
    padding-top: 24px;
}

.shop-info-dt {
    font-weight: 700;
}

.shop-info-btn-wrap {
    margin-top: 24px;
}

.home-strength-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.home-service-section .carousel-card {
    flex-basis: calc(100% / 3.4 - 18px);
}

.home-service-section .card-img-wrapper {
    height: 240px;
}

.home-service-section .carousel-card-content {
    padding: 22px 24px 24px;
}

/* Smartphone rhythm: keep key cards scannable instead of stacking everything tall */
@media (max-width: 600px) {
    .home-strength-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-strength-actions .btn {
        width: 100%;
        text-align: center;
    }

    .home-service-section .carousel-card {
        flex-basis: 82%;
    }

    .home-service-section .card-img-wrapper {
        height: 210px;
    }

    .home-problem-grid {
        display: flex;
        gap: 14px;
        margin-right: calc(50% - 50vw);
        padding-right: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .home-problem-grid::-webkit-scrollbar {
        display: none;
    }

    .home-problem-grid .card-simple {
        flex: 0 0 78%;
        scroll-snap-align: start;
        padding: 20px;
    }

    .home-strength-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home-strength-grid .card-simple {
        padding: 16px 14px;
    }

    .home-strength-grid .card-simple .icon {
        width: 32px;
        height: 32px;
        margin-bottom: 12px;
    }

    .home-strength-grid .card-simple h3 {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .home-strength-grid .card-simple p {
        font-size: 0.78rem;
        line-height: 1.55;
    }
}
