/* ========================================
   お問い合わせページ専用スタイル
   ======================================== */
.contact-page {
    padding: 20px 0;
}

/* お問い合わせコンテンツ */
.contact-content {
    max-width: 480px;
    margin: 40px auto 0;
    text-align: center;
}

/* 案内文 */
.contact-guide {
    margin-bottom: 30px;
}

.guide-text {
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.4;
    white-space: pre-line;
    text-align: left;
}

/* アクションエリア */
.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

/* QRコードセクション */
.qr-code-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-label {
    font-size: 1rem;
    margin: 0;
}

.qr-image {
    display: block;
    max-width: 200px;
    height: auto;
}

/* LINEボタンセクション */
.line-button-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.line-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #06C755;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(6, 199, 85, 0.3);
    min-width: 280px;
}

.line-button:hover {
    background: #05B048;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(6, 199, 85, 0.4);
}

.line-icon {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.line-text {
    font-size: 1.1rem;
}

.line-id {
    font-size: 0.9rem;
    margin: 0;
}

/* お問い合わせ情報 */
.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-white-light);
}

.contact-note {
    font-size: 0.95rem;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact-content {
        margin-top: 30px;
    }
    
    .guide-text {
        font-size: 1rem;
    }
    
    .line-button {
        min-width: 100%;
        max-width: 100%;
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .line-icon {
        font-size: 1.3rem;
    }
    
    .line-text {
        font-size: 1rem;
    }
    
    .qr-image {
        max-width: 180px;
    }
}
