@charset "UTF-8";

/* ==========================================================================
   voice.php 専用スタイル
   ========================================================================== */


/* ==========================================================================
   弘道塾開校後の指導事例への導線
   ========================================================================== */

.voice-case-guide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    max-width: 800px;
    margin: 24px auto 0;
    padding: 14px 16px 14px 18px;
    border-left: 3px solid #6f9fc5;
    background: rgba(255, 255, 255, 0.48);
    text-align: left;
}

.voice-case-guide-text {
    margin: 0;
    color: #3f5264;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.8;
}

/* 指導事例ページへのリンク */
.voice-case-guide-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 16px;
    border: 1px solid #8daac5;
    border-radius: 4px;
    background: #ffffff;
    color: #173f65;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.voice-case-guide-link:hover,
.voice-case-guide-link:focus-visible {
    border-color: #6d8ba7;
    background: #f1f6fa;
    color: #062852;
}

.voice-case-guide-link:focus-visible {
    outline: 3px solid rgba(42, 109, 175, 0.25);
    outline-offset: 3px;
}

.voice-case-guide-link span {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 400;
}


/* ==========================================================================
   スマートフォン
   ========================================================================== */

@media (max-width: 767px) {

    .voice-case-guide {
        display: block;
        margin-top: 21px;
        padding: 14px 13px;
    }

    .voice-case-guide-text {
        font-size: 13px;
        line-height: 1.8;
    }

    .voice-case-guide-link {
        width: 100%;
        margin-top: 12px;
        padding: 9px 13px;
        white-space: normal;
    }
}


/* ==========================================================================
   動きを抑える設定
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .voice-case-guide-link {
        transition: none;
    }
}
