/* reset
--------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, select, input, textarea, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    border: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th {
    text-align: left;
}
img, iframe {
    vertical-align: bottom;
}
/* general
--------------------------------------------------*/
/* link */
a {
    color: #058dc7;
    text-decoration: none;
    outline: none;
}
a:hover img, a:focus img {
    opacity: .5;
}
/* transition */
a, a img, input {
    transition: all .2s;
}
/* font */
strong {
    font-weight: bold;
}
/* img */
img {
    max-width: 100%;
    height: auto;
}
/* layout
--------------------------------------------------*/
/* html */
html {
    font-size: 16px;
}
/* body */
body {
    color: #000;
    font-family: sans-serif;
    line-height: 1.6;
    word-break: break-all;
    background: #fff;
}
/* wrap */
.wrap {
    max-width: 828px;
    margin: 0 auto;
    background: #fff;
}
/* top
--------------------------------------------------*/
/* roulette */
.roulette {
    position: relative;
    overflow: hidden;
}
.roulette02,
.roulette03 {
    position: absolute;
    top: 0;
    left: 0;
}
.roulette02 {
    animation: 4s linear infinite rotation1;
}
@keyframes rotation1 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* slider02 */
.slider02 {
    background: #e20126;
}
/* result
--------------------------------------------------*/
.result_btn_area {
    position: relative;
}
.result_btn {
    position: absolute;
    top: 64%;
    left: 0;
}