@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');

body {
	font-family: 'Noto Sans JP', sans-serif;
	background: url("images/bg.jpg") no-repeat;
    background-size: cover;
    padding-top: 4.4rem;
}
a {
	color: #333;
    text-decoration: none;
}
a:hover {
	color: #ffa532;
	text-decoration: none;
}
a:hover img {
	opacity: 0.6;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.container {
    max-width: 1000px;
}
@media (max-width: 999.98px) {
    .container {
        max-width: 100%;
    }
}
/*ハンバーガー */
#menu {
	width: 100%;
	background: rgba(255,255,255,0.95);
	position: fixed;
	left: 0;
    right: 0;
	bottom: 0;
	z-index: 990;
	display: none;
	height: 100%;
    overflow-y: scroll; 
    padding: 5rem 0 0;
}
#menu .menulist {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
#menu .menulist li {
    padding: 15px;
    text-align: center;
}
#menu .menulist li img {
    max-height: 16px;
}
#menu .menulist li:first-child img {
    max-height: 26px;
}
#menu .menulist li.qa img {
    max-height: 19px;
}
#sp-icon {
	width: 70px;
	height: 70px;
	position: fixed;
	right: 1rem;
	top: 0;
	z-index: 999;
}
#sp-icon:hover {
	cursor: pointer;
	opacity: 0.7;
}
/*#sp-icon::before {
	font-weight: 400;
	content: "MENU" !important;
	display: block;
	padding-bottom: 1rem;
    color: #000;
    font-size: 1.2rem;
    text-align: center;
}
#sp-icon.active::before {
	content: "CLOSE" !important;
}*/
#sp-icon span,
#sp-icon span::before,
#sp-icon span::after {
	display: inline-block;
	width: 3.5rem;
	height: 0.3rem;
	background: #000;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.3s;
}
#sp-icon span {
	left: 50%;
	top: 50%;
	transform: translate( -50%, -50% );
}
#sp-icon span::before {
	content: "";
	transform: translateY( -10px ) rotate( 0deg );
}
#sp-icon span::after {
	content: "";
	transform: translateY( 10px ) rotate( 0deg );
}
.sp-open span {
	background: transparent !important;
}
.sp-open span::before {
	transform: rotate( 45deg ) !important;
}
.sp-open span::after {
	transform: rotate( -45deg ) !important;
}
@media (min-width: 768px) {
    #sp-icon {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .gmenublock {
        display: none;
    }
}
.gmenublock {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(255,255,255,0.5);
    z-index: 100;
}
.glogo {
    margin: 1rem auto;
}
.glogo img {
    max-height: 36px;
}
.gmenu {
    margin: 1rem auto;
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: flex-end;
}
.gmenu li {
    margin: 0 1rem;
}
.gmenu li.qa {
    margin: 0.09rem 1rem 0;
}
.gmenu li img {
    max-height: 16px;
}
.gmenu li.qa img {
    max-height: 19px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .gmenu li {
        margin: 0 0.5rem;
    }
    .gmenu li.qa {
        margin: 0.09rem 0.5rem 0;
    }
    .gmenu li img {
        max-height: 14px;
    }
    .gmenu li.qa img {
        max-height: 17px;
    }
}
.h-block {
    position: relative;
}
.logo img {
    max-height: auto;
    max-width: 100%;
}
.logo2 {
    text-align: center;
    margin: 2rem auto;
}
.logo2 img {
    max-height: 16rem;
    max-width: 100%;
}
.btnbox {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 10rem;
}
.btn-dvd {
    background: #f00;
    height: 10rem;
    width: 100%;
    border-radius: 50%;
    display: table;
}
.btn-dvd:hover {
    background: #f90;
}
.btn-dvd div {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.btn-dvd h3 {
    font-size: 18px;
    color: #fff;
}
.btn-dvd h4 {
    font-size: 14px;
    color: #fff;
}
.btn-dvd h4 small {
    font-size: 11px;
}
@media (max-width: 575.98px) {
    .btnbox {
        right: 0.3rem;
        bottom: 0.3rem;
        width: 8rem;
    }
    .btn-dvd {
        height: 8rem;
    }
    .btn-dvd h3 {
        font-size: 16px;
    }
    .btn-dvd h4 {
        font-size: 12px;
    }
    .btn-dvd h4 small {
    font-size: 10px;
    }
}
.btn-anime {
    display: block;
    border: 3px solid rgba(0,0,0,0.5);
    color: #333;
    padding: 1rem 2rem;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    margin: 0 1rem;
}
.btn-anime::after {
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f04b";
    padding-left: 2rem;
    float: right;
}
.btn-anime:hover {
    background: rgba(255,255,255,0.7);
}
.btn-ticket,
.btn-order {
    border: 3px solid rgba(0,0,0,0.5);
    color: #333;
    padding: 0.5rem 1rem;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    background: #ffd700;
    display: flex;
    justify-content: center;
    position: relative;
}
.btn-ticket02 {
    background: #aaa;
}
.btn-ticket::after {
    font-size: 14px;
	font-weight: 400;
	content: "詳しく見る ▶";
    position: absolute;
    right: 1rem;
    top: 1.15rem;
}
.btn-ticket:hover,
.btn-order:hover {
    color: #000;
    opacity: 0.7;
}
.br-none {
    display: none;
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .btn-ticket,
    .btn-order {
        font-size: 18px;
    }
    .btn-ticket::after {
        font-size: 12px;
        right: 0.5rem;
        top: 0.8rem;
    }
}
@media (max-width: 575.98px) {
    .btn-anime {
        padding: 1rem 1rem;
        font-size: 14px;
    }
    .btn-anime::after {
        padding-left: 0.5rem;
    }
    .btn-ticket,
    .btn-order {
        font-size: 18px;
    }
    .btn-ticket::after {
        font-size: 12px;
        right: 0.5rem;
        top: 0.8rem;
    }
    .br-none {
        display: block;
    }
}
.castbox {
    width: 100%;
    display: table;
    /*text-align: center;*/
    padding: 1rem 1rem 0.5rem;
    margin-bottom: 1rem;
}
.castbox01 {
    background: #d70f19;
}
.castbox01 h4 {
    color: #000;
    font-weight: 900;
}
.castbox01 h4 img {
    max-height: 36px;
}
.castbox02 {
    background: #555;
}
.castbox02 p {
    color: #fff;
    font-weight: 400;
}
.casttext {
    display: table-cell;
    vertical-align: middle;
}
.newsbox {
    height: 300px;
    overflow: auto;
    background: rgba(0,0,0,0.2);
    padding: 1rem;
}
.newsbox dl dt {
    font-size: 18px;
}
.newsbox dl dd,
.newsbox dl dd a {
    font-size: 15px;
}
.introblock h5 {
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}
.btn-xs {
    background-color: #d70f19 !important;
    padding: 0.1rem 0.3rem;
    font-size: 11px;
    border-radius: 0;
}
.scheduleblock h5 {
    font-size: 21px;
    font-weight: 700;
}
.scheduleblock p {
    font-size: 18px;
}
.scheduleblock p small {
    font-size: 13px;
}
.scheduleblock table th,
.scheduleblock table td {
    font-size: 16px;
    padding: 0.5rem 1rem;
}
.scheduleblock table th small,
.scheduleblock table td small {
    font-size: 11px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .scheduleblock table {
        max-width: 600px;
    }
}
@media (max-width: 575.98px) {
    .scheduleblock table th,
    .scheduleblock table td {
        font-size: 15px;
        padding: 0.5rem 0.5rem;
    }
    .scheduleblock table th small,
    .scheduleblock table td small {
        font-size: 10px;
    }
}
.img-cast {
    position: relative;
    /*border: 1px solid rgba(0,0,0,0.7);*/
    margin-bottom: 1rem;
}
.castname {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 0.5rem;
    text-align: center;
    font-size: 12px;
    color: #fff;
}
/*@media (max-width: 575.98px) {
    .castbox {
        height: 400px;
        margin-bottom: 1rem;
    }
    .img-cast {
        margin-bottom: 1rem;
    }
}*/
.ticketblock h3 {
    font-size: 32px;
    font-weight: 700;
}
.ticketblock h3 span {
    font-size: 18px;
}
.ticketblock h3 small {
    font-size: 16px;
}
.ticketblock h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2rem;
}
.ticketblock h4 small {
    font-size: 15px;
}
.ticketblock h4 del {
    color: #666;
}
.ticketblock h5 {
    font-weight: 700;
}
.hr-h {
    border-top: 1px solid rgba(0,0,0,0.3);
    width: 85%;
    margin: 2rem auto;
}
.hr-d {
    border-top: 1px dotted rgba(0,0,0,0.5);
    width: 85%;
    margin: 2rem auto;
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .ticketblock h4 {
        font-size: 19px;
    }
    .ticketblock h4 small {
        font-size: 11px;
    }
}
@media (max-width: 575.98px) {
    .ticketblock h4 {
        font-size: 18px;
    }
    .ticketblock h4 small {
        font-size: 12px;
    }
}
hr {
    margin: 2rem auto;
}
.cautionblock h5 {
    font-weight: 700;
}
.twitterbox {
    width: 100%;
    height: 300px;
    display: table;
    background: #ffa532;
    text-align: center;
    padding: 0 1rem;
}
.twittertext {
    display: table-cell;
    vertical-align: middle;
}
.twittertext h4 {
    font-weight: 700;
	font-size: 36px;
    color: #000;
    margin-bottom: 2rem;
}
.twittertext h4 img {
    max-height: 36px;
}
.twittertext .btn-twitter {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.7);
    padding: 0.7rem 0 0.85rem;
    display: block;
    text-decoration: none;
}
.twittertext .btn-twitter:hover {
    background: rgba(255,255,255,0.3);
}
.twittercontents {
    border: 5px solid #ffa532;
    height: 300px;
    overflow: auto;
}

