html {
    overscroll-behavior: none;
    width: 100%;
    height: 100%;
}

#info {
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
    z-index: 100;
    display: block;
}

.mycanvassize {
    font-family: "Noto Sans JP";
    font-size: 90px;
    line-height: 1;
    display: block;
    float: left;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    visibility: hidden;
}

.testimg {
    position: absolute;
    top: 0;
    left: 0;
    background-color: blue;
}

body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 700;
    width: 100%;
    height: 100%;
}

body .show-canvas {
    opacity: 1;
    transition: opacity 2s linear;
}

.hide-canvas {
    opacity: 0;
}

.fixed-canvas {
    position: fixed;
    top: 0;
    left: 0;
}

.dummy-scroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5000px;
}

.message-box {
}

.wrapper {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.main-area {
    padding: 10px 10px;
}

.logo1 {
    width: 50%;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.date {
    text-align: center;
    font-size: 30px;
    color: #000000;
    line-height: 34px;
    padding: 10px 0 0px 0px;
}

.time {
    text-align: center;
    font-size: 24px;
    color: #000000;
    line-height: 34px;
    padding: 0px 0 20px 0px;
}

.top-message {
    text-align: center;
    font-size: 22px;
    line-height: 100%;
    padding: 14px 0 14px 0px;
    background-color: black;
    color: white;
    border-radius: 40px;
    width: 80%;
    margin: 10px auto;
    margin-bottom: 30px;
}

.mark-wrapper {
    width: 70%;
    padding-top: 70%;
    position: relative;
    margin: 0 auto;
}

.mark-text {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 5px solid #2860ff;
    box-sizing: border-box;
    border-radius: 50%;
    opacity: 0;
}

.mark-text-inner {
    border: 26px solid rgb(40 96 255);
    position: absolute;
    box-sizing: border-box;
    top: 2%;
    left: 2%;
    width: 96%;
    height: 96%;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
}

.mark-text-animation {
    animation: anim1 0.4s ease-out 0s 1 normal;
    opacity: 1;
}

.mark-text-inner-animation {
    animation: anim2 0.3s ease-out 0s 1 normal;
    opacity: 1;
}

@keyframes anim1 {
    0% {
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

    50% {
        width: 110%;
        height: 110%;
        top: -5%;
        left: -5%;
        opacity: 1;
    }

    100% {
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
}

@keyframes anim2 {
    0% {
        top: 2%;
        left: 2%;
        width: 96%;
        height: 96%;
        opacity: 0;
    }

    50% {
        width: 106%;
        height: 106%;
        top: -2%;
        left: -2%;
        opacity: 1;
    }

    100% {
        top: 2%;
        left: 2%;
        width: 96%;
        height: 96%;
        opacity: 1;
    }
}

.mark-text-inner img {
    width: 60%;
    top: 20%;
    position: absolute;
    left: 20%;
}

.white-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: white;
    /* border-radius: 50%; */
    z-index: 99;
}

.white-box-animation {
    transition: 0.4s left ease-in-out;
    left: 100%;
}

.message {
    width: 100%;
    display: block;
    padding-top: 3%;
    font-size: 56px;
    color: #2860ff;
    text-align: center;
    line-height: 100%;
    /* text-shadow: 3px 3px 1px #fff, -3px 3px 1px #fff, 3px -3px 1px #fff, -3px -3px 1px #fff; */
}

.price-wrapper {
    width: 100%;
    padding-top: 30px;
    overflow: hidden;
    position: absolute;
    bottom: 60px;
    width: 90%;
    left: 5%;
}

.price-box {
    width: 100%;
    position: relative;
    clear: both;
}

.price-box1 {
    border-bottom: 3px solid black;
    overflow: hidden;
    font-size: 20px;
}

.price-box1 .now {
    float: left;
}

.price-box1 .remain {
    float: right;
}

.price-box2 .now {
    float: left;
    font-size: 30px;
}

.price-box2 .remain {
    float: right;
    padding-top: 15px;
}

.remain {
    display: none;
}
