@charset "UTF-8";


/*==============================================
	フォント
================================================*/
@font-face {
  font-family: 'Nougat';
  src: url('/static/fourlimitedsazabys/official/feature/yonexpo2025/font/Nougat-ExtraBlack.ttf') format('truetype');
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');


/*===================================================


	reset.css


====================================================*/
*{
	-webkit-touch-callout: none;
	outline:none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-sizing: border-box;
}
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,
dl, dt, dd, 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:0;
	vertical-align:baseline;
	background:transparent;
}


html,body {
}

html {
    font-size: clamp(13px, 1.1vw, 2.2vh);
    -webkit-text-size-adjust: 100%;
}

body {
	width: 100%;
	font-smoothing: antialiased;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: antialiased;
    background: #ffffff;	
    overflow: initial;    
    color: #000;
    letter-spacing: 0.05em;
    font-family: 'Manrope','Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}
ul, ol {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	vertical-align:baseline;
	text-decoration: none;
	color: inherit;
}
input, select {
	vertical-align:middle;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
	line-height: 1.0;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

.sml {
    font-size: 80%;
}

img {
	width:100%;
	vertical-align: bottom;
	line-height: 1.0;
}



/* =====================================
	共通
======================================== */
.anc{
display:block;
position: absolute;
top: -20px;
}

.ancPoint{
position:relative;
    display: block;
    padding-top: 0;
    margin-top: 0;
}
.container{
    position: relative;
}

.bgBox {
   	transition: 0.3s ease-out 0;
}

.pageTop .bgBox {
   	transition: 0.3s ease-out 0s;
}

.loaded .bgBox {
    opacity: 1;
}

.bg {
    position: fixed;
    height: 100%;
    width: 100%;
}
.bg01 {
    opacity: 1;
    background: url(/static/fourlimitedsazabys/official/feature/yonexpo2025/images/ph_flame_l_zP6FWK7N.png) no-repeat;
    background-position: center;
    background-size: contain;
    background-position: 0 0;
    overflow: hidden;
    width: 20%;
    top: 0;
    left: 0;
}
.bg02 {
    opacity: 1;
    background: url(/static/fourlimitedsazabys/official/feature/yonexpo2025/images/ph_flame_r_zP6FWK7N.png) no-repeat;
    background-position: center;
    background-size: contain;
    background-position: 100% 100%;
    overflow: hidden;
    width: 20%;
    bottom: 0;
    right: 0;
}



.loading_inner {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    transition: 0.7s 1.5s;
    opacity: 1;
    z-index: 10000;
    background: linear-gradient(270deg, #d9d9d9 0%, #a7a7a7 100%);
}
.loaded .loading_inner {
    opacity: 0;
    transform: scale(1.3);
}

.loading_inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(/static/fourlimitedsazabys/official/feature/yonexpo2025/images/bg_cross.png);
    background-size: 1rem;
    z-index: -1;
    opacity: 0.3;
    animation: bgscroll 4s linear infinite;
    background-position: 0 50%;
}
@keyframes bgscroll {
 0% {background-position: 0 50%;}
 100% {background-position: -1rem 50%;}
}

.loading_img {
    width: 24%;
    line-height: 0;
}

.scroll {
    display: none;
    width: 1px;
    height: 100px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    opacity: 0;
    z-index: 10;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease 2s;
}

.loaded .scroll {
    opacity: 1;
}


.scroll:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 3px;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    background: #006fff;
    -webkit-animation: scroll 2s linear infinite;
    animation: scroll 2s linear infinite;
}
  @-webkit-keyframes scroll {
    0%{ height: 0; top: 0; bottom: auto; opacity: 0; }
    35%{ opacity: 1; }
    46% { height: 100%; top: 0; bottom: auto; }
    50% { height: 100%; bottom: 0; top: auto; }
    54% { height: 100%; bottom: 0; top: auto; }
    100% { height: 0; bottom: 0; top: auto;}
  }
  @keyframes scroll {
    0%{ height: 0; top: 0; bottom: auto; opacity: 0; }
    35%{ opacity: 1; }
    46% { height: 100%; top: 0; bottom: auto; }
    50% { height: 100%; bottom: 0; top: auto;}
    54% { height: 100%; bottom: 0; top: auto;}
    100% { height: 0; bottom: 0; top: auto; }
  }



.hamBtn_wrap {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    width: 75px;
    height: 75px;
    padding-right: 15px;
}
  
.hamBtn {
    width: 45px;
    cursor: pointer;
    transform: translateY(0%);
}

.hamBtn_wrap::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: -20%;
    position: absolute;
    background: #000000;
    transform: skewX(30deg);
    transform-origin: bottom left;
}

.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: all .3s ease;
}
.hamBtn :nth-of-type(1) {
    top: 0;
}
.hamBtn :nth-of-type(2) {
    top: -6px;
}
.hamBtn :nth-of-type(3) {
    top: 6px;
}
.hamBtn.open span {
	background: #FFF;
}
.hamBtn.open span:nth-of-type(1) {
    transform: translateY(3px) rotate(-45deg);
}
.hamBtn.open span:nth-of-type(2) {
	opacity: 0;
}
.hamBtn.open span:nth-of-type(3) {
    transform: translateY(-3px) rotate(45deg);
}

.loaded .hamBtn{
}


.hamBox {
    box-sizing: border-box;
    position: fixed;
    width: 100%;
    top: -101vh;
    left: 0;
    z-index: 999;
    overflow: auto;
    background: #000000;
    pointer-events: none;
    transition: 0.5s ease;
    padding: 2rem;
}

.hamBox.openBox {
    top: 0vh;
    pointer-events: auto;
}

.hamBox_inner {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}



.gnav_wrap.pc {
    display: flex !important;
    justify-content: center;
    margin-bottom: 70px;
}

.gnav_wrap.pc .gnav {
    list-style: none;
    margin-right: 6vw;
}

.gnav_wrap.pc .gnav:last-of-type {
    margin-right: 0;
}

.hamBox_inner_box .subImg {
    width: 30%;
    margin: 0 auto 50px;
    padding-right: 2%;
}


.socialList li {
    padding: 0 15px;
    display: inline-block;
}

.socialList li a {
    font-size: 1.8rem;
    line-height: 1;
    color: #fff;
}

.socialList li svg {
    fill: #fff;
}

.gnav {
	list-style: none;
}
.gnav li + li {
    margin-top: 30px;
}
.gnav li.en {
    text-align: center;
    font-size: 35px;
    font-weight: bold !important;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.gnav li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease-out;
    display: inline-block;
    font-family: 'Nougat';
    letter-spacing: 0.01em;
    font-style: italic;
}

.gnav li.hide a {
    pointer-events: none;
    opacity: 0.5;
}

