@charset "UTF-8";

/**
 * Salon de Mirror - Contact Page Styles
 * 予約・お問い合わせページ専用スタイル
 */

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 120px 0;
    background-color: #ffffff;
}


.contact-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========================================
   Contact Method Base
   ======================================== */
.contact-method {
    text-align: center;
}

.contact-method-title {
    font-size: 18px;
    font-weight: bold;
    color: #0088b4;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #deecf3;
}

/* ========================================
   LINE Contact Section
   ======================================== */
.line-contact {
    padding: 20px;
}

.line-qr-wrapper {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.line-qr-code {
    max-width: 320px;
    width: 100%;
    height: auto;
    /* border: 2px solid #deecf3; */
    padding: 10px;
    /* background-color: #f9f9f9; */
    border-radius: 8px;
}

.qr-description {
    font-size: 29px;
    color: #158dae;
    margin: 20px 0 10px;
    margin-bottom: 36px;
}

.qr-note {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Phone Contact Section
   ======================================== */
.phone-contact {
    padding: 20px;
}

.phone-info {
    margin-top: 60px;
}

.phone-number {
    font-size: 43px;
    font-weight: bold;
    color: #0088b4;
    margin: 20px 0;
    font-family: 'Source Han Sans JP', 'SourceHanSansJP-Regular', 'Hiragino Sans', 'メイリオ', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.phone-number::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url('../img/phone_icon.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.phone-number a {
    color: #0088b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number a:hover {
    color: #006688;
}

.phone-hours {
    font-size: 16px;
    color: #333;
    margin: 15px 0;
    font-weight: 500;
}

.phone-caution {
    font-size: 14px;
    margin: 15px 0 0;
    line-height: 1.6;
}

/* ========================================
   Responsive Design (タブレット・スマホ対応)
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-section {
        padding: 100px 0;
    }

    .contact-title {
        font-size: 32px;
        margin-bottom: 45px;
    }

    .contact-container {
        gap: 6rem;
    }

    .contact-method {
        padding: 0;
        margin-bottom: 5vw;
    }

    .contact-method-title {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .line-qr-code {
        max-width: 280px;
    }

    .qr-description {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .phone-info {
        margin-top: 40px;
    }

    .phone-number {
        font-size: 38px;
    }

    .phone-number::before {
        width: 30px;
        height: 30px;
    }

    .phone-hours {
        font-size: 15px;
        margin: 12px 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-method {
        padding: 0;
        margin-bottom: 7vw;
    }

    .phone-info {
    margin-top: 2rem;
}

    .line-qr-code {
        max-width: 240px;
    }

    .phone-number {
        font-size: 28px;
    }

    .phone-number::before {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .contact-container {
        gap: 5rem;
    }

    .contact-method-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .line-qr-wrapper {
        margin: 20px 0;
    }

    .line-qr-code {
        max-width: 200px;
    }

    .qr-description {
        font-size: 4.5vw;
        margin: 15px 0 8px;
        margin-bottom: 6vw;
    }

    .qr-note {
        font-size: 13px;
    }

    .phone-number {
        font-size: 24px;
        margin: 15px 0;
        gap: 1rem;
    }

    .phone-hours {
        font-size: 4.7vw;
        margin: 12px 0;
        font-weight: normal;
    }

    .phone-caution {
        font-size: 13px;
        margin: 12px 0 0;
    }
}
