@charset "utf-8";

/* ------------------------------------------------------------
*
common parts
*
------------------------------------------------------------ */
body {
    --site_bg_color: #FFF;
    --key_color_1: #b71254;
    --key_color_2: #4a8801;
    --bg_color_2: #D56631;
    --black: #000;
    --main_color: #333;
    --main_color_2: #fff;
    --link_color: #b71254;
    --link_color_hover: #F00;
    --border_color: #666;
    --gnav_color: #FFE422;
    --gnav_color_bg_pc: rgba(255, 255, 255, .9);
    --gnav_color_bg_sp: rgba(255, 228, 34, 1);
    --gnav_color_txt: #FFF;
    --gnav_margin: 1.7rem;
    --sns_quantity: 2;
    --sns_width: 44px;
    --sns_margin: 26px;
    --sns_width_sp: 44px;
    --sns_margin_sp: 26px;

    --base_font: 'Noto Sans JP', sans-serif;
    --base_font_2: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
    --font_secondary: 'Noto Serif JP', serif;
    --tit_font: "Linden Hill", serif;

    --inner_width: 986px;
    background-color: #FFF;
    color: #333;
}

body,
html {
    font-family: var(--base_font);
    height: 100%;
}

*,
::after,
::before {
    box-sizing: inherit;
}

#wrapper {
    height: 100%;
    margin: 0 auto;
    width: 100%;
}

a {
    color: var(--link_color);
    transition: all .2s ease-in;
}

a:hover {
    color: var(--link_color_hover);
}

a:hover img,
a:hover i {
    opacity: .6;
}

.flwrap {
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}

.flcenter {
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.scap {
    font-size: .6rem;
}

.cap {
    font-size: .94rem;
}

.caution {
    font-size: .9em;
}

.vbtm {
    vertical-align: bottom;
}

.vmid {
    vertical-align: middle;
}

.nobd {
    border: none !important;
}

ul:after {
    clear: both;
    content: "";
    display: block;
}

.inner {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 986px;
    padding: 0 1rem;
}

br.sp {
    display: none;
}

br.pc {
    display: block;
}

.switch_pc {
    display: block;
}

.switch_sp {
    display: none;
}

img {
    -o-object-fit: cover;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    vertical-align: middle;
}

.center {
    text-align: center;
}

/* .btn {
    margin: 0 auto;
    width: 260px;
} */

.btn a,.btn span {
    padding: .55rem 0;
    background: var(--key_color_1);
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    color: #FFF;
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.6;
}

.btn a:hover {
    opacity: .7;
}

.btn-outline {
    display: inline-block;
}

.btn-outline a {
    padding: .49rem 1rem;
    min-width: 144px;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: .9rem;
}

.btn-outline a:hover {
    text-decoration: none;
}

.btn-cat a,.btn-cat span {
    border-radius: 5px;
    font-size: .8rem;
    width: 135px;
}

.btn-outline a,
.btn-cat a,
.btn-cat span{
    background-color: transparent;
    border: 1px solid var(--key_color_1);
    color: var(--key_color_1);
    display: block;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
}

.btn-outline a:hover,
.btn-cat a:hover {
    color: var(--key_color_1);
    opacity: .7;
    text-decoration: none;
}

.btn-secondary a {
    background-color: var(--key_color_1);
}

.btn-outline.btn-secondary a {
    color: var(--key_color_2);
    border-color: var(--key_color_2);
}

.btn a.rounded,.btn-outline a.rounded {
    border-radius: 8px;
}

.btn_wrap {
    text-align: center;
}

.bnr_gp {
    margin: 0 auto;
    max-width: 1285px;
}

.bnr_gp ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bnr_gp .bnr_01{
    margin-bottom: 5.6rem;
}

.bnr_gp li {
    margin: 1rem 0 0;
    width: calc(32.4% - 1rem );
    min-height: 93px;
}

.bnr_gp li:first-child{
    margin-left:0 !important;
}

.bnr_gp li:nth-child(2n){
    margin-left:1.9rem;
}

.bnr_gp li:last-child{
    margin-left:2.5rem;
}

.bnr_gp .btn a {
    display: inline-flex;
    position: relative;
    width: 100%;
    height: 100%;
    line-height: 1.3;
    justify-content: center;
    align-items: center;
}

.bnr_gp .btn .more_txt {
    position: absolute;
    right: 12px;
    bottom: 13px;
    font-size: .7rem;
}

/* .bnr_gp .btn_cap {
    display: block;
} */

.bnr_gp .btn_cap a {
    flex-wrap: wrap;
}

.bnr_gp .btn_cap span:not(.more_txt) {
    width: 100%;
}

.bnr_gp .btn_cap span:first-child {
    padding-bottom: 2px;
}

.bnr_gp .btn_cap span.cap {
    padding-left: 13px;
    align-self: flex-start;
    font-size: .7rem;
    text-align: left;
}

/* ------------------------------------------------------------
  *
  header
  *
  ------------------------------------------------------------ */
#header {
    background-color: #fff;
    left: 0;
    min-height: 2.5rem;
    position: fixed;
    top: 0;
    transition: top .3s;
    width: 100%;
    z-index: 2;
}

