@media print{.header, .header_sp, .navi, .weather_info_sp, .search, .footer_sp, .footer{display:none;}} 

img{
	vertical-align:top;
	width:100%;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline: none;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

html {height: 100%;}

body {
	font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	margin:0;padding:0;
	font-size:16px;
	line-height:1.8em;
	color:#FFF;
	font-weight: 450;
	background: #FFF;
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	overflow-x: hidden;

	position:relative;z-index:0;

}


a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}

/*
a:hover  {
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}
*/

img {
	height: auto;
	/*width: auto;*/
	max-width: 100%;
	line-height: 100%;
	vertical-align: top;
}


span.txbr{display: inline-block;}

.small{font-size:0.8em;line-height:1.0em;}
.middle{font-size:1.5em;}
.big{font-size:1.5em;line-height:1.0em;}

.bold{font-weight:bold;}
.btm_space{margin-bottom:15px;}
.btm_border{border-bottom:1px solid #DDD;}

.txt_line_link{
	border-bottom:1px solid #185fbc;
	color:#185fbc;
}


/*背景白*/
.txt_link{
	transition: all 0.3s;
	color:#e4ffb1;
	border-bottom:#e4ffb1 1px solid;
}

.txt_link:hover{
	color:#fff600;
	border-bottom:#fff600 1px solid;
}



.loading{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #FFF;
	z-index: 10005;
}

.loading:after {
	content: "";
	background: url("https://025.teny.co.jp/theme/special/capcomten/img/load.webp") no-repeat;
	background-size: 300px auto;
	width: 300px;
	height: 300px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -150px 0 0 -150px;
	z-index: 10006;
}

p.indent {
	padding-left:1em;
	text-indent:-1em;
	padding-bottom:5px;
}

p.sp_indent {}
.sp_icon{
	display:none;
}



.material-icons{
	/*margin-bottom:10px;*/
	font-size:1em;
	display: inline-flex;
	vertical-align: middle;
	margin-top:-5px;
}

/*------------------------------------------
全体のフェード
------------------------------------------*/
.fadeIn {
  opacity: 0;
  transition: 1s;
}
.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 20px);
  transition: 1s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}


.fadeIn_left {
  opacity: 0;
  transform: translate(-20px, 0);
  transition: 1s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.fadeIn_right {
  opacity: 0;
  transform: translate(20px, 0);
  transition: 1s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/*------------------------------------------
リンクボタン
------------------------------------------*/

.link_button a {
	background-color:#23a0a0;
	color:#FFF;
	width: 100%;

	box-sizing:border-box;
	display: inline-block;
	position: relative;
	line-height:1.3em;
	padding:30px 20px 30px 20px;

}

.link_button a::before {
	background-color: #FF0;
	position: absolute;
	top: 50%;
	right: 20px;
	width: 25px;
	height: 2px;
	margin-top: 0px;
	content: "";
}

.link_button a::after {
	position: absolute;
	top: 50%;
	right: 24px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-top: 2px solid #FF0;
	border-right: 2px solid #FF0;
	content: "";
	display: inline-block;
	vertical-align: middle;
}

.link_button a:hover {
	background-color:#f4f4f4;
	color:#116d6d;
	border-left:5px solid #23A0A0;
}

.link_button a:hover::before {
	background-color: #116d6d;
}

.link_button a:hover::after {
	border-top: 2px solid #116d6d;
	border-right: 2px solid #116d6d;
}

/* SNS */
/*========= レイアウトのためのCSS ===============*/


/*========= body背景色の変化CSS ===============*/
/*------------------------------------------
タイトル下、sp用サブメニュー
------------------------------------------*/
.right_icon{
	display: none;
}

/*------トップに戻るボタン-----*/
.pagetop {
	position: fixed;
	bottom: 10px;
	right: -10px;
	z-index:99;
	font-weight:bold;
}

.pagetop a {
	display: block;
	text-align: left;
	text-decoration: none;
	padding: 0;
	color:#FFFFFF;
	transition: all 0.3s;
}

.pagetop a:hover  {
	color: #ffff00;
	padding:0 10px 0 0;
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.6;
	/*transform: rotateZ( 360deg );*/
}


/*------トップに戻るボタン-----*/

/*------右下チケットボタン-----*/
.pageticket {
	position: fixed;
	bottom: 60px;
	right: -10px;
	z-index:9;
	font-weight:bold;
}

.pageticket a {
	display: block;
	text-align: left;
	text-decoration: none;
	padding: 0;
	color:#FFFFFF;
	transition: all 0.3s;
}

.pageticket a:hover  {
	color: #ffff00;
	right: 10px;
	padding:0 10px 0 0;
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.6;
}

/*------トップに戻るボタン-----*/


/*------------------------------------------
メイン画像
------------------------------------------*/
#main{
	background-color:#FFF;
	width:100%;max-width:2000px;margin:0 auto;
	display:grid;
	grid-template-columns:60% 40%;
	padding-top:53px;
}

#main_text{
	display:grid;
	place-content: center;
	place-items: center;
}