.hamBox_inner .bnr {
    width: 50%;
    display: block;
    margin: 7vh auto 0;
}

.snsList{
    position: absolute;
    left: 50%;
    top: 65%;
    transform: translate(-50%,-50%);
    text-align: center;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 300px;
}
.snsList li .fab{
    font-size: 29px;
}
.snsList li a{
display: block;
}
.snsList li a img{
width: 36px;
}


.contents {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    background: #000;
    background: url(/static/fourlimitedsazabys/official/feature/yonexpo2025/images/bg_contents_zP6FWK7N.jpg);
    background-size: 40%;
}

#section_first.contents{
    padding-bottom: 0;
}


.contents .inBox {
    width: 80%;
    margin: auto;
    z-index: 4;
    position: relative;
    background: #fff;
    padding: 5rem;
    transition: 0.6s cubic-bezier(0.54, 0.73, 0.2, 1.02);
    max-width: 100rem;
}

.contents .inBox::before {
    content: '';
    display: block;
    width: 20%;
    height: 3rem;
    background: #fff;
    position: absolute;
    top: -2.98rem;
    right: 0;
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
    background-image: url(/static/fourlimitedsazabys/official/feature/yonexpo2025/images/bg_flag.jpg);
    background-size: 14rem;
}


section h3 {
    color: #fff;
    text-align: center;
    margin: 0 0 5rem;
    line-height: 1;
    position: relative;
}

section h3 span {
    font-size: 9rem;
    line-height: 1;
    font-family: 'Nougat';
    transform: skewX(-8deg);
    display: inline-block;
    background: linear-gradient(0deg, #9ca1a4 0%, #f6f6f6 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(4px 4px 0 black);
    position: relative;
    z-index: 2;
    font-weight: 500;
}


.lineAnim{
	position: absolute;
    width: 300px;
    height: 7px;
    background: #ff0000;
    transform:translateY(-50%);
}
.line1 {
    top: 30%;
    width: 400px;
    animation: line1 1.5s linear infinite;
}
.line2 {
    top: 50%;
    width: 250px;
    animation: line2 3s linear infinite;
}
.line3{
    top: 52%;
    width: 300px;
    animation: line3 2.5s linear infinite;
}
.line4{
    top: 58%;
    width: 350px;
    animation: line4 2.7s linear infinite;
}
.line5{
    width: 200px;
    top: 43%;
    animation: line5 2.5s linear infinite;
}
.line6 {
    top: 75%;
    width: 350px;
    animation: line6 2.6s linear infinite;
}
.line7 {
    top: 59%;
    width: 200px;
    animation: line7 2.4s linear infinite;
}
.line8{
    top: 61%;
    width: 400px;
    animation: line8 1.8s linear infinite;
}
@keyframes line1{
	0% {right: 100%;}
	100% {right: -50%;}
}
@keyframes line2{
	0% {right: 100%;}
	100% {right: -50%;}
}
@keyframes line3{
	0% {right: 100%;}
	100% {right: -50%;}
}
@keyframes line4{
	0% {right: 100%;}
	100% {right: -50%;}
}
@keyframes line5{
	0% {left: 100%;}
	100% {left: -50%;}
}
@keyframes line6{
	0% {left: 100%;}
	100% {left: -50%;}
}
@keyframes line7{
	0% {left: 100%;}
	100% {left: -50%;}
}
@keyframes line8{
	0% {left: 100%;}
	100% {left: -50%;}
}



.btn a {
    background: #ff0000;
    color: #fff;
    display: block;
    width: 20rem;
    box-sizing: border-box;
    border-radius: 100px;
    text-align: center;
    font-size: 1rem;
    padding: 1.4em;
    margin: 0 auto 0px;
    font-weight: bold;
    transition: 0.3s;
    max-width: 100%;
}

.btn a:hover {
    background: #000000;
}

.iframe_wrap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px;
	height: 0;
	width: 100%;
	margin: 0px auto 0px;
	text-align: center;
}

.iframe_wrap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.stream_box{
    margin: 0 0 0px;
    width: 100% !important;
    float: none;
}


.stream_box .thumb{
    margin: 0;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}



.delighter.fade_pop {
    transition: all .4s cubic-bezier(0.25, 0.1, 0.24, 2);
    transform: translatey(45px);
    opacity: 0;
   }
 
.delighter.started.fade_pop {
      transform: none;
      opacity: 1;
   }

.delighter.scale_pop {
    transition: all .3s cubic-bezier(0.25, 0.1, 0.24, 2) 0.2s;
    transform: scale(0.8);
    opacity: 0;
   }
 
.delighter.started.scale_pop {
      transform: none;
      opacity: 1;
   }



/* =====================================
	ビジュアル
======================================== */

.visual {
    height: 100vh;
    height: 100svh;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1rem solid;
    overflow: hidden;
}
.visual::before {
    content: '';
    display: block;
    width: 100%;
    height: 3rem;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(/static/fourlimitedsazabys/official/feature/yonexpo2025/images/bg_flag.jpg);
    background-size: 18.5rem;
    border-bottom: 1rem solid;
    background-position: 0%;
    animation: bgscroll 20s linear infinite;
    mix-blend-mode: multiply;
}
.visual::after {
    content: '';
    display: block;
    width: 32%;
    height: 3.5rem;
    position: absolute;
    top: 0.5rem;
    left: 0;
    background-image: url(/static/fourlimitedsazabys/official/feature/yonexpo2025/images/bg_flag.jpg);
    background-size: 16.5rem;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
    animation: bgscroll2 20s linear infinite;
    mix-blend-mode: multiply;
}

@keyframes bgscroll {
 0% {background-position: 0 0%;}
 100% {background-position: 18.5rem 0%;}
}
@keyframes bgscroll2 {
 0% {background-position: 0 0%;}
 100% {background-position: 16.5rem 0%;}
}


.visual .mainImg {
    width: 50%;
    opacity: 0;
    right: -30%;
    position: relative;
    max-width: 92vh;
    transform-origin: left center;
}

.loaded .visual .mainImg {
    animation: visual_anime 0.54s ease-out 1.8s forwards;
}


@keyframes visual_anime {
	0%   {right: -30%; transform: scale(1); opacity: 0;}
	40%  {right: 0%; transform: scale(1); opacity: 1; }
	60%  {right: 0; transform: scale(0.85 , 1.2); opacity: 1;}
	75%  {right: 0; transform: scale(0.85 , 1.2); opacity: 1;}
	100% {right: 0; transform: scale(1); opacity: 1; }
}




/* =====================================
======================================== */


@keyframes fade {
	0% { opacity: 0;}
	100% { opacity: 1;}
}
@keyframes op {
	0% { opacity: 0; filter: blur(60px);}
	100% { opacity: 1; filter: blur(0);}
}

