/* -------------------------------------------
   Contact Page Styles (page-contact.php)
------------------------------------------- */

/* LINE Section */
.line-section {
    background-color: #fff;
    border-radius: 30px;
    padding: 60px 20px;
    margin-bottom: 60px;
    text-align: center;
    border: 4px solid #f0e6d9;
}
.line-icon {
    font-size: 4rem;
    color: #06c755;
    margin-bottom: 20px;
    display: block;
}
.line-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #5a4a42;
}
.line-desc {
    margin-bottom: 30px;
}
.qr-placeholder {
    width: 150px;
    height: 150px;
    background-color: #eee;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    color: #888; font-size: 0.8rem;
}

/* Button Modifier for LINE */
.btn-line {
    background-color: #06c755;
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
    border: none;
    color: #fff;
}
.btn-line:hover {
    background-color: #05b34c;
    box-shadow: 0 6px 15px rgba(6, 199, 85, 0.5);
    transform: translateY(-2px);
}

/* Contact Options Grid (Phone & Access info) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
}
@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center; /* ボックス全体は中央寄せ（見出しや電話番号用） */
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.contact-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #e8a798;
    border-bottom: 2px dotted #eaddd3;
    padding-bottom: 10px;
    display: inline-block;
}

/* --- 以下を追加・修正 --- */

/* 電話番号（中央寄せのまま） */
.contact-tel-num {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0;
}

/* 電話の説明文（左寄せ） */
.contact-desc {
    font-size: 0.9rem;
    color: #888;
    text-align: left; /* ★ここを左寄せに */
}

/* 住所（左寄せ） */
.contact-address {
    text-align: left; /* ★ここを左寄せに */
    margin-bottom: 0;
}

/* アクセス注釈（左寄せ） */
.contact-note {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #888;
    text-align: left; /* ★ここを左寄せに */
}

/* Form Styles */
.form-section {
    background-color: #fff;
    padding: 60px 30px;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto 80px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

/* ★追加: フォームの説明文 */
.form-desc {
    margin-bottom: 40px;
    /* PCでは .text-center クラスにより中央寄せになります */
}

/* ★追加: スマホ版のみ左寄せにする設定 */
@media (max-width: 767px) {
    .form-desc {
        text-align: left !important; /* !importantでtext-centerを上書き */
    }
}

.form-group {
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 25px;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #5a4a42;
}
.required-tag {
    background-color: #e8a798;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #f0e6d9;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
    background-color: #fcfcfc;
}
.form-control:focus {
    border-color: #e8a798;
    outline: none;
    background-color: #fff;
}
textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Access Map Section */
.access-section {
    text-align: center;
    margin-bottom: 60px;
}
.map-area {
    width: 100%;
    height: 400px;
    background-color: #eaddd3;
    border-radius: 20px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.map-area iframe {
    width: 100%;
    height: 100%;
    border: 0;
}