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



/*--------------------
01.共通
02.header
03.contents
04.footer
--------------------*/



/*----------
01.共通
----------*/

html { scroll-behavior: smooth;}

*{
box-sizing: border-box;
}

*:focus {
outline: none;
}

.wrapper{
    width: 100%;
    overflow: hidden;
    font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #000;
    position: relative;
}
section.line::before, 
.wrapper::before{
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 100%;
    border-left: 2px solid #005aad;
    border-right: 2px solid #e83d00;
    z-index: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    mix-blend-mode: screen;
}
section.line{
    position: relative;
}
section.line::before{
    mix-blend-mode: overlay;
}

.contents_in{
    max-width: 1000px;
    width: 88%;
    margin: 0 auto;
    padding: 75px 0;
    position: relative;
    z-index: 1;
}

.bg_stripe{
    background: repeating-linear-gradient(135deg, rgb(240 240 240 / 80%), rgb(240 240 240 / 80%) 2px, rgb(255 254 255 / 80%) 2px, rgb(255 255 255 / 80%) 6px);
}
    
.pc{
display: none;
}

.sp{
display: block;
}


img{
    width: 100%;
    height: auto;
    display: block;
    }
    
p{
    font-size: 14px;
    line-height: 2.0;
    margin-bottom: 1.5em;
}

.en, 
[class$="_en"] {
    font-family: "Lato", sans-serif;
    font-optical-sizing: auto;
/*	font-weight: 700;  */
	font-style: normal;
}

.mb0{
    margin-bottom: 0!important;
}

    
@media screen and (min-width:768px) {
    /* 768px以上 */
    .pc{
        display: block;
        }
        
    .sp{
        display: none;
    }

    p{
        font-size: 16px;
    }

    .contents_in{
        padding: 100px 0 100px;
    }
    
    
}
@media screen and (min-width:1024px) {
    p{
        font-size: 18px;
    }
}

/*============= text =============*/
h2{
    margin-bottom: 50px;
    text-align: center;
    font-size: 25px;
    line-height: 1.4;
}

strong{
    font-weight: 600;
}

span.small{
    font-size: .8em;
}

.notes_list li{
    font-size: 12px;
    line-height: 1.7;
    text-indent: -1em;
    padding-left: 1em;
}
.list_style01, .notes_list{
    margin-bottom: 16px;
}
.list_style01 li{
    font-size: 16px;
    line-height: 1.7;
    padding-left: .8em;
    position: relative;
}
.list_style01 li::before{
    content: '';
    display: block;
    width: .4em;
    height: .8em;
    background: #fff;
    position:absolute;
    top: .45em;
    left: 0;
}

@media screen and (min-width:768px) {
    /* 768px以上 */
    .notes_list li{
        font-size: 14px;
    }
    .list_style01 li{
        font-size: 18px;
        margin-bottom: 8px;
    }
    .list_style01, .notes_list{
        margin-bottom: 24px;
    }
}
/*============= button =============*/

/* ボタンスタイルリセット */
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

    
/*----------
02.header
----------*/

header{

}

.btn_menu{
    display: block;
    background: #fdd23c;
    position: fixed;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 16px 14px;
    z-index: 99;
    transition: .4s ease;
}

.btn_menu .menu_line{
    display: block;
    width: 22px;
    height: 1px;
    background: #fff;
    margin: 0 auto 7px;
    transition: cubic-bezier(.71,.12,.18,.81) .6s;
}
.btn_menu.open .menu_line:first-of-type{
    transform-origin:left top;
    transform: rotate(36deg) scaleX(1.25);
}
.btn_menu.open .menu_line:last-of-type{
    transform-origin:left bottom;
    transform: rotate(-36deg) scaleX(1.25);
}
.btn_menu.open .menu_line:nth-last-of-type(2){
    opacity: 0;
    transform: translateX(100%) scaleX(0);
    transform-origin: left;
}

nav{
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    max-width: 240px;
    width: 100%;
    height: auto;
    background: #000;
    z-index: 20;
    overflow-x: hidden;
    overflow-y: scroll;
    transform: translateX(110%);
    transition: .4s ease;
}
nav.show{
    transform: translateX(0);
}

nav a, nav a:link, nav a:hover, nav a:visited{
    color: #fff;
}
nav a{
    display: block;
    width: 100%;
    padding: 22px 20px;
    border-bottom: 1px dashed #666;
}