#main_day{width:90%;margin:0 auto;}
#main_banbi{width:80%;margin:0 auto;padding-top:10%;}




/*------------------------------------------
本文　項目共通
------------------------------------------*/
h1{
	font-size:1.5em;
	color:#333333;
	box-sizing:border-box;
	padding:20px 0;
	line-height:0.8em;
	font-weight:normal;
}

h1 span{font-size:0.5em;}

.blue_text{
	text-align:center;font-size:1.3em;color:#052f6b;font-weight:bold;
	margin:50px 0;
}

.text{
	color:#333333;
	line-height:1.8em;
	margin:0 auto;
	width:100%;max-width:1000px;
	padding:30px;box-sizing:border-box;
}

.inner_text{
	width:95%;max-width:1000px;
	margin:0 auto;
}



/*--青・黄・グレーボーダー----------------------*/
.under_border {
	position: relative;
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
	color: #333;
	margin-bottom:20px;
}

/*--グラデーション・格子背景----------------------*/
.cyber{
	color:#FFF;
	text-align:center;
	background-color:#144386;
}


/*------------------------------------------
公式X・最新情報
------------------------------------------*/

#oshirase_grid{
	display:grid;grid-template-columns:1fr 1fr;
	gap:20px;
}

.link_button {
    display: flex;
    flex-direction: column;
}

.link_button a {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*------------------------------------------
youtube
------------------------------------------*/
#mv{
	width:100%;margin:1em auto 0 auto;
	background-color:#000;
	padding:50px 0;box-sizing:border-box;
}
.yt_movie {
	position: relative;
	padding-top: calc(9 / 14.4 * 90%);
}
 
.yt_movie iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*------------------------------------------
HOME
------------------------------------------*/
#home{
	padding:50px 0;box-sizing:border-box;
	background-color:#144386;
}
#home>.text{background-color:#FFF;border-radius:8px;max-width:calc(1000px - 60px);}


#home>.text>.under_border{font-size:1.5em;color:#333;}

/*------------------------------------------
公式サイトリンク
------------------------------------------*/
#official{}

/*------------------------------------------
開催概要
------------------------------------------*/
#gaiyou{}

#gaiyou_grid{border-top:1px dotted #CCC;}

#gaiyou_grid>div{
	display:grid;
	grid-template-columns:200px 1fr;
	padding:20px 0;
	border-bottom:1px dotted #CCC;
}

h2{
	font-weight:normal;
}

h2.normal{
	place-content: center;
	text-align:center;
}

/*------------------------------------------
キャラクターパレード
------------------------------------------*/
#parade{display: grid;background: url("https://025.teny.co.jp/theme/special/capcomten/img/photo01.webp") center/cover no-repeat;aspect-ratio: 719 / 334;}
#parade_text{align-self:end;justify-self: start; display:inline-block;padding:0 10px;background-color:#FFF;color:#777;margin-bottom:10px;}

