@charset "utf-8";



/* For modern browsers */

.cf:before,
.cf:after {
    content: "";
    display: table;
}

.cf:after {
    clear: both;
}

/* For IE 6/7 (trigger hasLayout) */

.cf {
    zoom: 1;
}


/* load
---------------------------------------------------- */
.load_box {
    width: 229px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.load_deco {
    width: 162px;
    height: auto;
    position: absolute;
    top: -110px;
    left: 160px;
    animation: fuwafuwa2 .5s ease 0s infinite;
}

@keyframes fuwafuwa2 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -4%);
    }

    100% {
        transform: translate(0, 0);
    }
}

.bg_pattern_load {
    display: block;
    content: '';
    position: fixed;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    background: url(../img/site_bg_pattern.jpg) repeat left top;
    z-index: -1;
}

@media screen and (max-width: 770px) {
    .load_box {
        width: 158px;
    }

    .load_deco {
        width: 112px;
        height: auto;
        top: -75px;
        left: 110px;
    }

    .bg_pattern_load {
        background-size: 240px 240px;
    }
}

.circle_out {
    content: '';
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 9999;
    pointer-events: none;
    transform: scale(0);
    top: calc(50% - 50px);
    left: calc(50% - 50px);
}

.circle_out.circle_play {
    animation: circle_play 1.5s ease 0.5s forwards;
}

@keyframes circle_play {
    0% {
        transform: scale(0);

    }

    70% {
        transform: scale(50);
    }

    100% {
        transform: scale(0);
    }
}

/* tags
---------------------------------------------------- */
html,
body {
    height: 100%;
}

body {
    margin: 0px;
    padding: 0px;
    color: #000;
    font-family: ryo-gothic-plusn, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    -webkit-text-size-adjust: 100%;
}

body::after {
    content: '';
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 9999;
    pointer-events: none;
    transform: scale(0);
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    transition: all .8s;
}

body.page_move::after {
    transform: scale(50);
}

.circle {
    display: block;
    content: "";
    position: fixed;
    transform: scale(100);
    background-color: #fff;
    z-index: 999;
    top: calc(50% - 1rem);
    left: calc(50% - 1rem);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    animation-name: body_in;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes body_in {
    0% {
        transform: scale(100);

    }

    100% {
        transform: scale(0);
        display: none;
    }
}

.bg_pattern {
    position: relative;
    padding-bottom: 249px;
    overflow: hidden;
}

.bg_pattern::before {
    display: block;
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50%;
    height: 100%;
    background: url(../img/site_bg_pattern.jpg) repeat left top;
    z-index: -4;
}

a,
a:hover {
    color: #000;
    text-decoration: none;
    transition: all .4s;
}

img {
    border: none;
    margin: 0px;
    padding: 0px;
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd,
div,
img {
    margin: 0px;
    padding: 0px;
    list-style: none;
    font-weight: normal;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
    margin: 0px;
    padding: 0px;
}

@media screen and (max-width: 770px) {
    .bg_pattern {
        padding-bottom: 150px;
    }

    .bg_pattern::before {
        background-size: 240px 240px;
    }
}

/* common
---------------------------------------------------- */
.inner1 {
    max-width: 1200px;
    width: 90%;
    margin: 0px auto;
}

.inner2 {
    max-width: 820px;
    width: 90%;
    margin: 0px auto;
}

.title1 {
    position: relative;
    border-top: 4px solid #C6B87C;
    border-bottom: 4px solid #C6B87C;
    padding: 8px 0px 9px;
    text-align: center;
}

.title1::before {
    content: '';
    width: 232px;
    height: 34px;
    background: url(../img/site_heading_deco_top.png) no-repeat center top;
    background-size: contain;
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
}

.title1 img {
    width: 380px;
    height: auto;
}

.subtitle1 {
    text-align: center;
    padding-top: 5px;
    margin-bottom: 50px;
}

.subtitle1 p {
    display: inline-block;
    color: #7C7C7C;
    font-size: 35px;
    line-height: 1;
    font-family: kobenhavn-c-stencil, sans-serif;
    font-weight: 600;
    font-style: normal;
    margin: 7px 0px 0px;
    border-top: 2px solid #C6B87C;
}

@media screen and (max-width: 770px) {

    .inner1,
    .inner2 {
        width: auto;
    }

    .title1 img {
        max-width: 324px;
        width: 100%;
        height: auto;
    }

    .subtitle1 {
        margin-bottom: 30px;
    }
}

/* drawer
---------------------------------------------------- */

.drawer-hamburger {
    width: 88px;
    padding: 0;
    top: 10px;
    right: 10px !important;
}

.drawer--right .drawer-nav {
    box-sizing: border-box;
    width: 487px;
    right: -487px;
    border-left: 5px solid #C6B87C;
}

.drawer-hamburger img {
    transition: all .4s;
    position: absolute;
    top: 0;
    right: 0;
}

.drawer-open .dr_btn_open,
.dr_btn_close {
    visibility: hidden;
    opacity: 0;
}

.drawer-open .dr_btn_close {
    visibility: visible;
    opacity: 1;
}

.dr_logo {
    padding: 50px 0px 0px 60px;
}

.dr_logo img {
    width: 321px;
    height: auto;
}

.dr_tit {
    padding: 50px 0px 0px 60px;
}

.dr_tit p {
    color: #E60716;
    font-size: 38px;
    line-height: 1;
    font-family: kobenhavn-c-stencil, sans-serif;
    font-weight: 600;
    font-style: normal;
    padding: 0px 0px 2px;
    border-bottom: 2px solid #C6B87C;
}

.dr_item {
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    margin-top: 44px;
    padding: 0px 0px 0px 94px;
    position: relative;
}

.dr_item img {
    position: absolute;
    left: 60px;
    transition: all .4s;
}

.dr_item:hover img {
    position: absolute;
    left: 65px;
    transition: all .2s;
}

.dr_item a {
    display: block;
    padding-bottom: 12px;
    background: url(../img/site_fixed_menu_dot.png) repeat-x left bottom;
}

.dr_item a:hover,
.dr_item a:hover .blue {
    color: #E60716;
}

.red {
    color: #E60716;
}

.blue {
    color: #00479D;
}

.dr_sns {
    padding-left: 60px;
    margin-top: 20px;
    padding-bottom: 50px;
}

.dr_sns a {
    display: inline-block;
}

.dr_sns a:hover {
    opacity: 0.6;
}

.dr_sns img {
    width: 42px;
    height: auto;
    margin-right: 20px;
}

@media screen and (max-width: 770px) {
    .drawer-hamburger {
        width: 72px;
        top: 0px;
        right: 0px !important;
    }

    .drawer--right .drawer-nav {
        width: 100%;
        right: -100%;
    }

    .dr_logo {
        padding: 50px 0px 0px 20px;
    }

    .dr_logo img {
        width: 300px;
        height: auto;
    }

    .dr_tit {
        padding: 50px 0px 0px 30px;
    }

    .dr_item {
        padding: 0px 0px 0px 60px;
    }

    .dr_item img {
        left: 30px;
    }

    .dr_item:hover img {
        left: 35px;
    }

    .dr_sns {
        padding-left: 30px;
        padding-bottom: 40px;
    }
}

/* loop
---------------------------------------------------- */
#loop1 {
    display: block;
    position: fixed;
    top: 0;
    left: 1.19%;
    z-index: 1;
    width: 3.48%;
    height: 100%;
    background: url(../img/site_fixed_deco_repeat_l.png) repeat-y;
    background-position: 0 0;
    background-size: 100% auto;
    opacity: 0;
    animation: fadein1 1s ease 1.5s forwards,
        bgloop1 22s linear infinite;
}

#loop2 {
    display: block;
    position: fixed;
    top: 0;
    right: 1.56%;
    z-index: 1;
    width: 0.93%;
    height: 100%;
    background: url(../img/site_fixed_deco_repeat_r.png) repeat-y;
    background-position: 0 0;
    background-size: 100% auto;
    opacity: 0;
    animation: fadein1 1s ease 1.5s forwards,
        bgloop2 9s linear infinite;
}

