/* HERO セクションのスタイル */
.hero {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #EFFF2A;
}

.hero picture {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-svg-container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-svg-container svg {
    width: 100%;
    height: auto;
    display: block;
}

/* SVG共通スタイル */
.hero-svg-desktop,
.hero-svg-mobile {
    width: 100%;
    height: auto;
    display: block;
}


/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .hero {
        height: auto;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
    }
}

@media screen and (min-width: 769px) {
    .hero {
        height: auto;
    }

    .hero-image {
        width: 100%;
        height: auto;
    }
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheading {
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 1.25rem;
    }
}
