@keyframes ripple-animate {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    5% {
        opacity: 1;
    }

    100% {
        width: 30px;
        height: 30px;
        opacity: 0;
    }
}

.mgt-img{
    margin: 0 20px 0 0;
}

.mgt-anchor {
    position: absolute;
    display: none;
    user-select: none;
    cursor: pointer;
}

.mgt-anchor h3 {
    background: rgba(255, 255, 255, .8);
    font-weight: bold;
    color: #004666;
    text-align: center;
    left: -50%;
    margin: 2px 0;
    padding: 3px 5px;
    font-size: .875rem;
    transform: translateX(calc(-50% + 15px))
}

.mgt-anchor h3 .job {
    border-bottom: 1px solid #000;
}

.mgt-anchor h3 span {
    display: block;
}

.ceo {
    top: 27%;
    left: 54%;
}

.cfo {
    top: 29%;
    left: 28.5%;
}

.cto {
    top: 42%;
    left: 78%;
}

.cpo {
    top: 19%;
    left: 63%;
}

.chro {
    top: 41%;
    left: 22.7%;
}

.cdo {
    top: 47%;
    left: 42.4%;
}

.ripple-wrapper {
    width: 30px;
    height: 30px;
    position: relative;
    transition: opacity .6s ease;
    opacity: 1;
    margin-bottom: 10px;
}

.ripple-wrapper .c {
    background: #fff;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    animation: ripple-animate 4s infinite;
}

.ripple-wrapper .click {
    position: absolute;
    z-index: 4;
    width: 15px;
    left: 10px;
    top: 15px;
}

.ripple-wrapper .c1 {
    animation-delay: 0s;
}

.ripple-wrapper .c2 {
    animation-delay: 1s;
}

.ripple-wrapper .c3 {
    animation-delay: 2s;
}

.ripple-wrapper .c4 {
    animation-delay: 3s;
}

.flex-list3-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex-list3-item {
    width: calc(100% / 3 - 40px / 2);
    margin: 1.5rem 0;
}

.flex-list3-detail {
    background: #fff;
}

.flex-list3-detail .bom-pos {
    padding-top: 1.5rem;
    font-size: 1.875rem;
    text-align: center;
    font-weight: bold;
}

.flex-list3-detail .bom-name {
    padding: 1rem 0 1.5rem 0;
    text-align: center;
    font-weight: bold;
    color: #000;
}

.title-square {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #004666;
}

.modal-body .bom-img {
    margin: 0 20px 10px 0;
    height: 300px;
    float: left;
}

.bom-name, .bom-full-pos {
    font-size: 1.5rem;
    line-height: 1.2;
    color: #004666;
    margin: 0;
}

@media screen and (min-width: 1200px) {
    .mgt-anchor {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .bom-name, .bom-full-pos {
        font-size: 1rem;
        font-weight: bold;
    }

    .flex-list3-item {
        width: calc(100% / 2 - 5px);
        margin: .5rem 0;
    }

    .flex-list3-detail .bom-pos {
        padding-top: .5rem;
        font-size: 1rem;
    }

    .flex-list3-detail .bom-name {
        padding: .5rem .5rem 1rem .5rem;
        font-size: .875rem;
    }

    .modal-body {
        font-size: .875rem;
    }

    .modal-body .bom-img {
        margin: 0 0 1rem 0;
        width: 100%;
    }
}