@charset "utf-8";
/*飛船&縮合css */
.fixedBox {
    width: 110px;
    right: -110px;
    bottom: 40%;
    position: fixed;
    z-index: 9999;
    display: block;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.fixedBox.openFixedBox {
    right: 0px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

a.slide-toggle {
    display: flex;
    flex-wrap: wrap;
    width: 40px;
    height: 40px;
    background: #000;
    position: absolute;
    z-index: 1;
    left: 0px;
    top: -40px;
    border-radius: 5px 5px 0px 0px;
    -webkit-transition: 500ms;
    transition: 500ms;
}
.fixedBox:not(.openFixedBox) a.slide-toggle{
    left: -40px;
    border-radius: 5px 0px 0px 5px;
}
a.slide-toggle img {
    width: 30%;
    margin: 0 auto;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all .4s;
    transition: all .4s;
}

a.slide-toggle img.turnTo {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all .4s;
    transition: all .4s;
}

.btn_cta {
    text-decoration: none;
    display: block;
    background-color: #c7c7c9;
}

.btn_cta img {
    width: 100%;
    display: block;
}

.btn_cta span {
    display: block;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    background-position: center center;
    background-image: url(cta_bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.2;
}

.btn_cta span:after {
    content: '';
    background: -webkit-linear-gradient(305deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 25%, white 50%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 25%, white 50%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-animation: bt_shine 2s ease infinite;
    animation: bt_shine 2s ease infinite
}

@-webkit-keyframes bt_shine {
    0% {
        left: -100%
    }

    50%,
    to {
        left: 100%
    }
}

@keyframes bt_shine {
    0% {
        left: -100%
    }

    50%,
    to {
        left: 100%
    }
}

@media (max-width: 500px) {
    .btn_cta span {
        font-size: 2.8vw;
    }
    .fixedBox {
        width: 80px;
        right: -80px;
    }
    a.slide-toggle {
    width: 20px;
    height: 20px;
    top: -20px;}
    .fixedBox:not(.openFixedBox) a.slide-toggle{
    left: -20px;
}
}