@charset "UTF-8";

/*=========================
 common
==========================*/
*,
*:before,
*:after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
}

body {
    max-width: 640px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: #fff;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

@media screen and (max-width:640px) {
    body {
        max-width: calc(640/640*100vw);
    }
}

img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

a {
    color: #000;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:not(.mouseover):hover {
    opacity: 0.5;
}

/*=========================
 body
==========================*/
#fixed_cvbtns {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fff;
    display: block;
    z-index: 2;
}

.fixed_cvbtns-inner {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed_cvbtns-inner a {
    margin: 0 7px;
    animation: 1s pulse 0s infinite;
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform: scale3d(0.95,0.95,0.95);
        transform: scale3d(0.95,0.95,0.95);
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

.cv {
    position: relative;
}
.bg1 {
    background: #fffafb;
    padding-bottom: 45px;
}
.cv-btn {
    position: absolute;
    bottom: 13.8%;
    /* left: 8.7%; */
    left: 0;
    right: 0;
    max-width: 524px;
    width: calc(524vw / 640 * 100);
    margin: 0 auto;
}
.cv-btn-first {
    position: absolute;
    bottom: 8.2%;
    left: 8.7%;
    max-width: 524px;
    width: calc(524vw / 640 * 100);
    margin: 0 auto;
}

.sns_btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 480px;
    width: calc(480vw / 640 * 100);
    margin: auto;
}
.sns_btn a{
    display: block;
    max-width: 150px;
    width: calc(150vw / 640 * 100);
}

/* 動画エリア */
.movie_wrap {
    position: relative;
}
.movie_wrap video {
    width: calc(562 / 640 * 100vw); max-width: 562px;
    margin: 0 auto;
    position: absolute;
    bottom: 3.0%; left: 0; right: 0;
}

.ticket{
    position: relative;
}
.ticket_num01{
    position: absolute;
    font-weight: bold;
    font-size: 20px;
    right: 13.3%;
    bottom: 49.6%;
}
.num_small {
    font-size: 80%;
}
@media screen and (max-width:640px) {
    .ticket_num01{
        font-size: calc(20vw / 750 * 100);
        /* right: 13.3%;
        bottom: 49.6%; */
    }
}


.footer {
    margin-bottom: 144px;
}

@media screen and (max-width:640px) {
    .footer {
        margin-bottom: calc(144vw / 640 * 100);
    }
}