@keyframes bgloop1 {
    from {
        background-position: 0 940px;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes bgloop2 {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 335px;
    }
}

@keyframes fadein1 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 770px) {
    #loop1 {
        left: 0;
        width: 26px;
        z-index: -2;
    }

    #loop2 {
        right: 0;
        width: 18px;
        z-index: -2;
    }
}

/* mv_animation
---------------------------------------------------- */

.slide-play .top_mv_01 {
    opacity: 0;
    animation: top_mv_01 .4s ease .5s forwards;
}

@keyframes top_mv_01 {
    0% {
        opacity: 0;
        transform: scale(1.7);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.slide-play .top_mv_01_catchphrase {
    opacity: 0;
    animation: top_mv_01_catchphrase .4s ease .9s forwards;
}

@keyframes top_mv_01_catchphrase {
    0% {
        opacity: 0;
        transform: translate(0, 20%);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.slide-play .site_logo {
    opacity: 0;
    animation: site_logo .4s ease 1.3s forwards;
}

@keyframes site_logo {
    0% {
        opacity: 0;
        transform: translate(-20%, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.slide-play .top_mv_cachcopy_pc {
    opacity: 0;
    animation: top_mv_cachcopy_pc .4s ease 1.3s forwards;
}

.top_mv_cachcopy {
    text-align: center;
}

@keyframes top_mv_cachcopy_pc {
    0% {
        opacity: 0;
        transform: translate(20%, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.slide-play .top_mv_fade {
    opacity: 0;
    animation: fadein1 .4s ease 1.7s forwards;
}

.slide-play .top_mv_01_deco {
    opacity: 0;
    animation: top_mv_01_deco 1s ease 2.1s forwards,
        fuwafuwa 3s ease 3.5s infinite;
}

@keyframes top_mv_01_deco {
    0% {
        opacity: 0;
        transform: translate(0, 3%);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes fuwafuwa {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -1.2%);
    }

    100% {
        transform: translate(0, 0);
    }
}



/* top_mv
---------------------------------------------------- */

.top_bg_deco {
    position: absolute;
    top: -6.5%;
    left: 18.48%;
    width: 38.54%;
    height: auto;
    z-index: -1;
}

#top_mv {
    width: 1718px;
    width: 90%;
    margin: 0px auto;
    position: relative;
}

#top_mv .sp {
    display: none;
}

.site_bg_deco {
    position: absolute;
    bottom: -305px;
    left: -130px;
    width: 38.02%;
    height: auto;
    z-index: -1;
}

.top_mv_right {
    width: 53.72%;
    float: right;
    position: relative;
    margin-top: 10px;
    margin-top: 0.6%;
}

.top_mv_right .top_mv_01,
.top_mv_right .top_mv_01_catchphrase,
.top_mv_right .top_mv_01_deco {
    width: 100%;
    height: auto;
}

.top_mv_right .top_mv_01_catchphrase,
.top_mv_right .top_mv_01_deco {
    position: absolute;
    top: 0px;
    left: 0px;
}

.top_mv_left {
    width: 45.11%;
    float: left;
    margin-top: 4.5%;
}

.top_mv_left h1 img {
    width: 100%;
    height: auto;
}

.top_mv_left p {
    width: 70%;
    margin: 4% auto 0px;
}

.top_mv_youtube {
    width: 83.61%;
    height: 48%;
    margin: 6.5% auto 0px;
    position: relative;
}

.top_mv_youtube a:hover {
    opacity: 0.6;
}

.yt-wrapper {
    display: block;
    position: relative;
    width: 100%;
}

.yt-wrapper:before {
    content: "";
    display: block;
    padding-top: 57.25%;
}

.yt-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.top_movie_flame {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
}

.top_mv_left ul {
    width: 90.7%;
    margin: 4.5% auto 0px;
}

.top_mv_left li {
    display: block;
    width: 48%;
    float: left;
}

.top_mv_left li:nth-child(2) {
    float: right;
}

.btn_style1 {
    display: block;
    position: relative;
}

.btn_style1 span {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.btn_style1 span:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #c6b87c;
    opacity: 0.7;
    transition: .4s;
}

.btn_style1 span:hover:before {
    width: 100%;
}

@media screen and (max-width: 770px) {
    .top_bg_deco {
        position: absolute;
        top: -2.5%;
        left: auto;
        right: -22%;
        width: 80%;
        height: auto;
        z-index: -1;
    }

    #top_mv {
        width: auto;
    }

    .site_bg_deco {
        position: absolute;
        bottom: -13%;
        left: -30%;
        width: 90%;
        height: auto;
        z-index: -1;
    }

    #top_mv .sp {
        display: block;
    }

    #top_mv .pc {
        display: none;
    }

    h1.sp_title {
        width: 95%;
        margin: 0px auto;
        position: relative;
        z-index: 2;
        margin-top: 3%;
    }

    .top_mv_right {
        width: 100%;
        float: none;
        margin-top: -5.5%;
    }

    .top_mv_right .top_mv_01_catchphrase,
    .top_mv_right .top_mv_01_deco {
        top: 0;
    }

    .top_mv_left {
        width: 95%;
        float: none;
        margin: 0px auto;
    }

    .top_mv_left p {
        width: 80%;
        margin-top: 5%;
    }

    .top_mv_youtube {
        width: 100%;
        height: 60%;
        margin-top: 8%;
    }

    .top_mv_left ul {
        width: auto;
        margin: 0;
    }

    .top_mv_left li,
    .top_mv_left li:nth-child(2) {
        width: auto;
        float: none;
        margin-top: 8%;
    }

}

/* info
---------------------------------------------------- */
#info {
    margin: 13.02% 0px 0px;
    position: relative;
}

#info::after {
    content: '';
    width: 232px;
    height: 34px;
    background: url(../img/site_heading_deco_bottom.png) no-repeat center top;
    background-size: contain;
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
}

.info_contents {
    border: 3px solid #C6B87C;
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    background-image: url(../img/site_contents_deco_r.png), url(../img/site_contents_deco_l.png);
    background-repeat: no-repeat;
    background-position: right top, left bottom;
    background-size: 273px auto;
}

.info_left,
.info_right {
    width: 45.7%;
    float: left;
    height: 568px;
    position: relative;
}

.info_right {
    float: right;
}

.news {
    height: 468px;
    overflow: auto;
    background: rgba(255, 255, 255, 0.64);
    box-sizing: border-box;
    padding: 0px 20px 0px 20px;
}

.news::-webkit-scrollbar {
    width: 18px;
}

.news::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 0px;
    background: url(../img/scroll_back.png) repeat-y center top;
}

.news::-webkit-scrollbar-thumb {
    border-radius: 0px;
    border: 2px solid #E60716;
    background: #fff;
}

.news dl {
    padding: 20px 0px 24px;
    background: url(../img/site_fixed_menu_dot.png) repeat-x left bottom;
}

.news dt {
    letter-spacing: 0.88px;
    color: #E60716;
    font-size: 22px;
    line-height: 1;
    font-family: kobenhavn-c-stencil, sans-serif;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 10px;
}

.news dd {
    color: #231815;
    font-size: 16px;
    line-height: 1.4;
}

.news dd a:hover {
    opacity: 0.6;
}

.btn_style2,
.btn_style3 {
    border: 3px solid #E60716;
    padding: 3px;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    position: relative;
}

#info .btn_style2 {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.btn_style2.blue,
.btn_style3 {
    border: 3px solid #00479D;
}

.btn_style2::before,
.btn_style3::before,
.page_menu a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    left: 0;
    display: block;
    background: #E60716;
    transition: .4s;
}

.page_menu a::before {
    z-index: -1;
}

.btn_style2.blue::before,
.btn_style3::before {
    background: #00479D;
}

.btn_style2:hover:before,
.btn_style3:hover:before,
.page_menu a:hover::before {
    width: 100%;
}

.btn_style2 a,
.btn_style3 a {
    border: 1px solid #E60716;
    font-family: vdl-v7mincho, sans-serif;
    font-weight: 800;
    font-style: normal;
    display: block;
    color: #E60716;
    text-decoration: none;
    position: relative;
    font-size: 20px;
    line-height: 60px;
    height: 60px;
    text-align: center;
    background: url(../img/site_btn_arrow_r_red.svg) no-repeat right 6px center;
    background-size: 16% auto;
}

.btn_style2.blue a {
    border: 1px solid #00479D;
    color: #00479D;
    background: url(../img/site_btn_arrow_r_blue.svg) no-repeat right 6px center;
    background-size: 16% auto;
}

.btn_style3 a {
    border: 1px solid #00479D;
    color: #00479D;
    background: url(../img/site_btn_arrow_l_blue.svg) no-repeat left 6px center;
    background-size: 16% auto;
}

.btn_style2 a:hover {
    color: #fff;
    background: url(../img/site_btn_arrow_r_white.svg) no-repeat right 6px center;
    background-size: 16% auto;
}

.btn_style3 a:hover {
    color: #fff;
    background: url(../img/site_btn_arrow_l_white.svg) no-repeat left 6px center;
    background-size: 16% auto;
}

.tw_area {
    background: rgba(152, 134, 58, 0.6);
}

@media screen and (max-width: 770px) {
    #info {
        margin: 45% 0px 0px;
    }

    .info_contents {
        width: 95%;
        margin: 0px auto;
        box-sizing: border-box;
        padding: 30px 10px;
        background-size: 198px auto;
    }

    .info_left,
    .info_right {
        width: auto;
        float: none;
        height: auto;
    }

    .news {
        height: 300px;
        padding: 0px 10px 0px;
        margin-bottom: 25px;
    }

    .news dd {
        font-weight: 900;
    }

    .btn_style2 {
        border: 3px solid #E60716;
        padding: 3px;
        width: 100%;
        box-sizing: border-box;
        background: #fff;
    }

    #info .btn_style2 {
        position: relative;
        bottom: auto;
        left: auto;
    }

    .tw_area {
        margin-top: 40px;
        margin-bottom: 25px;
    }
}


