/* info_telreception.html 追加CSS */

.telreception-message {
    max-width: 760px;
    margin: 1.8rem auto 1.5rem;
    padding: 1.2rem 1.4rem;
    background: #f8fbfd;
    border-left: 4px solid #009acd;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    color: #333;
    line-height: 1.9;
    font-size: 1rem;
}

.telreception-message p {
    margin: 0 0 0.75rem;
}

.telreception-message p:last-child {
    margin-bottom: 0;
}

.telreception-message .note {
    margin-top: 0.8rem;
    color: #666;
    font-size: 0.92rem;
}


/* 電話受付時間ページ：LINE CTA */
.line-cta.telreception-line-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 760px;
    margin: 1.8rem auto 2.4rem;
    padding: 1.4rem 1.2rem;
    text-align: center;
    background: #fff;
    border: 1px solid #e2edf2;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.line-cta.telreception-line-cta p {
    margin: 0 0 1rem;
    color: #444;
    line-height: 1.8;
    font-size: 0.98rem;
}

.line-cta.telreception-line-cta .line-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    min-width: 240px;
    padding: 0.85rem 1.6rem;
    background: #06c755;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 3px 8px rgba(6, 199, 85, 0.28);
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.line-cta.telreception-line-cta .line-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(6, 199, 85, 0.32);
}

.line-cta.telreception-line-cta .line-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(6, 199, 85, 0.25);
}


/* スマホ調整 */
@media screen and (max-width: 799px) {
    .telreception-message {
        margin: 1.2rem 1rem 1.2rem;
        padding: 1rem 1rem;
        font-size: 0.95rem;
        line-height: 1.8;
        border-radius: 8px;
    }

    .line-cta.telreception-line-cta {
        margin: 1.4rem 1rem 2rem;
        padding: 1.2rem 1rem;
        border-radius: 10px;
    }

    .line-cta.telreception-line-cta .line-btn {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 0.9rem 1rem;
        font-size: 1rem;
    }
    .line-cta.telreception-line-cta p {
        text-align: left;
        width: 90%;
    }
}