/*------------------------------------------
見どころ
------------------------------------------*/
#midokoro{}

/*------------------
見どころ-ROUND
--------------------*/
.corner_round,h2.corner{
	background-color: #144386;color: #fff;font-weight:bold;
}

/* 上の「ROUND 1」部分 */
.corner_round {
	display: inline-block;
	padding: 5px 20px;
	border: 1px solid #fff;
	margin-left:-20px;
	position: relative;
	z-index: 2;
}

/* 下のタイトル部分 */
h2.corner {
	width: 100%;
	padding: 20px 20px;
	box-sizing: border-box;
	font-size:1.2em;
	margin-top:-12px;

	position: relative;
	z-index: 1;
}


.corner_text{
	margin:0em 0 1em 0;font-size:1.1em;padding:1em 0;
}

/*------------------
見どころ-画像
--------------------*/

.midokoro_r1{
	display: grid;
	gap: 20px;
	font-size:10px;line-height:1.8em;
	max-width:1200px;margin:0 auto;
}

#midokoro_r1_img {
	grid-template-columns: 301fr 570fr;margin-bottom:10px;
}

#midokoro_r2_img {
	grid-template-columns: 354fr 570fr;
}

/*------------------
見どころ-動画OK!
--------------------*/
.rec{display:grid;grid-template-columns:1fr 7fr;gap:20px;margin:10px 4px;}
.rec div{align-content: center;}

/*------------------
見どころ-項目
--------------------*/
h3{
	margin-top:1em;color:#144386;
	border:2px solid #144386;
	font-size:clamp(13px, 8vw, 1.2em);font-weight:bold;
	background: linear-gradient(141deg,rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 78%, rgba(255, 255, 255, 1) 77%, rgba(247, 247, 247, 1) 90%, rgba(255, 255, 255, 1) 90%);
}

.taiken_grid{
	display:grid;grid-template-columns:minmax(30px, 60px) 1fr;
}
.taiken_img{align-content: center;background-color:#144386;}
.taiken_text{align-content: center;padding:20px;box-sizing:border-box;color:#144386;font-weight:bold;}

.midashi_midokoro{
	padding:20px;box-sizing:border-box;margin-top:1em;
}


.midokoro_2cl_img{
	display:grid;grid-template-columns:1fr 1fr;gap:20px;
}

/*------------------
見どころ-ピクセルラボ
--------------------*/
#pixel_lab{
	display:grid;
	grid-template-columns:572fr 548fr;gap:20px;
	font-size:1em;
	max-width:1000px;width:95%;margin:0 auto;
}

#pixel_lab_text{left:-20px;position: absolute;width:fit-contents;background-color:#24AAE1;border:3px solid #FFF;color:#FFF;font-weight:bold;border-radius:9999px;padding:10px 20px;line-height:1.5em;}
#pixel_lab img{padding-top:40px;}

#pixel_lab_grid{
	display:grid;text-align:center;place-content:center;gap:10px;padding-top:20px;
	grid-template-columns:1fr;
	width:100%;max-width:500px;margin:0 auto;
}

#pixel_lab_grid > .text{background-color:#144386;color:#FFF;border-radius:5px;padding:10px;box-sizing:border-box;}
#pixel_lab_grid > .arrow{color:#ffa100;font-size:10px;}

/*-- キャラクター---------------------------*/

#midokoro_dotsample{
	border-radius:20px;box-sizing:border-box;border:2px solid #000;margin:1em auto 0 auto;max-width:920px;
}

#midokoro_dotsample>div{
	border-radius:20px;background: url(https://025.teny.co.jp/theme/special/capcomten/img/bg_koushi.webp),#9b9b9b;border:5px solid #FFF;padding:20px;
}

/*-- キャラクター(grid)---------------------------*/
.midokoro_chara{
	clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
	background-color:#000;padding:5px 20px;box-sizing:border-box;width:100%;max-width:400px;color:#FFF;margin-bottom:20px;font-family: "DotGothic16", sans-serif;
	margin-top:-26px;margin-left:-26px;
	border-radius:15px 0 0 0 ;
}

