@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Roboto:wght@300;400;500;700&display=swap');

/*===================================================
  NAVIGATION
====================================================*/
.hamBtn {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9999;
    box-sizing: border-box;
}

.hamBtn .hamSwitch {
    background: #4a2551;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamBtn .hamMenu {
    position: relative;
    width: 30px;
    height: 20px;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: #FFF;
    transition: all .3s ease;
}
.hamBtn .hamMenu span:nth-of-type(1) {
    top: 2px;
}
.hamBtn .hamMenu span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamBtn .hamMenu span:nth-of-type(3) {
    bottom: 2px;
}
.hamSwitch.open{

}
.hamSwitch.open span {
    background: #FFF;
}
.hamSwitch.open span:nth-of-type(1) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
}
.hamSwitch.open span:nth-of-type(2) {
    opacity: 0;
}
.hamSwitch.open span:nth-of-type(3) {
    transform: translateY(50%) rotate(45deg);
    bottom: 50%;
}
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #DDD;
    z-index: 10;
}
.navigation.active {
    transition: opacity 0.5s ease;
    pointer-events:auto;
    opacity:1;
}
.navigation .headerNav {
    display: block;
    padding: 60px;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 600;
}
.navigation .headerNav li {
}
.navigation .headerNav li:after {
    content: none;
}
.navigation .headerNav li a{
    font-size: 250%;
    color: #FFF;
}
.navigation .headerNav li a.blankBtn{
    opacity: 0.3;
    pointer-events: none;
}
.navigation .navTit{
    color: #FFF;
    position: absolute;
    right: 60px;
    bottom: 60px;
    text-align: right;
    font-family: "Roboto", sans-serif;
}



@media screen and (min-width: 960px){

.wrap {
    padding-bottom: 100px;
}

.hamBtn {
    display: none;
}
.navigation {
    position: fixed;
    pointer-events: auto;
    top: 0;
    opacity: 1;
    left: 50%;
    width: 100%;
    height: 60px;
    background: none;
    transition: 0.5s ease;
    max-width: calc(1280px + 20%);
    padding: 0 10%;
    transform: translateX(-50%);
}
.navigation .navTit {
    display: none;
}
.navigation .headerNav {
    display: flex;
    text-align: center;
    padding: 0;
    justify-content: center;
    align-items: center;
    box-shadow: 0 23px 20px -10px #0000003b;
    background: #4a2551;
}
.navigation .headerNav li {
    line-height: 1em;
    margin: 0;
    width: 25%;
    height: 60px;
    border-right: 1px solid #dcc8e0;
}
.navigation .headerNav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #4a2551;
    font-size: 21px;
}

}



@media screen and (max-width: 960px){

.drawer__btn {
    display: none;
}

.navigationBlock{
    position: fixed;
    z-index: 9999;
}

.navigation {
    pointer-events: none;
    opacity: 0;
    display: flex;
    align-items: center;
    background: #4a2551;
}
.navInner {
    width: 100%;
}

.navigation .headerNav {
    padding: 30px;
    width: 100%;
}
.navigation .navTit {
    right: 40px;
    bottom: 40px;
    max-width: 120px;
}
.navigation .headerNav li {
    margin: 0 0 24px;
    text-align: center;
}
.navigation .headerNav li:last-child {
    margin-bottom: 0;
}

.navigation .headerNav li a{
    font-size: 150%;
}

}




/* -------------------------------------------------
schedule
------------------------------------------------- */
.header {
    display: none;
}

