@charset "UTF-8";
/*===============================================
画面の横幅が1000px〜768pxまで
===============================================*/
@media screen and (max-width: 1024px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  .disPC {
    display: none;
  }
  .disSP {
    display: inline-block;
  }
  .mainWrap {
    position: relative;
    margin-left: 0;
    margin-top: 60px;
  }
  header {
    position: fixed;
    width: 100vw;
    height: 60px;
    background-color: unset;
    z-index: 1000;
  }
  header:after {
    position: absolute;
    content: "";
    background-color: #f6f6f6;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    z-index: 999;
  }
  header h1 {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 20px;
    height: 60px;
    z-index: 1001;
  }
  header h1 a {
    height: 100%;
  }
  header h1 img {
    height: 100%;
    width: auto;
  }
  header .languageWrap {
    position: relative;
  }
  header .hamburger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: #ea336a;
    cursor: pointer;
    z-index: 9999;
  }
  header .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 15px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transitio: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  header .hamburger span:nth-child(1) {
    top: 20px;
  }
  header .hamburger span:nth-child(2) {
    top: 30px;
  }
  header .hamburger span:nth-child(3) {
    top: 40px;
  }
  header .hamburger.active span:nth-child(1) {
    top: 28px;
    left: 14px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header .hamburger.active span:nth-child(2), header .hamburger.active span:nth-child(3) {
    top: 28px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header nav.globalMenuSp {
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f6f6f6;
    transform: translateY(-100%);
    transition: all 0.6s;
  }
  header nav.globalMenuSp li a {
    padding: 1em 0;
    text-decoration: none;
  }
  header nav.globalMenuSp.active {
    opacity: 100;
    display: block;
    transform: translateX(0%);
    margin-top: 60px;
  }
  header .languageWrap {
    width: 100%;
    padding: 0 30px;
    margin-bottom: 30px;
  }
  header .languageWrap.open a.btnLang {
    padding: 10px;
    border-radius: 10px 10px 0 0 !important;
  }
  header .languageWrap.open .submenu li:not(:last-child) {
    border-bottom: 0;
  }
  header .languageWrap.open .submenu li:last-child {
    border-right: 1px solid #ccc;
  }
  header .languageWrap.open .submenu li:last-child a {
    border-bottom: 0;
    border-radius: 0;
  }
  header .languageWrap.open .submenu a {
    display: inline-block;
    padding: 5px 20px;
  }
  header .languageWrap ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 10px;
  }
  .pageTtl {
    justify-content: center;
    align-items: center;
    padding: unset;
  }
  footer {
    margin-left: 0;
  }
  #pagetop {
    right: 20px;
    bottom: 20px;
    z-index: 999;
  }
  .IVdialog .IVdialogBody {
    width: 80%;
  }
}
/*===============================================
tablet横向き
===============================================*/
/*===============================================
画面の横幅が767px〜0pxまで
===============================================*/
@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  header h1 {
    text-align: left;
    width: calc(100% - 60px);
    padding: 13px 0 13px 15px;
  }
  header h1 a {
    display: inline-block;
  }
  header h1 img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
  }
  header nav.globalMenuSp {
    height: calc(100dvh - 60px);
  }
  header nav.globalMenuSp .scroll {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  header .languageWrap ul {
    justify-content: unset;
    padding: 0;
  }
  header .languageWrap li {
    width: 50%;
  }
  header .languageWrap li:nth-child(odd) {
    border-right: 1px solid #dbd6ce;
  }
  header .languageWrap li:not(:last-child) {
    border-bottom: 1px solid #dbd6ce !important;
  }
  header .languageWrap.open .submenu li a {
    text-align: center;
    border: 0;
    padding: 15px 20px;
  }
  footer .inner {
    display: block;
  }
  footer .contactWrap {
    width: 100%;
    margin-bottom: 40px;
  }
  footer .copyright {
    text-align: left;
    padding-left: 15px;
  }
  .mainVisual {
    margin-bottom: 50px;
  }
  .mainVisual .slider {
    height: 270px;
  }
  .mainVisual h2 {
    font-size: 2.75rem;
    width: calc(100% - 40px);
    left: 20px;
    bottom: 30px;
  }
  .mainVisual h2 span.txt {
    font-size: 2rem;
  }
  .mainVisual h2 span.num {
    font-size: 4rem;
  }
  .inner {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  p {
    font-size: 1.5rem;
  }
  figure figcaption {
    font-size: 1.5rem;
  }
  #topTicketBtn {
    margin-bottom: 50px;
  }
  #topTicketBtn .btnWrap {
    display: block;
  }
  #topTicketBtn .btnWrap a {
    width: 100%;
    background: url(../image/icon_linkex.svg) calc(100% - 20px) 50% no-repeat;
    padding: 15px 40px 15px 20px;
    margin-bottom: 10px;
  }
  #topTicketBtn .cache {
    padding: 20px 25px;
  }
  #topTicketBtn .cache p {
    font-size: 1.5rem;
    text-align: left;
  }
  #topicsWrap {
    margin-bottom: 50px;
  }
  #topicsWrap li {
    display: block;
  }
  #topicsWrap .inner > ul > li {
    padding: 25px 10px;
  }
  #topicsWrap .inner > ul > li li:not(:last-child) {
    margin-bottom: 10px;
  }
  #topicsWrap .date {
    display: inline-block;
    color: #fff;
    width: auto;
    background-color: #623632;
    padding: 3px 6px;
    margin-bottom: 10px;
  }
  #topicsWrap .ttl {
    width: 100%;
  }
  .btnArea {
    display: block;
  }
  .btnArea.long a {
    width: 100%;
  }
  .btnArea a, .btnArea button {
    width: 100%;
  }
  .btnArea a:not(:nth-child(3n)), .btnArea button:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .btnArea.IVbtn a {
    width: 100%;
  }
  .btnArea form {
    width: 100%;
  }
  .pageTtl {
    height: 200px;
    padding: 0 20px;
  }
  .pageTtl h2 {
    font-size: 2.5rem;
  }
  .pankuzuWrap {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .pageWrap table {
    border: 0;
  }
  .pageWrap table tr {
    display: block;
    border: 0;
  }
  .pageWrap table th, .pageWrap table td {
    display: block;
    width: 100%;
  }
  .pageWrap table th {
    text-align: unset;
    padding: 10px 20px;
  }
  .pageWrap table th br {
    display: none;
  }
  .pageWrap table td {
    padding: 15px 10px 35px 10px;
  }
  .pageWrap ul li, .pageWrap ol li {
    font-size: 1.5rem;
  }
  .pageWrap .supp {
    padding: 30px 25px 30px 25px;
  }
  .pageWrap .supp.suppSeat div {
    width: 100%;
  }
  .pageWrap .supp.suppSeat figure {
    margin-top: 20px;
    margin-bottom: 0 !important;
  }
  .attentionList {
    padding: 30px 20px;
  }
  .seatItem figure, .seatItem .desc {
    width: 100%;
  }
  .seatItem h4 {
    font-size: 2rem;
  }
  .seatItem h5 {
    font-size: 1.7rem;
  }
  .seatItem dl {
    justify-content: flex-end;
    padding: 15px 25px 20px 25px;
  }
  .seatItem dl dt, .seatItem dl dd {
    font-size: 1.4rem;
  }
  .seatItem dl dt {
    margin-right: 5px;
  }
  .seatItem dl .shimin:not(:last-child) {
    border: 0;
    padding-right: 0;
    margin-bottom: 10px;
  }
  .seatItem dl .senkou:not(:last-child) {
    margin-bottom: 10px;
  }
  .seatItem .desc .point span {
    font-size: 1.4rem;
  }
  .seatItem .desc .point span:not(:last-child) {
    margin-right: 2px;
  }
  .formWrap {
    padding: 30px 20px;
  }
  .formWrap input[type=text].w100, .formWrap input[type=tel].w100, .formWrap input[type=email].w100, .formWrap textarea.w100 {
    width: 100%;
  }
  .formWrap input[type=text].w50, .formWrap input[type=tel].w50, .formWrap input[type=email].w50, .formWrap textarea.w50 {
    width: 100%;
  }
  .formWrap input[type=text].w25, .formWrap input[type=tel].w25, .formWrap input[type=email].w25, .formWrap textarea.w25 {
    width: 100%;
  }
  .formWrap .quantity {
    width: 90px;
  }
  .seatListWrap {
    display: block;
  }
  .seatListWrap .venueName {
    width: 100%;
    writing-mode: horizontal-tb;
    padding: 10px;
  }
  .seatListWrap .seatItem {
    display: flex;
  }
  .seatListWrap .seatItem.th {
    display: none;
  }
  .seatListWrap .seatItem div, .seatListWrap .seatItem p {
    border-right: 0;
  }
  .seatListWrap .seatItem div {
    padding-bottom: 0;
  }
  .seatListWrap .seatItem div:first-child {
    width: 100%;
  }
  .seatListWrap .seatItem .price {
    position: relative;
    width: calc(100% - 90px);
  }
  .seatListWrap .seatItem .price:not(:last-child) {
    padding-right: 40px;
  }
  .seatListWrap .seatItem .price:not(:last-child):after {
    position: absolute;
    content: "円 ×";
    right: 0;
  }
  .seatListWrap .seatItem .price:last-child {
    width: 100%;
    padding-top: 0;
    padding-right: 40px;
    padding-bottom: 15px;
  }
  .seatListWrap .seatItem .price:last-child:before {
    position: absolute;
    content: "円";
    right: 20px;
  }
  .seatListWrap .seatItem .amount {
    width: 90px;
    padding-bottom: 0;
  }
  .otherSeatWrap {
    display: block;
  }
  .otherSeatWrap .otherItem {
    width: 100%;
    margin-bottom: 20px;
  }
  .seatInfo {
    padding: 20px 25px;
  }
  .pageWrap .scheduleTbl {
    padding: 15px;
    border: 1px solid #dbd6ce;
  }
  .pageWrap .scheduleTbl th {
    display: block;
    padding: 10px;
  }
  .pageWrap .scheduleTbl th p {
    display: inline;
    font-size: 1.5rem;
  }
  .pageWrap .scheduleTbl th p:not(:first-child) {
    padding-top: 0;
  }
  .pageWrap .scheduleTbl th p:not(:first-child):before {
    content: none;
  }
  .pageWrap .scheduleTbl td {
    padding: 10px 10px 20px 10px;
  }
  .pageWrap .scheduleTbl h4 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 10px;
  }
  .pageWrap .scheduleTbl .btnArea {
    margin-top: 20px;
  }
  .dlWrap p a {
    background-position: calc(100% - 10px) 50%;
    padding: 21px 35px 20px 75px;
  }
  .dlWrap p a:before {
    left: 10px;
  }
  .passWrap {
    text-align: center;
  }
  .passWrap input[type=password] {
    width: 60%;
  }
  .passWrap input[type=submit] {
    color: #fff;
    letter-spacing: 0.2rem;
    background-color: #623632;
    border: 0;
    padding: 10px 30px;
    border-radius: 50px;
  }
  .list404 {
    padding: 30px 20px;
  }
  .list404 li br {
    display: inline;
  }
  .list404 li a {
    white-space: nowrap;
  }
  .privacyWrap {
    text-align: left;
  }
  .privacyWrap .checkLabel {
    line-height: 1.5;
  }
  .privacyWrap input[type=checkbox] {
    vertical-align: baseline;
  }
  .IVdialog .IVdialogBody {
    width: 90%;
    height: 90%;
    overflow: auto;
  }
}
/*===============================================
sp横向き
===============================================*/