
.block {

    display: flex;
    flex-direction: column;
}
.map-content #map {

    width: 100vw;
    height: 65vw;
    /*border-radius: 3px;*/
    /*box-shadow: 0 0 5px rgba(0,0,0,0.06);*/

}

.block .text {
    padding: 4vw;
}

.text .label {
    font-size: 14px;
    color: #666;
    letter-spacing: 2px;
    line-height: 1.6;
}

.text .label.name {
    font-size: 18px;
    font-weight: bold;
    color: #303030;
}

.text .label.en {
    letter-spacing: normal;

}
.service-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;

}

.service-item {
    display: flex;
    flex-direction: column;
    min-width: 50vw;
    align-items: center;
    position: relative;
    padding: 10px 0;
    margin-bottom: 20px;
    justify-content: flex-end;
}

.service-item:after {
    content: "";
    position: absolute;
    height: 35%;
    margin: auto 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e5e5e5;
    right: 0;
}

.service-item:nth-child(2n):after {
    content: none;
}

.service-item .avatar {
    width: 16vw;
    height: 16vw;
    align-items: flex-start;

}
.service-item .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
    border: 2px solid #e5e5e5;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.service-item .info {
    /*margin-left: 20px;*/
    line-height: 1.6;
}

.service-item .name {
    font-size: 4vw;
    color: #303030;
    text-align: left;
    margin-top: 2vw;
    font-weight: bold;
}
.service-item .mobile {
    font-size: 3.5vw;
    color: #666;
    font-weight: bold;
}

.service-item .mobile span {
    display: inline-block;
    min-width:20vw;
    text-align: left;
}

.service-item .mobile a {
    color: var(--primary-color);
    text-decoration: none;
}
