
.map-container {
    .map-area {
        position: relative; width: 100%; height: 450px; overflow: hidden; border: 1px solid var(--line);
        .sample {
            width: 100%; height: 100%; object-fit: cover;
        }
        .marker {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; gap: 15px; align-items: center;
            .detail {
                position: relative; display: flex; gap: 10px; align-items: center; background: #fff; padding: 10px; border-radius: 5px; box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.15); min-width: 290px;
                &:after {
                    content: ''; position: absolute; top: calc(100% - 1px); left: 50%; transform: translateX(-50%); border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 10px solid #fff;
                }
                .img-area {
                    width: 52px; height: 52px; border-radius: 6px; overflow: hidden;
                    > img {
                        width: 100%; height: 100%; object-fit: cover;
                    }
                }
                .txt-area {
                    width: calc(100% - 62px);
                    .tit {
                        font-size: 1.6rem; padding-bottom: 7px; font-weight: 800;
                    }
                    .navigate-group {
                        display: flex; align-items: center; gap: 15px;
                        .navigate-link {
                            display: inline-flex; align-items: center; gap: 5px;
                            &:hover {
                                text-decoration: underline;
                            }
                            .arrow {
                                width: 10px; height: auto;
                            }
                            p {
                                font-size: 1.3rem; font-weight: 800; color: #8A8A8A;
                            }
                        }
                    }
                }
            }
        }
    }


    .address {
        .row {
            font-size: 1.7rem; 
            dl {
                display: flex; padding-bottom: 20px;
            }
            dt {
                position: relative; width: 200px; font-weight: 800; padding-left: 25px;
                .icon {
                    position: absolute; top: 3px; left: 0; width: 18px; height: 18px;
                }
            }
            dd {
                p {
                    line-height: 1.6; padding-bottom: 10px;
                }
            }
        }
    }

    .location-info {
        position: relative; display: flex;
        &:not(:last-child) {
            padding-bottom: 20px;
        }
        .info-title {
            width: 200px; display: flex; flex-direction: column; gap: 10px; align-items: center;
            img {
                width: 50px; height: 50px;
            }
            .tit {
                font-size: 1.7rem; font-weight: 800;
            }
        }
        .info-area {
            width: calc(100% - 200px); display: flex; flex-wrap: wrap; gap: 20px;
            .item {
                dl {
                    padding: 0 10px 20px;
                } 
                dt {
                    color: var(--theme-blue); font-size: 1.7rem; font-weight: 700; padding-bottom: 15px;
                }
                dd {
                    .txt {
                        font-size: 1.5rem; position: relative; padding-left: 13px; font-weight: 500;
                        &:after {
                            content: ''; position: absolute; top: 8px; left: 0; border-top: 4px solid transparent; border-bottom: 4px solid transparent; border-left: 5px solid #000;
                        }
                        &:not(:last-child) {
                            padding-bottom: 5px;
                        }
                    }
                }
                .group {
                    &:not(:last-child) {
                        padding-bottom: 15px;
                    }
                }
                .bus-group {
                    display: flex; flex-wrap: wrap; gap: 5px;
                    .bus-num {
                        font-size: 1.4rem; font-weight: 500; color: #444; padding: 2px 10px; border-radius: 3px; border: 1px solid #bfbfbf;
                    }
                }
                .sub-line-group {
                    display: flex; flex-wrap: wrap; gap: 5px;
                    .sub-line {
                        font-size: 1.4rem; font-weight: 600; color: #444; padding: 2px 10px; border-radius: 3px; border: 1px solid #bfbfbf;
                        &.type-1 {
                            color: #02A5E3; border-color: #02A5E3;
                        }
                        &.type-2 {
                            color: #e1b200; border-color: #e1b200;
                        }
                    }
                }
            }
        }
    }


    @media (max-width: 1920px) {
        .address {
            dl {
                font-size: 1.6rem;
                dt {
                    .icon {
                        width: 16px; height: 16px;
                    }
                }
            }
        }

        .location-info {
            .info-title {
                .tit {
                    font-size: 1.6rem;
                }
            }
        }
    }

    @media (max-width: 1024px) {
        .address {
            .row {
                dl {
                    display: flex; flex-wrap: wrap;
                    padding-bottom: 15px;
                }
                dt {
                    width: 150px;
                }
                dd {
                    p {
                        padding-bottom: 5px;
                    }
                }
            }
        }
        .location-info {
            .info-title {
                width: 150px;
                img {
                    width: 40px; height: 40px;
                }
                .tit {
                    font-size: 1.5rem;
                }
            }
            .info-area {
                width: calc(100% - 150px);
            }
            .info-area {
                .item {
                    dl {
                        dd {
                            .txt {
                                font-size: 1.4rem;
                            }
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 768px) {
        .map-area {
            height: 300px;
        }
        .address {
            .row {
                font-size: 1.5rem;
                dl {
                    padding-bottom: 15px;
                }
                dt {
                    width: 100px;
                }
            }
        }
        .location-info {
            .info-title {
                width: 100px;
                img {
                    width: 30px; height: 30px;
                }
                .tit {
                    font-size: 1.4rem;
                }
            }
            .info-area {
                width: calc(100% - 100px);
                .item {
                    dl {
                        padding: 0 5px 15px;
                        width: 100%;
                    }
                    dd {
                        .txt {
                            font-size: 1.3rem;
                            &:after {
                                border-top-width: 3px; border-bottom-width: 3px; border-left-width: 4px;
                            }
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 475px) {
        .map-area {
            height: 200px;
        }
        .address {
            .row {
                font-size: 1.4rem;
                dl {
                    flex-wrap: wrap;
                }
                dt {
                    width: 100%; padding-bottom: 10px; padding-left: 18px;
                    .icon {
                        width: 14px; height: 14px;
                    }
                }
                dd {
                    p {
                        font-size: 1.3rem; line-height: 1.4; padding-bottom: 10px;
                    }
                }
            }
        }
        .location-info {
            .info-title {
                width: 80px;
                .tit {
                    font-size: 1.3rem;
                }
            }
            .info-area {
                width: calc(100% - 80px);
                .item {
                    dl {
                        dt {
                            font-size: 1.4rem; padding-bottom: 10px;
                        }
                        dd {
                            .txt {
                                padding-left: 9px;
                            }
                        }
                    }
                    .bus-group {
                        .bus-num {
                            font-size: 1.2rem; padding: 2px 8px;
                        }
                    }
                    .sub-line-group {
                        .sub-line {
                            font-size: 1.2rem; padding: 2px 8px;
                        }
                    }
                }
            }
        }
    }
}