@media screen and (min-width:768px) {
    /* 768px以上 */
    .btn_menu{
        display: none;
    }
    nav{
        display: block;
        width: 100%;
        max-width: none;
        height: auto;
        transform: none;
        background: #fdd23c;
        
    }
    nav a, nav a:link, nav a:hover, nav a:visited{
        color: #000;
        font-size: 13px;
    }
    nav a{
        border-bottom: none;
        padding: 16px 0;
        transition: .3s ease;
    }
    nav a:hover{
        opacity: .6;
    }
    nav ul{
        display: flex;
        justify-content: center;
        gap: 24px;
    }
    nav.hidden{
        transform: translateY(-100%);
    }
    
}

/*----------
03.contents
----------*/

/*============= MV =============*/

.mv_logo_g{
    display: block;
    background: #fff;
    width: 94%;
    max-width: 800px;
    margin: 0 auto;
    padding: 110px 0 62px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.information {
    display: inline-block;
    margin: 30px auto 0;
    font-size: 14px;
    text-align: center;
    line-height: 1;
    background: #fff;
    padding: 10px 20px;
    border:solid 1px #999;
    border-radius: 30px;
}

.information span { color:#c00; }

.swing_img {
    transform-origin: top center;
    width: 50%;
    will-change: transform;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out; /* 余韻をつける */
  }
  
.tag_g{
    display: flex;
    gap: 20px;
    position: relative;
    max-width: 330px;
    margin: 0 auto;
}
/* .img1 {
    margin-left:;
    transform: translateX(-50%);
}
.img2 {
    margin-left: 20px;
    transform: translateX(-50%);
}
   */

#mv_area .contents_in{
    padding: 0 0 26px;
    background: linear-gradient(0deg,rgba(255, 255, 255, 0) 96px, rgba(255, 255, 255, 1) 96px);
}

@media screen and (min-width:768px) {
    /* 768px以上 */
    #mv_area .contents_in{
        padding-bottom: 50px;
        background: linear-gradient(0deg,rgba(255, 255, 255, 0) 138px, rgba(255, 255, 255, 1) 138px);
    }
    .tag_g {
        display: flex;
        gap: 120px;
        max-width: 500px;
    }
}

/*============= MOVIE =============*/
#movie .contents_in{
    padding: 0;
    width: 100%;
}
.modaal-close:after, .modaal-close:before{
    width: 2px;
    border-radius: none;
}
.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before{
    background: #e83d00;
}
.modaal-video-wrap {
    margin: auto;
}
.modaal-inner-wrapper {
    padding: 80px 14px;
}

/*============= MESSAGE =============*/
#message{
    background: linear-gradient(0deg, #feffc5 0%, #68d2db 100%);
    position: relative;
}
#message .message_bg::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../../images/bg_message.png) no-repeat center bottom;
    background-size: 100% auto;
    position: absolute;
    bottom: 0;
    left: 0;
}
#message .contents_in{
    padding-bottom: 110px;
    text-align: center;
}
#message h2 span.en{
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}
#message h2 span img{
    width: 90px;
    height: 18px;
    margin: 0 auto;
}

@media screen and (min-width:768px) {
    /* 768px以上 */
    #message::after{
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: url(../../images/bg_section_pc.svg) no-repeat bottom;
        background-size: 100% auto;
        position: absolute;
        top: -1px;
        left: 0;
        transform: rotate(180deg);
    }
    #message .contents_in{
        padding: 150px 0;
    }
    #message h2 span.en{
        font-size: 22px;
    }
    #message h2 span img {
        width: 160px;
        height: 30px;
    }
}

/*============= PHOTO =============*/
#photo{
	display: block;
	width: 100%;
	overflow: hidden;
	height: 700px;
	position: relative;
}
#photo::before{
    z-index: 1;
    mix-blend-mode: normal;
}
#photo p.en{
	color: #fff;
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: 10;
	transform: translateY(-50%);
	font-size: 90%;
	line-height: 1.8;
    text-align: center;
}
#photo .swiper_g{
	width: 100%;
	height: 100%;
	display: flex;
}
#photo .swiper_g > div{
	width: 50%;
}
/* スライドの動き等速 */
.swiper-wrapper {
	transition-timing-function: linear;
  }
  /* 画像のサイズ調整 */
  .swiper-slide img {
	height: 100%;
	width: 100%;
	object-fit: cover;
  }
