/* お問い合わせページ専用スタイル */

/* ================ ヒーローセクション ================ */
.contact-hero {
    margin-top: 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/contact/contact-hero-bg.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-hero .hero-content h1 {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
}

.contact-hero .hero-content p {
    font-size: 20px;
    margin-bottom: 0;
}

/* ================ お問い合わせ情報セクション ================ */
.contact-info-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-method-card {
    background-color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-method-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-method-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-link {
    display: block;
    color: #e74c3c;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c0392b;
}

.contact-note {
    color: #95a5a6;
    font-size: 13px;
    font-style: italic;
}

.address {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    color: white;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #e74c3c;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
}

.btn-outline:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

/* ================ SNSセクション ================ */
.social-section {
    padding: 80px 0;
    background-color: white;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.social-card i {
    font-size: 48px;
    margin-bottom: 15px;
}

.social-card span {
    font-size: 18px;
    font-weight: 600;
}

.social-card.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5bb8 100%);
}

.social-card.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-card.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: white;
}

/* ================ 地図セクション ================ */
.map-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.access-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.access-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.access-item i {
    font-size: 24px;
    color: #e74c3c;
    margin-top: 5px;
}

.access-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.access-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ================ 入会案内CTAセクション ================ */
.join-cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('../images/main/annai.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 100px 0;
    color: white;
}

.join-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.join-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ================ レスポンシブ対応 ================ */

/* タブレット（992px以下） */
@media (max-width: 992px) {
    .contact-hero .hero-content h1 {
        font-size: 60px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .social-links-large {
        flex-wrap: wrap;
    }

    .social-card {
        width: 160px;
        height: 160px;
    }

    .social-card i {
        font-size: 36px;
    }

    .access-info {
        grid-template-columns: 1fr;
    }
}

/* スマートフォン（768px以下） */
@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
    }

    .contact-hero .hero-content h1 {
        font-size: 50px;
    }

    .contact-hero .hero-content p {
        font-size: 18px;
    }

    .contact-info-section,
    .social-section,
    .map-section,
    .join-cta-section {
        padding: 60px 0;
    }

    .contact-method-card {
        padding: 30px 25px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
    }

    .contact-icon i {
        font-size: 28px;
    }

    .contact-method-card h3 {
        font-size: 20px;
    }

    .social-links-large {
        gap: 20px;
    }

    .social-card {
        width: 140px;
        height: 140px;
    }

    .social-card i {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .social-card span {
        font-size: 14px;
    }

    .map-container iframe {
        height: 350px;
    }

    .access-item {
        padding: 20px;
    }

    .join-cta-content h2 {
        font-size: 28px;
    }

    .join-cta-content p {
        font-size: 16px;
    }
}

/* 小型スマートフォン（576px以下） */
@media (max-width: 576px) {
    .contact-hero .hero-content h1 {
        font-size: 40px;
    }

    .contact-hero .hero-content p {
        font-size: 16px;
    }

    .contact-info-section,
    .social-section,
    .map-section,
    .join-cta-section {
        padding: 50px 0;
    }

    .contact-methods {
        gap: 20px;
    }

    .contact-method-card {
        padding: 25px 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 24px;
    }

    .contact-link {
        font-size: 16px;
    }

    .social-links-large {
        flex-direction: column;
        align-items: center;
    }

    .social-card {
        width: 200px;
        height: 120px;
        flex-direction: row;
        gap: 15px;
    }

    .social-card i {
        font-size: 28px;
        margin-bottom: 0;
    }

    .map-container iframe {
        height: 300px;
    }

    .join-cta-content h2 {
        font-size: 24px;
    }
}