#header .inner {
    padding: 0;
}

#gnav:after {
    clear: both;
    content: "";
    display: block;
}

#gnav .h_sns {
    float: right;
}

#gnav .h_sns li {
    font-weight: normal;
    line-height: 1;
    margin-bottom: 0;
}

#gnav .h_sns li a {
    color: #FFF;
    font-size: 1.88rem;
    padding: 0 1.7rem;
}

#gnav li {
    float: left;
    font-size: 1.12rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0;
}

#gnav li a {
    color: var(--main_color_2);
    display: block;
    padding: .63rem 1.25rem;
    text-decoration: none;
}

.h-button-share {
    display: none;
}
.button-sns {
    display: flex;
    position: fixed;
    top: 50%;
    left: 0;
    padding: 18px 0 20px;
    width: 32px;
    background-color: rgba(255, 255, 255, .9);
    color: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    z-index: 9;
}

.button-sns a {
    display: flex;
    color: var(--black);;
    white-space: nowrap;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
    transform: rotate(90deg);
}

.button-sns a i {
    font-size: 1.25rem;
}

.button-sns a svg {
    font-size: 1.25rem !important;
}

.button-sns a.ico_twit {
    margin-top: .8rem;
}

.button-sns a.ico_ig {
    margin-top: .6rem;
}

.button-sns__text,
.button-share__text {
    writing-mode: vertical-rl;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: .5px;
}

