@-webkit-keyframes shake
{
    0%
    {
        -webkit-transform: translate3d(-6px, -2px, 0px);
        transform: translate3d(-6px, -2px, 0px);
    }

    10%
    {
        -webkit-transform: translate3d(3px, -3px, 0px);
        transform: translate3d(3px, -3px, 0px);
    }

    20%
    {
        -webkit-transform: translate3d(6px, 4px, 0px);
        transform: translate3d(6px, 4px, 0px);
    }

    30%
    {
        -webkit-transform: translate3d(-2px, 2px, 0px);
        transform: translate3d(-2px, 2px, 0px);
    }

    40%
    {
        -webkit-transform: translate3d(-5px, -4px, 0px);
        transform: translate3d(-5px, -4px, 0px);
    }

    50%
    {
        -webkit-transform: translate3d(5px, -2px, 0px);
        transform: translate3d(5px, -2px, 0px);
    }

    60%
    {
        -webkit-transform: translate3d(3px, 2px, 0px);
        transform: translate3d(3px, 2px, 0px);
    }

    70%
    {
        -webkit-transform: translate3d(-6px, 4px, 0px);
        transform: translate3d(-6px, 4px, 0px);
    }

    80%
    {
        -webkit-transform: translate3d(-3px, -2px, 0px);
        transform: translate3d(-3px, -2px, 0px);
    }

    100%
    {
        -webkit-transform: translate3d(3px, -4px, 0px);
        transform: translate3d(3px, -4px, 0px);
    }
}

@keyframes shake
{
    0%
    {
        -webkit-transform: translate3d(-6px, -2px, 0px);
        transform: translate3d(-6px, -2px, 0px);
    }

    10%
    {
        -webkit-transform: translate3d(3px, -3px, 0px);
        transform: translate3d(3px, -3px, 0px);
    }

    20%
    {
        -webkit-transform: translate3d(6px, 4px, 0px);
        transform: translate3d(6px, 4px, 0px);
    }

    30%
    {
        -webkit-transform: translate3d(-2px, 2px, 0px);
        transform: translate3d(-2px, 2px, 0px);
    }

    40%
    {
        -webkit-transform: translate3d(-5px, -4px, 0px);
        transform: translate3d(-5px, -4px, 0px);
    }

    50%
    {
        -webkit-transform: translate3d(5px, -2px, 0px);
        transform: translate3d(5px, -2px, 0px);
    }

    60%
    {
        -webkit-transform: translate3d(3px, 2px, 0px);
        transform: translate3d(3px, 2px, 0px);
    }

    70%
    {
        -webkit-transform: translate3d(-6px, 4px, 0px);
        transform: translate3d(-6px, 4px, 0px);
    }

    80%
    {
        -webkit-transform: translate3d(-3px, -2px, 0px);
        transform: translate3d(-3px, -2px, 0px);
    }

    100%
    {
        -webkit-transform: translate3d(3px, -4px, 0px);
        transform: translate3d(3px, -4px, 0px);
    }
}

.shake
{
    -webkit-animation: shake 0.09s linear 0s 2 normal;
    animation: shake 0.09s linear 0s 2 normal;
}

body
{
    background-image: url("./../img/pc/bg.jpg");
    background-size: auto 2000px;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    background-color: #FFF;
    color: #1a364e;
    font-size: 20px;
}

.root
{
    position: relative;
}

@-webkit-keyframes fadein
{
    from
    {
        opacity: 0;
    }

    to
    {
        opacity: 1;
    }
}

@keyframes fadein
{
    from
    {
        opacity: 0;
    }

    to
    {
        opacity: 1;
    }
}

.is-hide
{
    display: none !important;
}

.is-fadein
{
    opacity: 0;
    -webkit-animation: fadein 1s linear 0.15s;
    animation: fadein 1s linear 0.15s;
}

.slick-carousel .slick-prev, .slick-carousel .slick-next
{
    display: none !important;
}

.slick-carousel .slick-dots
{
    text-align: center;
    margin-top: 17px;
}

.slick-carousel .slick-dots li
{
    display: inline-block !important;
    display: block;
    width: 27px;
    height: 27px;
    background-image: url("./../img/pc/common/bit.png");
    background-repeat: no-repeat;
    background-size: 27px 27px;
    background-position: 0px 0px;
}

.slick-carousel .slick-dots li.slick-active
{
    display: block;
    width: 27px;
    height: 27px;
    background-image: url("./../img/pc/common/bit_focus.png");
    background-repeat: no-repeat;
    background-size: 27px 27px;
    background-position: 0px 0px;
}

.slick-carousel .slick-dots button
{
    color: transparent;
}

.campaign-ui
{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: none;
}

.campaign-ui.hide .ui-foot
{
    -webkit-transform: translate(0, 155px);
    transform: translate(0, 155px);
    transition: -webkit-transform 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
    transition: transform 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}