.midokoro_chara_grid{
	display:grid;grid-template-columns: 2fr 1fr 1fr 1fr 1fr;gap:10px;
	align-items: center;
	width:100%;max-width:500px;margin:0 auto;
	text-align:center;color:#000;

}

.midokoro_chara_grid img{
	max-width:60px;
}

.midokoro_chara_name{
	border-radius:9999px;background-color:#FFF;border:1px solid #000;padding:0 10px;box-sizing:border-box;

}



/*------------------
見どころ-フェイシャルトラッキングミラー
--------------------*/
#mirror{
	background-color:#152f78;padding:50px;box-sizing:border-box;
	background: url(https://025.teny.co.jp/theme/special/capcomten/img/bg_koushi.webp),#152f78;
	border-image: url('https://025.teny.co.jp/theme/special/capcomten/img/kagi_flame.webp') 80 / 80px;
	color:#FFF;font-weight:bold;text-align:center;
}

/*
.mirror_frame{
	border: solid #ccc 20px;
	border-image: url('https://025.teny.co.jp/theme/special/capcomten/img/yellow_flame.webp') 30 fill / 30px;
	width: fit-content;margin-bottom:10px;color:#000;margin-bottom:20px;
}
*/

.mirror_grid{
	display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px;
}
.mirror_grid img{background-color:#152F78;margin-bottom:10px;}

.round_img{
	max-width:658px;margin:1em auto 0 auto;text-align:center;
}




/* swiper */
.swiper1 {max-width: 658px;}
.swiper2 {max-width: 464px;}

.swiper_container1 {max-width: 658px;}
.swiper_container2 {max-width: 464px;}


.swiper-slide img {
	height: auto;
	width: 100%;
}

.swiper_container{
	margin-left: auto;
	margin-right: auto;
	position: relative;
	text-align:center;
}

/* 前への矢印 */
.swiper-button-prev {left: -40px;}
/* 次への矢印 */
.swiper-button-next {right: -40px;}
/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {bottom: -25px;}
.swiper-pagination-bullets2.swiper-pagination-horizontal2 { bottom: -25px;}





/*------------------------------------------
チケット
------------------------------------------*/
#ticket{}

.midashi_tate {
	position: relative;
	border-left: 1px solid #ddd;
	color: #333;
	margin-bottom: 10px;
	font-size:1.2em;
	padding-left:10px;
}


.midashi_tate::after {
	position: absolute;
	top: 0;
	left: -1px;
	z-index: 1;
	content: '';
	width: 2px;
	height: 60%;
	background: #23A0A0;
}


/*------------------------------------------
展示ゾーン
------------------------------------------*/
#zone{}

#make_dot_grid{

}

/*
#tenji_text{
	display:grid;grid-template-columns:1fr 150px;gap:10px;
	place-content: center;
	place-items: center;
}

#tenji_text_camera{
	grid-column: 2 / 3;
	grid-row: 1 / 3;
}

.tenji_grid{
	display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px;
}


.zone_grid{
	display:grid;grid-template-columns:auto 1fr;grid-template-rows: auto auto 1fr;gap:0 5px;
}

.zone_img{
	grid-column-start: 1;
	grid-column-end: 3;
}

.zone_name{
	line-height:1em;font-size:0.5em;display:grid;
	place-content: center start;
	place-items: center start;
}

.zone_title{
	border-left:1px solid #333333;display:grid;
	place-content: center start;
	place-items: center start;

	padding-left:5px;
}

.zone_text{
	border-top:1px solid #333333;
	grid-column-start: 1;
	grid-column-end: 3;
}


#photo_spot{
	margin-top:80px;
}

#photo_spot_text{
	font-size:2em;text-align:center;width:100%;max-width:550px;
	display:grid;grid-template-columns:1em auto 1em;margin:1em auto;gap:20px;
	place-items: end;text-shadow: 2px 3px 3px rgba(57, 57, 147, 0.8);
}

#zone_bottom{
	display:grid;grid-template-columns:1fr 350px;gap:10px;
	place-items: start start;

}

#zone_bottom_event{
	display:grid;grid-template-columns:100px 1fr;width:100%;
}

#zone_bottom_event div{
	border-bottom:1px solid #333333;padding:10px;box-sizing:border-box;
}

#zone_bottom_corner{
	text-align:center;
}

.zone_bottom_event_zone{
	line-height:1em;
}

.zone_bottom_event_corner{
	border-left:1px solid #333333;
}
*/