.swiper_up, .swiper_down {
	width: 100%;
	height: 700px;
	position:relative;
	overflow:hidden;
}

/*============= ABOUT =============*/
#about h2{
    display: block;
    width: fit-content;
    color: #fff;
    background: #000;
    padding: 6px 12px;
    font-size: 25px;
    margin: 0 auto 50px;
}
#about .contents_in{
    width: 80%;
    max-width: 800px;
}
.toggle_item{
    display: none;
}
.toggle_trigger{
    display: block;
    width: 120px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    background: #000;
    padding: 12px 22px 14px;
    border-radius: 24px;
    margin: 0 auto;
}

@media screen and (min-width:768px) {
    /* 768px以上 */
.toggle_trigger{
    width: 140px;
    font-size: 16px;
}

}
/*============= LIVE INFO =============*/
#liveinfo .contents_in{
    padding-top: 0;
}
.info_box{
    display: block;
    border: 1px solid #000;
    border-radius: 15px;
    background: #fff;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.info_box h2{
    display: block;
    width: 100%;
    padding: 16px 12px 15px;
    font-size: 25px;
    margin-bottom: 0;
    border-bottom: 1px solid #000;
}
.info_box .date_g{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid #000;
}
.info_box .date_g li{
    color: #fff;
    font-size: 13px;
    padding: 22px 12px 21px;
}
.info_box .date_g li:nth-of-type(1){
    background: linear-gradient(0deg, rgb(0 90 174) 0%, rgb(77 140 198) 100%);
}
.info_box .date_g li:nth-of-type(2){
    background: linear-gradient(0deg, rgb(239 120 77) 0%, rgb(232 59 0) 100%);
}
.info_box .date_g li div{
    margin-bottom: 8px;
}
.info_box .date_g li .title{
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 0;
}
.info_box .date_g li .big,
.info_box .date_g li .day{
    font-size: 20px;
}
.info_box .time,
.info_box .place{
    padding: 18px 12px;
    line-height: 1.6;
}
.info_box .time{
    border-bottom: 1px solid #000;
}
.info_box .time .en{
    font-size: 18px;
}
.info_box .place strong{
    font-size: 22px;
}
.info_box .place .en{
    font-size: 13px;
}
.info_box .place .link{
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

@media screen and (min-width:768px) {
    /* 768px以上 */
.info_box{
    border: 2px solid #000;
    border-radius: 20px;
}
.info_box h2, .info_box .date_g, .info_box .time{
    border-bottom: 2px solid #000;
}
.info_box .time .en{
    font-size: 20px;
}
.info_box .date_g li, .info_box .time{
    font-size: 18px;
}
.info_box .date_g li .title, .info_box .place strong{
    font-size: 18px;
}
.info_box .date_g li .big, .info_box .date_g li .day{
    font-size: 38px;
}
.info_box .place .en{
    font-size: 14px;
}
.info_box .place .link{
    font-size: 16px;
}

}


/*============= TICKET =============*/
#ticket{
    background: #000;
    color: #FFF;
}

.ticket_box, .bus_box, .item_box{
    width: 100%;
    max-width: 800px;
    display: block;
    border: 1px solid #c9c9c9;
    border-radius: 15px;
    background: rgb(0 0 0 / 75%);
    padding: 36px 25px;
    margin: 0 auto;
    margin-bottom: 25px;
}
.ticket_box, .bus_box, .item_box:last-of-type{
    margin-bottom: 0;
}
.ticket_box, .bus_box, .item_box{
    margin-bottom: 120px;
}
.ticket_box h2, .bus_box h2, .item_box h2{
    margin-bottom: 50px;
}
.ticket_box h2 .jp{
    display: block;
    font-size: 16px;
    font-weight: 400;
}
.ticket_box h2.red, .bus_box h2.red, .item_box h2.red{
    color: #e83d00;
    font-weight: 600;
}
.ticket_box .price{
    font-size: 22px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 25px;
}
.ticket_box .price .small{
    font-size: 12px;
}

.ticket_box h3, .bus_box h3, .item_box h3{
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    border-bottom: 2px solid;
    padding-bottom: 8px;
    margin-bottom: 8px;
}
.ticket_box p, .bus_box p{
    line-height: 1.7;
}
.ticket_box .main_text, .bus_box .main_text, .item_box .main_text{
    font-size: 16px;
}
.ticket_box h4, .bus_box h4, .item_box h4{
    display: block;
    width: fit-content;
    color: #000;
    background: #fff;
    padding: 10px 10px 12px;
    margin-bottom: 16px;
    margin-top: 40px;
    line-height: 1.4;
}
.ticket_box h4.red, .bus_box h4.red, .item_box h4.red{
    width: 100%;
    text-align: center;
    background: none;
    border: 1px solid #e83d00;
    color: #e83d00;
}
.ticket_box .img{
    margin-bottom: 25px;
}
.ticket_box .goods_img{
    margin-top: 40px;
}

