.foot-cta {
    display: none;
    z-index: 1;
}
  
@media screen and (max-width: 768px), print {
    .foot-cta {
        display:none;
        position: fixed;
        width: 100%;
        padding: 4px;
        top: auto;
        bottom: -1vw;
        right: 0;
        background: rgba(0, 0, 0, 0.5);
    }
    .foot-cta .foot-cta-main {
        width: 100%;
        opacity: 0.97;
        border-bottom: 4px solid #66464d;
        border-radius: 10px;
        background-color: #c95981;
        color: #fff;
        height:77px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    .foot-cta-main-calling-text{
        font-size: 30px;
        font-weight: bold;
        display: flex;
        align-items: baseline;
        position: relative;
        margin-left: 1.1em;
    }
    .foot-cta-main-calling-text::before{
        content: "";
        background: url(/wp-content/themes/kuratomo2022/header/img/tel.png.webp) no-repeat;
        background-size: contain;
        width: 48px;
        height: 48px;
        display: block;
        margin-top: 10px;
        position: absolute;
        left: -1.6em;
        top: -5px;
        bottom: auto;
    }
    .foot-cta-main-calling-small{
        font-size: 16px;
    }
    .foot-cta-main-reception{
        margin-top: -5px;
    }
}
.slideIn6 {
    display: block;
    animation: slideIn6 0.5s ease-out;
    animation-fill-mode: forwards;
    position: fixed;
}
  
@keyframes slideIn6 {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}