/* intro
---------------------------------------------------- */
.intro_wrap {
    padding: 14% 0px 90px;
    position: relative;
    background: url(../img/top_intro_bg.jpg) repeat-x center bottom;
    background-size: auto 60%;
}

.top_info_bg_deco {
    position: absolute;
    top: -135px;
    left: 50%;
    transform: translateX(210px);
    width: 32.5%;
    height: auto;
    z-index: -1;
}

.top_intro_deco {
    position: absolute;
    bottom: 0px;
    right: 25%;
    width: 26.92%;
    height: auto;
    z-index: 2;
}

.top_intro_deco_sp_box {
    display: none;
}

.intro_txt {
    box-sizing: border-box;
    width: 57.25%;
    border: 3px solid #C6B87C;
    background-color: #fff;
    padding: 46px 57px;
    margin-left: 8.5%;
}

.intro_txt h3 img {
    max-width: 567px;
    width: 100%;
    height: auto;
}

.intro_txt p img {
    max-width: 385px;
    width: 100%;
    height: auto;
    margin-top: 6px;
}

@media screen and (max-width: 1200px) {
    .top_intro_deco {
        right: 15%;
    }
}

@media screen and (max-width: 770px) {
    .intro_wrap {
        padding: 45% 0px 0px;
        background: none;
    }

    .top_info_bg_deco {
        position: absolute;
        top: -5%;
        left: 50%;
        transform: translateX(-35%);
        width: 80%;
        height: auto;
        z-index: -1;
    }

    .top_intro_deco_sp_box {
        display: block;
        height: 275px;
        background: url(../img/top_intro_bg.jpg) repeat-x center top;
        background-size: auto 100%;
        overflow: hidden;
        text-align: center;
        box-sizing: border-box;
        padding-top: 28px;
    }

    .top_intro_deco_sp {
        max-width: 302px;
        width: 72.94%;
        height: auto;
    }

    .top_intro_deco {
        display: none;
    }

    .intro_txt {
        width: auto;
        padding: 40px 17px;
        margin-left: 0;
        position: relative;
    }

    .intro_txt::after {
        content: '';
        width: 232px;
        height: 34px;
        background: url(../img/site_heading_deco_bottom.png) no-repeat center top;
        background-size: contain;
        position: absolute;
        bottom: -37px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* staff books
---------------------------------------------------- */
#staff,
#books {
    margin-top: 13.02%;
    position: relative;
}

.books_bottom_line {
    padding-bottom: 85px;
    border-bottom: 4px solid #C6B87C;
}

#staff::after,
#books::after {
    content: '';
    width: 232px;
    height: 34px;
    background: url(../img/site_heading_deco_bottom.png) no-repeat center top;
    background-size: contain;
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
}