/*------------------------------------------
チケット
------------------------------------------*/

h2.midashi{
	font-size:1.5em;
	color:#333333;
	box-sizing:border-box;
	padding:20px 0;
	line-height:0.8em;
	font-weight:normal;
}

h2.midashi span{font-size:0.5em;}



/*------------------------------------------
音声ガイド
------------------------------------------*/
#audio{}

#audio_grid{
	display:grid;grid-template-columns:200px 1fr;gap:20px;
	grid-template-rows: auto 1fr;
}

#audio_grid_photo{grid-area: 1 / 1 / 3 / 2;align-self: center;}
#audio_grid_text1{grid-area: 1 / 2 / 2 / 3;align-self: end;}
#audio_grid_text2{grid-area: 2 / 2 / 3 / 3;align-self: end;border:1px solid #CCC;padding:20px;box-sizing:border-box;background-color:#FFF;}

#rental{
	border:5px solid #144386;padding:20px;box-sizing:border-box;color:#144386;margin:1em 0;background-color:#FFF;

}
#rental > div{width:fit-content;margin:0 auto;}

#audio_toi{
	border:1px solid #CCC;padding:20px;box-sizing:border-box;text-align:center;margin:1em 0;background-color:#FFF;
}

#download_app{
	display:grid;grid-template-columns:231fr 256fr;gap:10px;width:100%;max-width:300px;
}

.audio_pickup{
	color:#e5640d;
	border:1px solid #f89a2b;padding:10px 20px;margin:10px 0;font-size:0.9em;
}
p.audio_indent {
	padding-left:1em;
	text-indent:-0.7em;
	padding-bottom:0px;
}


/*------------------------------------------
アクセス
------------------------------------------*/
#access{}
/*------------------------------------------
お問い合わせ
------------------------------------------*/
#toi{}

#inner_grid_toi{
	display:grid;grid-template-columns:auto 1fr;gap:0 20px;
}

/*------------------------------------------
fotter
------------------------------------------*/
#copy_right{
	width:90%;max-width:1000px;margin:1em auto 0 auto;padding:20px;text-align:center;
}

footer{
	display:grid;
	color:#333;
	background-color:#FFF;
}

#footer_inner{
	display:grid; grid-template-columns: 100px 1fr;width:90%;max-width:1000px;margin:0 auto;padding:30px 0;
}

#footer_inner div.spo_bn:nth-child(odd){text-align:left;}
#footer_inner div:nth-child(odd){padding-right:1em;}
#footer_copy{font-size:0.8em;text-align:center;}

.footer_spo{
	display:inline-block;box-sizing:border-box;
	padding:0 10px 20px 10px;background-color:#FFF;
	width:auto;
}


.footer_spo img{
	height:38px;width:auto;
}

.footer_spo img.bn_b{
	height:70px;width:auto;
}

.footer_spo img.bn_m{
	height:60px;width:auto;
}





@media (min-width: 0px) and (max-width: 1024px) {

	.text{width:90%;}

	/*------------------------------------------
	展示ゾーン
	------------------------------------------*/
	/*
	#tenji_text{
		display:grid;grid-template-columns:1fr 25%;gap:10px;
		place-content: center;
		place-items: center;
	}
	#tenji_text_img{
		grid-column: 1 / 3;
	}

	#tenji_text_camera{
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}

	#tenji_text_main{
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	*/
}


@media (min-width: 0px) and (max-width: 940px) {

	#pixel_lab_grid{
		gap:0px;
		grid-template-columns: 1fr;
	}
}





