<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Rubik+Dirt&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Creepster&amp;display=swap');

:root {
  --main-color-black: #070707;
  --main-color-b-w: linear-gradient(135deg, #afafaf, #ebebeb);
  --main-font-comn: 16px;
  --main-font-md: 24px;
  --main-font-lg: 32px;
  --main-mg-inline-sm: 12px;
  --main-width-outer: 1800px;
  --main-width-container: 1040px;
}

*{
    margin: 0;
    padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
    background-image: url(images/bg_pc.jpg);
}

ol,
ul {
    list-style: none;
    list-style-type: none;
}

.sp {
    display: block;
}

.bg_wrap {
    background-image: url(../images/bg_pc.jpg);
    background-size: cover;
    color: #ffffff;
    padding: 0 2.5% 30px 2.5%;
    font-weight: bold;
    text-align: center;
    font-family: "メイリオ", "ヒラギノ角ゴ Pro W3", "MS Pゴシック", sans-serif;
    font-feature-settings: "palt" 1;
    /* letter-spacing: 1px; */
}

.bg_wrap img {
    max-width: 100%;
}

.l_wrap {
    max-width: 1320px;
    margin: 0 auto;
    /* padding-top: 40px; */
}

.m_wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.l_wrap h3 {
    width: 95%;
    margin: 0 auto 20px auto;
}

.event_logo {
    padding: 40px 0 20px 0;
}

.event_subtitle {
    width: 95%;
    margin: 0 auto 20px;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.event_subtitle .small {
    font-size: 16px;
}

.ib {
    display: inline-block;
}


@media screen and (min-width: 480px) {
    .event_subtitle {
        font-size: 27px;
    }
    
    .event_subtitle .small {
        font-size: 18px;
    }

    .smp-br {
        display: none;
    }
}

/* --------------------header---------------------- */

#p_header,
#p_header2 {
	position: sticky;
	top: 0;
	z-index: 1000;
}

.menu_wrap {
    background-color: rgb(0 0 0 / 80%);
    box-shadow: 0 0 8px #525252;
}

.g_navi_wrap.flex {
    display: flex;
	margin: 0 auto;
	max-width: 1350px;
	justify-content: center;
}

.g_navi_wrap li {
	font-size: 20px;
	flex: 0 0 calc(100% / 5);
	text-align: center;
	border-right: solid 2px #b5b5b5;
    box-sizing: border-box;
}

.g_navi_wrap.add_boothlist li {
	font-size: 20px;
	flex: 0 0 calc(100% / 5);
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.1;
}

.g_navi_wrap li &gt; div {
	width: 100%;
}

.g_navi_wrap.add_boothlist li small {
	margin-top: 8px;
}

.g_navi_wrap li:first-child {
	border-left: solid 2px #b5b5b5;
}

.g_navi_wrap a {
	display: block;
	width: 100%;
	position: relative;
    font-family: "メイリオ", "ヒラギノ角ゴ Pro W3", "MS Pゴシック", sans-serif;
}

.g_navi_wrap a:not(.nolink)::after {
	content: "";
	position: absolute;
	width: 100%;
	border-bottom: solid 2px #b5b5b5;
	left: 0;
	bottom: -3px;
	/*横方向0で非表示にする*/
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	/*中央を基点にアニメーション*/
	-webkit-transform-origin: center top;
	transform-origin: center top;
	/*アニメーションの速度設定*/
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.g_navi_wrap a:not(.nolink):hover {
	background-color: rgb(0 0 0 / 80%);
}

.g_navi_wrap span {
	font-weight: bold;
	color: #fff;
	padding: 16px 8px;
	display: inline-block;
}

.g_navi a[tabindex*="-1"] {
	position: relative;
}

@media screen and (max-width: 767px) {
    /* 画面サイズが767px以下に適用 */

	.trigger_wrap {
		text-align: right;
		padding: 0 16px;
		position: relative;
		z-index: 1010;
	}

	.btn_trigger {
		font-size: 22px;
		color: #fff;
		background-color: transparent;
		border: 0;
		position: relative;
        top: 2px;
		height: 40px;
		width: 40px;
	}

	.btn_trigger i {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}

	.btn_trigger .menu_close,
	.btn_trigger.is-opend .menu_bar {
		display: none;
	}

	.btn_trigger.is-opend .menu_close {
		display: block;
	}

	.g_navi {
		width: 100%;
		margin-top: 40px;
		position: absolute;
		top: 0;
		max-height: 60vh;
		overflow-y: scroll;
		background-color: rgb(0 0 0 / 80%);
		box-shadow: 0 0 6px var(--myColor03);
		display: none;
		-ms-overflow-style: none;	/*スクロールバー非表示（IE・Edge）*/
		scrollbar-width: none;	/*スクロールバー非表示（Firefox）*/
	}

	.g_navi::-webkit-scrollbar{	/*スクロールバー非表示（Chrome・Safari）*/
		display:none;
	}

	.g_navi_wrap.flex {
		flex-direction: column;
		padding: 20px 16px;
	}

	.g_navi_wrap li {
		border: 0 !important;
		width: 100%;
		max-width: 400px;
		margin: 0 auto !important;
	}

	.g_navi_wrap li {
		border-bottom: solid 2px var(--myColor05);
	}

	.g_navi_wrap li:not(:last-child) {
		border-bottom: dotted 1px #fff !important;
	}

	.g_navi_wrap a {
		padding: 10px 8px;
	}

	.g_navi_wrap span {
        padding: 10px 8px;
		color: #fff;
	}

	/* .g_navi a[tabindex*="-1"]::after {
		color: var(--myColor01);
		text-shadow: 0 0 10px #575039, 0 0 10px #575039, 0 0 10px #575039, 0 0 10px #575039, 0 0 10px #575039;
	} */
}

/* --------------------コンテンツ---------------------- */

.content ul {
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
}

.content ul li:first-of-type {
    margin-bottom: 30px;
}

.content ul li:nth-of-type(2),
.content ul li:nth-of-type(3) {
    margin-bottom: 10px;
}

.content ul li em {
    font-size: 26px;
    font-style: normal;
}

.content ul li .red {
    font-size: 36px;
    color: #ff0000;
    line-height: 1.2;
    display: block;
    margin-top: 10px;
}

.content ul li span.ib {
    display: inline-block;
}

@media screen and (min-width: 480px) {
    .content ul li .red {
        font-size: 45px;
    }
}

/* --------------------イベント概要---------------------- */

#overview,
#ticket,
#event_youtube,
#notes,
#goods {
    padding-top: 50px;
}

#overview {
    text-align: center;
}

