/* ===================================
   CTA Section Styles
   フッター上の問い合わせセクション
   =================================== */

.c-ctaSection {
    /* background: linear-gradient(135deg, #019503 0%, #1c9fc2 38%, #39aa99 68%, #4db062 100%); */
    /* background: linear-gradient(135deg, #019503 0%, #1c9fc2 38%, #39aa99 68%, #4db062 100%); */
    background: linear-gradient(46deg, #0195D3 0%, #1c9fc2 38%, #39aa99 68%, #4db062 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.c-ctaSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.c-ctaSection__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 0;
}

.c-ctaSection__content {
    text-align: center;
    margin-bottom: 3rem;
}

.c-ctaSection__title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    letter-spacing: -0.025em;
}

.c-ctaSection__subtitle {
    color: white;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
}

.c-ctaSection__buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.c-ctaSection__button {
    background: white;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    flex: 1;
    max-width: 400px;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.c-ctaSection__button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.c-ctaSection__button:focus {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

.c-ctaSection__buttonContent {
    width: 100%;
    /* padding: 2rem; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 電話ボタン */
.c-ctaSection__button.-phone .c-ctaSection__buttonText {
    color: #1c9fc2;
    font-size: 0.9rem;
    /* margin: 0 0 1rem 0; */
    font-weight: 500;
    line-height: 1.4;
}

.c-ctaSection__phoneNumber {
    color: #1c9fc2;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.05em;
}

.c-ctaSection__phoneNumber .material-icons {
    font-size: 2rem;
}

/* お問い合わせボタン */
.c-ctaSection__button.-contact .c-ctaSection__buttonContent {
    color: #4db062;
    font-size: 1.5rem;
    font-weight: 700;
    flex-direction: row;
    gap: 0.75rem;
}

.c-ctaSection__button.-contact .material-icons {
    font-size: 2rem;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .c-ctaSection {
        padding: 3rem 0;
    }
    
    .c-ctaSection__container {
        padding: 0 1.5rem;
    }
    
    .c-ctaSection__title {
        font-size: 1.75rem;
    }
    
    .c-ctaSection__subtitle {
        font-size: 1.1rem;
    }
    
    .c-ctaSection__buttons {
        gap: 1.5rem;
    }
    
    .c-ctaSection__phoneNumber {
        font-size: 1.75rem;
    }
    
    .c-ctaSection__button.-contact .c-ctaSection__buttonContent {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .c-ctaSection {
        padding: 2.5rem 0;
    }
    
    .c-ctaSection__container {
        padding: 0 1rem;
    }
    
    .c-ctaSection__content {
        margin-bottom: 2.5rem;
    }
    
    .c-ctaSection__title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .c-ctaSection__subtitle {
        font-size: 1rem;
    }
    
    .c-ctaSection__buttons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .c-ctaSection__button {
        max-width: 100%;
        width: 100%;
        min-height: 100px;
    }
    
    .c-ctaSection__buttonContent {
        padding: 1.5rem;
    }
    
    .c-ctaSection__button.-phone .c-ctaSection__buttonText {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .c-ctaSection__phoneNumber {
        font-size: 1.5rem;
    }
    
    .c-ctaSection__phoneNumber .material-icons {
        font-size: 1.75rem;
    }
    
    .c-ctaSection__button.-contact .c-ctaSection__buttonContent {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    
    .c-ctaSection__button.-contact .material-icons {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .c-ctaSection__title {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .c-ctaSection__subtitle {
        font-size: 0.95rem;
    }
    
    .c-ctaSection__button.-phone .c-ctaSection__buttonText {
        font-size: 0.8rem;
    }
    
    .c-ctaSection__phoneNumber {
        font-size: 1.3rem;
    }
    
    .c-ctaSection__button.-contact .c-ctaSection__buttonContent {
        font-size: 1.1rem;
    }
}

/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
    .c-ctaSection__button {
        transition: none;
    }
    
    .c-ctaSection__button:hover {
        transform: none;
    }
}