/* ==========================================
   休養インストラクターCTAボタン用スタイル
========================================== */

.rest-instructor-cta {
    margin: 2rem 0;
    text-align: center;
}

.rest-instructor-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.rest-instructor-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
}

.rest-instructor-cta .btn i {
    font-size: 1.3rem;
}

/* ヒーローボタンのレイアウト調整 */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-buttons .btn {
    flex: 0 1 auto;
    min-width: 200px;
}

/* ナビゲーションの外部リンクアイコン */
.nav-link i.fa-external-link-alt {
    font-size: 0.8em;
    margin-left: 0.3rem;
    opacity: 0.7;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .rest-instructor-cta .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .rest-instructor-cta .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}
