/* お問い合わせページ専用CSS */

.page-header {
    background: linear-gradient(135deg, #E63946 0%, #C8102E 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    opacity: 0.9;
}

.intro {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 2;
    text-align: center;
    color: var(--text-color);
}

.contact-methods {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-info {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.contact-info.phone:hover,
.contact-info.email:hover {
    background-color: var(--accent-color);
    color: white;
}

.contact-hours {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-note {
    background-color: var(--bg-light);
}

.note-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.note-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.note-list {
    list-style: none;
}

.note-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-light);
}

.note-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.company-info-section {
    background-color: white;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid var(--border-color);
}

.info-table th {
    width: 200px;
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: var(--text-color);
    background-color: var(--bg-light);
}

.info-table td {
    padding: 20px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
        text-align: left;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px 25px;
    }

    .contact-info {
        font-size: 1.2rem;
    }

    .note-box {
        padding: 30px 25px;
    }

    .company-info-section .info-table {
        display: block;
    }

    .company-info-section .info-table tbody {
        display: block;
        width: 100%;
    }

    .company-info-section .info-table tr {
        display: block;
        margin-bottom: 20px;
        border-bottom: none;
    }

    .company-info-section .info-table th,
    .company-info-section .info-table td {
        display: block;
        width: 100% !important;
        padding: 10px !important;
        text-align: center !important;
    }

    .company-info-section .info-table th {
        border-bottom: 2px solid var(--accent-color);
        font-size: 0.9rem;
        background-color: transparent !important;
    }

    .company-info-section .info-table td {
        padding-bottom: 20px !important;
    }

    .company-info-section .info-box {
        padding: 0 10px;
    }
}
