/**
 * お問い合わせページテキスト表示修正
 * ページヘッダーのテキストを確実に表示
 */

/* ページヘッダーのテキスト色を強制的に設定 */
.page-header {
    background: linear-gradient(135deg, #7cc576 0%, #5ba656 100%) !important;
    color: white !important;
}

.page-header__content {
    position: relative !important;
    z-index: 10 !important;
}

.page-header__title {
    color: #ffffff !important;
}

.page-header__title-main {
    display: block !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 8px !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2) !important;
}

.page-header__title-sub {
    display: block !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
}

.page-header__description {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.8 !important;
    max-width: 600px !important;
    margin: 20px auto 0 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1) !important;
}

/* パンくずナビのテキスト色 */
.breadcrumb-container {
    background: #ffffff !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #eeeeee !important;
}

.breadcrumb,
.breadcrumb a,
.breadcrumb span {
    color: #212121 !important;
}

.breadcrumb a:hover {
    color: #4CAF50 !important;
}

/* セクションタイトル */
.contact-methods .section-title,
.contact-form-section .section-title {
    color: #212121 !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 40px !important;
}

/* お問い合わせ方法のテキスト */
.contact-method__title {
    color: #212121 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}

.contact-method__text {
    color: #757575 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.contact-method__hours {
    color: #757575 !important;
    font-size: 13px !important;
}

/* フォーム内のテキスト */
.contact-form label {
    color: #212121 !important;
    font-weight: 600 !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    color: #212121 !important;
    background: white !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9e9e9e !important;
}

/* 注意事項 */
.contact-notice {
    background: #fff3cd !important;
    border: 1px solid #ffeaa7 !important;
    color: #856404 !important;
}

.contact-notice h3 {
    color: #856404 !important;
}

.contact-notice ul li {
    color: #856404 !important;
}

/* プライバシーセクション */
.contact-privacy {
    background: #e8f5e9 !important;
}

.contact-privacy h3 {
    color: #2e7d32 !important;
}

.contact-privacy__content p {
    color: #424242 !important;
}

/* ボタン */
.btn-submit {
    background: #4CAF50 !important;
    color: white !important;
}

.btn-submit:hover {
    background: #45a049 !important;
}

/* 営業時間・会社情報 */
.contact-info {
    background: #f5f5f5 !important;
}

.info-card__title {
    color: #212121 !important;
    font-weight: 600 !important;
}

.info-card table td {
    color: #757575 !important;
}

.info-card table th {
    color: #212121 !important;
    font-weight: 600 !important;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .page-header__title-main {
        font-size: 28px !important;
    }
    
    .page-header__description {
        font-size: 14px !important;
        padding: 0 20px !important;
    }
}