/* ==========================================================================
   サロン紹介ページ個別スタイル (about-salon.css)
   ========================================================================== */

.page-title-section {
    padding: 60px 0 20px;
    background-color: var(--light-pink);
}

.section-intro {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 10px auto 0;
}

.sub-page-title {
    font-size: 28px;
    margin-bottom: 50px;
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: var(--light-pink);
    margin: 25px 0;
}

/* --- サロン空間 & 間取り図レイアウト --- */
.space-grid, .access-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.floor-plan-wrapper, .interior-gallery-wrapper,
.access-info, .map-wrapper {
    display: table-cell;
    vertical-align: top;
    width: 50%;
}

.floor-plan-wrapper {
    padding-right: 40px;
}

.interior-gallery-wrapper {
    padding-left: 40px;
}

.floor-plan-wrapper h4, .interior-gallery-wrapper h4, .access-info h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.jp-sub {
    font-size: 13px;
    font-family: var(--font-sans);
    color: var(--text-muted);
    font-weight: 400;
}

/* 木目調カレンダーに合わせた簡易ウッドテイストの間取り図表現 */
.mock-floor-plan {
    background-color: #faf7f8;
    border: 3px solid #8d7060; /* 木目調カレンダーと同系統のブラウン枠線 */
    border-radius: 8px;
    height: 320px;
    position: relative;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.room-entrance, .room-waiting, .room-nail-table, .room-sofa, .room-photo {
    position: absolute;
    background-color: var(--pure-white);
    border: 1px dashed var(--dark-pink);
    border-radius: 4px;
    padding: 10px;
    font-size: 12px;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.room-entrance { bottom: 15px; left: 15px; width: 70px; height: 40px; background-color: var(--light-pink); }
.room-waiting  { bottom: 15px; right: 15px; width: 120px; height: 80px; }
.room-nail-table { top: 15px; left: 15px; width: 130px; height: 90px; border-style: solid; background-color: #fffbfb; }
.room-sofa     { top: 15px; right: 15px; width: 120px; height: 90px; }
.room-photo    { top: 130px; left: 15px; width: 90px; height: 70px; }

.floor-plan-wrapper .caption {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* サロン内様子 4枚写真グリッド */
.interior-grid {
    display: block;
    font-size: 0;
}

.interior-item {
    display: inline-block;
    width: 50%;
    padding: 8px;
    font-size: 14px;
    position: relative;
    cursor: pointer;
}

.interior-item img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 6px;
    transition: var(--transition);
}

.interior-item:hover img {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(226, 164, 176, 0.3);
}

.img-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background-color: rgba(51, 44, 45, 0.75);
    color: var(--pure-white);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

/* --- アクセス & ルート案内レイアウト --- */
.access-section {
    background-color: var(--pure-white);
}

.access-info {
    padding-right: 40px;
}

.salon-address-block p {
    margin-bottom: 6px;
    font-size: 14px;
}

.route-steps {
    list-style: none;
    margin-top: 15px;
}

.route-steps li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    font-size: 14px;
    min-height: 32px;
}

.step-num {
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-pink);
    color: var(--text-dark);
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: bold;
    font-size: 12px;
}

/* マップ表示エリア（ダミー） */
.map-wrapper {
    padding-left: 40px;
}

.mock-google-map {
    background-color: #e5e3df;
    border: 1px solid #c4c2be;
    border-radius: 8px;
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #555;
    text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

.mock-google-map .small {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.map-pin {
    font-size: 36px;
    margin-top: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.btn-map-link {
    width: 100%;
    margin-top: 15px;
    text-align: center;
    background-color: var(--pure-white);
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-map-link:hover {
    background-color: var(--text-dark);
    color: var(--pure-white);
}

/* --- 写真拡大モーダルウィンドウのスタイル --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
}

#modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    font-size: 14px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--primary-pink);
}

/* --- レスポンシブ (タブレット・スマホ対応) --- */
@media (max-width: 768px) {
    .space-grid, .access-grid {
        display: block;
    }
    .floor-plan-wrapper, .interior-gallery-wrapper,
    .access-info, .map-wrapper {
        display: block;
        width: 100%;
        padding: 0;
        margin-bottom: 40px;
    }
    .interior-item {
        width: 50%;
    }
    .interior-item img {
        height: 130px;
    }
}