.wrapper {
    overflow: visible;
}

.about-floor-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.about-floor-flex .floor-pager {
    position: -webkit-sticky;
    position: sticky;
    top: 20%;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 80px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.about-floor-flex .floor-pager {
    width: 300px;
}

.about-floor-flex .floor-pager .building {
    border-radius: 10px;
    overflow: hidden;
}

.about-floor-flex .floor-pager .f-name {
    position: absolute;
    text-shadow: var(--text-shadow1);
    left: 18px;
    font-style: italic;
    font-family: var(--ff02);
    font-weight: 600;
    font-size: 26px;
}

.about-floor-flex .floor-pager .f-name::after {
    content: "-";
}

.about-floor-flex .floor-pager .f-1 {
    bottom: 0;
    color: #0008ad;
}

.about-floor-flex .floor-pager .f-2 {
    bottom: 100px;
    color: #75b0ff;
}

.about-floor-flex .floor-pager .f-3 {
    bottom: 200px;
    color: #5700d5;
}

.about-floor-flex .floor-pager .floor::before {
    content: "\e59d";
    font-family: "font awesome 5 free";
    font-weight: bold;
    display: block;
    font-size: 28px;
    position: absolute;
    left: 72px;
    z-index: 2;
    color: #75b0ff;
    text-shadow: var(--text-shadow1);
    -webkit-animation: poyooon 1.5s linear infinite;
    animation: poyooon 1.5s linear infinite;
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 0;
}

.about-floor-flex .floor-pager .floor.active::before {
    opacity: 1;
}

.about-floor-flex .floor-pager .floor:nth-of-type(2):before {
    bottom: 0;
    color: #0008ad;
}

.about-floor-flex .floor-pager .floor:nth-of-type(3)::before {
    bottom: 100px;
    color: #75b0ff;
}

.about-floor-flex .floor-pager .floor:nth-of-type(4)::before {
    bottom: 200px;
    color: #5700d5;
}


@-webkit-keyframes poyooon {
    0% {
        -webkit-transform: scale(1.0, 1.0) translate(0%, 0%);
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    10% {
        -webkit-transform: scale(1.02, 0.98) translate(0%, 2%);
        transform: scale(1.02, 0.98) translate(0%, 2%);
    }

    40% {
        -webkit-transform: scale(1.05, 0.95) translate(0%, 5%);
        transform: scale(1.05, 0.95) translate(0%, 5%);
    }

    50% {
        -webkit-transform: scale(1.0, 1.0) translate(0%, 0%);
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    60% {
        -webkit-transform: scale(0.98, 1.02) translate(0%, -20%);
        transform: scale(0.98, 1.02) translate(0%, -20%);
    }

    75% {
        -webkit-transform: scale(0.95, 1.05) translate(0%, -5%);
        transform: scale(0.95, 1.05) translate(0%, -5%);
    }

    85% {
        -webkit-transform: scale(1.05, 0.95) translate(0%, 2%);
        transform: scale(1.05, 0.95) translate(0%, 2%);
    }

    100% {
        -webkit-transform: scale(1.0, 1.0) translate(0%, 0%);
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }
}


@keyframes poyooon {
    0% {
        -webkit-transform: scale(1.0, 1.0) translate(0%, 0%);
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    10% {
        -webkit-transform: scale(1.02, 0.98) translate(0%, 2%);
        transform: scale(1.02, 0.98) translate(0%, 2%);
    }

    40% {
        -webkit-transform: scale(1.05, 0.95) translate(0%, 5%);
        transform: scale(1.05, 0.95) translate(0%, 5%);
    }

    50% {
        -webkit-transform: scale(1.0, 1.0) translate(0%, 0%);
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    60% {
        -webkit-transform: scale(0.98, 1.02) translate(0%, -20%);
        transform: scale(0.98, 1.02) translate(0%, -20%);
    }

    75% {
        -webkit-transform: scale(0.95, 1.05) translate(0%, -5%);
        transform: scale(0.95, 1.05) translate(0%, -5%);
    }

    85% {
        -webkit-transform: scale(1.05, 0.95) translate(0%, 2%);
        transform: scale(1.05, 0.95) translate(0%, 2%);
    }

    100% {
        -webkit-transform: scale(1.0, 1.0) translate(0%, 0%);
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }
}

@media(max-width:1024px) {
    .about-floor-flex .floor-pager {
        width: 200px;
        margin-right: 30px;
    }

    .about-floor-flex .floor-pager .f-name {
        left: 40px;
    }

    .about-floor-flex .floor-pager .f-1 {
        bottom: 12px;
    }

    .about-floor-flex .floor-pager .f-2 {
        bottom: 52px;
    }

    .about-floor-flex .floor-pager .f-3 {
        bottom: 94px;
    }

    .about-floor-flex .floor-pager .floor::before {
        left: 74px;
    }

    .about-floor-flex .floor-pager .floor:nth-of-type(2):before {
        bottom: 12px;
    }

    .about-floor-flex .floor-pager .floor:nth-of-type(3)::before {
        bottom: 52px;
    }

    .about-floor-flex .floor-pager .floor:nth-of-type(4)::before {
        bottom: 94px;
    }
}

@media(max-width:599px) {
    .about-floor-flex .floor-pager {
        width: 100px;
        margin-right: 10px;
    }

    .about-floor-flex .floor-pager .building {
        border-radius: 5px;
    }

    .about-floor-flex .floor-pager .f-name {
        left: 5px;
        font-size: 16px;
    }

    .about-floor-flex .floor-pager .f-1 {
        bottom: 0;
    }

    .about-floor-flex .floor-pager .f-2 {
        bottom: 35px;
    }

    .about-floor-flex .floor-pager .f-3 {
        bottom: 65px;
    }

    .about-floor-flex .floor-pager .floor::before {
        left: 35px;
        font-size: 25px;
    }

    .about-floor-flex .floor-pager .floor:nth-of-type(2):before {
        bottom: 0;
    }

    .about-floor-flex .floor-pager .floor:nth-of-type(3)::before {
        bottom: 35px;
    }

    .about-floor-flex .floor-pager .floor:nth-of-type(4)::before {
        bottom: 65px;
    }
}

.about-floor-list .item-wrap {
    padding: 30px 30px;
    background-color: #fff;
    border-radius: 30px;
    border: 3px solid #0008ad;
}

.about-floor-list .item-wrap:nth-of-type(2){
  border-color: #75b0ff;
}

.about-floor-list .item-wrap:nth-of-type(3){
  border-color: #5700d5;
}

.about-floor-list .item-wrap+.item-wrap {
    margin-top: 50px;
}

.about-floor-list .item-wrap .item-title {
    font-size: 30px;
    color: #0008ad;
    text-shadow: var(--text-shadow1);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 20px;
}

.about-floor-list .item-wrap:nth-of-type(2) .item-title{
  color: #75b0ff;
}

.about-floor-list .item-wrap:nth-of-type(3) .item-title{
  color: #5700d5;
}

.about-floor-list .item-wrap .sub-item+.sub-item {
    border-top: 2px dashed #9f7b53;
    padding-top: 20px;
    margin-top: 20px;
}

.about-floor-list .item-wrap .sub-item .img-box .img {
    border-radius: 10px;
    overflow: hidden;
}

@media(max-width:599px) {
    .about-floor-list .item-wrap+.item-wrap {
        margin-top: 30px;
    }

    .about-floor-list .item-wrap {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .about-floor-list .item-wrap .item-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .about-floor-list .item-wrap .sub-item .img-box .img {
        border-radius: 5px;
    }
}

.scenes-slick{
  overflow: hidden;
}

[data-element-id] .scenes-slick {
    display: flex;
    flex-wrap: wrap;
}