@media (min-width: 0px) and (max-width: 900px) {

	#audio_grid{
		grid-template-columns:25% 75%;
	}
	#audio_grid_text1{grid-area: 1 / 1 / 2 / 3;align-self: center;order:1;}
	#audio_grid_photo{grid-area: 2 / 1 / 3 / 2;order:2;align-self: end;}
	#audio_grid_text2{
		grid-area: 2 / 2 / 3 / 3;align-self: end;order:3;
	}

}



@media (min-width: 0px) and (max-width: 780px) {

	#audio_grid_text2{padding:10px;font-size:0.9em;line-height:1.7em;}
	#mv{padding:0px 0;}
	#home>.text{width:calc(95% - 60px);}
}

@media (min-width: 0px) and (max-width: 768px) {

	.text{font-size:1.0em;width:95%;}

	/*------------------------------------------
	メイン画像
	------------------------------------------*/
	#main_bg{


	}

	#koi{width:26%;top:50%;left:5%;}
	#kingyo{width:22%;top:22%;left:74%;}

	#main_bn{
		margin: -30% auto -7% auto;
	}

	#main_bn div{
		width:60%;max-width:500px;margin:0 auto;
	}



	/*------------------------------------------
	展示ゾーン
	------------------------------------------*/
	.tenji_grid{
		grid-template-columns:1fr 1fr;
	}

	#tenji_text{
		display:grid;grid-template-columns:1fr 25%;gap:10px;
		place-content: center;
		place-items: center;
	}
	#tenji_text_img{
		grid-column: 1 / 2;
	}

	#tenji_text_camera{
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}

	#tenji_text_main{
		grid-column: 1 / 3;
	}


	#photo_spot_text{
		place-items: end center;
	}






	/*------------------------------------------
	お問い合わせ
	------------------------------------------*/
	#toi{}
	#inner_grid_toi{grid-template-columns:1fr;}
	#inner_grid_toi div:nth-child(odd){border-bottom:1px solid #333333;}
	#inner_grid_toi div:nth-child(even){padding-bottom:1em;}

	/*------------------------------------------
	footer
	------------------------------------------*/
	#footer_inner{
		grid-template-columns: 1fr;width:80%;
	}


	#footer_inner div.spo_bn:nth-child(odd){
		text-align:left;
	}
	#footer_inner>.spo_bn{padding-top:1em;text-align:left;border-bottom:1px solid #CCC;}

	.footer_spo{
		padding:10px 10px 20px 0;
	}


}