h4 {
    background-color: #dc3232;
    font-size: 26px;
    padding: 5px 0;
    margin-bottom: 40px;
}

#overview dl:not(:last-of-type) {
    margin-bottom: 30px;
}

#overview dl:nth-of-type(3) {
    margin-bottom: 40px;
}

h5 {
    font-size: 24px;
    text-decoration: underline;
    text-decoration-color: #ff0000;
    text-underline-offset: 10px;
    margin-bottom: 20px;
}

#overview dl dd {
    font-size: 16px;
}

#overview dl dd span {
    font-size: 26px;
}

#overview dl dd span.cast-ib {
    font-size: 16px;
    display: inline-block;
}

#overview dl dd em {
    font-style: normal;
    font-size: 24px;
}

#overview dl dd a {
    color: #0066ff;
    font-size: 20px;
    overflow-wrap: anywhere;
}

#overview dl dd p {
    margin: 40px auto 20px auto;
    max-width: 500px;
}

#overview dl dd:nth-of-type(2) {
    font-size: 16px;
}

#overview .guest {
    display: flex;
    flex-wrap: wrap;
}

#overview .guest div {
    width: 100%;
}

#overview .guest div p {
    width: 50%;
    margin: 40px auto 10px auto;
}

#overview .guest div span {
    font-size: 16px;
}

#overview .guest div p:last-of-type {
    position: relative;
}