.btn_style01{
    width: 100%;
    position: relative;
    margin-top: 10px;
}
.bm20 {margin-bottom: 20px;}
.bm40 {margin-bottom: 40px;}
.bm60 {margin-bottom: 60px;}
.bm80 {margin-bottom: 80px;}

.btn_style01 a{
	display: block;
	position: relative;
	background: #e83d00;
	color: #fff;
	font-size: 20px;
	font-weight: 600;;
	line-height: 1.4;
	padding: 34px 0 36px;
	text-align: center;
	transition: .3s ease;
}
.btn_style01 a:hover{
	background-color: #fdd23c;
}
.btn_style01 a::after{
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	background: url(../../images/arrow.png) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 10px;
	right: 10px;
}

.btn_style02{
    width: 100%;
    position: relative;
    margin-top: 20px;
}
.btn_style02 img{
    margin: 10px auto 0;
    width: 60%;
}
.btn_style02 a{
	display: block;
	position: relative;
	background: #fff;
	color: #000;
	font-size: 10px;
	font-weight: 300;;
	line-height: 1.0;
	padding: 10px 0 12px;
	text-align: center;
	transition: .3s ease;
}
.btn_style02 a:hover{
}
.btn_style02 a::after{
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	background: url(../../images/arrow.png) no-repeat center;
	background-size: contain;
	position: absolute;
mix-blend-mode:  difference;
	top: 10px;
	right: 10px;
}



@media screen and (min-width:768px) {
    /* 768px以上 */
    .ticket_box, .bus_box, .item_box{
        padding: 50px clamp(50px, 8vw, 100px);
    }
    .ticket_box h2, .bus_box h2, .item_box h2{
        font-size: 40px;
    }
    .ticket_box .price{
        font-size: 26px;
    }
    .ticket_box .price .small{
        font-size: 14px;
    }
    .ticket_box h3, .bus_box h3, .item_box h3{
        font-size: 32px;
    }
    .ticket_box .main_text, .bus_box .main_text, .item_box .main_text{
        font-size: 18px;
    }
    .ticket_box h4, .bus_box h4, .item_box h4{
        width: 100%;
        text-align: center;
        font-size: 22px;
        margin-top: 60px;
        margin-bottom: 26px;
    }

    .btn_style01, btn_style02 {
        margin-top: 40px;
    }
    .btn_style01 a{
        font-size: 30px;
    }
    .btn_style02 a{
        font-size: 12px;
    }
    .btn_style02 img{
        margin: 10px auto 0;
        width: 40%;
    }
}

a:hover img {
	 opacity: 0.7;
	 filter: alpha(opacity=70);
	 -moz-opacity: 0.7;
	 }

/*--------------------
04.footer
--------------------*/

footer{
    background: #000;
    color: #fff;
    text-align: center;
}
footer .contents_in{
    padding: 0 0 75px;
}
footer a, footer a:link{
    color: #fff;
}
footer .contact_list{
    line-height: 1.7;
    font-size: 13px;
    margin-bottom: 75px;
}
footer .contact_list li{
    margin-bottom: 1.7em;
}
footer .bn_list{
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}
footer .bn_list li{
    width: 100px;
}

footer .sns_list{
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}
footer .sns_list li{
    width: 40px;
    height: 40px;
}
footer .footer_logo figure{
    width: 120px;
    margin: 50px auto 25px;
}
footer .footer_logo p{
    font-size: 12px;
    color: #7c7c7c;
}


@media screen and (min-width:769px) {
/* 769px以上 */
footer .contact_list{
    font-size: 14px;
}
footer .sns_list{
    gap: 20px;
}
footer .sns_list li {
    width: 52px;
    height: 52px;
}
footer .footer_logo figure{
    width: 150px;
    margin-bottom: 50px;
    margin-top: 50px;
}


}


@media screen and (orientation: portrait) {
/* 画面の幅より高さが大きい時(スマホ・タブレット等画面が縦長の時) */

}

