@charset "UTF-8";

body {
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
        "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (min-width: 750px) {
    .body-inner {
        max-width: 750px;
        box-shadow: 0 1px 20px rgb(0 0 0 / 30%);
        background: #fff;
        margin: 0 auto;
    }
}

img {
    width: 100%;
    margin-top: 0px;
    /*--隙間調整--*/
}

/* フローティングバナー */
/* ============================================ */
.float-bnr {
    height: 0;
    opacity: 0;
    transition: 1s;
    pointer-events: none;
}

.float-bnr.show {
    display: block;
    height: auto;
    opacity: 1;
    transition: 1s;
    pointer-events: painted;
    position: fixed;
    bottom: 10px;
    z-index: 9999;
}

.reflection {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.reflection:after {
    content: "";
    height: 100%;
    width: 30px;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    transform: rotate(45deg);
    animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }

    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

/* フローティングバナー ここまで */
/* ============================================ */

/* コンテンツの横幅 */
/* ============================================ */
.contents-inner {
    width: 100%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* コンテンツの横幅 ここまで */
/* ============================================ */


/* CTAボタン */
/* ============================================ */
.cta-area {
    position: relative;
}

.cta__btn {
    width: 100%;
    bottom: -4%;
    /*位置調整*/
    left: 0;
    right: 0;
    margin: 0 auto;
}


.abs {
    position: absolute;
}

.cta__btn img {
    animation: anime1 1s ease 0s infinite alternate;
    transform-origin: center;
}

.float-bnr-btn img {
    animation: anime1 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes anime1 {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/* CTAボタン ここまで */
/* ============================================ */

/* footer */
/* ============================================ */
footer {
    display: block;
    padding-top: 10px;
    border-top: 3px solid #ddd;
    background: #fff;
}

ul {
    list-style: none;
}

.footer_nav {
    text-align: center;
    padding: 10px 0;
}

.footer_nav li {
    display: inline-block;
    margin: 0 5px 0 0;
    border-right: #000 solid thin;
    font-size: 13px;
}

.footer_nav li:nth-child(2) {
    border-right: none;
}

.footer_nav li a {
    text-decoration: none;
    padding: 0 10px 0 0;
    color: #000;
}

.footer_nav li:last-child {
    border: none;
}

footer .copyright {
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
}

/* footer ここまで */
/* ============================================ */