/* #overview .guest div:last-of-type span {
    font-size: 14px;
}

#overview .guest div:last-of-type img {
    opacity: 0;
}

#overview .guest div:last-of-type p::before {
    content: "";
    background-color: #525252;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}

#overview .guest div:last-of-type p::after {
    content: "Coming soon…";
    background-color: #ff0000;
    display: table;
    width: 80%;
    position: absolute;
    margin: auto;
    padding: 10px 5px;
    line-height: 1em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

/* #overview .guest small {
    margin-top: 50px;
    display: block;
    width: 100%;
    font-size: 14px;
} */

#overview .overview_images {
    margin-top: 20px;
}

#overview .overview_image {
    max-width: 258px;
    margin: 0 auto;
}

#overview .overview_comment {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 16px;
}


#overview .guest .comingsoon {
    width: 100%;
    text-align: center;
}

@media screen and (min-width: 480px) {
    
    #overview .guest {
        justify-content: space-between;
    }

    #overview .guest div {
        width: 30%;
    }
  
    #overview .guest div p {
        width: 80%;
    }

    #overview .overview_images {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 30px;
    }

    #overview .overview_image {
        max-width: initial;
    }

    #overview .overview_comment {
        margin-top: 5px;
        margin-bottom: 0;
        font-size: 14px;
    }

    #overview .guest .comingsoon {
        width: 100%;
    }

    /* #overview .guest div:last-of-type::before {
        width: 80%;
    }

    #overview .guest div:last-of-type::after {
        font-size: 14px;
    } */

}

/* @media screen and (min-width: 768px) {

    #overview .guest div:last-of-type p::before {
        height: 306px;
        width: 234px;
    }

    #overview .guest div:last-of-type p::after {
        width: 60%;
        font-size: 18px;
    }

    #overview .guest div:last-of-type span {
        display: block;
        padding-top: 16px;
        font-size: 16px;
    }

    #overview .guest small {
        margin-top: 70px;
    }
    
} */

/* -----ズームイン----- */

.zoom {
    opacity: 0;
    transform: translate(0,0);
    transition: all .8s;
  &amp;.zoomout{
      transform: scale(0.8);
      opacity: 0;
  }
  &amp;.zoomin{
    opacity: 1;
    transform: scale(1);
  }
}

/* -----フェードイン----- */

.fade {
	transition: all 1500ms;
	opacity: 0;
	visibility: hidden;
	transform: translate(0px, 50px);
}
.fadein {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
}

/* --------------------チケット---------------------- */

#ticket p {
    line-height: 1.5;
    margin-bottom: 40px;
	font-size: clamp(14px, 3vw, 18px);
}

#ticket p span {
    display: block;
    margin-top: 10px;
}

#ticket div {
    border: 1px solid #ffffff;
    padding: 20px 5%;
    position: relative;
    max-width: 500px;
    margin: 0 auto ;
}

#ticket div:first-of-type {
    margin-bottom: 30px;
}

#ticket div dl {
    border-bottom: 0;
}

#ticket div:first-of-type dl {
    padding-bottom: 0;
} 

#ticket div dl dt {
    margin-bottom: 5px;
}

#ticket div dl dt a {
    color: #0066ff;
}

/* #ticket div dl dd span,
#ticket div small {
    font-weight: normal;
} */

#ticket div ul {
    background-color: rgba(95, 95, 95, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#ticket div ul li::before {
    content: "SOLD OUT";
    display: block;
    width: 40%;
    max-width: 200px;
    margin: 20px auto -10px auto;
    background-color: #ff0000;
    color: #ffffff;
    font-size: 20px;
    line-height: 0;
    padding: 23px 10px 20px 10px;
}

#ticket div ul li{
    font-size: 14px;
    width: 100%;
}

#ticket .lead {
    line-height: 2;
}

#ticket .lead .big {
    font-weight: 900;
    font-style: normal;
    font-size: 1.3em;
}

#ticket p span.ib {
    display: inline-block;
    margin: 0;
}

#ticket .ticket_boxTitle {
    font-size: 18px;
    line-height: 2;
}

#ticket .link {
    display: block;
    padding-top: 10px;
    color: #0066ff;
    overflow-wrap: anywhere;
}

#ticket .comment {
    margin-top: 40px;
    font-size: 20px;
}

#ticket .comment .ib {
    display: inline-block;
    margin: 0;
}