.top_staffcast_bg_deco {
    width: 27.6%;
    height: auto;
    position: absolute;
    top: -325px;
    left: 50%;
    transform: translateX(-915px);
}

.top_bg_deco_staff {
    width: 61%;
    width: 740px;
    height: auto;
    position: absolute;
    top: 350px;
    left: 50%;
    transform: translateX(140px);
    z-index: -1;
}

.site_bg_deco_books {
    width: 59%;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-990px);
    top: -95px;
    z-index: -1;
}

.staffcast {
    padding: 20px 50px 60px;
    border-bottom: 4px solid #C6B87C;
}

.books {
    position: relative;
    padding: 20px 50px 74px;
}

.staff,
.novels {
    width: 45.7%;
    float: left;
}

.cast,
.comics {
    width: 45.7%;
    float: right;
}

.staffcast h3,
.books h3 {
    border-bottom: 2px solid #C6B87C;
    letter-spacing: 0.76px;
    font-size: 38px;
    line-height: 1;
    font-family: kobenhavn-c-stencil, sans-serif;
    font-weight: 600;
    font-style: normal;
    padding-bottom: 3px;
}

.staff h3,
.novels h3 {
    color: #E60716;
}

.cast h3,
.comics h3 {
    color: #00479D;
}

.staffcast dl {
    margin-top: 25px;
}