.wrap {
    padding: 0 0 150px;
    background: #dcc8e0;
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

footer .copyright {
    text-align: center;
}

.section--inner {
    border-left: 1px solid #3a064a36;
    border-right: 1px solid #3a064a36;
    position: relative;
}


.mv {
    line-height: 0;
}
.section--detail {
    max-width: calc(1280px + 20%);
    margin: 0 auto;
    border-bottom: 1px solid #3a064a36;
    padding-top: 60px;
}
.block--wrap {
    padding: 50px 0;
    border-bottom: 1px solid #3a064a36;
}
.block--wrap:last-child {
    border: none;
}

.block--wrap h3 {
    font-family: "neue-haas-grotesk-display", sans-serif;
    text-align: center;
    line-height: 1;
    padding-bottom: 40px;
    color: #4a2551;
}

.block--wrap h3 > p {
    font-size: 90px;
}

.block--wrap h3 span {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: bold;
    padding-top: 6px;
    display: inline-block;
}


.ac {
    background: #ffffff;
    border-bottom: 1px solid #dcc8e0;
}

.ac:last-child {
    margin-bottom: 0;
}

.ac.on {
}

.ac>dt {
    position: relative;
    cursor: pointer;
    font-size: 22px;
    padding: 30px 50px 30px 40px;
    letter-spacing: 0.05em;
    font-weight: 600;
    background: #4a2551;
    color: #fff;
    font-family: "neue-haas-grotesk-display", sans-serif;
}

.ac>dt::after {
    content: "";
    display: block;
    width: 13px;
    height: 0;
    border-bottom: solid 1px;
    position: absolute;
    top: 50%;
    right: 40px;
    transition: all 0.2s ease-out;
}
.ac>dt::before {
  content: "";
  display: block;
  width: 13px;
  height: 0;
  border-bottom: solid 1px;
  position: absolute;
  top: 50%;
  right: 40px;
  transition: all 0.2s ease-out;
  transform: rotate(90deg);
}
.ac.on>dt::before {
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}


.ac>dd {
    display: none;
    padding: 40px;
}

.ac_txt {
    font-weight: 600;
    margin-bottom: 15px;
}

.ac_txt:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 960px) {

.section--detail {
    padding: 0;
}
.section--inner {
    width: 90%;
    margin: 0 auto;
}

.block--wrap h3 > p {
    font-size: 44px;
}

.block--wrap h3 span {
    font-size: 13px;
}
.block--wrap h3 {
    padding-bottom: 32px;
}


.ac {
}

.ac>dt {
    font-size: 16px;
    padding: 17px 35px 17px 20px;
}

.ac>dt::before, .ac>dt::after {
    right: 17px;
}

.ac>dd {
    padding: 20px;
}

}

.red {
    color: #e10000;
}

.cs {
    font-family: "neue-haas-grotesk-display", sans-serif;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    padding: 50px 0;
    color: #4a2551;
}

section.schedule{
background: rgba(255,255,255,0.9);
color: #000;
}
.schedule .scheduleBox {
    background: #ffffff;
    position: relative;
    color: #2d2d2d;
}

.schedule .scheduleBox .delayBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C7B994;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    font-size: 16px;
    border: 1px solid #fff;
}
.schedule .scheduleBox .delayBox a {
    text-decoration: underline;
}

.schedule .scheduleBox .s-tit{
font-weight: bold;
font-size: 20px;
margin: 0 0 20px 0;
text-align: left;
padding: 0.25em 0 0.25em 20px;
background: transparent;
border-left: solid 5px;
line-height: 1.5;
}
/*
.schedule .scheduleBox:nth-of-type(1){
background: rgba(0,0,0,0.8);
margin: 0 auto 50px;
color: #fff;
}*/
.schedule .scheduleBox:nth-of-type(2){
background: #412108;
}
.schedule .s-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}
.schedule .s-table:last-child {
    margin-bottom: 0;
}

.schedule .s-table thead th {
    padding: 0em 0 1em;
    text-align: center;
    font-size: 12px;
    border-bottom: solid 1px;
    vertical-align: middle;
}

.schedule .s-table td {
    padding: 18px 0;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
    border-bottom: solid 1px;
    position: relative;
    font-weight: 600;
}