.button-share {
    display: flex;
    position: relative;
    margin-top: 20px;
    padding-top: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.button-share .list-share {
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
    z-index: 2;
    display: block;
    position: absolute;
    left: 100%;
    top: calc(100% - 2.2rem);
    margin-top: 0;
    padding-left: 12px;
}

.button-share.on .list-share {
    opacity: 1;
    pointer-events: auto;
}

.button-share__icon {
    margin-top: .7rem;
    font-size: 1.25rem;
    transform: rotate(90deg);
}

.list-share__item {
    line-height: 0;
    margin-left: .2rem;
}

.list-share__item:nth-of-type(2) {
    margin-top: .5rem;
    margin-left: 0;
}

/* -------------------------------------------------
*
    scroll animation
*
--------------------------------------------------- */

[data-scroll^=fade]{
    opacity: 0;
    transition-property: opacity,transform;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(.25,.25,.75,.75);
}

[data-scroll=fade-up] {
    transform: translate3d(0,50px,0);
}

[data-scroll=fade-right] {
    transform: translate3d(-100px,0,0);
}

[data-scroll^=fade][data-scroll^=fade].animated {
    opacity: 1;
    transform: translateZ(0);
}

p[data-scroll-delay='2000'] {
    transition-delay: 2s;
}

p[data-scroll-delay='1000'] {
    transition-delay: 1s;
}


/* ------------------------------------------------------------
  *
  common
  *
  ------------------------------------------------------------ */
.t_wrap {
    border-bottom: 1px solid #666;
    margin-bottom: 3rem;
    padding-bottom: .5rem;
    position: relative;
}

.title {
    position: relative;
    color: var(--key_color_1);
    display: block;
    font-family: var(--tit_font);
    font-weight: 500;
    font-size: 4.5rem;
    height: auto;
    line-height: 1.4;
}

.title_jp {
    padding-top: 49px;
    padding-left: 1.5rem;
    font-size: 1.1rem;
    font-family: var(--base_font);
    font-weight: bold;
    line-height: 2;
    text-align: left;
    color: var(--key_color_1);
}

.bg {
    background-color: var(--key_color_1);
}

.bg_2 {
    background-color: #FF5522;
}

.bold {
    font-weight: 700 !important;
}
.bg_bd {
    position: relative;
    font-weight: 700;
}
.bg_bd::after {
    content: '';
    position: absolute;
    bottom: 2%;
    left: 0;
    height: .5rem;
    width: 100%;
    background: #FFF500;
    z-index: -1;
}


.th {
    color: #666;
    padding: 1.8rem 0 1.9rem;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
}

.th .award {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.th .actor {
    margin-bottom: 1.3rem;
    font-size: 1rem;
    line-height: 1.5;
}

.th .director {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.th .other,
.th .billing {
    font-size: .87rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.th .billing {
    margin-bottom: 2.2rem;
}

.th_theatre {
    color: var(--key_color_1);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
}

.th_theatre span {
    font-size: 1.1rem;
    line-height: 1.9;
}

.th_icon {
    position: absolute;
    right: 0;
    top: 5rem;
    width: 138px;
}

/* ------------------------------------------------------------
*
#sec_news
*
------------------------------------------------------------ */

#sec_news {
    background-color: #E6F0F3;
    color: #333;
}

#sec_news .btn-cat {
    margin: 3px 0 0;
    width: 144px;
    height: 22px;
    text-align: center;
    font-size: 0.8rem;
    overflow: hidden;
}

#sec_news .btn-cat a,#sec_news .btn-cat span {
    display: block;
    width: 100%;
    padding: 0 0.5rem;
    font-weight: 400;
    box-sizing: border-box;
    color: var(--key_color_1);
    line-height: 20px;
}

.news .news_in {
    margin-bottom: 3.5rem;
}

.news ul {
    padding-left: 0;
    list-style-type: none;
}

.news .news__copy {
    display: flex;
    margin: 0 !important;
    width: 100%;
    align-items: flex-start;
}

.news .news__copy p {
    margin-bottom: 1.25rem;
    padding: 0 0.9rem;
    font-size: 1rem;
    line-height: 1.65;
}

.news .news__copy .date {
    padding-left: 0;
    display: inline-block;
    white-space: nowrap;
}

.news .news__copy .btn-cat {
    margin-top: 5px;
    margin-right: 0;
    width: 146px;
    font-size: 0.8rem;
}

.news .news__copy .tit {
    width: 70%;
}

.news.news--b .news_in .news__r .news__copy {
    display: flex;
}

.news.news--b .news_in .news__r .news__copy .tit {
    position: relative;
    padding-right: 0;
    width: 76%;
    vertical-align: middle;
}

.news.news--b .news_in .news__r .news__copy .btn-cat {
    margin-right: 0;
}

#sec_news ul li a {
    color: var(--key_color_1);
}

#sec_news ul .tit a:hover {
        color: #FF5522;
        opacity: 1;
}