.staffcast dt {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 900;
}

.staff dt {
    color: #E60716;
}

.cast dt {
    color: #00479D;
}

.staffcast dd {
    font-size: 20px;
    color: #231815;
    line-height: 1.5;
}

.staffcast dd span {
    font-size: 17px;
}

@media screen and (max-width: 770px) {
    .top_staffcast_bg_deco {
        width: 52%;
        height: auto;
        position: absolute;
        top: -16%;
        left: 0px;
        transform: translateX(0px);
    }

    .top_bg_deco_staff {
        width: 313px;
        height: auto;
        top: auto;
        bottom: -120px;
        left: auto;
        right: 0px;
        transform: translateX(0px);
    }

    .site_bg_deco_books {
        width: 70%;
        height: auto;
        position: absolute;
        left: 0;
        transform: translateX(0px);
        top: 0;
    }

    #staff,
    #books {
        margin-top: 45%;
    }

    .books_bottom_line {
        padding-bottom: 0px;
    }

    .staffcast,
    .books {
        padding: 20px 0px 60px;
    }

    .staff,
    .novels,
    .cast,
    .comics {
        float: none;
        width: 95%;
        margin: 0px auto;
    }

    .cast,
    .comics {
        margin-top: 60px;
    }
}

@media screen and (max-width: 480px) {

    .staffcast h3,
    .books h3 {
        font-size: 33px;
    }

    .staffcast dt {
        font-size: 18px;
    }

    .staffcast dd {
        font-size: 18px;
    }

    .staffcast dd span {
        font-size: 15px;
    }
}

@media screen and (max-width: 375px) {
    .staffcast dt {
        font-size: 16px;
    }

    .staffcast dd {
        font-size: 16px;
    }
}

/* books
---------------------------------------------------- */
.site_footer_bg_deco {
    width: 717px;
    height: auto;
    position: absolute;
    left: 69%;
    bottom: -220px;
}

.books .btn_style2 {
    position: absolute;
    bottom: 0px;
    width: 41.8%;
}

.books .comics .btn_style2 {
    right: 50px;
}

.books ul {
    margin: 30px 0px 4.2%;
}

.books li {
    width: 30.8%;
    float: left;
    display: block;
    margin: 0px 3.8% 3.8% 0px
}

.books li:nth-child(3n) {
    margin-right: 0px;
}

.books li:nth-child(3n+1) {
    clear: both;
}

@media screen and (max-width: 770px) {
    .site_footer_bg_deco {
        width: 70%;
        height: auto;
        position: absolute;
        left: auto;
        right: 0px;
        bottom: -130px;
    }

    .books .btn_style2,
    .books .comics .btn_style2 {
        position: relative;
        bottom: auto;
        width: auto;
        right: auto;
    }
}

/* footer
---------------------------------------------------- */
#footer {
    background-image: url(../img/site_footer_deco_line.png), url(../img/site_footer_deco_repeat.png);
    background-repeat: repeat-x;
    background-position: center top, center bottom 33px;
    background-size: auto 169px, auto 21px;
    padding: 169px 0px 74px;
    text-align: center;
    margin-top: -169px;
}

#footer p {
    line-height: 1;
    font-size: 15px;
    letter-spacing: 0.75px;
}

#footer p br {
    display: none;
}