.schedule .s-table td + td::before {
    width: 1px;
    height: 84%;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-left: 1px dotted;
}

.schedule .s-table td.soldout::after {
content: "SOLD OUT";
font-size: 19px;
color: #f6ab00;
display: inline-block;
position: absolute;
left: -1em;
top: 17%;
transform: rotate(-15deg);
}
.schedule .s-table .day {
    width: 200px;
}
.schedule .s-table.type2 .day {
width: 140px;
}
.schedule .s-table .date {
    font-size: 22px;
    min-width: 133px;
    display: inline-block;
    vertical-align: middle;
    word-break: keep-all;
    font-family: inherit;
}
.schedule .s-table .youbi {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid;
    border-radius: 50px;
    font-size: 12px;
    width: 40px;
}
.schedule .s-table .youbi .holiday {
margin-top: 0.3em;
display: block;
font-size: 11px;
}
.schedule .s-table .time {
width: 150px;
font-weight: bold;
}
.schedule .s-table .area {
width: 110px;
font-weight: bold;
}
.schedule .s-table .venue {
    width: 32%;
    padding-left: 2%;
    padding-right: 2%;
    font-weight: bold;
    line-height: 1.4;
    text-align: left;
}
.schedule .s-table .ticketGuid {
    padding-left: 2%;
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
    font-size: 12px;
    min-width: 200px;
}
.schedule .s-table .ticketGuid span {
    padding: 5px 0 0;
    display: block;
    word-break: break-word;
}
.schedule .s-table .ticketGuid span a{
color: #999;
transition: 0.3s ease;
}
.schedule .new {
margin: 50px 0 25px;
padding: 0.5em 0;
font-size: 24px;
color: #fff;
text-align: center;
background: #0136e4;
}

.block--lead {
    background: #e6e6e6;
    padding: 30px;
    margin-bottom: 20px;
}
.block--lead:last-child {
    margin-bottom: 0;
}

.block_txt {
    margin-bottom: 12px;
}
.block_txt:last-child {
    margin-bottom: 0;
}
.block_txt a {
    text-decoration: underline;
}

.block--lead .txt.center span{
font-size : 20px;
font-weight: bold;
}
.block--lead .bullet{
font-size: 16px;
font-weight: 700;
}
.block--lead .bullet::before{
display: inline-block;
content: "";
background-color: #000;
width: 10px;
height: 10px;
border-radius: 50%;
}
.block--lead hr{opacity: 0.3;}

#cast .performer {
    text-align: center;
    font-size: 25px;
    background: #4a2551;
    color: #fff;
    padding: 40px;
    line-height: 1.2;
}
.goods {
    font-family: "neue-haas-grotesk-display", sans-serif;
    text-align: center;
    font-size: 19px;
    background: #3a363b;
    color: #ffffff69;
    padding: 40px;
    line-height: 1;
}

.goods_img {
    line-height: 0;
    margin: 0 auto 30px;
}

.ticket {
    background: #fff;
    padding: 40px;
    color: #2d2d2d;
    border-bottom: 1px solid #dcc8e0;
}

.tickets{
background: #C7B994;
padding: 40px;
color: #fff;
margin-bottom: 1.5em;
}
.ticket .small{
font-size: 12px;
opacity: 0.5;
}

.ac.ticket_box > dd {
    padding: 0;
}


.price_wrap {
    margin-bottom: 35px;
}

.price_list {
    border-top: 1px solid;
    margin-bottom: 20px;
}
.price_list > li {
    display: flex;
    border-bottom: 1px solid;
    padding: 18px 0;
    align-items: center;
    flex-wrap: wrap;
}
.price_list > li .price--tit {
    width: 50%;
    color: #4a2551;
    padding: 0 25px;
    font-weight: 600;
    font-size: 18px;
}
.price_list > li .price--tit .seat_class {
    font-size: 0.8em;
    border: 1px solid;
    display: inline-block;
    padding: 0 0.6em;
    margin-right: 0.5em;
    vertical-align: 2px;
}

