@charset "UTF-8";

.floating-banner {
    position: fixed;
    z-index: 99999;
    bottom: 0;
    right: 0;
    display: none;
}
.banner {
    width: 480px;/* バナーの横幅 */
    padding: 40px 10px;
    background: linear-gradient(86.13deg, #7080F7 -3.42%, #3E9ED9 59.59%);/* バナーの背景色 */
    color: #fff;/* バナー内の文字色 */
    font-weight: bold;
    text-align: center;
}
.floating-banner a {
    text-decoration: none;/* リンクに下線が入らないように */
}
.copy {
    font-size: 28px;
    margin: 0 auto 20px;
    line-height: 1.6;
}
.cta {
    display: inline-block;
    width: 200px;
    /* height: 50px; */
    /* line-height: 50px; */
    /* font-size: 18px; */
    height: 42px;
    line-height: 34px;
    font-size: 16px;
    /* background: linear-gradient(270deg, #F4A240 0%, #E3A608 100%); */ /* ボタンの背景 */
    /* box-shadow: 0px 0px 30px #2984BA; */ /* ボタンの影 */
    background: #a40c04; /* ボタンの背景 */
    border: 2px solid #a40c04;
    border-radius: 25px;
    color: #fff; /* ボタンの文字色 */
    margin: 0
}
@media screen and (min-width: 140px) {
    #footer-area {
        padding-bottom: 28px;
    }
    .floating-banner {
        display: inline-block;
    }
    .banner {
        width: 100vw;
        padding: 8px;
    }
    .sp {
        display: none;
    }
    .copy {
        font-size: 18px;
        margin: 0 auto 6px;
    }
    .cta {
        width: 140px;
        height: 28px;
        font-size: 14px;
        line-height: 1em;
        padding-top: 3px;
    }
}