#ticket .comment .red {
    color: #ff0000;
    font-style: normal;
}

@media screen and (min-width: 480px) {
    #ticket .comment {
        font-size: 24px;
    }
}


/* ---------払い戻しのお知らせ--------- */

#ticket .info {
    padding: 30px 20px;
    margin: 60px auto 0 auto;
}

.info h6 {
    font-size: 20px;
    margin-bottom: 15px;
}

.info p {
    margin-bottom: 20px;
}

.sp_left {
    font-size: 14px;
}

#ticket .info dl {
    padding: 0;
}

#ticket .info dl:not(:last-of-type) {
    margin-bottom: 40px;
}

.info dl dt {
    font-size: 18px;
    margin-bottom: 10px;
}

.info dl dd {
    margin-bottom: 20px;
}

.info dl dd a {
    font-size: 16px;
}

.info dl span {
    font-size: 22px;
}

.info dl dt i {
    font-size: 20px;
    font-style: normal;
}

@media screen and (max-width: 480px) {
    
    .sp_left {
      text-align: left;
    }
  
    .sp_480 {
      display: none;
    }
  
    .info_span {
      margin-bottom: 5px;
    }
  
}
  
@media screen and (min-width: 768px) {

    .info {
        max-width: 1000px;
        margin: 100px auto 0 auto;
        padding: 40px 30px;
    }

    #ticket .info {
        padding: 60px 20px;
    }
  
    #ticket .info .sp_left {
        font-size: 18px;
    }
    
    .info h6 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .info p {
        margin-bottom: 30px;
    }

    #ticket .info dl:not(:last-of-type) {
        margin-bottom: 50px;
    }

    .info dl dt {
        font-size: 22px;
    }

    .info dl dt i {
        font-size: 24px;
    }

    .info dl span {
        font-size: 30px;
    }

    #ticket .info dl dd a {
        font-size: 20px;
    }

}
  
/* --------------------動画---------------------- */

/* -----swiper----- */

.wrapper {
    position: relative; /* ナビゲーション、ページネーションの位置決めに必要 */
    max-width: 90%;
    margin: 0 auto;
}

.swiper {
    --swiper-navigation-sides-offset: -40px; /* ナビゲーションボタンの位置 */
    --swiper-pagination-bottom: -20px; /* ページネーションの位置 */
}

.swiper-slide a img {
    border-radius: 10px;
    max-width: 90%;
}

.swiper-slide {
    position: relative;
}

.swiper-slide::before {
    content: "";
    display: block;
    position: absolute;
    width: 50px;
    height: 30px;
    background-color: red;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.swiper-slide::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 50%;
    left: 50.3%;
    transform: translate(-50%, -50%);
}

/* ナビゲーションボタンとページネーションの位置 */
.wrapper {
    --swiper-navigation-sides-offset: -6%;
    --swiper-navigation-color : #fff;
    --swiper-navigation-size: 18px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    opacity: 0.7; /* ボタンホバー時 */
}

/* -----modal----- */

.modaal-close {
    top: 65px;
}

.modaal-video-wrap {
    margin: auto 0;
}

/* --------------------注意事項---------------------- */

#notes dl {
    border-bottom: 0;
    text-align: left;
    margin-bottom: 30px;
    padding-left: .5em;
}

#notes dl dt {
    font-size: 20px;
    margin-bottom: 15px;
}

#notes dl dd ul {
    list-style-type: disc;
    padding-left: 1.1em;
}

#notes dl dd ul li {
    margin-bottom: 10px;
    font-weight: normal;
}

/* --------------------グッズ---------------------- */

#goods dl {
    display: inline-block;
}

#goods dl dd {
    font-size: 20px;
}

#goods .goods_time dd {
    text-align: left;
}

#goods .goods_time dd:first-of-type {
    text-indent: -5em;
    padding-left: 5em;
}

#goods dl dd em {
    font-style: normal;
    font-size: 26px;
}

#goods dl dd small {
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    display: block;
}

#goods dl dd a:hover {
    opacity: .8;
}

#goods dl dd a img {
    margin-top: 10px;
}