.price_list > li .price--detail {
    width: 50%;
    border-left: 1px solid #4a2551;
    padding: 0 30px;
    line-height: 1.6;
}


.sml {
    font-size: 0.85em;
}


.attention_list {
    margin-bottom: 15px;
}
.attention_list:last-child {
    margin-bottom: 0;
}

.attention_list > li {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 3px;
    text-indent: -1em;
    padding-left: 1em;
}
.attention_list > li:last-child {
    margin-bottom: 0;
}

.attention_box {
    margin-bottom: 40px;
}


.seat--tit{
padding-right: 2%;
margin-right: 2%;
font-size: 16px;
margin-bottom: 10px;
}
.seat--tit::before{
display: inline-block;
content: "";
background-color: #fff;
width: 10px;
height: 10px;
border-radius: 50%;
}
.seat--detail {
    display: flex;
    justify-content: space-between;
}
.seat--details{
display: flex;
background-color: #C7B994;
}

.seat--detail .ticket--detail {
    width: 73%;
}

.attr_tit {
    border-left: 4px solid;
    padding-left: 10px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: bold;
    color: #4a2551;
}




.ticket--date span {
    border: 1px solid;
    font-size: 0.85em;
    padding: 3px 10px;
    margin-right: 5px;
    vertical-align: 1px;
}

.seat--detail .ticket--btn {
    width: 25%;
}
.entry_btn a {
    background-color: #4a2551;
    color: #ffffff;
    border: 0;
    font-size: 17px;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
}

.entry_btn.hide a {
    background: #aaa;
}

.btn.btn_goods a {
    background-color: #934ba0;
    color: #ffffff;
    border: 0;
    font-size: 17px;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    max-width: 300px;
    line-height: 1.4;
    margin: 0 auto;
}

.seat--name {
    font-size: 20px;
    font-weight: bold;
    color: #4a2551;
    line-height: 1.4;
    margin-bottom: 8px;
}

.seat--name .seat_class {
    background: #4a2551;
    color: #fff;
    font-size: 0.85em;
    padding: 2px 10px;
    border-radius: 3px;
    margin-right: 5px;
    display: inline-block;
    line-height: 1.4;
}

.seat--name .tax{
font-size: 14px;
opacity: 0.5;
}
.ticket-info{
display: flex;
flex-wrap: wrap;
}
.ticket-info .seat--tit{
display: block;
width: 100%;
}
.ticket-info hr{
width: 100%;
}
.ticket-info .ticket--detail {
width: 50%;
}
.ticket-info .ticket--detail.nth1,
.ticket-info .ticket--detail.nth2 {
margin-bottom: 1.5em;
}

.ticket-info .ticket--detail.nth3{
margin-top : 1.5em;
}
.ticket-info .ticket--detail.nth4 {
margin-top : 1.5em;
margin-bottom: 1.5em;
}
.ticket-info .ticket--detail .ticket--name{
font-size: 20px;
font-weight: bold;
}
.ticket-info .ticket--detail .ticket--date span::after{content: "：";}
.ticket-info .ticket--detail .small{
display: block;
}



.cast_aska{
margin-bottom: 20px;
}

