.service-area {
    display: flex;
    flex-direction: column; /* 縦に要素を並べる */
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
}
.pink-box {
    width: 50px;
    height: 50px;
    background-color: #FFC0CB;
    margin-right: 10px;
    flex-shrink: 0; /* Flexboxの影響を防ぐために縮小を防止 */
}
.area-text {
    margin-right: 20px;
    width: 100%; /* コンテナの幅に合わせる */
}

.subtext {
    font-size: 12px;
    color: #666;
}

.wifi-floor-item {
    cursor: pointer;
    margin: 5px 0;
    font-size: 2rem;
    transition: font-size 0.3s, color 0.3s;
}

.wifi-floor-item.selected {
    font-size: 2.5rem;
    color: #FFB100;
}

.image-display img {
    max-width: 100%; /* コンテナの幅に合わせる */
    height: auto;
    opacity: 1;
    transition: opacity 0.5s;
}

.image-display img.show {
    opacity: 1;
}

.image-display img.hide {
    opacity: 0;
}

@media (min-width: 768px) {
    .service-area {
        flex-direction: row; /* 横に要素を並べる（大きな画面で） */
    }
}