@keyframes upIn {
	0% {
		opacity: 0;
    transform: translateY(-50%);
	}
	100% {
		opacity: 1;
    transform: translateY(0%);
	}
}


.about_wrap .subImg {
    width: 70%;
    margin: 0 auto 60px;
}

.about_wrap .detailBox {
    background: #efefef;
    padding: 0 1.8rem;
}
.about_wrap .aboutDetail {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid;
}

.about_wrap .aboutDetail:last-child {
    margin: 0;
    border: none;
}


.about_wrap .aboutDetail dt {
    width: 18%;
    font-size: 0.95rem;
    font-weight: bold;
}
.about_wrap .aboutDetail dd {
    width: 82%;
    border-left: 1px solid;
    padding: 0 0 0 2.2rem;
}

.about_wrap .aboutDetail dd.place {
    font-size: 2rem;
    font-family: 'Nougat';
}

.aboutDetail dd.place .placename {
    margin-right: 0.2em;
}

.about_wrap .aboutDetail dd .inList{

}
.about_wrap .aboutDetail dd .inList li{
	margin: 0 0 10px;
}
.about_wrap .aboutDetail dd .inList li:last-child{
	margin: 0 ;
}

.about_wrap .aboutDetail dd .inList li .days {
    font-size: 2rem;
    font-family: 'Nougat';
    display: inline-block;
    width: 16rem;
    line-height: 1;
}
.about_wrap .aboutDetail dd .inList li .days .week {
    font-size: 0.7em;
    margin-left: 0.2em;
}

.about_wrap .aboutDetail dd .inList li span.optime {
    line-height: 1em;
    padding: 0.3em 1em;
    font-size: 0.95em;
    border-radius: 3rem;
    letter-spacing: 0.05em;
    vertical-align: 0.4em;
    font-weight: 500;
    font-family: 'Nougat';
    border: 1px solid;
}