#sec_news .btn_wrap{
    margin-top: 2.06rem;
}
#sec_news .btn{
    width: 144px;
}
/* .news_list {
    margin-bottom: 2.1rem;
    padding-left: 0;
}

.news_list li {
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    margin: 0 -.93rem;
}

.news_list li p {
    align-self: center;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    padding: 0 .93rem;
}

.news_list li .tit {
    width: 65%;
}

.news_list li .tit a {
    color: #333;
} */

/* ------------------------------------------------------------
*
footer
*
------------------------------------------------------------ */
#footer {
    position: relative;
    background: #000;
    font-size: 1.1rem;
    padding: 0 0 1.25rem;
}


#footer:before {
    content: "";
    display: block;
    position: absolute;
    clear: both;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: url(../img/ft_bg.jpg) no-repeat;
    background-size: cover;
    background-position: bottom;
}

#footer #ft_sns {
    padding: 2rem 0 0;
}

#footer #ft_sns ul {
    margin-bottom: 0;
    padding-left: 0;
    text-align: center;
}

#footer #ft_sns ul li {
    display: inline-block;
    font-size: 2.25rem;
    line-height: 1;
    padding: 0 1.6rem;
}

#footer #ft_sns ul li a {
    color: #FFF;
}

#footer #ft_sns ul li a:hover {
    opacity: .75;
}

#footer #ft_sns ul li i {
    font-size: 2.25rem;
}

#footer .ft_logo {
    padding-top: 5.4rem;
    text-align: center;
    margin: 0 0 1rem;
}

#footer .ft_logo img {
    width: 25rem;
}

#footer .th {
    color: #FFF;
    line-height: 1.7;
    font-size: 1rem;
    text-align: center;
    padding: 0;
}

#footer .th ul {
    margin-bottom: 0;
    padding-bottom: 2.3rem;
    padding-left: 0;
}

#footer .th ul .actors {
    font-size: 1.32rem;
    line-height: 1.7;
    padding-bottom: 1rem;
}

#footer .th ul .support {
    font-size: .75rem;
    font-weight: normal;
    line-height: 1.4;
    padding-bottom: .7rem;
}

#footer .th ul .staff {
    font-size: .6rem;
    font-weight: normal;
    line-height: 1.4;
}

#footer .th .pff {
    margin-bottom: .9rem;
}

#footer .th .actor{
    margin-bottom: .8rem;
}

#footer .th .actor span{
    font-size: .85rem;
}

#footer .th .billing {
    margin-bottom: .8rem;
    font-size: .85rem;
    line-height: 1.3;
}

#footer .th .th_theatre {
    margin-bottom: 0;
    padding-top: 20rem;
    padding-bottom: 0;
    color: #FFF;
    font-size: 1.5rem;
    line-height: 1.45;
}

#footer .th .th_theatre+.th_theatre {
    padding-top: 0;
}

#footer .th .theatre span {
    font-size: 1.1rem;
    line-height: 2.1;
}

#footer .sponser_logo img{
    max-width: 45px;
}

#footer .th_theatre {
    text-align: center;
}

#footer .scap {
    color: #333;
    line-height: 1.8;
}

#footer #copyright {
    color: #FFF;
    font-size: .8rem;
    letter-spacing: initial;
    padding: 1.4em 0 3.5rem;
}

@media (min-width: 768px) {
    .btn-toggle-menu {
        display: none !important;
    }
}


@media (min-width: 768px) and (max-width: 992px) {
    #gnav li a {
        padding: .63rem .6rem;
    }

    .bnr_gp{
        padding: 0 1rem;
    }
    .bnr_gp .btn_xl {
        min-height: 100px;
    }

    .bnr_gp .btn_xl .more_txt{
       bottom: 5px;
       font-size: .6rem;
    }

    .bnr_gp .btn_cap span:first-child {
        padding-bottom: 0;
    }

    .bnr_gp .btn_cap .cap{
        margin-top: 0;
    }


    #footer {
        background-size: cover;
    }
}