.aska_band {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.cast_mem {
    display: flex;
    justify-content: center;
    font-size: 17px;
    margin: 0px auto 12px auto;
    max-width: 480px;
}

.cast_mem:last-child {
margin-bottom: 0px;
}

.cast_left {
    display: block;
    text-align: right;
    width: 48%;
    margin: 0 auto;
}

.cast_center {
text-align: center;
padding-right: 30px;
padding-left: 30px;
}

.cast_right {
    width: 48%;
    text-align: left;
}

.txt.txt_sponsor {
    width: fit-content;
    margin: 0 auto;
}


.iframe_wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.iframe_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.movie_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.movie_list .iframe_wrap {
    width: 48%;
}


@media screen and (min-width: 1px) and (max-width: 960px) {

.cs {
    font-size: 20px;
}

.price_list > li .price--tit {
    width: 100%;
    padding: 0 0 10px;
    font-size: 15px;
}

.price_list > li .price--detail {
    width: 100%;
    padding: 0 0 0 15px;
}

.seat--name {
    font-size: 17px;
    margin-bottom: 6px;
}

.small {
    font-size: 0.9em;
}

.price_wrap {
    margin-bottom: 30px;
}

.attention_box {
    margin-bottom: 30px;
}


.block--lead {
    padding: 17px;
    margin-bottom: 12px;
    font-size: 13px;
}

.seat--detail .ticket--detail {
    width: 100%;
    margin-bottom: 12px;
}

.section--detail .txt {
    font-size: 13px;
}

.block--lead .bullet {
    font-size: 15px;
    margin-bottom: 6px;
    display: inline-block;
}

.ticket-info .ticket--detail {
width: 100%;
}
.ticket-info .ticket--detail .ticket--name{
font-size : 16px;
}
.ticket-info .ticket--detail .ticket--date span{
display: block;
}
.ticket-info .ticket--detail .ticket--date span::after{content: none;}
.schedule tbody{
width: 100%;
display: block;
}

.seat--detail .ticket--btn {
    width: 100%;
}

.seat--detail .seat--name {
    font-size: 16px;
    margin-bottom: 12px;
    border-left: 5px solid;
    padding-left: 8px;
}

.ticket--date span {
    font-size: 11px;
    padding: 2px 8px;
    display: block;
    width: fit-content;
    margin-bottom: 4px;
}

.entry_btn a {
    font-size: 15px;
    max-width: 300px;
    margin: 0 auto;
}

.schedule .scheduleBox .s-tit {
font-size: 15px;
margin: 0 0 20px 0;
padding: 0.25em 0 0.2em 15px;
}
.schedule .scheduleBox .s-tit .mini{
position: relative;
top: -4px;
left: -8px;
}
.schedule .s-table {
display: block;
border-top: 1px solid;
padding: 15px 0 0;
}
.schedule .s-table tr{
border-bottom: 1px solid;
padding: 0 0 15px;
margin: 0 0 15px;
display: flex;
flex-wrap: wrap;
align-items: baseline;
}
.schedule .s-table td {
    padding: 0;
    line-height: 1.3;
    display: block;
    border: none;
}
.schedule .s-table tr:last-child {
    margin-bottom: 0;
}

.schedule .s-table td + td::before {
display: none;
}
.schedule .s-table td.soldout::after {
font-size: 11px;
white-space: nowrap;
top: 10%;
left: 0;
}

.schedule .s-table .day {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    align-items: baseline;
    margin: 0 0 8px;
    text-align: left;
    order: 1;
}

.schedule .s-table .date {
    white-space: nowrap;
    font-size: 23px;
    margin: 0;
    min-width: auto;
    margin-right: 5px;
}

.schedule .s-table .youbi {
    display: block;
    font-size: 14px;
    text-align: center;
}

.schedule .s-table .youbi .holiday {
margin: 0 0 0 1em;
display: inline-block;
font-size: 1.3vw;
vertical-align: baseline;
}
.schedule .s-table .area {
    width: fit-content;
    box-sizing: border-box;
    white-space: nowrap;
    font-size: 13px;
    padding: 3px 10px;
    background: #4a2551;
    color: #fff;
    margin-bottom: 5px;
    order: 2;
}

.schedule .s-table .venue {
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 4px;
    line-height: 1.5;
    font-size: 16px;
    order: 3;
}

.schedule .s-table .ticketGuid {
    width: 100%;
    padding: 0;
    font-size: 12px;
    order: 5;
}

.schedule .s-table .ticketGuid .fas{
padding: 0 5px 0 0;
vertical-align: -0.05em;
}
.schedule .s-table .ticketGuid span a {
font-size: 12px;
}

.schedule .s-table .time {
    width: 100%;
    text-align: left;
    padding-bottom: 10px;
    order: 4;
    border-bottom: 1px dotted #00000059;
    margin-bottom: 12px;
}

.schedule .s-table .time::before {
    content: 'OPEN / START';
    display: inline;
    width: auto;
    position: relative;
    height: auto;
    top: 0;
    transform: none;
    font-size: 11px;
    margin-right: 9px;
    letter-spacing: 0;
    border: none;
}

.schedule .s-table .time2 {
margin-top: 0.4em;
display: block;
font-size: 12px;
}
.seat--detail {
flex-direction: column;
gap: inherit;
}
.section--detail .txt{
padding-top : 0;
}
.section--detail .txt.ticket{
padding: 15px;
}
.seat--name {
font-size: 16px;
}

#cast .performer {
    padding: 25px;
    font-size: 18px;
}

.aska_band {
    font-size: 15px;
    margin-bottom: 15px;
}

.cast_mem {
    font-size: 14px;
}

.goods {
    padding: 18px;
}

.goods_img {
    margin-bottom: 15px;
}

.btn.btn_goods a {
    font-size: 15px;
}

.movie_list .iframe_wrap {
    width: 100%;
    margin-bottom: 1.2rem;
}

.movie_list .iframe_wrap:last-child {
    margin-bottom: 0;
}

.attention_list > li {
    font-size: 0.85em;
}
}