#goods div {
    background-color: #c7c7c7;
    border-radius: 5px;
    padding: 15px;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}

#goods div p {
    width: 100%;
}

#goods div ul {
    font-size: 18px;
    color: #000;
    width: 100%;
}

#goods div ul li {
    line-height: 1em;
    font-size: 20px;
}

#goods div ul li:first-of-type {
    margin: 10px 0;
}

#goods ol {
    font-weight: normal;
    line-height: 2em;
    text-align: left;
    display: inline-block;
    margin-bottom: 40px;
    padding-left: 1em;
}

#goods ol li {
    margin-bottom: 10px;
    text-indent: -1em;
}

#goods ol li::before{
    content: "※";
}

/* --------------------プレイベント---------------------- */

.pre_content div dl dd span,
.pre_content article p span {
    font-size: 22px;
}

.pre_title,
.pre_content,
.pre_2,
.pre_title ul li a,
.pre_content ul  {
    font-size: 18px;
}

#pre_1,
#pre_2 {
    padding-top: 40px;
}

/* ---------- */

.pre_title h3 {
    padding: 40px 0 30px 0;
    font-size: 24px;
    line-height: 30px;
}

.pre_title ul {
    display: inline-flex;
    flex-wrap: wrap;
}

.pre_title ul li {
    position: relative;
}

.pre_title ul li a {
    color: #fff;
    text-decoration: none;
    padding-right: 25px;
    display: block;
}

.pre_title ul li:first-of-type {
    margin-right: 20px;
}

.pre_title ul li::before {
    content: "";
    display: inline-block;
    width: 20px;
	height: 20px;
	border-radius: 50%;
    background-color: #ff0000;
    position: absolute;
    right:0;
    top: 3px;
    pointer-events: none;
}

.pre_title ul li::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 10px solid #fff;
    border-bottom: 0;
    position: absolute;
    right: 5px;
    top: 9px;
    pointer-events: none;
}

.pre_content h4 {
    line-height: 1.2em;
}

.pre_content&gt;p {
    width: 70%;
    margin: 0 auto;
}

.pre_content&gt;p a {
    position: relative;
}

.pre_content&gt;p a::after {
    content: url(../images/zoom.png);
    aspect-ratio: 1 / 1;
    display: block;
    position: absolute;
    right: 5px;
    bottom: 0;
    padding: 5px;
}

.pre_content ul {
    margin-top: 20px;
}

.pre_content ul li {
    margin-top: 15px;
}

.pre_content ul li span {
    color: #ff0000;
}

.pre_content&gt;div {
    margin-top: 50px;
}

.pre_content div dl:not(:last-of-type) {
    margin-bottom: 30px;
}

.pre_content div dl dd {
    font-size: 16px;
}

.pre_content div dl dd:nth-of-type(2) {
    font-size: 24px;
}

.pre_content dl dd em {
    font-size: 20px;
    font-style: normal;
}

.pre_content article {
    border: 1px solid #fff;
    padding: 10px 10px;
    margin: 20px 0 40px 0;
}

.pre_content article h6 {
    font-size: 26px;
    /* margin-bottom: 15px; */
}

.pre_content article p {
    font-size: 16px;
}

.pre_content article ol {
    font-size: 16px;
    padding-top: 10px;
}

.pre_content article ol li a {
    color: #0066ff;
}

.pre_content article small {
    font-size: 14px;
    font-weight: normal;
}

/* --------------------イベントに関するお問い合わせ---------------------- */

.info_event {
    border: 2px solid #ff0000;
    padding: 30px 5%;
    max-width: 500px;
    margin: 50px auto 20px auto;
}

.info_event p {
    font-size: 20px;
    margin-bottom: 20px;
}

.info_event dl dt {
    margin-bottom: 10px;
    font-size: 18px;
}

.info_event dl dd {
    font-size: 18px;
}

.info_event dl dd a {
    text-decoration: none;
    color: #fff;
}

.info_event dl dd a.notTell {
    text-decoration: underline;
    color: #0066ff;
    overflow-wrap: anywhere;
}

.info_event dl dd span {
    font-size: 16px;
    font-weight: normal;
}

