body {
    background-color: #fff !important;
}

.haikei {
    background-color: #B9EAF3;
    height: calc(1300/1280*100vw);
    margin-bottom: 160px;
    position: relative;
}

.mansyonn:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 80px;
    width: 100%;
    display: block;
    z-index: 20;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    /* background: linear-gradient(rgba(239, 255, 235, 0), rgba(239, 255, 235, 1)); */

}

.mansyonn {
    position: absolute;
    top: 0;
    z-index: 10;
}

@media (min-width: 769px) {

    .haikei,
    .mado {
        top: -90px;
    }
}

.mado {
    position: relative;
    width: 28%;
    margin-bottom: 8%;
}

.madoArea {
    position: absolute;
    top: calc(490/ 1280 * 100vw);
    left: calc(360/ 1280 * 100vw);
    z-index: 100;
    width: calc(550 / 1280 * 100%);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .haikei {
        height: calc(856/ var(--vw_sp) * 100vw);
    }

    .madoArea {
        top: calc(370/ var(--vw_sp) * 100vw);
    }

    .mansyonn,
    .madoArea {
        padding-top: 60px
    }

    .mansyonn:after {
        height: 40px;
    }
}


.mado a .mado_chara {
    transition: 400ms ease-in-out;
    transform-origin: center bottom;
}

.mado a:hover .mado_chara {
    transform: scale(1.05);
}

.mado a .mado_fukidashi {
    opacity: 0;
    position: absolute;
    top: calc(-250 / 1280 * 100%);
    transition: 300ms ease-in-out;
    left: 0;
    transform: translateY(25px);
    z-index: 2;
}

.mado a:hover .mado_fukidashi {
    opacity: 1;
    transform: translateY(0px);
    transform: scale(1.5);
}

.usiro {
    width: 100%;
    height: 100%;
    /* background-color: #ff0; */
    background-image: url(../../img/kyara/kumo.png);
    background-repeat: repeat-x;
    background-position: 0 0;
    background-size: cover;
    -webkit-animation: bgroop 60s linear infinite;
    animation: bgroop 60s linear infinite;
}

@-webkit-keyframes bgroop {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -1956px 0;
    }
}

@keyframes bgroop {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -1956px 0;
    }
}