section .inBox .btn a {
display: block;
padding: 15px 30px;
color: #fff;
width: 100%;
max-width: 350px;
text-align: center;
background: #86CED7;
border: 1px solid #86CED7;
margin: 0 auto;
text-decoration: none;
border-radius: 100px;
font-weight: bold;
}



.btn.btn_pop span {
    background: #C7B994;
    color: #412108;
    padding: 1em 3.5em;
    font-weight: bold;
    font-size: 2em;
    box-sizing: border-box;
    display: inline-block;
    line-height: 1.4;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 14px;
    border-bottom: 3px solid #afa28b;
    width: 100%;
}

.btn.btn_pop span:hover {
    background: #fff;
    color: #000;
}



.popup_inner {
    max-width: 1200px;
    padding: 50px;
}

.popup_inner .schedule .s-table:last-child {
    margin-bottom: 0;
}
.popup_inner .block--wrap:last-child {
    margin-bottom: 0;
}

.popup_inner .seat--detail {
    flex-wrap: wrap;
    gap: 4%;
}


.popup_inner .seat--detail .ticket--detail {
    width: 65%;
}

.popup_inner .seat--detail form {
    width: 25%;
}

.popup_inner .seat--detail a {
    width: 25%;
}



@media screen and (min-width: 1px) and (max-width: 960px) {
.btn.btn_pop span {
    font-size: 1.2em;
    padding: 1.5em;
}
.popup_inner {
    padding: 20px;
}

.popup_inner .block--wrap h3 {
    font-size: 41px;
}

.popup_inner .block--wrap {
    margin-bottom: 20px;
}

.popup_inner .schedule .s-table tr:last-child {
    margin-bottom: 0;
}
.popup_inner .schedule .s-table .venue {
    padding-bottom: 0;
}

.popup_inner .ticket {
    padding: 15px;
    margin-bottom: 15px;
}

.popup_inner .seat--detail .ticket--detail {
    width: 100%;
    margin-bottom: 15px;
}
.popup_inner .seat--detail form {
    width: 100%;
}

.popup_inner .seat--detail a {
    width: 100%;
}

.section--detail .txt.tickets {
    padding: 20px;
}

.cast_center {
padding-right: 5px;
padding-left: 5px;
}


}

@media screen and (min-width: 1px) and (max-width: 360px) {



}