/* =======================================================
　　↓ bnr_fixed　ここから ↓ 250709追加
=========================================================*/

/* ----------sp--------- */

#bnr_fixed {
    position: fixed;
    left: clamp(8px, 2vw, 16px);
    bottom: clamp(8px, 2vw, 16px);
    z-index: 1010;
    text-align: left;
}

#bnr_fixed a {
display: block;
}

#bnr_fixed a:first-of-type {
    margin-bottom: 4%;
}

#bnr_fixed a img {
    width: clamp(120px, 15vw, 300px);
    left: clamp(8px, 2vw, 16px);
    bottom: clamp(8px, 2vw, 16px);
    box-shadow: 0px 0px 5px 2px rgba(222, 222, 222, .2);
}

/* --×ボタン-- */
#bnr_fixed i {
font-size: 1.4em;
color: #fff;
text-shadow: 0 0 0.2em #000,0 0 0.3em #000;
display: inline-block;
cursor: pointer;
position: relative;
z-index: 999;
    margin-bottom: 6%;
}

.hidden {
display: none !important;
}

/* ----------pc--------- */
@media screen and (min-width: 768px) {

    #bnr_fixed a,
    #bnr_fixed i {
        transition-duration: .2s;
    }

    #bnr_fixed a:hover,
    #bnr_fixed i:hover {
        opacity: .7;
    }

}


/* --スマホフッター広告削除-- */
footer.tvo-footer {
position: relative;
    z-index: 1000;
}
.tvo-footer_sp_ad {
display: none !important;
}

@media only screen and (max-width: 767px) {
    footer.tvo-footer.sp_ad_pad {
        padding-bottom: 0 !important;
    }
}


/* =======================================================
　　↑ bnr_fixed　ここまで ↑
=========================================================*/