@media screen and (max-width: 770px) {
    #footer {
        background: url(../img/site_footer_deco_line.png) repeat-x center top,
            url(../img/site_footer_deco_repeat.png) repeat-x center bottom 20px;
        background-size: auto 84.5px, auto 21px;
        padding: 84.5px 0px 60px;
        margin-top: -84.5px;
        position: relative;
        z-index: -3;
    }

    #footer p {
        line-height: 1.6;
        font-size: 15px;
    }

    #footer p br {
        display: inline;
    }
}

/* fadein
---------------------------------------------------- */

.fadein {
    opacity: 0;
    transform: translate(0, 120px);
    transition: transform 1s, opacity 1s;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

.f_scale {
    opacity: 0;
    transform: scale(2);
    transition: transform .5s, opacity .5s;
}

.f_scale.f_scale_size {
    opacity: 1;
    transform: scale(1);
}

/* news
---------------------------------------------------- */
.page_header {
    width: 291px;
    height: auto;
    position: relative;
    z-index: 2;
    margin: 20px 20px 30px;
}

.news_contents,
.onair_contents,
.special_contents,
.story_contents {
    background-color: rgba(255, 255, 255, 0.64);
    background-image: url(../img/site_contents_deco_r.png), url(../img/site_contents_deco_l.png);
    background-position: right top, left bottom;
    background-repeat: no-repeat;
    background-size: 273px auto;
    padding: 0px 40px 70px;
    border-bottom: 4px solid #C6B87C;
    position: relative;
    margin-bottom: 108px;
}

.news_contents::after,
.onair_contents::after,
.special_contents::after,
.story_contents::after {
    content: '';
    width: 232px;
    height: 34px;
    background: url(../img/site_heading_deco_bottom.png) no-repeat center top;
    background-size: contain;
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
}

#news dl {
    padding: 20px 0px 24px;
    background: url(../img/site_fixed_menu_dot.png) repeat-x left bottom;
}

#news dt {
    letter-spacing: 0.88px;
    color: #E60716;
    font-size: 22px;
    line-height: 1;
    font-family: kobenhavn-c-stencil, sans-serif;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 10px;
}

#news dt img {
    width: 98px;
    height: auto;
    vertical-align: middle;
    margin: -3px 0px 0px 10px;
}

#news dd {
    color: #231815;
    font-size: 16px;
    line-height: 1.4;
}

#news dd a:hover {
    opacity: 0.6;
}

.back_btn_box {
    max-width: 500px;
    margin: 0px auto;
}

.site_bg_deco2 {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-950px);
    width: 730px;
    height: auto;
    z-index: -1;
}

.site_footer_bg_deco2 {
    width: 717px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(240px);
    bottom: 0px;
    z-index: -3;
}

@media screen and (max-width: 770px) {
    .page_header {
        width: 231px;
        height: auto;
        position: relative;
        z-index: 2;
        margin: 10px 10px 60px;
    }

    .news_contents,
    .onair_contents,
    .special_contents,
    .story_contents {
        margin: 0px 0 90px;
        background-size: 198px auto;
        padding: 0px 2.5% 70px;
    }

    .back_btn_box {
        max-width: 500px;
        width: 95%;
        margin: 0px auto;
    }

    .site_bg_deco2 {
        position: absolute;
        top: -20px;
        left: -70px;
        transform: translateX(0px);
        width: 65%;
        height: auto;
        z-index: -1;
    }

    .site_footer_bg_deco2 {
        width: 60%;
        height: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-40px);
    }
}


/* special
---------------------------------------------------- */
.special_contents .title_type3 {
    margin-top: 40px;
}

.special_contents .title_type3:first-child {
    margin-top: 0px;
}

.special_list li {
    width: 31.62%;
    display: block;
    float: left;
    margin: 0 2.56% 2.56% 0;
}

.special_list li:nth-child(3n) {
    margin-right: 0;
}

.special_list li:nth-child(3n+1) {
    clear: both;
}

.special_list li p {
    letter-spacing: 0.75px;
    color: #00479D;
    font-size: 15px;
    line-height: 1.4;
    margin-top: 5px;
    font-weight: bold;
}

@media screen and (max-width: 770px) {
    .special_list li {
        width: auto;
        float: none;
        margin: 0 0 20px;
        text-align: center;
    }

    .special_list li img {
        width: 100%;
        height: auto;
    }

    .special_list li p {
        margin-top: 8px;
        text-align: left;
    }
}

/* story
---------------------------------------------------- */
.page_menu {
    margin-bottom: 70px;
}

