/*
 * ----------------------------------------------------------------------------
 * # Homepage Blocks
 * ----------------------------------------------------------------------------
 */

/* --- Feature Block --- */
.feature-block-section-wrapper {
    padding: 4rem 0;
}
.feature-block-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* デフォルトは3列 */
    gap: 2rem;
}
/* 600px以下で縦並び（1列）にする */
@media (max-width: 600px) {
    .feature-block-grid {
        grid-template-columns: 1fr;
    }
}
.feature-block-item {
    text-align: center;
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #007bff; /* Example color */
}
.feature-headline {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.feature-description {
    font-size: 1rem;
    color: #6c757d; /* Example color */
}

/* --- CTA Block --- */
.cta-block-section-wrapper {
    padding: 5rem 1rem;
    text-align: center;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-headline {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 1rem;
}
.cta-subheadline {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.cta-buttons .button {
    margin: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.cta-button-main {
    border: 2px solid #fff;
}
.cta-button-sub {
    border: 2px solid #fff;
}