@media screen and (min-width: 768px) {

    .sp {
        display: none;
    }

    h4 {
        font-size: 36px;
        margin-bottom: 70px;
    }

    h5 {
        font-size: 36px;
    }

    #overview,
    #ticket,
    #event_youtube,
    #notes,
    #goods {
        padding-top: 100px;
    }

    .l_wrap h3,
    .l_wrap h3 span {
        font-size: 100px;
        line-height: 1em;
    }

    .l_wrap h3 {
        width: 100%;
        margin-bottom: 50px;
    }

    .event_logo {
        padding: 50px 0;
    }

    .event_subtitle {
        width: 100%;
        margin-bottom: 50px;
        font-size: 45px;
    }
    
    .event_subtitle .small {
        font-size: 26px;
    }

    /* -----header----- */

    .g_navi_wrap a:hover:after {
		transform: scale(1, 1);
	}

	.trigger_wrap {
		display: none;
	}

	.g_navi {
		display: block !important;
	}

    /* -----コンテンツ----- */

    .content p {
        width: 90%;
        margin: 0 auto;
    }

    .content ul {
        font-size: 26px;
        margin-top: 70px;
    }

    .content ul li {
        line-height: 2em;
    }

    .content ul li em {
        font-size: 36px;
    }

    .content ul li .red {
        font-size: 67px;
        margin-top: 15px;
    }

    .content ul li:first-of-type {
        margin-bottom: 50px;
    }

    .content ul li:nth-of-type(2),
    .content ul li:nth-of-type(3) {
        margin-bottom: 0;
    }

    /* -----イベント概要----- */

    #overview dl:not(:last-of-type) {
        margin-bottom: 60px;
    }

    #overview dl dd {
        font-size: 26px;
    }

    #overview dl dd span {
        font-size: 36px;
    }

    #overview dl dd span.cast-ib {
        font-size: 24px;
    }

    #overview dl dd em {
        font-size: 34px;
    }

    #overview dl dd a {
        font-size: 25px;
    }

    #overview dl dd:nth-of-type(2) {
        font-size: 24px;
    }

    #overview dl:nth-of-type(3) {
        margin-bottom: 70px;
    }

    #overview dl dd p {
        max-width: 100%;
    }

    #overview dl dd small {
        font-size: 16px;
    }

    #overview .guest div span {
        font-size: 24px;
    }

    #overview .guest div p {
        width: 100%;
    }

    #overview .overview_comment {
        margin-top: 20px;
        margin-bottom: 0;
        font-size: 18px;
    }

    /* -----チケット----- */

    #ticket p {
        margin-bottom: 50px;
    }

    #ticket p span {
        margin-top: 15px;
    }

    #ticket div {
        padding: 40px 5%;
    }

    #ticket div:first-of-type {
        margin-bottom: 50px;
    }

    #ticket div dl dt {
        margin-bottom: 10px;
        padding-top: 10px
    }

    #ticket div dl {
        font-size: 20px;
    }

    #ticket div dl dt a:hover {
        opacity: .8;
    }

    #ticket div small {
        font-size: 18px;
    }

    #ticket div ul li {
        font-size: 20px;
    }

    #ticket div ul li::before {
        margin: 20px auto 0px auto;
        font-size: 24px;
    }

    #ticket .lead .big {
        font-size: 1.4em;
    }

    #ticket .ticket_boxTitle {
        font-size: 22px;
    }

    #ticket .comment {
        margin-top: 50px;
        font-size: 32px;
    }

    /* -----YouTube----- */

    .wrapper {
        --swiper-navigation-size: 30px;
    }

    /* ----------グッズ---------- */

    #goods dl dd {
        font-size: 26px;
    }

    #goods dl dd em {
        font-size: 36px;
    }

    #goods dl dd small {
        font-size: 16px;
    }

    #goods dl dd:last-of-type {
        margin-bottom: 40px;
    }

    #goods dl dd a:hover {
        cursor: pointer;
    }

    #goods article {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #goods article div {
        margin: 2% 0;
        width: 45%;
    }

    #goods ol {
        margin: 20px 0 60px 0;
    }

    /* ----------プレイベント---------- */

    .pre_title h3,
    .pre_content div dl dd span,
    .pre_content article h6,
    .pre_content article p span {
        font-size: 36px;
    }

    .pre_content ol li:first-of-type,
    .pre_title ul li a,
    .pre_content ul,
    .pre_content div dl dd,
    .pre_content article p {
        font-size: 26px;
    }

    /* ---------- */

    .pre_title h3 {
        padding: 80px 0 40px 0;
        line-height: 45px;
    }

    .pre_content h4 {
        padding-top: 12px;
    }

    #pre_1 {
        padding-top: 60px;
    }

    #pre_2 {
        padding-top: 100px;
    }

    .pre_title ul li::before {
        width: 30px;
        height: 30px;
    }

    .pre_title ul li::after {
        border-right: 8px solid transparent;
        border-left: 8px solid transparent;
        border-top: 16px solid #fff;
        right: 7px;
        top: 11px;
    }

    .pre_title ul li:hover {
        opacity: .8;
    }

    .pre_title ul li a {
        padding-right: 40px;
    }

    .pre_content&gt;div {
        margin-top: 80px;
    }

    .pre_content&gt;p {
        width: 40%;
    }

    .pre_content ul {
        margin-top: 60px;
    }

    .pre_content ul li {
        margin-top: 30px;
        line-height: 40px;
    }

    .pre_title ul li:first-of-type {
        margin-right: 50px;
    }

    .pre_content div dl:not(:last-of-type) {
        margin-bottom: 70px;
    }

    .pre_content dl dd em {
        font-size: 34px;
    }

    .pre_content article {
        margin: 30px auto 70px auto;
        max-width: 900px;
        padding: 20px 10px;
    }

    .pre_content article ol {
        padding-top: 10px;
    }

    .pre_content article ol li a {
        font-size: 20px;
    }

    .pre_content article small {
        font-size: 16px;
    }

    /* --------------------イベントに関するお問い合わせ---------------------- */

    .info_event {
        margin: 100px auto 80px auto;
        padding: 40px 5%;
    }

    .info_event p {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .info_event dl dt {
        font-size: 19px;
        margin-bottom: 15px;
    }

    .info_event dl dd {
        font-size: 19px;
    }

    .info_event dl dd a {
        pointer-events: none;
    }

    .info_event dl dd a.notTell {
        pointer-events: auto;
    }

}
</pre></body></html>