@media (max-width: 767px) {
    .switch_pc {
        display: none;
    }

    .switch_sp {
        display: block;
    }

    br.pc {
        display: none;
    }

    br.sp {
        display: block;
    }

    #wrapper {
        min-width: inherit;
    }

    .inner {
        width: 100%;
    }

    /* ------------------------------------------------------------
    *
    header
    *
    ------------------------------------------------------------ */
    #h_top {
        display: none !important;
    }

    #header {
        background: none;
    }

    #header.top {
        top: 0;
    }

    #header .inner {
        width: 100%;
    }

    #header .h_gnav {
        height: 100vh;
    }

    #header .logo {
        padding: 1.6rem 1.25rem 1.75rem;
    }

    #header .logo img {
        width: 11rem;
    }

    #header #gnav {
        background-color: var(--key_color_1);
        clear: both;
        height: 100vh;
        padding: 0;
        position: absolute;
        width: 100%;
        z-index: 200;
        overflow-y: auto;
    }

    #header #gnav .menu {
        border-bottom: 1px solid #ccc;
        border-top: 1px solid #ccc;
        margin: 0 .95rem 1.5rem;
        padding: .8rem 0 1.4rem;
        width: auto;
    }

    #header #gnav .menu li {
        float: none;
        width: 100%;
    }

    #header #gnav .menu li a {
        color: #fff;
        font-size: 1.38rem;
        font-weight: bold;
        line-height: 2;
        padding: .2rem 0;
        text-align: center;
    }

    #header #gnav .h_sns {
        display: -moz-flex;
        display: -ms-flex;
        display: flex;
        margin: 0 .95rem;
        padding-bottom: 1.6rem;
        width: auto;
        border-bottom: 1px solid #ccc;
        float: none;
        justify-content: center;
    }

    #header #gnav .h_sns li {
        width: auto;
    }

    #header #gnav .h_sns li a {
        color: #fff;
        font-size: 2.25rem;
        margin: 0;
        padding: 0 1.3rem;
    }

    #header #gnav .h_sns li:last-child {
        padding-bottom: 0;
    }

    #header #gnav .h_sns li:last-child a {
        border-bottom: none;
    }

    .btn-toggle-menu {
        /* display: none; */
        background-color: var(--key_color_1);
        border-radius: 3px;
        cursor: pointer;
        height: 55px;
        outline: none;
        padding: .6rem 0;
        position: fixed;
        right: 15px;
        top: 15px;
        width: 55px;
        z-index: 201;
    }

    .btn-toggle-menu.close {
        position: absolute;
    }

    .btn-toggle-menu.close .icon-bar {
        left: 4px;
        position: relative;
        right: 15px;
        top: 1px;
    }

    .btn-toggle-menu .icon-bar {
        -webkit-transition: all .2s;
        background-color: #fff;
        border-radius: 1.6px;
        color: #fff;
        display: block;
        height: 4px;
        margin: 0 .94rem;
        transition: all .2s;
        width: 26px;
    }

    .btn-toggle-menu .icon-bar+.icon-bar {
        margin-top: .3rem;
    }

    /* .btn-toggle-menu.collapsed {
        background-color: #FFE422;
    } */

    .btn-toggle-menu.collapsed .top-bar {
        margin-left: 13px;
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: 15% 140%;
        -moz-transform-origin: 15% 140%;
        -ms-transform-origin: 15% 140%;
        border-radius: 3px;
        height: 5px;
        transform: rotate(45deg);
        transform-origin: 15% 140%;
    }

    .btn-toggle-menu.collapsed .middle-bar {
        opacity: 0;
    }

    .btn-toggle-menu.collapsed .bottom-bar {
        margin-left: 13px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform-origin: 0% -70%;
        -moz-transform-origin: 0% -70%;
        -ms-transform-origin: 0% -70%;
        border-radius: 3px;
        height: 5px;
        transform: rotate(-45deg);
        transform-origin: 0% -70%;
    }

    .btn-toggle-menu.collapsed span.toggle-txt {
        color: #fff;
        margin-top: .1rem;
    }

    .btn-toggle-menu .top-bar {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    .btn-toggle-menu .middle-bar {
        opacity: 1;
    }

    .btn-toggle-menu .bottom-bar {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    .btn-toggle-menu:focus {
        outline: none;
    }

    span.toggle-txt {
        color: #fff;
        display: block;
        font-size: .75rem;
        margin-top: .3rem;
        text-align: center;
    }

    .nav-menu-enable {
        max-height: 0;
        overflow: hidden;
        transition: max-height .7s;
    }

    .nav-menu-enable.is-hide .nav-menu-content {
        display: none;
    }

    .nav-menu-enable.is-show {
        display: block;
    }

    .btn-cat a,.btn-cat span {
        width: 115px;
    }

    .h-button-share {
        display: flex;
        position: relative;
        margin-top: 20px;
        padding: 5px 0 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .h-button-share .list-share {
        z-index: 2;
        display: block;
        margin-top: 1rem;
    }

    .h-button-share .button-share__text {
        font-size: 1rem;
    }

    .h-button-share .list-share__item {
        margin: 0 .5rem;
    }

    .button-sns {
        position: relative;
        top: 0;
        left: 0;
        display: none;
        padding-top: 1.8rem;
        width: 100%;
        transform: translateY(0);
        text-align: center;
        background: #2f4752;
        z-index: 0;
    }

    .button-sns a {
        display: inline-block;
        padding: 0 .8rem;
        color: #fff;
        transform: rotate(0deg);
    }

    .button-sns a.ico_twit,
    .button-sns a.ico_insta {
        margin-top: .7rem;
    }

    .button-sns a i {
        font-size: 2rem;
    }

    .button-sns a svg {
        font-size: 2.5rem !important;
    }

    .button-sns__text,
    .button-share__text {
        writing-mode: horizontal-tb;
        font-size: 1.3rem;
        letter-spacing: 1px;
        color: #FFF;
    }

    .button-share {
        display: none;
        margin-top: 1.6rem;
        padding-top: 0;
    }

    .button-share .list-share {
        display: flex;
        position: relative;
        left: auto;
        top: auto;
        margin-top: .5rem;
        padding: 0;
        opacity: 1;
        pointer-events: auto;
        justify-content: center;
        align-items: center;
    }

    .button-share .list-share .list-share__item {
        margin-left: .5rem;
    }

    .button-share .list-share .list-share__item:first-child {
        margin-left: 2px;
    }

    .button-share .list-share .list-share__item:nth-of-type(2) {
        margin-top: .6rem;
    }


    /* ------------------------------------------------------------
    *
    common
    *
    ------------------------------------------------------------ */
    .t_wrap {
        margin-bottom: 2.5rem;
    }

    .title {
        font-size: 3.5rem;
    }

    .title_jp {
        display: block;
        padding-left: 0;
        padding-top: 0;
    }

    .th {
        padding: 2rem 0 0;
    }

    .th .actor {
        margin-bottom: 2rem;
    }



    .th .director {
        margin-bottom: .1rem;
    }

    .th .other,
    .th .billing {
        margin-bottom: 1.2rem;
    }

    .th .billing {
        font-size: .86rem;
        line-height: 1.6;
        margin-bottom: 2.1rem;
    }

    .th .about {
        padding-bottom: 1.5rem;
        text-align: left;
    }

    .th .about p {
        padding-bottom: 2rem;
    }

    .th .about p:last-child {
        padding-bottom: 0;
    }

    .th .btn {
        margin-bottom: 1.6rem;
    }

    .th_theatre+.th_theatre {
        margin-top: .5rem;
    }

    .th_icon {
        float: right;
        padding-bottom: 1rem;
        position: relative;
        top: 0;
        width: 115px;
    }

    /* ------------------------------------------------------------
        *
        #sec_news
        *
    ------------------------------------------------------------ */

    .news .news__copy .date {
        margin-bottom: .5rem;
    }

    .news .news__r .news__copy .btn-cat {
        margin-bottom: .5rem;
    }

    .news .news__r .news__copy .t_right {
        display: block;
    }

    .news.news--b .news_in {
        min-height: 50vw;
    }

    .news.news--b .news_in .news__r .news__copy .tit {
        width: 84%;
    }

    .news.news--b .news__copy .tit_sp {
        display: block;
        margin-bottom: 1.8rem;
        padding: 0;
        width: 100%;
    }

    .news.news--b .news_in .news__r .news__copy.sp-wrap .tit {
        width: 100%;
    }

    .sp-wrap {
        flex-wrap: wrap;
    }


    /* .news_list {
        margin-bottom: 0;
    }

    .news_list li {
        flex-wrap: wrap;
    }

    .news_list li p {
        margin-bottom: .6rem;
    }

    .news_list li .tit {
        display: block;
        margin-bottom: 2rem;
        width: 100%;
    } */

    .bnr_gp .bnr_01 {
        margin-bottom: 2.6rem;
    }

    .bnr_gp li {
        width: 100%;
    }

    .bnr_gp li:nth-child(2n), .bnr_gp li:last-child {
        margin-left: 0;
    }



    .bnr_gp .btn_xl {
        min-height: 105px;
    }

    .bnr_gp .btn_xl a {
        padding-bottom: 1rem;
    }

    .bnr_gp .btn_cap a {
        flex-direction: column;
    }

    .bnr_gp .btn_cap span.cap {
        margin-top: 0;
        align-self: center;
        text-align: center;
    }

    .bnr_gp .btn .more_txt {
        bottom: 5px;
    }

    /* ------------------------------------------------------------
    *
    footer
    *
    ------------------------------------------------------------ */
    #footer {
        position: relative;
        padding: 0 0 1.1rem;
        background: #000;
        background-position-y: center;
    }

    #footer:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
        background: url(../img/ft_bg_sp.jpg) no-repeat;
        background-size: cover;
        background-position: bottom;
    }


    #footer #ft_sns {
        padding: 1.3rem 0;
    }

    #footer .ft_logo {
        padding-top: 1.8rem;
        margin: 0 0 1.26rem;
    }

    #footer .ft_logo img {
        width: 88.7%;
    }

    #footer .th {
        padding: 0 0 .1rem;
        text-align: left;
    }

    #footer .th .mcopy {
        text-align: center;
    }

    #footer .th .actor {
        margin-bottom: .5rem;
    }

    #footer .th .other,
    #footer .th .billing {
        margin-bottom: .9rem;
    }

    #footer .th .billing {
        margin-bottom: .9rem;
        text-align: left;
        font-size: .62rem;
    }

    #footer .sponser_logo {
        text-align: right;
    }

    #footer .th ul {
        padding-bottom: .7rem;
    }

    #footer .th ul .support {
        font-size: .6rem;
        line-height: 1.6;
        padding-bottom: .8rem;
        text-align: left;
    }

    #footer .th ul .staff {
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    #footer .th .th_theatre {
        padding-top: 35vw;
        text-align: center;
    }

    #footer .th .switch_sp {
        display: inline;
    }

    #footer .scap {
        text-align: left;
    }

    #footer #copyright {
        padding-bottom: 1.7em;
    }
}

@media (max-width: 375px) {
    #header #gnav {
        overflow-y: auto;
    }

    /* #header #gnav .h_sns {
        padding-bottom: 6.3rem;
    } */
}

@media (max-width: 320px) {

  .th .actor {
      font-size: .8rem;
  }

  #intro .title{
    font-size: 3.5rem;
  }

  #footer .th .billing {
      margin-top: 1rem;
  }
}