.page_menu a {
    display: block;
    color: #E60716;
    letter-spacing: 0.42px;
    font-size: 21px;
    line-height: 1;
    border: 2px solid #E60716;
    float: left;
    font-family: kobenhavn-c-stencil, sans-serif;
    font-weight: 600;
    font-style: normal;
    padding: 3px 10px 6px;
    margin: 0px 4px 5px 0px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.page_menu a:hover {
    color: #fff;
}

.story_item+.story_item {
    margin-top: 90px;
}

.story_title {
    font-weight: 900;
    font-size: 20px;
    line-height: 1.4;
    background: url(../img/site_fixed_menu_dot.png) repeat-x left bottom;
    padding: 0px 0px 10px 6px;
    margin: 0px 0px 20px;
    display: flex;
    align-items: center;
}

.story_title img {
    width: 24px;
    height: auto;
    margin: 0px 5px 0 0;
}

.story_title_number {
    font-size: 35px;
    font-family: kobenhavn-c-stencil, sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #00479D;
    letter-spacing: 0.7px;
    margin: -5px 8px 0 0;
}

.story_contents .story_slider {
    margin-bottom: 60px;
}

.story_contents .slick-dots li button:before {
    color: #C6B87C;
    opacity: 1;
}

.story_contents .slick-dots li.slick-active button:before {
    color: #E60716;
    opacity: 1;
}

.story_item .yt-wrapper {
    margin: 35px 0;
}

.story_item p {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.75px;
    margin: 20px 0;
}

.story_item .small {
    font-size: 13px;
    letter-spacing: 0.65px;
}

@media screen and (max-width: 770px) {
    .page_menu a {
        letter-spacing: 0.36px;
        font-size: 18px;
        margin: 0px 17px 17px 0px;
    }

    .page_menu {
        margin-bottom: 48px;
    }

    .story_title {
        padding: 0px 0px 10px;
        margin: 0px 0px 17px;
    }

    .story_item .yt-wrapper {
        margin: 30px 0;
    }
}

/* onair
---------------------------------------------------- */
.onair_contents .title_type3 {
    margin-top: 60px;
}

.onair_contents .title_type3:first-child {
    margin-top: 0px;
}

.onair_contents .bold_txt {
    font-weight: 900;
    margin: 40px 0px 15px;
    line-height: 1.5;
}

.onair_table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    margin-bottom: 15px;
}

.onair_table th {
    background-color: #C6B87C;
    color: #fff;
    text-align: left;
    font-size: 15px;
    line-height: 1;
    padding: 5px 7px;
    letter-spacing: 0.75px;
}

.onair_table tr th:first-child {
    border-radius: 13px 0 0 13px;
    width: 37%;
    word-break: break-all;
}

.onair_table tr th+th {
    border-radius: 0 13px 13px 0;
}

.onair_table td {
    padding: 20px 5px;
    border-bottom: 1px solid #C6B87C;
    font-size: 15px;
    letter-spacing: 0.75px;
    line-height: 1.4;
    word-break: break-all;
}

.onair_table td p {
    font-size: 15px;
    color: #231815;
    letter-spacing: 0.75px;
    line-height: 1.4;
    font-weight: 900;
    word-break: break-all;
}

p.small_txt,
.onair_table td p.small_txt {
    font-size: 12px;
    letter-spacing: 0.6px;
    font-weight: 500;
    line-height: 1.4;
}

.onair_table td p+p {
    margin-top: 5px;
}

.onair_table a {
    color: #E60716;
    text-decoration: underline;
    word-break: break-all;
}

.onair_table a:hover {
    opacity: 0.6;
}

/* news_detail
---------------------------------------------------- */
.news_detail a {
    color: #E60716;
    text-decoration: underline;
    word-break: break-all;
}

.news_detail a:hover {
    opacity: 0.6;
}

.news_detail p {
    letter-spacing: 0.75px;
    font-size: 15px;
    line-height: 1.7;
    margin: 20px 0px;
}

.news_detail .date {
    font-size: 22px;
    font-weight: 900;
    color: #E60716;
    font-family: kobenhavn-c-stencil, sans-serif;
    font-weight: 600;
    font-style: normal;
    margin: 0px;
}

.news_detail .dot_line {
    background: url(../img/site_fixed_menu_dot.png) repeat-x left bottom;
    padding-bottom: 20px;
}

.news_detail .bold {
    font-weight: 900;
}

.news_detail .small {
    font-size: 13px;
}