.campaign-ui.show .ui-foot
{
    -webkit-transform: translate(0, -180px);
    transform: translate(0, -180px);
    transition: -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.campaign-ui .ui-foot
{
    display: block;
    position: fixed;
    left: 10px;
    bottom: 0px;
    width: 100%;
    height: 0px;
    background-position: left bottom;
    background-size: 100% 3px;
    background-repeat: no-repeat;
}

.campaign-ui .ui-foot .btn-sound, .campaign-ui .ui-foot .btn-nav-open
{
    display: block !important;
    position: absolute;
    cursor: pointer;
    pointer-events: auto;
    display: block;
    background-image: url("./../img/pc/ui/button_dl.png");
    background-repeat: no-repeat;
    background-size: 127.2px 193.2px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    width: 128px;
    height: 194px;
}

.campaign-ui .ui-foot .on
{
    background-position: 0 -118px;
}

.campaign-ui .ui-foot div
{
    width: 1000px;
    height: 200px;
    margin: 0 auto;
}

nav .wrap-opened
{
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    overflow: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: none;
    opacity: 0;
}

nav .wrap-opened .bg-layer
{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    left: 0px;
    top: 0px;
}

nav .wrap-opened .nav-header
{
    width: 520px;
    height: 53px;
    position: relative;
    pointer-events: none;
    margin: 0 auto;
}

nav .wrap-opened .nav-header .logo-collabo
{
    display: block;
    width: 220.8px;
    height: 20.4px;
    background-image: url("./../img/pc/ui/logo_collabo.png");
    background-repeat: no-repeat;
    background-size: 220.8px 20.4px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}

nav .wrap-opened .nav-header .btn-nav-close
{
    display: block;
    background-image: url("./../img/pc/ui/close.png");
    background-repeat: no-repeat;
    background-size: 31.2px 31.2px;
    background-position: center;
    position: absolute;
    right: 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    width: 50px;
    height: 50px;
    background-position: right 11px top 11px;
    pointer-events: auto;
}

nav ul.list-nav li:last-child
{
    padding-bottom: 20px;
}

nav ul.list-nav li
{
    position: relative;
    width: 100%;
    height: 140px;
    background-color: #000;
}

nav ul.list-nav li p
{
    width: 100%;
    height: 100%;
}

nav ul.list-nav li p.appicon
{
    display: block;
    background-image: url("./../img/pc/ui/app.png");
    background-repeat: no-repeat;
    background-size: 252px 102px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
}

nav ul.list-nav li a
{
    width: 100%;
    height: 100%;
    width: 396px;
    margin: 0 auto;
}

nav ul.list-nav li:nth-child(2) > a
{
    display: block;
    background-image: url("./../img/pc/ui/appstore.png");
    background-repeat: no-repeat;
    background-size: 396px 117.6px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
}

nav ul.list-nav li:nth-child(3) > a
{
    display: block;
    background-image: url("./../img/pc/ui/googleplay.png");
    background-repeat: no-repeat;
    background-size: 396px 117px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
}

nav ul.list-nav li:nth-child(4) > a
{
    display: block;
    background-image: url("./../img/pc/ui/androidapk.png");
    background-repeat: no-repeat;
    background-size: 396px 117px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
}

#kv
{
    position: relative;
    display: block;
    background-image: url("./../img/pc//kv/bg_kv.png");
    background-repeat: no-repeat;
    background-size: 1280px 946px;
    background-position: center;
    margin: 0 auto;
    background-position: top center;
    height: 876px;
    max-width: 1280px;
}

#kv h1
{
    position: relative;
    top: 30px;
    display: block;
    background-image: url("./../img/pc//kv/h1.png");
    background-repeat: no-repeat;
    background-size: 886px 651px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    margin: 0 auto;
    height: 651px;
    z-index: 5;
}

#kv .update
{
    position: relative;
    top: -294px;
    left: 329px;
    z-index: 5;
    display: block;
    width: 215px;
    height: 215px;
    background-image: url("./../img/sp/kv/update_kv.png");
    background-repeat: no-repeat;
    background-size: 215px 215px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    margin: 0 auto;
}

#kv .game-logo
{
    position: absolute;
    top: 0;
    left: 50px;
    display: block;
    width: 201px;
    height: 146px;
    background-image: url("./../img/pc//kv/game-logo.png");
    background-repeat: no-repeat;
    background-size: 201px 146px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
}

#kv .anime-logo
{
    position: absolute;
    top: 50px;
    right: 0px;
    display: block;
    width: 426.6px;
    height: 151.2px;
    background-image: url("./../img/pc//kv/anime-logo.png");
    background-repeat: no-repeat;
    background-size: 426.6px 151.2px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
}

#kv .text_kv
{
    position: relative;
    top: -176px;
    display: block;
    background-image: url("./../img/pc//kv/text_kv.png");
    background-repeat: no-repeat;
    background-size: 680px 257px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 257px;
    z-index: 10;
}

#shinka
{
    position: relative;
    height: 1730px;
    display: block;
    background-image: url(./../img/pc/shinka/bg_shinka.png);
    background-position: 0px 0px;
    background-repeat: repeat-x;
}

#shinka h2
{
    position: relative;
    height: 276px;
    display: block;
    background-image: url("./../img/pc/shinka/h2_shinka.png");
    background-repeat: no-repeat;
    background-size: 1280px 279px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
}

#shinka .inner
{
    position: relative;
    top: -71px;
    height: 1595px;
    display: block;
    background-image: url("./../img/pc/shinka/bg_shinka_inner.png");
    background-repeat: no-repeat;
    background-size: 1280px 1595px;
    background-position: center;
    z-index: 5;
}

#shinka .inner .text_shinka
{
    position: relative;
    top: -70px;
    display: block;
    background-image: url("./../img/pc/shinka/text_shinka.png");
    background-repeat: no-repeat;
    background-size: 486px 88px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 486px;
}

#shinka .inner .shinka-board
{
    position: relative;
    top: -144px;
    background-image: url(./../img/pc/shinka/shinka-board.png);
    background-repeat: no-repeat;
    background-size: 721px 629px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 629px;
    margin: 0 auto;
}

#shinka .inner .quote_shinka
{
    position: relative;
    top: -75px;
    display: block;
    background-image: url("./../img/pc/shinka/quote_shinka.png");
    background-repeat: no-repeat;
    background-size: 733px 427px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    margin: 0 auto;
    height: 427px;
}

#character
{
    position: relative;
    height: 1600px;
    display: block;
    background-image: url(./../img/pc/character/bg_character.png);
    background-position: 0px 0px;
    background-repeat: repeat-x;
}

#character h2
{
    display: block;
    background-image: url("./../img/pc/character/h2_character.png");
    background-repeat: no-repeat;
    background-size: 1279px 278px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 278px;
}

#character .inner
{
    position: relative;
    display: block;
    background-image: url("./../img/pc/character/bg_character_inner.png");
    background-repeat: no-repeat;
    background-size: 1280px 1391px;
    background-position: center;
    height: 1391px;
    z-index: 5;
}

#character .inner .text_character
{
    position: relative;
    top: 42px;
    display: block;
    background-image: url("./../img/pc/character/text_character.png");
    background-repeat: no-repeat;
    background-size: 494px 157px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 157px;
}

#character .inner h3
{
    position: relative;
    top: 150px;
    display: block;
    width: 313px;
    height: 68px;
    background-image: url("./../img/pc/character/h3_character.png");
    background-repeat: no-repeat;
    background-size: 313px 68px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    margin: -60px auto 0 auto;
    padding: 0 0 0 280px;
}

#character .inner .characters-area
{
    position: relative;
    top: 178px;
    width: 525px;
    margin: 0 auto;
}

#character .inner .characters-area #character_detail .detail
{
    position: relative;
    z-index: 2;
    margin: 0 auto;
    width: 525px;
}

#character .inner .characters-area #character_detail .detail .area-img
{
    position: relative;
    height: 680px;
}

#character .inner .characters-area #character_detail .detail .area-img .img-collabo
{
    width: 100%;
    height: 683px;
    top: -148px;
    text-align: center;
}

#character .inner .characters-area #character_detail .detail .area-img .img-collabo .slick-prev
{
    display: block;
    width: 39.2px;
    height: 79.1px;
    background-image: url("./../img/sp/character/slick_prev.png");
    background-repeat: no-repeat;
    background-size: 39.2px 79.1px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: -90px;
    bottom: 0;
    margin: auto 0;
    z-index: 2;
}

#character .inner .characters-area #character_detail .detail .area-img .img-collabo .slick-next
{
    display: block;
    width: 39.2px;
    height: 79.1px;
    background-image: url("./../img/sp/character/slick_next.png");
    background-repeat: no-repeat;
    background-size: 39.2px 79.1px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    right: 0;
    top: -90px;
    bottom: 0;
    margin: auto 0;
    z-index: 4;
}

#character .inner .characters-area #character_detail .detail .area-img .img-collabo .slick-prev:hover, #character .inner .characters-area #character_detail .detail .area-img .img-collabo .slick-next:hover
{
    top: -86px;
}

#character .inner .characters-area #character_detail .detail .area-img .img-collabo .slick-disabled
{
    display: none !important;
}

#character .inner .characters-area #character_detail .detail .area-img .img-collabo li
{
    width: 100%;
    height: 892px;
    outline: none;
    overflow: hidden;
    position: relative;
}

#character .inner .characters-area #character_detail .detail .vis-m
{
    position: absolute;
    z-index: 2;
    top: 0px;
}

#character .inner .characters-area #character_detail .detail .button
{
    display: block;
    width: 102.2px;
    height: 102.2px;
    background-image: url("./../img/sp/character/get-secret.png");
    background-repeat: no-repeat;
    background-size: 102.2px 102.2px;
    background-position: 0px 0px;
    position: absolute;
    top: 558px;
    left: 399px;
    z-index: 2;
    display: block;
}

#character .inner .characters-area #character_detail .detail .button:hover
{
    top: 560px;
}

#character .inner .characters-area #character_detail .detail .kamika p, #character .inner .characters-area #character_detail .detail .shinka p, #character .inner .characters-area #character_detail .detail .normal p
{
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    font-size: 0;
}

#character .inner .characters-area #character_detail .detail .character01 .vis-anime
{
    display: block;
    width: 324.1px;
    height: 148.4px;
    background-image: url("./../img/pc/character/character01/anime.png");
    background-repeat: no-repeat;
    background-size: 324.1px 148.4px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    margin: 0 0 0 306px;
}

#character .inner .characters-area #character_detail .detail .character01 .kamika .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character01/kamika/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character01 .kamika .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character01/kamika/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character01 .shinka0 .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character01/shinka/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character01 .shinka0 .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character01/shinka/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character01 .normal .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character01/normal/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character01 .normal .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character01/normal/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character01 .button
{
    display: block;
    width: 102.2px;
    height: 102.2px;
    background-image: url("./../img/sp/character/gacha.png");
    background-repeat: no-repeat;
    background-size: 102.2px 102.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character02 .vis-anime
{
    display: block;
    width: 324.1px;
    height: 148.4px;
    background-image: url("./../img/pc/character/character02/anime.png");
    background-repeat: no-repeat;
    background-size: 324.1px 148.4px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    margin: 0 0 0 306px;
}

#character .inner .characters-area #character_detail .detail .character02 .kamika .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character02/kamika/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character02 .kamika .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character02/kamika/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character02 .shinka0 .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character02/shinka/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character02 .shinka0 .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character02/shinka/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character02 .normal .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character02/normal/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character02 .normal .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character02/normal/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character02 .button
{
    display: block;
    width: 102.2px;
    height: 102.2px;
    background-image: url("./../img/sp/character/gacha.png");
    background-repeat: no-repeat;
    background-size: 102.2px 102.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character03 .vis-anime
{
    display: block;
    width: 324.1px;
    height: 148.4px;
    background-image: url("./../img/pc/character/character03/anime.png");
    background-repeat: no-repeat;
    background-size: 324.1px 148.4px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    margin: 0 0 0 306px;
}

#character .inner .characters-area #character_detail .detail .character03 .kamika .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character03/kamika/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character03 .kamika .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character03/kamika/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character03 .shinka0 .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character03/shinka/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character03 .shinka0 .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character03/shinka/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character03 .normal .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character03/normal/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character03 .normal .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character03/normal/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character03 .button
{
    display: block;
    width: 102.2px;
    height: 102.2px;
    background-image: url("./../img/sp/character/quest.png");
    background-repeat: no-repeat;
    background-size: 102.2px 102.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character04 .vis-anime
{
    display: block;
    width: 324.1px;
    height: 148.4px;
    background-image: url("./../img/pc/character/character04/anime.png");
    background-repeat: no-repeat;
    background-size: 324.1px 148.4px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    margin: 0 0 0 306px;
}

#character .inner .characters-area #character_detail .detail .character04 .kamika .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character04/kamika/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character04 .kamika .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character04/kamika/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character04 .shinka0 .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character04/shinka/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character04 .shinka0 .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character04/shinka/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character04 .normal .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character04/normal/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character04 .normal .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character04/normal/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character04 .button
{
    display: block;
    width: 102.2px;
    height: 102.2px;
    background-image: url("./../img/sp/character/quest.png");
    background-repeat: no-repeat;
    background-size: 102.2px 102.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character05 .vis-anime
{
    display: block;
    width: 324.1px;
    height: 148.4px;
    background-image: url("./../img/pc/character/character05/anime.png");
    background-repeat: no-repeat;
    background-size: 324.1px 148.4px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    margin: 0 0 0 306px;
}

#character .inner .characters-area #character_detail .detail .character05 .kamika .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character05/kamika/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character05 .kamika .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character05/kamika/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character05 .shinka0 .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character05/shinka/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character05 .shinka0 .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character05/shinka/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character05 .normal .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character05/normal/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character05 .normal .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character05/normal/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character05 .button
{
    display: block;
    width: 102.2px;
    height: 102.2px;
    background-image: url("./../img/sp/character/quest.png");
    background-repeat: no-repeat;
    background-size: 102.2px 102.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character06 .vis-anime
{
    display: block;
    width: 319.2px;
    height: 144.2px;
    background-image: url("./../img/pc/character/character06/anime.png");
    background-repeat: no-repeat;
    background-size: 319.2px 144.2px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    margin: 0 0 0 306px;
}

#character .inner .characters-area #character_detail .detail .character06 .normal .vis-m
{
    display: block;
    width: 525px;
    height: 480.2px;
    background-image: url("./../img/sp/character/character06/kamika/m.png");
    background-repeat: no-repeat;
    background-size: 525px 480.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .detail .character06 .normal .name
{
    display: block;
    width: 525px;
    height: 202.3px;
    background-image: url("./../img/sp/character/character06/kamika/name.png");
    background-repeat: no-repeat;
    background-size: 525px 202.3px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    position: absolute;
    top: 480px;
}

#character .inner .characters-area #character_detail .detail .character06 .button
{
    display: block;
    width: 102.2px;
    height: 102.2px;
    background-image: url("./../img/sp/character/gacha.png");
    background-repeat: no-repeat;
    background-size: 102.2px 102.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .list
{
    position: absolute;
    top: 566px;
    display: block;
    width: 525px;
    height: 277.2px;
    background-image: url("./../img/sp/character/bg_game-chara.png");
    background-repeat: no-repeat;
    background-size: 525px 277.2px;
    background-position: 0px 0px;
}

#character .inner .characters-area #character_detail .list dl dt
{
    margin: 0 20px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
}

#character .inner .characters-area #character_detail .list dl dd
{
    margin-top: -9px;
}

#character .inner .characters-area #character_detail .list ul
{
    position: absolute;
    width: 290px;
    margin: 0 10px 0 18px;
    font-size: 0;
    top: -10px;
}

#character .inner .characters-area #character_detail .list li
{
    position: absolute;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
    vertical-align: top;
    width: 104px;
    margin-right: 10px;
    height: 104px;
    text-align: center;
    z-index: 2;
}

#character .inner .characters-area #character_detail .list li:nth-child(1)
{
    top: 36px;
    left: 20px;
}

#character .inner .characters-area #character_detail .list li:nth-child(2)
{
    top: 36px;
    left: 134px;
}

#character .inner .characters-area #character_detail .list li:nth-child(3)
{
    top: 150px;
    left: 20px;
}

#character .inner .characters-area #character_detail .list li:nth-child(4)
{
    top: 150px;
    left: 134px;
}

#character .inner .characters-area #character_detail .list li:nth-child(5)
{
    top: 150px;
    left: 248px;
}

#character .inner .characters-area #character_detail .list li:nth-child(6)
{
    top: 150px;
    left: 362px;
}

#character .inner .characters-area #character_detail .list li p
{
    width: 104px;
    height: 104px;
    background-repeat: no-repeat;
    background-size: 104px 104px;
    border-radius: 4px;
    box-shadow: 0px 4px;
}

#character .inner .characters-area #character_detail .list li p:hover, #character .inner .characters-area #character_detail .list li p:active
{
    margin-top: 4px;
    box-shadow: 0px 0px;
}

#character .inner .characters-area #character_detail .list li .character01
{
    background-image: url("./../img/sp/character/character01/list.png");
}

#character .inner .characters-area #character_detail .list li .character02
{
    background-image: url("./../img/sp/character/character02/list.png");
}

#character .inner .characters-area #character_detail .list li .character03
{
    background-image: url("./../img/sp/character/character03/list.png");
}

#character .inner .characters-area #character_detail .list li .character04
{
    background-image: url("./../img/sp/character/character04/list.png");
}

#character .inner .characters-area #character_detail .list li .character05
{
    background-image: url("./../img/sp/character/character05/list.png");
}

#character .inner .characters-area #character_detail .list li .character06
{
    background-image: url("./../img/sp/character/character06/list.png");
}

#game
{
    display: block;
    position: relative;
    width: 100%;
    height: 1977px;
    background-image: url(./../img/pc/game/bg_game.png);
    background-position: 0px 0px;
    background-repeat: repeat-x;
}

#game h2
{
    display: block;
    background-image: url("./../img/pc/game/h2_game.png");
    background-repeat: no-repeat;
    background-size: 1280px 276px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 276px;
    margin: 0 auto;
}

#game .inner
{
    position: relative;
    top: 96px;
    display: block;
    background-image: url("./../img/pc/game/bg_game_inner.png");
    background-repeat: no-repeat;
    background-size: 1280px 1684px;
    background-position: center;
    height: 1684px;
    z-index: 5;
}

#game .inner .text_game
{
    position: relative;
    top: -30px;
    display: block;
    background-image: url("./../img/pc/game/text_game.png");
    background-repeat: no-repeat;
    background-size: 586px 214px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 214px;
}

#game .inner .quote1_game
{
    display: none;
}

#game .inner .playable
{
    position: absolute;
    top: 662px;
    width: 376px;
    height: 441px;
    margin: 0 auto;
    left: -7px;
    right: 0;
    overflow: hidden;
}

#game .inner .playable canvas
{
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}

#game .inner .playable .fixed
{
    width: 376px;
    height: 441px;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(./../../playable_ad/img/fixed/bg.png);
    background-size: 100% auto;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.2s linear 0s;
    display: none;
    z-index: 10;
}

#game .inner .playable .fixed .btn-replay
{
    display: block;
    width: 64.8px;
    height: 64.8px;
    background-image: url("./../../playable_ad/img/fixed/replay.png");
    background-repeat: no-repeat;
    background-size: 64.8px 64.8px;
    background-position: 0px 0px;
    position: absolute;
    right: 8px;
    top: 8px;
}

#game .inner .playable .fixed .to-appstore
{
    display: block;
    width: 180px;
    height: 52.8px;
    background-image: url("./../../playable_ad/img/fixed/to_appstore.png");
    background-repeat: no-repeat;
    background-size: 180px 52.8px;
    background-position: 0px 0px;
    position: absolute;
    left: 0px;
    right: 0;
    top: 88px;
    margin: 0 auto;
}

#game .inner .playable .fixed .to-googlestore
{
    display: block;
    width: 180px;
    height: 52.8px;
    background-image: url("./../../playable_ad/img/fixed/to_googleplay.png");
    background-repeat: no-repeat;
    background-size: 180px 52.8px;
    background-position: 0px 0px;
    position: absolute;
    left: 0px;
    right: 0;
    top: 153px;
    margin: 0 auto;
}

#game .inner .playable .fixed .to-apk
{
    display: block;
    width: 180px;
    height: 52.8px;
    background-image: url("./../../playable_ad/img/fixed/to_apk.png");
    background-repeat: no-repeat;
    background-size: 180px 52.8px;
    background-position: 0px 0px;
    position: absolute;
    left: 0px;
    right: 0;
    top: 218px;
    margin: 0 auto;
}

#game .inner .playable .fixed .oragon
{
    display: block;
    width: 142.4px;
    height: 156.8px;
    background-image: url("./../../playable_ad/img/fixed/oragon.png");
    background-repeat: no-repeat;
    background-size: 142.4px 156.8px;
    background-position: 0px 0px;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

#game .inner .quote2_game
{
    display: none;
}

#game .inner .quote3_game
{
    display: none;
}

#download
{
    position: relative;
    width: 100%;
    height: 2560px;
    display: block;
    background-image: url(./../img/pc/download/bg_download.png);
    background-position: 0px 0px;
    background-repeat: repeat-x;
}

#download .inner
{
    position: absolute;
    display: block;
    background-image: url("./../img/pc/download/bg_download_inner.png");
    background-repeat: no-repeat;
    background-size: 1280px 2560px;
    background-position: center;
    height: 2560px;
    width: 100%;
}

#download .inner h2
{
    position: relative;
    top: 48px;
    display: block;
    background-image: url("./../img/pc/download/h2_download.png");
    background-repeat: no-repeat;
    background-size: 554px 205px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 205px;
}

#download .inner .banner_detail
{
    position: relative;
    top: 122px;
    display: block;
    background-image: url("./../img/pc/download/banner_detail.png");
    background-repeat: no-repeat;
    background-size: 451.5px 723.8px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 723px;
}

#download .inner .active
{
    position: relative;
    top: 170px;
    display: block;
    background-image: url("./../img/pc/download/active.png");
    background-repeat: no-repeat;
    background-size: 259.7px 84.7px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 84.7px;
}

#download .inner .quote_download
{
    position: relative;
    top: 217px;
    display: block;
    background-image: url("./../img/pc/download/quote_download.png");
    background-repeat: no-repeat;
    background-size: 366.1px 148.4px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 148.4px;
}

#download .inner .app
{
    position: relative;
    top: 261px;
    display: block;
    background-image: url("./../img/pc/download/bg_app.png");
    background-repeat: no-repeat;
    background-size: 999px 428px;
    background-position: center;
    height: 428px;
}

#download .inner .app ul
{
    display: block;
    padding: 280px 0 0px 0px;
    width: 944px;
    margin: 0 auto;
}

#download .inner .app ul li
{
    margin: 0 18px 0 0;
}

#download .inner .app ul li:last-child
{
    margin: 0 0 0 0;
}

#download .inner .app ul li a
{
    display: block;
    height: 69px;
}

#download .inner .app ul .appstore
{
    display: block;
    width: 316px;
    height: 69px;
    background-image: url("./../img/pc/download/download_appstore.png");
    background-repeat: no-repeat;
    background-size: 316px 69px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    display: inline-block;
}

#download .inner .app ul .appstore a
{
    width: 316px;
}

#download .inner .app ul .googleplay
{
    display: block;
    width: 316px;
    height: 69px;
    background-image: url("./../img/pc/download/download_googleplay.png");
    background-repeat: no-repeat;
    background-size: 316px 69px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    display: inline-block;
}

#download .inner .app ul .googleplay a
{
    width: 316px;
}

#download .inner .app ul .androidapk
{
    display: block;
    width: 261px;
    height: 69px;
    background-image: url("./../img/pc/download/download_androidapk.png");
    background-repeat: no-repeat;
    background-size: 261px 69px;
    background-position: 0px 0px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    display: inline-block;
}

#download .inner .app ul .androidapk a
{
    width: 261px;
}

#download .inner .app .spec
{
    display: block;
    width: 938px;
    margin: 0 auto;
    padding: 10px 0px 0px 0px;
    font-size: 14px;
    line-height: 18px;
}

#download .inner .to-pagetop
{
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
      /* height: 58.8px; */
    background-image: url(./../img/pc/footer/arrow_to-top.png);
    background-repeat: no-repeat;
    background-size: 133.8px 58.8px;
    background-position: center center;
    height: 58.8px;
}

#footer
{
    position: relative;
    display: block;
    width: 100%;
    height: 960px;
    display: block;
    background-image: url("./../img/pc/footer/bg_footer.png");
    background-repeat: no-repeat;
    background-size: 1280px 1110px;
    background-position: center;
    background-color: #003868;
    background-position: top center;
}

#footer .share .facebook
{
    position: relative;
    display: block;
    top: 126px;
    display: block;
    background-image: url("./../img/pc/footer/button_fb-share.png");
    background-repeat: no-repeat;
    background-size: 99.4px 106.4px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 106.4px;
    width: 99.4px;
    margin: 0 auto;
}

#footer #officialcontents
{
    position: absolute;
    top: 324px;
    width: 100%;
}

#footer #officialcontents ul.banner
{
    display: block;
    margin: 0 auto;
    width: 776px;
}

#footer #officialcontents ul.banner li
{
    margin: 0 20px 0 0;
}

#footer #officialcontents ul.banner li a
{
    display: block;
    height: 66.6px !important;
}

#footer #officialcontents ul.banner li:last-child
{
    margin: 0 0 0 0;
}

#footer #officialcontents ul.banner li.bnr_facebook
{
    display: block;
    width: 240px;
    height: 74px;
    background-image: url("./../img/pc/footer/bn_facebook.png");
    background-repeat: no-repeat;
    background-size: 240px 74px;
    background-position: 0px 0px;
    display: inline-block;
}

#footer #officialcontents ul.banner li.official
{
    display: block;
    width: 240px;
    height: 74px;
    background-image: url("./../img/pc/footer/bn_offcial.png");
    background-repeat: no-repeat;
    background-size: 240px 74px;
    background-position: 0px 0px;
    display: inline-block;
}

#footer #officialcontents ul.banner li.youtube
{
    display: block;
    width: 240px;
    height: 74px;
    background-image: url("./../img/pc/footer/bn_youtube.png");
    background-repeat: no-repeat;
    background-size: 240px 74px;
    background-position: 0px 0px;
    display: inline-block;
}

#footer #xflag
{
    position: relative;
    top: 440px;
    text-align: center;
}

#footer #xflag .logo
{
    position: relative;
    display: block;
    background-image: url("//xflag.com/tw/common/images/promotion_logo_xflag.png");
    background-repeat: no-repeat;
    background-size: 170px 198px;
    background-position: center;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    height: 198px;
    margin: 0 0 60px 0;
}

#footer #xflag ul
{
    margin: 20px auto;
    text-align: center;
}

#footer #xflag ul li
{
    display: inline-block;
    margin: 0 5px 0;
}

#footer #xflag ul li a
{
    color: #FFF;
    text-decoration: underline;
    font-size: 10px;
}

#footer #xflag .spec
{
    color: #fff;
    font-size: 10px;
    line-height: 15px;
}

footer .copyright
{
    display: block;
    height: 30px;
    background-color: #fcff00;
    text-align: center;
    padding-top: 13px;
    font-family: Verdana,Arial,Geneva,Tahoma,sans-serif;
    color: #04009c;
    font-size: 10px;
}

#dialog
{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    outline: 0;
    z-index: 999;
    opacity: 0;
    pointer-events: auto;
}

#dialog .dialog-box
{
    width: 100%;
    height: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

#dialog .dialog-box.firefox
{
    display: block;
    padding: 70px 0 0;
}

#dialog .bg-layer
{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    left: 0;
    top: 0;
}

#dialog .dialog-close-wrap
{
    position: fixed;
    z-index: 5;
    width: 1000px;
    height: 60px;
    /* top: 0; */
    left: 0;
    right: 0;
    /* bottom: 0; */
    margin: auto;
    /* margin: 0 auto; */
}

#dialog .dialog-close-wrap .dialog-close
{
    position: absolute;
    top: 10px;
    right: 30px;
    z-index: 5;
    display: block;
    width: 39px;
    height: 39px;
    background-image: url("./../img/sp/ui/close.png");
    background-repeat: no-repeat;
    background-size: 39px 39px;
    background-position: 0px 0px;
    border-radius: 20px;
    border: 1px solid #aaa;
}

#dialog .dialog-contents
{
    margin-bottom: 40px;
}

#dialog .dialog-contents .character01
{
    background-image: url("./../img/sp/character/character01/list.png");
}

#dialog .dialog-contents .character02
{
    background-image: url("./../img/sp/character/character02/list.png");
}

#dialog .dialog-contents .character03
{
    background-image: url("./../img/sp/character/character03/list.png");
}

#dialog .dialog-contents .character04
{
    background-image: url("./../img/sp/character/character04/list.png");
}

#dialog .dialog-contents .character05
{
    background-image: url("./../img/sp/character/character05/list.png");
}

#dialog .dialog-contents .character06
{
    background-image: url("./../img/sp/character/character06/list.png");
}

#dialog .dialog-contents .chara
{
    display: none;
    background-position: top left;
    margin: 0 auto;
    position: relative;
}

#dialog .dialog-contents .chara .chara-wrap
{
    width: 100%;
    background-color: #fff;
    padding: 6px 0;
    margin: 0 auto 20px;
}

#dialog .dialog-contents .chara .chara-wrap .chara-icon
{
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    border-radius: 147px;
    margin: 0 auto;
}

#dialog .dialog-contents .chara .chara-wrap .chara-name
{
    width: 359px;
    height: 48px;
    background-repeat: no-repeat;
    background-size: 750px 289px;
    background-position: -198px -30px;
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    border-radius: 5px;
    margin: 0 auto;
}

#dialog .dialog-contents .chara .about-gacha, #dialog .dialog-contents .chara .about-quest, #dialog .dialog-contents .chara .schedule-gacha, #dialog .dialog-contents .chara .schedule-quest, #dialog .dialog-contents .chara .schedule-quest-2
{
    overflow: hidden;
    text-indent: 110%;
    white-space: nowrap;
    margin: 0 auto;
}

#dialog .dialog-contents .chara .about-text, #dialog .dialog-contents .chara .schedule-text
{
    position: relative;
    margin: 0 auto 15px;
}

#dialog .dialog-contents .chara .about-text p, #dialog .dialog-contents .chara .schedule-text p
{
    padding-top: 8px;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#dialog .dialog-contents .chara .about-text p span, #dialog .dialog-contents .chara .schedule-text p span
{
    display: block;
    width: 260px;
    margin: 0 auto 10px auto;
}

#dialog .dialog-contents .chara .about-text p span.center, #dialog .dialog-contents .chara .schedule-text p span.center
{
    margin: 0 auto;
}

#dialog .dialog-contents .chara .about-gacha
{
    display: block;
    width: 516px;
    height: 223.2px;
    background-image: url("./../img/sp/dialog/about-gacha.png");
    background-repeat: no-repeat;
    background-size: 516px 223.2px;
    background-position: 0px 0px;
}

#dialog .dialog-contents .chara .about-quest
{
    display: block;
    width: 516px;
    height: 223.2px;
    background-image: url("./../img/sp/dialog/about-quest.png");
    background-repeat: no-repeat;
    background-size: 516px 223.2px;
    background-position: 0px 0px;
}

#dialog .dialog-contents .chara .about-text, #dialog .dialog-contents .chara .schedule-text
{
    display: block;
    width: 516px;
    height: 220.8px;
    background-image: url("./../img/sp/dialog/bg_about-text.png");
    background-repeat: no-repeat;
    background-size: 516px 220.8px;
    background-position: 0px 0px;
}

#dialog .dialog-contents .chara .schedule-gacha
{
    display: block;
    width: 516px;
    height: 223.2px;
    background-image: url("./../img/sp/dialog/schedule-gacha.png");
    background-repeat: no-repeat;
    background-size: 516px 223.2px;
    background-position: 0px 0px;
}

#dialog .dialog-contents .chara .schedule-quest
{
    display: block;
    width: 516px;
    height: 223.2px;
    background-image: url("./../img/sp/dialog/schedule-quest.png");
    background-repeat: no-repeat;
    background-size: 516px 223.2px;
    background-position: 0px 0px;
}

#dialog .dialog-contents .chara .schedule-quest-2
{
    display: block;
    width: 516px;
    height: 223.2px;
    background-image: url("./../img/sp/dialog/schedule-quest_2.png");
    background-repeat: no-repeat;
    background-size: 516px 223.2px;
    background-position: 0px 0px;
}

#dialog .dialog-contents .chara.chara_01 .chara-icon
{
    display: block;
    width: 147px;
    height: 147px;
    background-image: url("./../img/sp/character/character01/list.png");
    background-repeat: no-repeat;
    background-size: 147px 147px;
    background-position: 0px 0px;
}

#dialog .dialog-contents .chara.chara_01 .chara-name
{
    background-image: url(./../img/sp/character/character01/normal/name.png);
}

#dialog .dialog-contents .chara.chara_02 .chara-icon
{
    display: block;
    width: 147px;
    height: 147px;
    background-image: url("./../img/sp/character/character02/list.png");
    background-repeat: no-repeat;
    background-size: 147px 147px;
    background-position: 0px 0px;
}

#dialog .dialog-contents .chara.chara_02 .chara-name
{
    background-image: url(./../img/sp/character/character02/normal/name.png);
}

#dialog .dialog-contents .chara.chara_03 .chara-icon
{
    display: block;
    width: 147px;
    height: 147px;
    background-image: url("./../img/sp/character/character03/list.png");
    background-repeat: no-repeat;
    background-size: 147px 147px;
    background-position: 0px 0px;
}

#dialog .dialog-contents .chara.chara_03 .chara-name
{
    background-image: url(./../img/sp/character/character03/normal/name.png);
}

#dialog .dialog-contents .chara.chara_04 .chara-icon
{
    display: block;
    width: 147px;
    height: 147px;
    background-image: url("./../img/sp/character/character04/list.png");
    background-repeat: no-repeat;
    background-size: 147px 147px;
    background-position: 0px 0px;
}

#dialog .dialog-contents .chara.chara_04 .chara-name
{
    background-image: url(./../img/sp/character/character04/normal/name.png);
}

#dialog .dialog-contents .chara.chara_05 .chara-icon
{
    display: block;
    width: 147px;
    height: 147px;
    background-image: url("./../img/sp/character/character05/list.png");
    background-repeat: no-repeat;
    background-size: 147px 147px;
    background-position: 0px 0px;
}

#dialog .dialog-contents .chara.chara_05 .chara-name
{
    background-image: url(./../img/sp/character/character05/normal/name.png);
}

#dialog .dialog-contents .chara.chara_06 .chara-icon
{
    display: block;
    width: 147px;
    height: 147px;
    background-image: url("./../img/sp/character/character06/list.png");
    background-repeat: no-repeat;
    background-size: 147px 147px;
    background-position: 0px 0px;
}

#dialog .dialog-contents .chara.chara_06 .chara-name
{
    background-image: url(./../img/sp/character/character06/kamika/name.png);
}

#dialog .dialog-contents .chara.conquerd
{
    background-position: right;
}