.about_wrap .aboutDetail dd .attention {
    background: #ffffffa8;
    padding: 1rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.about_wrap .aboutDetail dd .attention li {
    text-indent: -1em;
    padding-left: 1em;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 0.2em;
    font-size: 0.8rem;
}

.about_wrap .aboutDetail dd .attention i {
    text-indent: 0;
}
.about_wrap .aboutDetail dd .attention:last-child {
    margin-bottom: 0;
}

.about_wrap .aboutDetail dd .ticket_detail_box {
    border: 3px solid #ffffff;
    padding: 15px;
    margin-bottom: 20px;
}

.about_wrap .aboutDetail dd .ticket_detail_box .ticket_box_tit {
    font-weight: bold;
    font-size: 21px;
    border-left: 6px solid;
    padding-left: 7px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #1172f0;
}

.about_wrap .aboutDetail dd .ticket_detail_box .ticket_box_days {
    margin-bottom: 10px;
}

.about_wrap .aboutDetail dd .ticket_detail_box .ticket_box_days .days_tit {
    border-right: 1px solid;
    padding-right: 7px;
    margin-right: 3px;
}

.about_wrap .aboutDetail dd .ticketList {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.about_wrap .aboutDetail dd .ticketList li.soldout:after{
    content: "SOLD OUT!";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #74bbb6;
    color: #fcff00;
    padding: 4px 40px;
    font-size: 19px;
    transform: translate(-50%,-50%) rotate(-5deg);
    opacity: 0.8;
}

.pageAbout .btnTicket{

}
.pageAbout .btnTicket a{
    display: block;
    background: #0085cd;
    border-radius: 5px;
    color: #FFF;
    text-align: center;
    padding: 10px;
    width: 200px;
    margin: 0 0 30px;
}
.pageAbout .attention{
	margin:10px 0 0 ;
}




.contents .btnTop{
    text-align: center;
}
.contents .btnTop a{
    display: inline-block;
    font-size: 40px;
    color: #006fff;
    position: relative;
    margin: 30px auto 0;
    font-weight: 400;
    border-radius: 5px;
    font-family: 'Nougat';
    letter-spacing: 0.1em;
    text-shadow: 4px 4px 0 black, 0px 0px 1px black;
    transform: skewX( -8deg);
}


/*==============================================
	newsBox
================================================*/
.newsBox{

}
.newsBox .inBox{

}
.newsBox .newsList {
    padding-bottom: 4rem;
}
.newsBox .newsList li {
    margin: 0 0 1px;
}

.newsBox .newsList li{
	display:none;
    position: relative;
    transition:0.3s ease;
}
.newsBox .newsList li:nth-child(1),
.newsBox .newsList li:nth-child(2),
.newsBox .newsList li:nth-child(3),
.newsBox .newsList li:nth-child(4),
.newsBox .newsList li:nth-child(5){
	display: block;
}
.newsBox .newsList li:nth-child(5){
    margin: 0;
}
.newsBox .newsList li:last-child{
    margin: 0;
}
.newsBox .newsList li .newsInner {
    transition: 0.3s ease;
    position: relative;
    background: #eaeaea;
}

.newsBox .newsList li .newsTitBlock {
    padding: 2.65rem 3rem 2rem 3rem;
    position: relative;
    background: #000;
    color: #fff;
    cursor: pointer;
}
.newsBox .newsList li .newsTitBlock:after {
    position: absolute;
    top: 50%;
    right: 2rem;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #ff0000 transparent transparent transparent;
    transition: 0.3s ease;
}
.newsBox .newsList li .open .newsTitBlock:after {
    transform: rotate(180deg);
}

.newsBox .newsList li .newsTxtBlock {
    display: none;
    padding: 2.5rem 3rem;
    font-size: 0.9rem;
}
.newsBox .newsList li .newsTxtBlock .txt a{
    color: #006fff;
    text-decoration: underline;
}
.newsBox .newsList li .date {
    padding: 0.35em 1.5em 0.35em 1em;
    font-size: 1rem;
    font-weight: 500;
    color: #FFF;
    transition: 0.3s ease;
    font-family: 'Nougat';
    display: inline-block;
    position: relative;
    margin-bottom: 0.5rem;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.newsBox .newsList li .date::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    background: #ff0000;
    transform: skewX(-28deg);
    transform-origin: top;
    z-index: -2;
    top: 0;
    left: 0;
}


.newsBox .newsList li .date span{
    padding: 0 0 0 10px;
    font-size: 13px;
}
.newsBox .newsList li .tit {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
    transition: 0.3s ease;
}


.newsBox .btn a {
    font-size: 1.3rem;
    color: #FFF;
    position: relative;
    padding: 0.9rem 3rem;
    display: block;
    width: auto;
    display: inline-block;
    margin: 2rem 0 0;
    font-weight: 600;
    transition: 0.3s ease;
}


.newsBox .btnclose {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 1rem;
    color: #FFF;
    background: #ff0000;
    padding: 0.5em;
    display: block;
    width: 9rem;
    margin: 0;
    font-weight: 400;
    text-align: center;
    transition: 0.3s;
    opacity: 0;
    transition: 0.3s ease;
    font-family: 'Nougat';
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}
.newsBox .open .btnclose{
    opacity: 1;
}
.newsBox .btnclose:after{
    position: absolute;
    right: 15px;
    top: 50%;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #FFF transparent;
    transform: translateY(-50%);
    transition: 0.3s ease;
}
.newsBox .btnMore{
    text-align: center;
}
.newsBox .btnMore a {
    display: inline-block;
    font-size: 2.2rem;
    position: relative;
    margin: 0 auto 0;
    font-weight: 400;
    font-family: 'Nougat';
    border-bottom: 4px solid;
}



/*==============================================

	下層：pageNews
	
================================================*/
.pageNews .newsBox {
    background: transparent;
}
.pageNews .newsBox .newsList li{
    display: block;
}
.pageNews .newsBox .newsList li:last-child{
    margin: 0;
}



.messageBox .message_txt {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.messageBox .message_txt:last-child {
    margin-bottom: 0;
}

.messageBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.messageBox .message_txtBox {
    width: 65%;
}

.messageBox .message_imgBox {
    width: 33%;
}

/*==============================================
	ticketBox
================================================*/


.ticket_box {
    margin-bottom: 1.5rem;
    background: #efefef;
    padding: 0 1.8rem;
}

.ticket_box:last-child {
    margin-bottom: 0;
}

.ticket_box .tit {
    padding: 1.8rem 0;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
}

.ticket_box .tit span {
    position: relative;
    z-index: 1;
    border-left: 5px solid #ff0000;
    padding-left: 0.6em;
}

.ticket_box.pastLive .tit::before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    top: -5px;
    right: 0.5rem;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    z-index: 0;
    transition: 0.3s ease;
}

.ticket_box.pastLive .tit.open:before {
    top: 10px;
    transform: rotate(-45deg);
}


.ticket_box .detailBox {
    border-top: 1px solid;
    padding-bottom: 2rem;
}

.ticket_box.pastLive .detailBox {
    display: none;
}


.aboutDetail {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid;
}

.aboutDetail:last-of-type {
    margin-bottom: 2rem;
}
.aboutDetail:last-child {
    margin-bottom: 0;
}

.aboutDetail dt{
	width: 18%;
    font-size: 16px;
    font-weight: 600;
}
.aboutDetail dd {
    width: 82%;
    border-left: 1px solid;
    padding: 0 0 0 2rem;
    font-weight: 500;
    font-size: 1rem;
}
.aboutDetail dd .inList{

}
.aboutDetail dd .inList li{
	margin: 0 0 10px;
}
.aboutDetail dd .inList li:last-child{
	margin: 0 ;
}

.aboutDetail dd .inList li .days {
    font-size: 31px;
    font-family: 'Nougat';
    display: inline-block;
    width: 230px;
    line-height: 1;
}
.aboutDetail dd .inList li .days .week {
    font-size: 0.7em;
}

.aboutDetail dd .inList li span.optime{
    background: #000000;
    color: #FFF;
    line-height: 1em;
    padding: 2px 10px 2px;
    font-size: 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    vertical-align: 5px;
    font-weight: bold;
}

.aboutDetail dd .attention {
    line-height: 1.6;
    background: #ffffffa8;
    padding: 1rem;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.aboutDetail dd .attention li {
    text-indent: -1em;
    padding-left: 1em;
}
.aboutDetail dd .attention li i {
    text-indent: 0;
}

.attention li.noIndent {
    text-indent: 0 !important;
    padding-left: 0 !important;
}

.aboutDetail dd .attention_o {
    margin-bottom: 20px;
    font-size: 12px;
}

.aboutDetail dd .attention_o li {
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 2px;
}


.aboutDetail dd .ticket_detail_box {
    border: 3px solid #ffffff;
    padding: 15px;
    margin-bottom: 20px;
}

.aboutDetail dd .ticket_detail_box .ticket_box_tit {
    font-weight: bold;
    font-size: 21px;
    border-left: 6px solid;
    padding-left: 7px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #1172f0;
}

.aboutDetail dd .ticket_detail_box .ticket_box_days {
    margin-bottom: 10px;
}

.aboutDetail dd .ticket_detail_box .ticket_box_days .days_tit {
    border-right: 1px solid;
    padding-right: 7px;
    margin-right: 3px;
}

.aboutDetail dd .ticketList {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.aboutDetail dd .ticketList:last-child {
    margin-bottom: 0;
}

.aboutDetail dd .ticketList li {
    margin: 0 0 0.8rem;
    line-height: 1.6em;
    padding: 1.2rem 1rem;
    width: 49%;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    background: #000000;
    color: #fff;
    border-left: 3px solid #ff0000;
}

.aboutDetail dd .ticketList li.soldout:after{
    content: "SOLD OUT!";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #74bbb6;
    color: #fcff00;
    padding: 4px 40px;
    font-size: 19px;
    transform: translate(-50%,-50%) rotate(-5deg);
    opacity: 0.8;
}
.aboutDetail dd .ticketList li:lasdt-child{
	margin: 0;
}
.aboutDetail dd .ticketList li .price {
    display: flex;
    letter-spacing: 0.05em;
    padding-bottom: 0.9em;
}
.aboutDetail dd .ticketList li .price .pn {
    width: 55%;
    font-weight: 800;
    font-size: 1.25em;
}
.aboutDetail dd .ticketList li .price .pp {
    width: 45%;
    text-align: right;
    letter-spacing: 0;
    font-size: 1.2em;
    font-weight: 700;
    white-space: nowrap;
}
.aboutDetail dd .ticketList li .desc {
    display: block;
    font-size: 13px;
    font-weight: 600;
    border-top: 1px dashed #fff;
    padding-top: 10px;
}

.aboutDetail dd .ticketList li .price .ticket_cat {
    display: inline-block;
    background: #fff;
    color: #000000;
    padding: 0 1em;
    font-size: 0.7em;
    font-weight: 600;
    border-radius: 3em;
    margin-top: 0.4em;
}

.ticket_box .ticket_lead {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

.ticket_box .ticket_lead a {
    color: #ff0000;
}


/*==============================================

	下層：pageAttention
	
================================================*/
.pageAttention{

}
.pageAttention .lead{
    margin: 0 0 40px;
    text-align: center;
    font-weight: 600;
    color: #006fff;
}
.pageAttention .icon{
	width: 600px;
    margin: 0 auto 60px;
}
.pageAttention .attentionDetail{
    border-bottom: 2px solid #006fff;
    margin: 0 0 40px;
    padding: 0 0 40px;
}
.pageAttention .attentionDetail li{
    margin: 0 0 15px;
    font-size: 14px;
    font-weight: 400;
    text-indent: -20px;
    padding: 0 0 0 30px;
    line-height: 1.7;
}
.pageAttention .attentionDetail li:last-child{
    margin-bottom: 0;
}
.pageAttention .attentionDetail li .fas{
    color: #006fff;
    padding: 0 10px;
}
.pageAttention .attentionDetail li .inTxt{
    display: inline-block;
    text-indent: 0;
}
.pageAttention .attentionDetail li a{
    color: #006fff;
}
.pageAttention .inList{
    padding: 15px 0 0 0px;
    margin: 0 0 20px;
}
.pageAttention .inList dd{
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 400;
    text-indent: -14px;
    padding: 0 0 0 14px;
    line-height: 1.4em;
}

.pageAttention .tit{
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 40px;
}
.pageAttention .txt{
	font-weight: 400;
    font-size: 13px;
    line-height: 1.8;
}

.pageAttention .attentionDetail.mini {
    border: none;
    font-size: 13px;
    margin-bottom: 0;
}

.pageAttention .attentionDetail.mini li {
    font-size: 13px;
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 10px;
}




/*==============================================

	下層：pageAccess
	
================================================*/
.pageAccess{

}

.pageAccess .block h4{
    color: #006fff;
    font-size: 30px;
    border-bottom: 1px solid;
    padding: 0 0 10px;
    margin: 0 0 15px;
    letter-spacing: 0.08em;
}
.pageAccess .block h4 .apIcon:before{
	background: url(/static/fourlimitedsazabys/official/feature/yonexpo2020/images/icon_ap_b.png);
	background-size: cover;
	width: 20px;
    height: 20px;
}
.pageAccess .block h4 .apIcon:after{
	content:none;
}
.pageAccess .block .column{
	display: flex;
    margin: 0 0 46px;
}
.pageAccess .block .columnLeft{
    width: 35%;
    padding: 0 50px 0 0;
    box-sizing: border-box;
}
.pageAccess .block .columnLeft .venue{
	font-size: 35px;
    font-weight: 600;
    margin: 0 0 15px;
    letter-spacing: 0.08em;
}
.pageAccess .block .columnLeft .address{
	font-weight: 500;
    margin: 0 0 20px;
    font-size: 15px;
}
.pageAccess .block .columnLeft .btn a{
    position: relative;
    background: #ff6c00;
    padding: 8px;
    display: block;
    width: 230px;
    margin: 0 0 20px;
    font-weight: 400;
    border-radius: 5px;
    text-align: center;
    color: #FFF;
}
.pageAccess .block .columnLeft .accessList{

}
.pageAccess .block .columnLeft .accessList li{
font-weight: 400;
    font-size: 14px;
    margin: 0 0 10px;
}
.pageAccess .block .columnLeft .accessList li:last-child{
    margin: 0;
}

.pageAccess .block .columnRight{
	width: 65%;
}

.pageAccess .block .map{

}
.pageAccess .block .map iframe{
    width: 100%;
    border-radius: 10px;
}






/*==============================================
	special
================================================*/


.sp_lead_box {
    margin-bottom: 50px;
    text-align: center;
}

.sp_lead_box .sp_lead_img {
    width: 50%;
    margin: 0 auto 15px;
}

.sp_lead_box .tit {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.sp_lead_box .tit span {
    background: #000000;
    padding: 6px 11px;
    color: #fff;
    margin-bottom: 10px;
    display: inline-block;
    line-height: 1;
    font-size: 0.8em;
}


.special_box {
    background: #daecf1;
    border-radius: 10px;
    padding: 0px 50px 30px;
    margin-bottom: 50px;
}

.special_box:last-child {
    margin-bottom: 0;
}

.special_box .tit {
    padding: 30px 0 30px 0px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.05em;
    position: relative;
}

.special_box .tit span {
    position: relative;
    z-index: 1;
    border-left: 5px solid #ff6c00;
    padding-left: 15px;
}

.special_box .sp_desc_box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: space-between;
}

.special_box .sp_desc_box .sp_desc {
    font-size: 14px;
    line-height: 1.8;
    width: 63%;
    order: 2;
}

.special_box .sp_desc_box .sp_desc_img {
    width: 35%;
}

.special_box.badge_box .sp_desc_box .sp_desc {
    width: 68%;
    order: 0;
}

.special_box.stamp_box .sp_desc_box .sp_desc {
    width: 66%;
}

.special_box .sp_prize_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 30px;
    width: 65%;
}

.special_box .sp_prize_list li {
    width: 46%;
    border-radius: 5px;
    overflow: hidden;
}

.special_box .attention {
    background: #ffffffa8;
    padding: 15px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 1.6;
    display: block;
    width: 100%;
}

.special_box .attention li {
    text-indent: -1em;
    padding-left: 1em;
}

.special_box .sp_desc_box .sp_desc_img.img_stamp {
    margin: 0;
    width: 30%;
    border-radius: 5px;
    overflow: hidden;
}


.special_box .sp_prize_list_stamp_wrap {
    margin: 0 auto 20px;
    padding-top: 5px;
}

.special_box .sp_prize_list_stamp_tit {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.special_box .sp_prize_list_stamp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.special_box .sp_prize_list_stamp li {
    width: 24.2%;
    font-size: 12px;
    background: #ffffff;
    padding: 7px;
    border-radius: 5px;
}

.special_box .sp_prize_list_stamp li img {
    display: inline-block;
    margin-bottom: 5px;
    border: 2.5px solid #4897ff;
    background: #4897ff;
    line-height: 0;
}

.special_box .sp_prize_list_stamp li .prize_pick {
    background: #ff6d00;
    display: inline-block;
    color: #fff;
    font-weight: bold;
    padding: 3px 4px;
    font-size: 0.8em;
    border-radius: 3px;
    line-height: 1;
    margin-right: 7px;
}


.pageSpecial .map_lead_top {
    font-family: 'Nougat';
    font-size: 35px;
    text-align: center;
    color: #ff6d00;
    text-shadow: 1px 2px 0 black;
    margin-bottom: 10px;
}

.pageSpecial .map_lead {
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pageSpecial .map_img {
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 100px;
}


.special_box .radio_txt {
    font-size: 14px;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 20px;
}

.special_box .mov{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 0 0 30px;
}
.special_box .mov .ulizahtml5{
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.special_box .cap {
    text-align: center;
    padding-top: 15px;
    font-size: 13px;
    font-weight: bold;
    color: #ff6c00;
}





/*==============================================
	GOODS
================================================*/

.pageGoods .sellstart {
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 18px;
}

.pageGoods .goodsImage {
    margin: 50px auto 50px;
}

.pageGoods .attentionDetail {
    margin: 0 0 0px;
    padding: 30px;
    background: #e6f1f5;
}
.pageGoods .attentionDetail li{
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 400;
    text-indent: -20px;
    padding: 0 0 0 40px;
    line-height: 1.7;
}
.pageGoods .attentionDetail li:last-child{
    margin-bottom: 0;
}

.pageGoods .attentionDetail li.sml {
    font-size: 0.8em;
}

.pageGoods .goods_wrap {
    padding-bottom: 80px;
    margin-bottom: 80px;
    border-bottom: 1px solid #a4c3cc;
}

.pageGoods .goods_wrap:last-of-type {
    padding: 0;
    margin: 0;
    border: none;
}


/*==============================================
	footer
================================================*/
footer {
    padding: 10rem 0 4rem;
    z-index: 1;
    position: relative;
}
footer .footerTit {
    width: 20rem;
    margin: 0 auto 3rem;
    line-height: 0;
}



footer .footerPartner{
    width: 1000px;
    margin: 0 auto 80px;
    display: flex;
    justify-content: space-between;
}
footer .footerPartner .partnerBlock{
    display: flex;
    justify-content: center;
}
footer .footerPartner .partner {
    display: flex;
    justify-content: center;
    width: 24.5%;
}

footer .footerPartner .partner:last-child{
}
footer .footerPartner .partner .partnerList{
}
footer .footerPartner .partner .partnerTit {
    color: #000;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 auto 1rem;
    line-height: 1em;
}
footer .footerPartner .partner .exec{
	margin: 0 auto 20px;
    box-sizing: border-box;
    line-height: 0;
    width: 75%;
}
footer .footerPartner .partner .exec:last-child{
	margin: 0 auto 0;
}
footer .footerPartner .partner .exec a{
	display: block;
}
footer .footerPartner .partner .exec.pt1 {
    width: 85%;
    padding-top: 2%;
}
footer .footerPartner .partner .exec.pt2 {
	display: flex;
    width: 90%;
}
footer .footerPartner .partner .exec.pt2 a{
    margin: 0;
    padding: 0 15px;
}
footer .footerPartner .partner .exec.pt2 a:last-child{
    margin: 0 auto 0;
}

footer .footerPartner .partner .exec.pt3 {
	width: 70%;
}
footer .footerPartner .partner .exec img{
	width: 100%;
    height: auto;
}

footer .partnerBroth{
    width: 150px;
    margin: 0 auto 80px;
    line-height: 0;
}
footer .partnerBroth span{
    color: #000;
    text-align: center;
    font-size: 16px;
    display: block;
    line-height: 1em;
    margin: 0 0 15px;
    font-weight: 600;
}
footer .partnerBroth a{
	display:block;
}
footer .sponsor{

}
footer .sponsor .sponsorList{
    width: 990px;
    margin: 0 auto 80px;
    background: #efefef;
    border-radius: 10px;
    padding: 10px;
}
footer .sponsor .sponsorList dt{
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin: 0 auto;
    line-height: 1em;
}
footer .sponsor .sponsorList dd{
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .sponsor .sponsorList dd a{
    padding: 0 25px;
    box-sizing: border-box;
}
footer .sponsor .sponsorList dd .brother{
    width: 200px;
}
footer .sponsor .sponsorList dd .dam{
    width: 270px;
}
footer .sponsor .sponsorList dd .nsm{
    width: 130px;
}
footer .pastLive{
    width: 200px;
    margin: 0 auto 80px;
    line-height: 0;
}
footer .pastLive a{
	display:block;
}

footer .btnHome{

}
footer .btnHome a {
    display: block;
    width: 20rem;
    margin: 0 auto 1.5rem;
}
footer .btnHome a svg{
	transition:0.5s ease;
}
footer .copyright{
	text-align: center;
    font-size: 11px;
}
footer .socialList{
	display: flex;
    justify-content: center;
    margin: 0 0 40px;
}
footer .socialList li {
    padding: 0 0.7rem;
    line-height: 0;
}
footer .socialList li a {
    color: #000000;
    font-size: 1.5rem;
}
footer .socialList li a svg{
    transition: 0.3s ease;
    fill: #000;
}





@media screen and (min-width: 960px){ 

.pc{
display: block!important;
}
.sp{
display: none!important;
}


.hamBox {
    top: 0;
    width: 70%;
    height: auto;
    left: auto;
    right: 0;
    pointer-events: auto;
    overflow: visible;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%);
    min-width: 60rem;
    padding: 0;
}

.hamBox_inner {
    justify-content: flex-end;
    padding-right: 2rem;
}

.gnav {
    list-style: none;
    display: flex;
    justify-content: center;
}

.gnav li.en {
    font-size: 1.5rem;
    margin: 0;
}

.gnav li a:hover {
}

.gnav li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease-out;
    display: inline-block;
    font-family: 'Nougat';
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    letter-spacing: 0.04em;
}

.gnav li a::before {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: #ff0000;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s;
    transform: scaleX(0);
    transform-origin: left;
}

.gnav li a:hover::before {
    transform: scale(1);
}

.gnav li.current a::before {
    transform: scale(1);
}


}


@media screen and (max-width: 960px){ 

.sp{
display: block!important;
}
.pc{
display: none!important;
}

.container {
}

.loading_img {
    width: 60%;
}
.hamBox {
    background: #ff0000;
    max-height: 100dvh;
    overflow-y: scroll;
}

.hamBox::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(/static/fourlimitedsazabys/official/feature/yonexpo2025/images/bg_flag.jpg);
    background-size: 30rem;
    mix-blend-mode: multiply;
    opacity: 0.08;
}


.hamBtn_wrap {
    right: 0;
    top: 0;
    width: 4rem;
    height: 4.2rem;
    display: flex !important;
}

.hamBtn_wrap.open {
    background: none;
    transition: 0.3s;
}

.hamBtn_wrap.open::before {
    background: none;
    transition: 0.3s;
}

.hamBtn {
    width: 30px;
}


.hamBox_inner_box .subImg {
    width: 66%;
    margin: 0 auto 2rem;
    padding-left: 6%;
}

.gnav {
    margin-bottom: 2rem;
}

.gnav_wrap.pc {
    display: none !important;
}

.gnav li.en {
    font-size: inherit;
}

.gnav li + li {
    margin-top: 0.8rem;
}

.gnav li a {
    font-size: 1.8rem;
}

.bgBox {
}
.visual {
    position: relative;
    height: 100% !important;
}
.visual .mainImg {
    width: 80%;
}


}

@media screen and (max-width: 960px){

  .contents.crowdfunding .return .plan {
    margin: 0 0 8%;
    padding: 0 0 1.5%;
  }
  .plan .price + .inner {
    padding: 2% 4% 0;
  }
  .plan .price {
    text-align: center;
    margin: 3% 4%;
    border: 2px solid;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2.5%;
    font-size: 3vw;
  }
  .plan .ph img + img {
    margin: 5% 0 0;
  }
  .plan .price dt {
    width: 60%;
  }
  .plan .price dd {
    width: 40%;
  }
  

  .textbox.comingsoon {
      text-align: center;
      font-size: 16px;
      padding: 10px 0 20px;
  }


  @keyframes upIn {
  	0% {
  		opacity: 0;
  		-webkit-transform: translate(0, 30px);
  		transform: translate(0, 30px);
  	}
  	100% {
  		opacity: 1;
  		-webkit-transform: translate(0,0);
  		transform: translate(0,0);
  	}
  }
  .scroll {
      bottom: 20px;
      height: 70px;
      width: 2px;
      left: 50%;
  }


.contents {
    padding: 5rem 5%;
    background-size: 60%;
}
  .contents .inBox {
      width: 100%;
      margin: auto;
      padding: 2rem 1.5rem;
  }

.contents .inBox::before {
    top: -1.48rem;
    width: 24%;
    height: 1.5rem;
    background-size: 10rem;
}

  .contents.release .mainLead {
      font-size: 13px;
      margin: 0 0 20px 0;
      line-height: 2;
      text-align: left;    
  }


.bg01, .bg02 {
    width: 35%;
}

  .visual::before {
  }

.visual::after {
    top: 0;
    width: 100%;
    height: 2.6rem;
}



section h3 {
    margin: 0 0 3rem 0;
}


section h3 span {
    font-size: 4.2rem;
    line-height: 0.8;
}

.lineAnim {
    height: 4px;
    width: 70px;
}
.lineAnim.line7 {
    display: none;
}
.lineAnim.line2 {
    top: 59%;
}

.about_wrap .detailBox {
    padding: 0 1.2rem;
}

.about_wrap .aboutDetail {
    flex-wrap: wrap;
    padding: 1.2rem 0;
}

.about_wrap .aboutDetail dt {
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

  .about_wrap .aboutDetail dd {
      width: 100%;
      padding: 0;
      border: none;
  }

  .about_wrap .aboutDetail dd.place {
      font-size: 1.6rem;
  }

  .about_wrap .aboutDetail dd .inList li .days {
      font-size: 27px;
      width: auto;
      margin-bottom: 5px;
  }

  .about_wrap .aboutDetail dd .inList li span.optime {
      vertical-align: 0;
  }

  .about_wrap .aboutDetail dd .inList li {
      margin: 0 0 1rem;
  }

.about_wrap .aboutDetail dd .attention {
    padding: 0.7rem;
    margin-bottom: 1.2rem;
}

  .about_wrap .aboutDetail dd .attention li {
      margin-bottom: 2px;
  }
  .about_wrap .aboutDetail dd .attention li:last-child {
      margin-bottom: 0;
  }


  .about_wrap .aboutDetail dd .ticket_detail_box {
      border: 2px solid #ffffff;
      padding: 10px;
  }

  .about_wrap .aboutDetail dd .ticket_detail_box .ticket_box_tit {
      font-size: 16px;
      padding-left: 5px;
      margin-bottom: 7px;
  }

  .about_wrap .aboutDetail dd .ticket_detail_box .ticket_box_days {
      margin-bottom: 7px;
      font-size: 13px;
  }





  /*==============================================
  	レスポンシブ：SP：newsBox
  ================================================*/
  .newsBox .inBox{

  }
  .newsBox .newsInbox{
  	padding: 60px 20px 40px;
  }
  .newsBox .newsInbox h3 {
      padding: 0;
      box-sizing: border-box;
  }
  .newsBox .newsList {
      padding-bottom: 1.5rem;
  }
.newsBox .newsList li .newsTitBlock {
    padding: 2.4rem 2.2rem 1.5rem 1.2rem;
}
.newsBox .newsList li .date {
    font-size: 0.9em;
}

.newsBox .newsList li .date span {
    padding: 0 0 0 5px;
    font-size: 0.9em;
}

.newsBox .newsList li .tit {
    font-size: 1rem;
    line-height: 1.5em;
}
  .newsBox .newsList li .newsTxtBlock {
      padding: 1.5rem 1.2rem 3.2rem 1.2rem;
  }
  .newsBox .newsList li .txt {
      font-size: 12px;
  }
  .newsBox .btn a {
      font-size: 1.1rem;
      width: 100%;
      margin: 1rem 0 0;
      box-sizing: border-box;
  }
  .newsBox .btnclose {
      position: absolute;
      font-size: 1rem;
      display: block;
      width: 8rem;
      margin: 0;
  }



  .newsBox .newsList li a .newsInner {
      padding: 30px 20px 20px;
  }
  .newsBox .newsList li a .tit {
      text-align: left;
      font-size: 18px;
  	margin: 0 0 10px;
  }
  .newsBox .newsList li a .txt {
      text-align: left;
      font-size: 14px;
      line-height: 1.5em;
  }
  .newsBox .newsList li .newsTitBlock:after {
      border-width: 6px 6px 0 6px;
      transition: 0.3s ease;
      right: 1rem;
  }
  .newsBox .btnclose:after {
      border-width: 0 5px 6px 5px;
      border-color: transparent transparent #FFF transparent;
      transform: translateY(-50%);
  }
  .newsBox .btnMore a {
      font-size: 1.5rem;
  }

  .messageBox .message_txtBox {
      width: 100%;
      margin-bottom: 15px;
  }

  .messageBox .message_imgBox {
      width: 100%;
  }

  .messageBox .message_txt {
      font-size: 13px;
      line-height: 1.9;
  }


  .ticket_box {
      padding: 0 1.2rem;
      margin-bottom: 1.5rem;
  }

  .ticket_box .tit {
      padding: 1.2rem 1.8rem 1.2rem 0;
      font-size: 1.2rem;
  }

  .ticket_box .detailBox {
      padding-bottom: 1.5rem;
  }

.aboutDetail:last-of-type {
    margin-bottom: 1.5rem;
}

  .aboutDetail {
      padding: 1.2rem 0;
      flex-wrap: wrap;
  }

.aboutDetail dt {
    width: 100%;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.aboutDetail dd {
    width: 100%;
    border-left: none;
    padding: 0;
    font-size: 1rem;
}


  .aboutDetail dd .ticketList li {
      padding: 1.1rem 0.8rem;
      font-size: 1rem;
      width: 100%;
      margin-bottom: 0.5rem;
  }

.aboutDetail dd .ticketList li .desc {
    font-size: 12px;
}

.aboutDetail dd .ticketList li .price .pn {
    font-size: 1.15em;
}

  .aboutDetail:last-child {
      margin-bottom: 0;
  }

  .aboutDetail dd .attention {
      padding: 12px;
      font-size: 11px;
  }

  .aboutDetail dd .ticketList:last-child {
      margin: 0;
  }

  .ticket_box .ticket_lead {
      font-size: 13px;
      margin-bottom: 10px;
      text-align: left;
  }

  .ticket_box.pastLive .tit::before {
      right: 4px;
      width: 10px;
      height: 10px;
  }



  /*==============================================

  	レスポンシブ：SP：下層：pageAttention
  	
  ================================================*/
  .pageAttention .block{

  }
  .pageAttention .contentBg {
      width: 2000%;
  }
  .pageAttention .lead {
      font-size: 14px;
      line-height: 1.5em;
      text-align: left;
      margin: 0 0 30px;
  }
  .pageAttention .icon{
  	width: 90%;
      margin: 0 auto 40px;
  }
  .pageAttention .attentionDetail {
      margin: 0 0 20px;
      padding: 0 0 20px;
  }
  .pageAttention .attentionDetail li {
      margin: 0 0 15px;
      font-size: 12px;
      text-indent: -18px;
      padding: 0 0 0 18px;
      line-height: 1.5em;
  }
  .pageAttention .attentionDetail li .fas {
      padding: 0px 5px 0 0;
      display: inline;
  }
  .pageAttention .attentionDetail li a{
  }
  .pageAttention .inList {
      padding: 20px 0 0 0px;
      margin: 0 0 20px;
  }
  .pageAttention .tit {
      font-size: 15px;
      font-weight: 600;
      margin: 0 0 20px;
  }

  .pageAttention .attentionDetail.mini li {
      font-size: 12px;
      text-indent: -1em;
      padding-left: 1em;
      margin-bottom: 10px;
  }



  /*==============================================

  	レスポンシブ：SP：下層：pageAccess
  	
  ================================================*/

  .pageAccess .block {
      padding: 0 10px;
  }
  .pageAccess .block .column {
      display: block;
      margin: 0 0 46px;
  }
  .pageAccess .block .columnLeft {
      width: 100%;
      padding: 0;
      margin: 0 0 40px;
  }
  .pageAccess .block h4 {
      font-size: 24px;
      padding: 0px 0 5px;
      margin: 0 0 15px;
  }
  .pageAccess .block .columnLeft .venue {
      font-size: 23px;
      font-weight: 600;
      margin: 0 0 10px;
  }
  .pageAccess .block .columnRight {
      width: 100%;
  }
  .pageAccess .block .columnLeft .btn a {
      width: 100%;
      border-radius: 5px;
      text-align: center;
      margin: 0 auto 20px;
  }





  /*==============================================
  	special
  ================================================*/

.sp_lead_box {
    margin-bottom: 30px;
    text-align: center;
}

.sp_lead_box .sp_lead_img {
    width: 90%;
    margin: 0 auto 10px;
}

.sp_lead_box .tit {
    font-size: 4.6vw;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.sp_lead_box .tit span {
    width: 98%;
    margin-bottom: 0px;
    font-size: 1em;
}


.special_box {
    border-radius: 7px;
    padding: 0px 20px 20px;
    margin-bottom: 30px;
}

.special_box .tit {
    padding: 20px 0 20px 0px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
    position: relative;
}

.special_box .tit span {
    padding-left: 10px;
    display: inline-block;
}

.special_box .sp_desc_box {
    margin-bottom: 20px;
}


.special_box .sp_desc_box .sp_desc {
    font-size: 14px;
    line-height: 1.7;
    width: 100%;
    order: 2;
}

.special_box.stamp_box .sp_desc_box .sp_desc {
    width: 100%;
}

.special_box .sp_desc_box .sp_desc_img {
    margin: 0 auto 20px;
    width: 85%;
    order: 1;
}

.special_box .sp_prize_list {
    width: 100%;
}

.special_box .sp_prize_list li {
    width: 85%;
    margin: 0 auto 15px;
}

.special_box .sp_prize_list li:last-child {
    margin-bottom: 0;
}

.special_box .attention {
    padding: 10px;
}

.special_box .sp_desc_box .sp_desc_img.img_stamp {
    margin: 0 auto 20px;
    width: 85%;
}

.special_box .sp_prize_list_stamp_wrap {
    padding-top: 10px;
}

.special_box .sp_prize_list_stamp li {
    font-size: 13px;
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
}

.special_box .sp_prize_list_stamp li:last-child {
    margin-bottom: 0;
}

.special_box .sp_desc_box .sp_desc_img.img_stamp.img_badge {
    order: 3;
    margin: 15px auto 0;
    width: 100%;
}

.special_box .sp_prize_list_stamp li .prize_pick {
    margin: 3px 0 3px;
    font-size: 1em;
}

.special_box.badge_box .sp_desc_box .sp_desc {
    width: 100%;
}


.pageSpecial .map_lead_top {
    font-size: 28px;
    margin-bottom: 5px;
}

.pageSpecial .map_img {
    border-radius: 7px;
    margin-bottom: 50px;
}


.special_box .radio_txt {
    font-size: 13px;
    margin-bottom: 15px;
}

.special_box .mov {
    margin: 0 0 20px;
}

.pageSpecial .map_lead {
    text-align: left;
    font-size: 15px;
    margin-bottom: 15px;
}

.pageSpecial video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}



/*==============================================
	GOODS
================================================*/


.pageGoods .sellstart {
    font-size: 16px;
}

.pageGoods .goodsImage {
    margin: 30px auto;
}

.pageGoods .attentionDetail {
    padding: 15px;
}

.pageGoods .attentionDetail li {
    margin: 0 0 3px;
    font-size: 14px;
    text-indent: -7px;
    padding: 0 0 0 10px;
}

.pageGoods .goods_wrap {
    padding-bottom: 40px;
    margin-bottom: 40px;
}




  .btn a {
      width: 100%;
  }


  .gnav {
      width: 100%;
  }

  .gnav a {
      font-size: 2.8vh;
  }

  a.disabled{
      pointer-events: none;
  }

footer {
    padding: 4.5rem 0 2rem;
}

footer .footerTit {
    margin: 0 auto 3rem;
    width: 57%;
}

  footer .gnav {
      margin: 0 auto 40px;
      width: 80%;
      display: flex;
      flex-wrap: wrap;
  }

  footer .gnav li {
      font-size: 10px;
      width: 50%;
      margin-bottom: 10px;
  }

  footer .gnav li:last-child {
      margin-bottom: 0;
  }

  footer .gnav li + li {
      margin-top: 0;
  }


footer .footerPartner {
    margin: 0 auto 3rem;
    width: 58%;
    flex-wrap: wrap;
}

footer .btnHome a {
    margin: 0 auto 1.2rem;
    width: 55%;
}

footer .footerPartner .partner {
    width: 100%;
    margin: 0 auto 2.5rem;
}
footer .footerPartner .partner .partnerTit {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}
footer .copyright {
    font-size: 0.7rem;
}

}