.news_detail .title_type1 {
    font-weight: 900;
    font-size: 20px;
    line-height: 1.5;
    background: url(../img/site_fixed_menu_dot.png) repeat-x left bottom;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.news_detail .title_type2,
.title_type2 {
    color: #00479D;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 900;
    margin: 0px 0px 20px;
}

.news_detail .title_type3,
.title_type3 {
    font-weight: 900;
    font-size: 24px;
    line-height: 1.5;
    background: url(../img/site_fixed_menu_dot.png) repeat-x left bottom,
        url(../img/site_heading_deco.png) no-repeat left 6px;
    background-size: auto auto, 24px auto;
    padding: 0px 0px 10px 27px;
    margin: 0px 0px 20px;
}



.img_center_small {
    margin: 20px 0px;
    text-align: center;
}

.img_center_small img {
    max-width: 604px;
    width: 100%;
    height: auto;
}

.col_2_1 figure {
    width: 49%;
    float: left;
}

.col_2_1 .txt {
    width: 49%;
    float: right;
}

.col_2_2 figure {
    width: 23%;
    float: left;
}

.col_2_2 .txt {
    width: 74%;
    float: right;
}

@media screen and (max-width: 770px) {

    .col_2_1 figure,
    .col_2_1 .txt,
    .col_2_2 figure,
    .col_2_2 .txt {
        width: auto;
        float: none;
    }

    .col_2_1 figure,
    .col_2_2 figure {
        text-align: center;
        margin: 0px 0px 20px;
    }

    .col_2_1 figure img {
        max-width: 314px;
        width: 100%;
        height: auto;
    }

    .col_2_2 figure img {
        max-width: 210px;
        width: 100%;
        height: auto;
    }
}

/* character
---------------------------------------------------- */
.chara_contents {
    background-color: rgba(255, 255, 255, 0.64);
    background-image: url(../img/site_contents_deco_r.png), url(../img/site_contents_deco_l.png);
    background-position: right top, left bottom;
    background-repeat: no-repeat;
    background-size: 273px auto;
    padding: 0px 0px 58px;
    border-bottom: 4px solid #C6B87C;
    position: relative;
    margin-bottom: 108px;
}

.chara_contents::after {
    content: '';
    width: 232px;
    height: 34px;
    background: url(../img/site_heading_deco_bottom.png) no-repeat center top;
    background-size: contain;
    position: absolute;
    bottom: -34px;
    left: 50%;
    transform: translateX(-50%);
}

.tab li {
    width: 8.5%;
    display: block;
    float: left;
    margin: 0px 1.66% 1.66% 0px;
}

.tab li:nth-child(10n) {
    margin-right: 0px;
}

.tab li:nth-child(10n + 1) {
    clear: both;
}

.tab a {
    display: block;
    position: relative;
    transition: all .4s;
}

.tab a::before {
    content: '';
    background: url(../img/chara/thumb_select.png) no-repeat left top;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    transition: all .4s;
    opacity: 0;
    visibility: hidden;
}

.tab a.selected::before,
.tab a:hover:before {
    transition: all .4s;
    opacity: 1;
    visibility: visible;
}

.tab .selected {
    pointer-events: none;
    cursor: default;
}

.panel {
    padding: 81px 45px 0px 54px;
}

.chara_mv {
    width: 45.41%;
    float: left;
    position: relative;
    text-align: center;
}

.chara_mv_illust {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 0px;
    z-index: 2;
    animation: slide 1s ease 0s forwards;
}

.illust_bg {
    animation: slide2 1s ease 0s forwards;
}

.chara_txt {
    width: 45.41%;
    float: right;
    opacity: 0;
    animation: fadein1 1s ease 0s forwards;
}

.chara_txt p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.75px;
    margin: 15px 0px;
}

@keyframes slide {
    from {
        transform: translate(-90%, 0);
    }

    to {
        transform: translate(-50%, 0);
    }
}

@keyframes slide2 {
    from {
        transform: translate(40%, 0);
    }

    to {
        transform: translate(0, 0);
    }
}

@media screen and (max-width: 770px) {
    .chara_contents {
        margin: 0px 0 90px;
        background-size: 198px auto;
    }

    .tab {
        padding: 0px 5%;
    }

    .tab li,
    .tab li:nth-child(10n) {
        width: 17%;
        margin: 0px 3.75% 3% 0px;
    }

    .tab li:nth-child(5n) {
        margin-right: 0px;
    }

    .tab li:nth-child(10n + 1) {
        clear: none;
    }

    .tab li:nth-child(5n + 1) {
        clear: both;
    }

    .panel {
        padding: 10px 0px 0px;
    }

    .chara_mv {
        width: auto;
        float: none;
    }

    .chara_txt {
        width: 90%;
        margin: 25px auto 0px;
        float: none;
    }

}


.slider button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.slide-dots {
    text-align: center;
}

.slide-dots li {
    display: inline-block;
    margin: 0 7px;
}

.slide-dots li button {
    position: relative;
    background-color: #C6B87C;
    display: inline-block;
    color: #fff;
    font-size: 27px;
    padding: 4px 12px 7px;
    line-height: 1;
    font-family: kobenhavn-c-stencil, sans-serif;
    font-weight: 600;
    font-style: normal;
    cursor: pointer;
}

.slide-dots li.slick-active button {
    background-color: #E60716;
}

/* bluray
---------------------------------------------------- */
.btn_storelink {
    display: inline-block;
    color: #000 !important;
    background-color: #fff;
    padding: 0.6em 1.6em 0.6em 1.6em;
    border: #000 solid 0.1em;
    text-decoration: none !important;
    font-size: 1em;
    font-weight: normal;
    line-height: 1;
}

.btn_storelink:hover {
    text-decoration: none;
    background-color: #000;
    color: #fff !important;
}

/* トップモーダル
---------------------------------------------------- */
.layer_board_bg,
.layer_board {
	position: absolute;
}
.layer_board_bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1000;
	top: 0;
	left: 0;
	cursor: pointer;
	background: #000;
}
.layer_board {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 70vh;
    max-width: 90%;
	z-index: 2000;
}
.layer_board img {
	width: 100%;
}

/* closeボタン
---------------------------------------------------- */
.btn_close {
	position: absolute;
	display: block;
	top: -50px;
    right: -20px;
	width: 60px;
	height: 60px;
	cursor: pointer;
}
.btn_close span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
	width: 50%;
	height: 2px;
}
.btn_close span:nth-child(1) {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}
.btn_close span:nth-child(2) {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}