@media (max-width: 557.98px) {
    .twitterbox {
        height: 300px;
    }
}
.table-stage {
    margin: 1rem auto;
}
.table-stage th,
.table-stage td {
    padding: 0.75rem;
    vertical-align: middle;
    text-align: center;
    border-bottom: 2px solid #5d6164;
    font-size: 14px;
    color: #5d6164;
}
.table-stage td strong {
    color: #0081cc;
}
@media (max-width: 557.98px) {
    .table-stage th,
    .table-stage td {
        padding: 0.75rem 0.2rem;
    }
}
.list-indent,
.list-indent-s {
    list-style: none;
    padding-left: 0;
}
.list-indent li {
    text-indent: -1em;
    padding-left: 1em;
}
.list-indent-s li {
    font-size: 85%;
    text-indent: -0.85em;
    padding-left: 0.85em;
    line-height: 1.8;
}
.f-block {
    position: relative;
    background-color: #fff;
}
.f-block_img {
    position: relative;
    z-index: 1;
    opacity: 0.5;
    display:block;
}
.f-block::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.5;
    display:block
}
.f-image_fix {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (min-width: 1400px) {
    .f-image_fix {
        height: 800px;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .f-image_fix {
        height: 800px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .f-image_fix {
        height: 800px;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .f-image_fix {
        height: 700px;
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .f-image_fix {
        height: 700px;
    }
}
@media (max-width: 575.98px) {
    .f-image_fix {
        height: 500px;
    }
}
.btn-more {
    background: #ffa532;
}
.btn-more:hover {
    opacity: 0.7;
    filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.goodsbox h5 {
    margin: 0.5rem auto;
    text-align: center;
}
.goodsbox ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.goodsbox ul li {
    width: 33%;
    padding: 0.5rem;
    color: #fff;
    font-size: 12px;
}
.goodsbox ul li.kyoto {
    background: #00bfff;
}
.goodsbox ul li.tokyo {
    background: #7cfc00;
}
.goodsbox ul li.dmm {
    background: rgba(220,53,69,1.0);
}
.goodsbox p {
    background: #ddd;
    padding: 1rem;
}
.goodsbox span {
    display: block;
    font-size: 12px;
    text-align: right;
}
.faq_acc {
    margin-bottom: 0;
}
.faq_acc > dt {
	cursor: pointer;
	padding: 0 1rem 0.5rem;
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 3px;
	position: relative;
}
.faq_acc > dt strong {
    margin-right: 1rem;
    font-size: 28px;
    font-weight: 900;
}
.faq_acc > dd {
	background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
	margin: 0px;
	padding: 0.5rem 1.5rem;
    font-size: 14px;
}
.faq_acc > dd strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    margin: 0 1rem 0.5rem 0;
}
.faq_acc > dd ul {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}
.faq_acc > dd ul li {
	text-indent:-1em;
	padding-left:1em;
}
.faq_acc > dd a {
	color: #f00;
}
.faq_acc > dd a:hover {
	color: #f60;
}
.dl-dvd {
    display: flex;
    margin: 2rem auto;
}
.dl-dvd dd {
    padding: 0 1rem;
}
@media (max-width: 767.98px) {
    .dl-dvd {
        display: block;
    }
    .dl-dvd dd {
        padding: 1rem 0;
    }
}
.matchbox {
    position: relative;
    height: 8rem;
}
.text-match {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .matchbox {
        height: 6rem;
        margin-bottom: 3rem;
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .matchbox {
        height: 8rem;
        margin-bottom: 3rem;
    }
}
@media (max-width: 575.98px) {
    .matchbox {
        height: 8rem;
        margin-bottom: 3rem;
    }
}
.playpicbox {
    border: 1px solid #f00;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}
.playpicbox p:last-child {
    margin-bottom: 0;
}
.footerblock {
    position: absolute;
    top: 13rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9;
}
.flogo {
    text-align: center;
    margin-bottom: 8rem
}
.flogo img {
    max-height: 120px;
}
.footerblock h5 {
    text-align: center;
}
.footerblock .contact {
    width: 360px;
    margin: 1rem auto;
}
.footerblock .contact h2 {
    border: 1px solid rgba(0,0,0,0.7);
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 15px;
    font-weight: 700;
}
@media (max-width: 575.98px) {
    .footerblock {
        top: 7rem;
    }
    .flogo {
        margin-bottom: 4rem
    }
    .flogo img {
        max-height: 120px;
    }
    .footerblock .contact {
        width: 360px;
    }
    .footerblock .contact h2 {
        padding: 1rem 1.5rem;
        margin-bottom: 0.5rem;
        font-size: 15px;
    }
}
.copyright {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    padding: 1rem;
    margin-bottom: 0;
    background: #000;
}
footer .container {
    max-width: 1000px;
}
#page-top {
	font-size: 0;
	position: fixed;
	bottom: 24px;
	right: 16px;
	opacity: 0;
}
#page-top.fade-in {
	color: #000;
	font-size: 30px;
	opacity: 0.6;
	transition: opacity 1s;
    cursor: pointer;
}
#page-top.fade-in:hover {
	color: #000;
	opacity: 0.3;
	transition: opacity 1s;
}