@media (min-width: 0px) and (max-width: 640px) {

	h1{font-size:1.5em;}

	/*------トップに戻るボタン-----*/
	.pagetop a {width:80px;}
	.pagetop a:hover{width:80px;}

	/*------トップに戻るボタン-----*/

	/*------右下チケットボタン-----*/
	.pageticket {bottom: 50px;z-index:99;}
	.pageticket a {width:80px;}
	.pageticket a:hover {width:80px;}
	/*------トップに戻るボタン-----*/



	.inner_text{
		width:100%;max-width:1000px;
		margin:0 auto;
	}

	/*------------------------------------------
	メイン画像
	------------------------------------------*/
	#main{
		width:100%;max-width:2000px;margin:0 auto;
		background-color:#FFF;
		display:grid;
		grid-template-columns:1fr;
		padding-top:20px;
	}

	#main_text{
		display: flex;
		align-items: flex-end;
		flex: 1;
		margin:-22% 0 0 0;
		padding:20px;
	}

	#main_logo{flex:3;}
	#main_day_banbi{flex:2;}

	#main_day{width:100%;}
	#main_banbi{width:100%;padding-top:0;}

	#main_bn{
		text-align:center;
		display:grid;grid-template-columns:58% 42%;
		width:90%;max-width:1200px;margin:0 auto;gap:0;
		position: absolute;
		right: 0;
		left: 0;
		margin: -135px auto 135px auto;
		place-content: center;
		place-items: center;
	}


	.main_contents{box-sizing:border-box;}
	#oshirase_grid.text{padding-top:0;}


	.text{
		color:#333333;
		line-height:1.8em;
		margin:0 auto;
		width:90%;max-width:1200px;
		padding:30px;box-sizing:border-box;
	}



	/*------------------------------------------
	メイン画像
	------------------------------------------*/
	#main{
		
	}

	/*------------------------------------------
	開催概要
	------------------------------------------*/

	#gaiyou_grid>div{
		grid-template-columns:auto 1fr;gap:20px;
	}

	/*------------------------------------------
	見どころ
	------------------------------------------*/

	#pixel_lab {
		grid-template-columns: 1fr;
		gap:0px;
	}
	#pixel_lab_text{left:-10px;top:-20px;}
	#pixel_lab img{padding-top:20px;}

	#pixel_lab_grid{
		margin-top:1em;margin:0 auto;
	}





	.midokoro_chara_grid{
		display:grid;grid-template-columns: 1fr 1fr 1fr 1fr;
	}



	.midokoro_chara_grid > div:nth-of-type(5n+1){
		grid-column: 1 / span 4;
	}
	.midokoro_chara_name{
		width:100%;max-width:150px;
	}

	.midokoro_chara_grid > div:nth-of-type(6) > div,
	.midokoro_chara_grid > div:nth-of-type(11) > div {
		margin-top:20px;
	}




	.midokoro_2cl_img{
		grid-template-columns: 1fr;gap:10px;
	}



	.rec{grid-template-columns:100px 1fr;}
	.rec div{align-content: start;}

	#mirror{padding:30px;}



	/*------------------------------------------
	音声ガイド
	------------------------------------------*/


	#audio_grid{
		grid-template-columns:1fr;gap:0;
	}

	#audio_grid_text1{grid-area: auto;align-self: center;order:0;}
	#audio_grid_photo{grid-area: auto;order:1;text-align:center;width:100%;max-width:150px;margin:0 auto;}
	#audio_grid_photo img{width:100%;max-width:250px;padding-top:20px;}
	#audio_grid_text2{grid-area: auto;align-self: end;order:2;padding:20px;font-size:1em;line-height:1.8em;}



	/*------------------------------------------
	公式X・最新情報
	------------------------------------------*/
	#oshirase_grid{
		grid-template-columns:1fr;
		gap:0px;
	}

}

@media (min-width: 0px) and (max-width: 500px) {
	.mirror_grid{display:block;}
	.mirror_grid > div{display:grid;grid-template-columns:1fr 150px;gap:20px;text-align:left;  place-content: center;width:100%;max-width:500px;margin:0 auto;}

	.taiken_text,.midashi_midokoro{padding:10px;}

}

@media (min-width: 0px) and (max-width: 450px) {

	#sns_icon_grid{gap:10px;}

	#playguide .txbr{
		display:block;
	}
	#playguide br{
		display:none;
	}


	#home>.text{width:calc(100% - 60px);}


	/*------------------------------------------
	見どころ
	------------------------------------------*/
	#pixel_lab_text{font-size:0.8em;}


.rec{display:grid;grid-template-columns:1fr;gap:10px;}
.rec_img{width:100%;max-width:210px;}
.rec div{align-content: start;}



	/*------------------------------------------
	展示ゾーン
	------------------------------------------*/
	.tenji_grid{
		grid-template-columns:1fr;
	}



	#footer_inner .footer_spo{
		width:100%;text-align:left;
	}

	.footer_spo{
		padding:10px 10px 10px 0;
	}
	#footer_copy{font-size:0.7em;line-height:1.8em;}

	.footer_spo img{height:35px;width:auto;}
	.footer_spo.ntt>img{height:30px;width:auto;}
	.footer_spo img.bn_b{height:auto;max-height:60px;width:auto;}
	.footer_spo img.bn_m{height:50px;width:auto;}
	.footer_spo.coop>img.bn_m{height:60px;width:auto;}
}
