/* ヒーロー画像付き */
.hero-with-image {
    position: relative;
    min-height: auto;
    overflow: hidden;
    padding: 80px 0 0 0 !important;
    background: #f5f5f5 !important;
}

.hero-with-image::before {
    display: none !important;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 0;
}

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

/* 画像内CTAボタンエリア - 完成版 */
.hero-image-cta-area {
    position: absolute;
    bottom: 9%;
    left: 10%;
    width: 38%;
    height: 10%;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s;
}

.hero-image-cta-area:hover {
    opacity: 0.8;
}

.hero-with-image .hero-cta {
    display: inline-block;
    background: #262784;
    color: #fff;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(38,39,132,0.4);
}

.hero-with-image .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(38,39,132,0.6);
}

.hero-with-image .hero-note {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
    background: rgba(255,255,255,0.95);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-image-cta-area {
        left: 15%;
        width: 70%;
        height: 10%;
        bottom: 8%;
    }
}