@charset "UTF-8";

@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');
@import url("https://use.typekit.net/lkj7xyn.css");


/****************************************

		  RESET

*****************************************/
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
}


html {
	font-size: clamp(13px, 1.1vw, 2.2vh);
}

body {
	line-height: 1.7;
	font-family: 'Manrope','Zen Kaku Gothic New', sans-serif;
	background: #ff760d;
	position: relative;
	height: auto;
	color: #000000;
	font-weight: 500;
	letter-spacing: 0.07em;
}

* {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

* {
	box-sizing: border-box;
}

*:before,
*:after {
	box-sizing: inherit;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

ol,
ul {
	list-style: none;
}

img,
video {
	max-width: 100%;
}

img {
	border-style: none;
}

footer {
	background: #fff;
	padding: 2.5em 0;
	color: #f8b500;
}

.red {
	color: #ffb398;
}
.blue {
    color: #001c84;
    font-weight: bold;
}

blockquote,
q {
	quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
	content: "";
}
[hidden] {
	display: none !important;
}

[disabled] {
	cursor: not-allowed;
}

:focus:not(:focus-visible) {
	outline: none;
}
.sr-only {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	left: -9999px;
	top: -9999px;
}
p.just {
	text-align: justify;
	text-justify: inter-ideograph;        
}
br.brsp {
	display:none;   
}
@media (max-width: 767px) {
br.brsp {
	display:block;   
}
}
img{
	width: 100%;
}


.sml {
	font-size: 0.85em;
}

a {
	color: #000;
}



.fadeup {
	transition: all .5s ease-out;
	transform: translatey(1rem);
	opacity: 0;
	filter: blur(0.8rem);
}
 
.loaded .fadeup.started {
	transform: none;
	opacity: 1;
	filter: none;
}

.loaded .fade_list.started > li {
	transform: none;
	opacity: 1;
}
.fade_list > li {
	transform: translateY(1.5em);
	opacity: 0;
	transition: 0.8s ease;
}


.footer .copyright {
	font-weight: 500;
	color: #000;
	text-align: center;
}



/****************************************
	ビジュアル
*****************************************/

.bgBox {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(/static/vaundy/fanclub/feature/dometour2026/img/bg_orange.jpg);
	z-index: -1;
	background-size: 100%;
}


.visual {
	margin: 0;
	position: relative;
	height: 100svh;
	overflow: hidden;
}

.visual .visualInner {
	max-width: 190vh;
	position: relative;
	height: 100%;
	margin: 0% auto 0;
}
.scrolled .visual .visualInner {
}

.parts {
	clip-path: inset(0 0 0 0);
	transition: 0.5s ease 1.2s;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 1000;
}
.loaded .parts {
	clip-path: inset(0 0 0 100%);
}


.visual .parts::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #fff302;
	position: absolute;
	top: 0;
	left: 0;
}


.main_visual {
	width: 22%;
	line-height: 0;
	position: absolute;
	top: 40%;
	left: 49%;
	transform: translate(-50%, -50%);
	transition: 1.4s 1.4s;
	filter: blur(10px);
	opacity: 0;
}
.loaded .main_visual {
	filter: blur(0px);
	opacity: 1;
	top: 48%;
}

.visual .visual_title {
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translate(-50%, -50%) scale(1.4);
	transition: 1.4s 1.2s;
}
.loaded .visual .visual_title {
	transform: translate(-50%, -50%) scale(1);
}

.logo_main {
	line-height: 0;
}

.visual_copy {
	width: 60%;
	line-height: 0;
	position: absolute;
	top: 2.4%;
	left: 1.5%;
	max-width: 150vh;
}

.scroll {
	display: block;
	width: 1px;
	height: 5rem;
	position: absolute;
	bottom: 2rem;
	right: 3.5%;
	z-index: 10;
	text-decoration: none;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease 1.8s;
	opacity: 0;
}

.loaded .scroll {
	opacity: 1;
}

.scroll:after {
	content: "";
	position: absolute;
	height: 0;
	width: 1px;
	top: 0px;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	background: #ffffff;
	-webkit-animation: scroll 2s linear 1.7s infinite;
	animation: scroll 2s linear 1.7s infinite;
}
.scroll::before {
	content: 'SCROLL';
	position: absolute;
	bottom: 0;
	right: 1em;
	font-size: 1.1em;
	font-family: meno-display, serif;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.01em;
}

  @-webkit-keyframes scroll {
	0%{ height: 0; top: 0; bottom: auto; opacity: 1; }
	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: 1; }
	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; }
  }


.anker_list {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: 0.3s;
}

.scrolled .anker_list {
	position: fixed;
	top: 0;
	bottom: auto;
}

.anker_list > li {
	width: 25%;
}
.anker_list > li a {
	background: url(/static/vaundy/fanclub/feature/dometour2026/img/bg_orange.jpg);
	display: block;
	padding: 1rem 5rem;
	line-height: 0;
	background-size: 100%;
}
.anker_list > li a img {
	display: block;
	max-width: 10rem;
	margin: 0 auto;
}

.anker_list > .anker_f a {
	background-image: url(/static/vaundy/fanclub/feature/dometour2026/img/bg_blue.jpg);
}
.anker_list > .anker_o a {
	background-image: url(/static/vaundy/fanclub/feature/dometour2026/img/bg_red.jpg);
}
.anker_list > .anker_s a {
	background-image: url(/static/vaundy/fanclub/feature/dometour2026/img/bg_green.jpg);
}



/****************************************
	メニュー
*****************************************/
#gNav {
	position: fixed;
	right: 0;
	color: #000000;
	box-sizing: border-box;
	top: 0;
	padding: 0;
	z-index: 999;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	transform: translateX(100%);
	transition: 0.5s;
	background: #e62828;
	background-image: url(/static/vaundy/fanclub/feature/halltour2025/img/bg_sch.png);
	background-size: 23%;
	background-repeat: repeat-y;
}

#gNav.open {
	transform: none;
}

#gNav .gnavMenu {
	text-align: right;
}

#gNav a {
	display: inline-block;
	text-decoration: none;
	margin: 0px auto 20px auto;
	font-size: 2.2em;
	width: auto;
	letter-spacing: 0.04em;
	color: #fff;
	font-family: brother-1816, sans-serif;
	font-weight: 700;
}


.gNav_logo {
	width: 45%;
	margin: 0 auto 40px;
	line-height: 0;
	max-width: 250px;
}

#gNav li:last-child a{
	margin: 0 auto 0;
}

.gNavInr{
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

#gNav .menu {
	display: -webkit-flex;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin: auto;
}
#gNav .menu li a {
	display: block;
	color: #fff;
	font-size: 1.3vw;
	letter-spacing: 0.05em;
}
#gNav .menu li a.off {
	opacity: 0.5;
	pointer-events: none;    
}


#menuButton {
	display: block;
	width: 5rem;
	height: 5rem;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
	border: none;
	text-decoration: none;
	opacity: 1;
	background: #000;
}

#menuButton span:first-child { top: 24px;} 
#menuButton span:nth-child(2) { margin-top: -1px; top: 50%;} 
#menuButton span:nth-child(3) { bottom: 24px;} 

#menuButton.active span {
}
#menuButton.active span:first-child {
	transform: translateY(8px) rotate(45deg);
}
#menuButton.active span:nth-child(2) { opacity: 0;} 
#menuButton.active span:nth-child(3) { 
	transform: translateY(-8px) rotate(-45deg); 
} 
#gNav .menu {
	display: -webkit-flex;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	width: 40%;
	margin: 40px auto;
}

#menuButton span {
	display: block;
	background: #ffffff;
	width: 70%;
	height: 0px;
	border-bottom: 1px solid #e62828;
	position: absolute;
	right: 15%;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}



.inBox{
	width: 80%;
	margin: auto;
	position: relative;
	max-width: 80rem;
	z-index: 1;
}
h2 {
	text-align: center;
	font-size: 6.5em;
	position: relative;
	line-height: 1;
	z-index: 1;
	padding: 0 0%;
	color: #fff302;
	margin: 0 auto 6rem;
	font-family: brother-1816, sans-serif;
	font-weight: 700;
	font-style: normal;
}

h2 p {
	position: relative;
	clip-path: inset(0 100% 0 0);
	transition: 0.5s ease;
	transform: scaleY(0.95);
}
h2.started p {
	clip-path: inset(0 0 0 0);
}

h2 .tit_area {
	font-size: 1.8rem;
	padding-top: 0.25em;
	letter-spacing: 0.1em;
}


h2.started i {
	transform: none;
}
h2 i {
	font-style: normal;
	transform: translateY(1em);
	display: inline-block;
	transition: 0.3s;
}

.title_sub {
	font-family: 'Manrope', 'Zen Kaku Gothic New', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	padding: 0 1.5em;
}

.attentionList li {
	font-size: 0.85em;
	text-indent: -1em;
	margin: 0 0 0.2em 1em;
	line-height: 1.6;
}
.attentionList li:last-child {
	margin-bottom: 0;
}

.attentionList li.sml {
	font-size: 0.85em;
}

.attentionList.attentionList_mb > li {
	margin-bottom: 0.8em;
}
.attentionList.attentionList_mb > li:last-child {
	margin-bottom: 0;
}

#attention .txt--sub {
	font-size: .8em;
}

.attentionBox > dt {
	font-weight: 600;
	margin-bottom: 0.5em;
}

.footer_box {
	width: 100%;
	padding: 2rem 2rem;
}
.copy {
	text-align: center;
	font-size: 0.7em;
	font-weight: 500;
}




/****************************************
	概要
*****************************************/

.contents {
	position: relative;
	padding: 8.5em 0;
	overflow: hidden;
}

.detailArea {
	background-position: top;
	background-size: auto;
	overflow: hidden;
}


.detailBox{
}

.detailBox:last-child {
	margin-bottom: 0;
}


.general_box {
	position: relative;
	padding: 4rem 5rem;
	background: #fff;
	margin-bottom: 4rem;
}

.general_box:last-child {
margin-bottom: 0;
}

.general_box_tit {
	text-align: center;
	font-size: 1.5em;
	font-weight: 800;
	margin-bottom: 1.5em;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	color: #ff6c00;
	border-bottom: 1px solid;
	padding-bottom: 1.5rem;
}

.general_txt {
	font-size: 1.1em;
	margin-bottom: 1.2em;
	line-height: 1.8;
	font-weight: 600;
}

.general_txt:last-child {
	margin-bottom: 0;
}





.detail_txt {
	font-size: 15px;
	margin-top: 30px;
	text-align: center;
}


.detailBox_tit {
	margin-bottom: 15px;
	position: relative;
	width: 70%;
	line-height: 0;
}

.general_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.general_flex:last-child {
	margin-bottom: 0;
}

.fc_ph {
    line-height: 0;
    margin-bottom: 1.5rem;
}

.general_flex .fc_ph {
	width: 37%;
	line-height: 0;
}
.general_flex .general_flex_txt {
	width: 60%;
}


.link{
	color: #f8bb00;
	font-size: 12px;
}
.link:hover{
transition: 0.4s;
	opacity: 0.7;
}


.btn a {
	max-width: 27rem;
	padding: 1.5em 2.5em;
	display: block;
	box-sizing: border-box;
	font-weight: bold;
	margin: 0 auto 1.2em;
	font-size: 1.2em;
	line-height: 1.4;
	height: auto;
	transition: 0.4s;
	text-decoration: none;
	text-align: center;
	background: #fff302;
	position: relative;
	color: #000000;
	border: 1px solid #fff302;
}
.btn a:hover {
	color: #ffffff;
}

.btn a::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #454545;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	transition: 0.3s;
	height: 0;
}
.btn a:hover::after {
	height: 100%;
}

.btn a .btn_txt {
	position: relative;
	z-index: 1;
}

.btn:last-child a {
	margin-bottom: 0;
}

.btn a::before {
	content: '\f054';
	position: absolute;
	top: 50%;
	right: 1.28em;
	font: normal normal normal 14px/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	line-height: 0;
	z-index: 1;
}


.btn.hide a {
	background: #a4a4a4;
	color: #dedede;
	pointer-events: none;
	border: none;
}
.btn.end a {
	background: #a4a4a4;
	color: #dedede;
	border: 1px solid;
}

.btn_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 15px;
}

.btn_list > li {
	width: 47%;
	margin: 0 10px 20px;
}

.btn_list > li .btn a {
	max-width: none;
}

.attentionList li a {
	text-decoration: underline;
}


.btn.fc_btn a {
    background: #ff6c00;
    border: none;
}

.btn a .min {
	font-size: 0.75em;
	margin-left: 0.5em;
}

.btn.btn_entry a {
    background: #000000;
    color: #ff6c00;
    border: none;
}


.innerWrap {
	width: 76%;
	margin: 0 auto;
	position: relative;
}


#schedule {
	padding: 0;
}

#schedule .innerWrap {
	margin: 0 auto;
	position: relative;
}

.schedule_inner {
	position: relative;
	padding: 8.5em 0;
	background-size: cover;
	z-index: 1;
}

#schedule_fukuoka {
	background-image: url(/static/vaundy/fanclub/feature/dometour2026/img/bg_blue.jpg);
}
#schedule_osaka {
	background-image: url(/static/vaundy/fanclub/feature/dometour2026/img/bg_red.jpg);
}
#schedule_sapporo {
	background-image: url(/static/vaundy/fanclub/feature/dometour2026/img/bg_green.jpg);
}

#schedule .schedule_table {
	background: #fff;
	color: #000000;
	padding: 3rem;
}

#schedule table {
	width: 100%;
	border-bottom: 1px solid;
	margin: 0 auto;
	text-align: left;
	border-collapse: collapse;
	border-spacing: 0;
	letter-spacing: 0.02em;
	font-size: 0.98em;
}

#schedule tr {
	position: relative;
}

#schedule tr:first-child th {
	padding-bottom: 1em;
	padding-top: 0;
	font-family: brother-1816, sans-serif;
	font-weight: 700;
	font-size: 1.1em;
	line-height: 1;
}

#schedule td {
	border-top: 1px solid;
	vertical-align: middle;
	padding: 1.5rem 0;
	position: relative;
	font-weight: 500;
}


#schedule .soldout td.date::before {
	content: 'SOLD \A OUT!!';
	position: absolute;
	left: -44px;
	white-space: pre;
	color: #E6E691;
	font-family: 'Caveat', cursive;
	line-height: 1;
	top: 18px;
	transform: rotate(-9deg);
	font-size: 16px;
}


#schedule .date {
	width: 20%;
}

#schedule .date .week {
	font-size: 0.5em;
	margin-left: 5px;
}

#schedule .area {
	width: 12%;
	padding: 0 1.3rem;
	text-align: center;
}
#schedule .venue {
	width: 35%;
	line-height: 1.5;
	padding: 1rem 1.5rem;
}
#schedule td.venue {
	font-weight: 600;
	font-size: 1.1em;
}
#schedule .venue a {
	transition: 0.3s;
}
#schedule .venue a:hover { opacity: 0.5;}

#schedule .venue a i {
	margin-left: 5px;
	font-size: 12px;
}

#schedule .venue_info {
	font-size: 0.85em;
	line-height: 1.55;
}


#schedule .venue_info .info_tit {
	border-left: 3px solid;
	padding-left: 0.3em;
	display: inline-block;
	margin-bottom: 0.3em;
}

#schedule .info {
	width: 25%;
}

#schedule .time {
	width: 20%;
}

#schedule .time span { display: block; padding: 7px 0 0 0;}


#schedule .general {
	width: 10%;
	padding: 5px;
	text-decoration: none;
}
#schedule .general .week { font-size: 12px;  margin-left: 5px; font-family: sans-serif;}

#schedule td.date {
	font-weight: bold;
	font-size: 2.7em;
	font-family: brother-1816, sans-serif;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

#schedule td.date .year {
	writing-mode: sideways-rl;
	font-size: 0.38em;
	letter-spacing: -0.03em;
	vertical-align: -1px;
}

#schedule td.time {
	font-size: 1.2em;
	font-family: brother-1816, sans-serif;
	font-weight: 600;
	line-height: 1;
}
#schedule td.area {
	font-weight: 600;
	font-size: 1.1em;
}


#schedule td.date .new {
    font-size: 0.8rem;
    width: 4rem;
    height: 2.7rem;
    position: absolute;
    background: #ffffffcc;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0.4rem;
    left: -2rem;
    border-radius: 50%;
    letter-spacing: -0.02em;
    color: #e62828;
    line-height: 1.1;
    transform: rotate(-10deg);
    border: 1px solid;
}


#ticket {
	background: #fff302;
}

#ticket h2 p {
	color: #000000;
}


#ticket .price {
	list-style: none;
	margin: 0 auto 80px;
}
#ticket .price > li {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px solid;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1.4;
}
#ticket .price > li:first-child {
	border-top: 1px solid;
}
#ticket .price > li h5 {
	font-size: 1.3em;
	font-weight: bold;
	width: 27%;
	letter-spacing: 0.1em;
	border-right: 1px solid;
}
#ticket .price > li h5 .sml {
    font-size: 0.7em;
    letter-spacing: 0.02em;
}

#ticket .price > li .price_info {
	width: 70%;
}

#ticket .price > li .price_txt {
    font-size: 1.7em;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 0.6em;
    line-height: 1.1;
}
#ticket .price > li .price_txt:last-child {
	margin-bottom: 0;
}

#ticket .price > li .price_txt .sml {
	font-size: 0.6em;
}

#ticket .price > li .price_txt .sml.price_note {
    display: inline-block;
    text-indent: -1.2em;
    padding-left: 1.2em;
    line-height: 1.6;
}

#ticket .price > li .price_txt + .attentionList {
	border-top: 1px dotted;
	padding-top: 1.2rem;
	font-size: 0.95em;
}

#ticket .note {
	font-size: 14px;
	font-weight: bold;
}

#ticket .price_kind {
	display: inline-block;
	background: #ffffff;
	font-size: 0.75em;
	padding: 0 0.65em;
	margin-bottom: 0.4em;
	color: #2d2d2d;
	letter-spacing: 0.05em;
	font-weight: bold;
}

#ticket .txt--notice {
	color: #ff0000;
	font-size: 1.4em;
	text-align: center;
}

.accordion {
	border: 1px solid;
	margin-bottom: 3rem;
	position: relative;
}
.accordion:last-child {
	margin-bottom: 0;
}

dl.accordion dt {
	cursor: pointer;
	position: relative;
	padding: 2.4rem 6rem 2.4rem 3.5rem;
	font-size: 1.3em;
	background: #000000;
	color: #fff302;
}

dl.accordion dt .past {
	display: inline-block;
	margin: 0 0 0 10px;
	border-radius: 100px;
	font-size: 80%;
	background: #4a5058;
	color: #FFF;
	line-height: 1em;
	padding: 5px 15px 4px;
	vertical-align: 1px;
}
dl.accordion dt .type {
	display: inline-block;
	margin: 0 10px 0 0;
	font-size: 80%;
	background: #ffffff;
	color: #081427;
	line-height: 1em;
	padding: 5px 15px 4px;
	vertical-align: 1px;
	font-weight: bold;
}

dl.accordion dd {
	padding: 3.5rem;
	display: none;
	background: #454545;
	color: #ffffff;
}

.accordion dt::before, .accordion dt::after {
	content: "";
	display: block;
	width: 1rem;
	height: 0px;
	border-top: 2px solid;
	position: absolute;
	top: 50%;
	right: 2.7rem;
	transition: all 0.3s ease-out;
	z-index: 1;
}

.accordion dt::after {
	transform: rotate(90deg);
}

.accordion.on dt::after {
	transform: translateY(-50%) rotate(0deg);
	opacity: 0;
}

.accordion.open dd {
	display: block;
}


.ticketInfo {
	width: 100%;
	margin-bottom: 3rem;
}
.ticketInfo:last-child {
	margin-bottom: 0;
}

.ticketInfo_desc .target_wrap {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid;
    position: relative;
    align-items: center;
}

.ticketInfo_desc .target_wrap:last-child {
	margin-bottom: 0;
}

.ticketInfo_target {
	width: 10em;
	font-weight: bold;
	padding: 1.5rem 0;
	position: relative;
}

.ticketInfo_target::after {
	content: '';
	display: block;
	width: 1px;
	height: calc(100% - 2rem);
	border-left: 1px solid;
	position: absolute;
	top: 1rem;
	right: 0;
}

.ticketInfo_target_desc {
    width: calc(100% - 10em);
    padding: 1.5rem 0 1.5rem 2rem;
    line-height: 1.6;
}

.ticketInfo_desc.desc_large .ticketInfo_target {
    width: 17rem;
}
.ticketInfo_desc.desc_large .ticketInfo_target_desc {
	width: calc(100% - 17rem);
}


.ticketInfo_desc .target_wrap:first-child {
	border-top: 1px solid;
}

.ticketAttention {
	margin-bottom: 3rem;
}

.ticketBox_inner {
	margin-bottom: 7rem;
}
.ticketBox_inner:last-child {
	margin-bottom: 0;
}

.fc_entry.accordion {
	padding: 4rem;
}

.logo_fc {
	line-height: 0;
	width: 57%;
	margin: 0 auto 3rem;
}

.btn.fc_entry a {
	background: #fff;
	box-shadow: none;
	color: #081427;
}

.btn.fc_entry a::after {
	display: none;
}


.cs {
	font-size: 0.9rem;
	font-weight: 600;
	padding: 2rem 0.5rem;
}



.btn.fc_entry.btn_contact a {
	font-size: 1em;
	letter-spacing: 0.01em;
}


section#movie {
    background: #454545;
    color: #fff;
}

.iframe_wrap {
	padding-top: 56.25%;
	height: 0;
	position: relative;
}
.iframe_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.logo-fc {
	width: 40%;
	margin: 0 auto 2rem;
	line-height: 0;
}
.fc_tit_entry {
	text-align: center;
	font-size: 2em;
	font-weight: 800;
	text-indent: 0.4em;
}
.fc_title {
	margin-bottom: 4rem;
}

.fc_icon {
	position: absolute;
	width: 12rem;
	top: -3rem;
	right: -3rem;
	transform: rotate(12deg);
}

.general_box .ticketInfo_desc .target_wrap {
    align-items: normal;
}

.attr_box {
	background: #fff;
	color: #000000;
	padding: 2.5rem;
	margin-bottom: 2rem;
}
.attr_box:last-child {
	margin-bottom: 0rem;
}

.attr_tit {
	margin-bottom: 1rem;
	font-size: 1.1em;
	font-weight: bold;
	border-left: 3px solid #fc7204;
	padding-left: 0.6em;
}

.attr_box .attentionList {
	margin-bottom: 1.5rem;
}
.attr_box .attentionList:last-child {
	margin-bottom: 0rem;
}

.attr_box .attentionList > li {
	font-size: 0.9em;
	letter-spacing: 0.03em;
}
.attr_box .attentionList .sml {
	font-size: 0.85em;
}

.attr_txt {
	margin-bottom: 1rem;
	letter-spacing: 0.03em;
	font-size: 0.9em;
}
.attr_txt:last-child {
	margin-bottom: 0rem;
}

.attr_box .contact_box .attentionList > li {
	font-size: 0.85em;
	margin-bottom: 0.1em;
}

.contact_box {
	background: #ebebeb;
	padding: 1.5rem 2rem;
	margin-bottom: 2px;
}

.contact_txt {
	font-size: 0.85em;
	margin-bottom: 0.5em;
}
.contact_txt:last-child {
	margin-bottom: 0em;
}
.contact_tit {
	font-weight: bold;
	margin-bottom: 0.2rem;
	font-size: 1.03em;
}

.attr_box a {
	word-break: break-all;
}


.accordion_arc {
	margin-bottom: 2rem;
}
.accordion_arc:last-child {
	margin-bottom: 0;
}

.accordion_arc > dt {
	font-weight: bold;
	font-size: 1.2em;
	position: relative;
	border-bottom: 1px solid;
	padding: 1.2rem 0;
	cursor: pointer;
}

.accordion_arc > dd {
	display: none;
	padding-top: 2rem;
}

.accordion_arc > dt::before, .accordion_arc > dt::after {
	content: "";
	display: block;
	width: 1rem;
	height: 0px;
	border-top: 2px solid;
	position: absolute;
	top: 50%;
	right: 0;
	transition: all 0.3s ease-out;
	z-index: 1;
}

.accordion_arc > dt::after {
	transform: rotate(90deg);
}

.accordion_arc.on > dt::after {
	transform: translateY(-50%) rotate(0deg);
	opacity: 0;
}

.accordion_arc.arc_visible > dt {
    pointer-events: none;
    cursor: auto;
}
.accordion_arc.arc_visible > dt::before, .accordion_arc.arc_visible > dt::after {
    display: none;
}
.accordion_arc.arc_visible dd {
    display: block;
}

.no_ind {
	text-indent: 0 !important;
	margin-left: 0 !important;
}

.red {
	color: #e62828;
}
.bold {
	font-weight: bold;
}


.inner_box {
	margin-bottom: 3rem;
}
.inner_tit {
	border-left: 0.2em solid;
	padding-left: 0.6em;
	font-weight: bold;
	line-height: 1.5;
	font-size: 1.15em;
	margin-bottom: 0.5em;
}
.inner_txt {
	margin-bottom: 1.5rem;
}
.inner_txt:last-child {
	margin-bottom: 0;
}

.stage_table {
	border-top: 1px solid #ffffffde;
}

.stage_list {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #ffffffde;
	border-left: 1px solid #ffffffde;
}

.stage_list > li {
	width: calc(100% / 7);
	text-align: center;
	padding: 1.5em 1.25em;
	line-height: 1.5;
	border-right: 1px solid #ffffffde;
}
.stage_list > li:first-child {
}



.stage_list > li .stage_cnt {
	display: inline-block;
	font-size: 0.7em;
	width: 100%;
}

.stage_list:first-child {
	color: #fff302;
	font-family: brother-1816, sans-serif;
	font-weight: 700;
	letter-spacing: 0;
	font-size: 1.3em;
}
.stage_list:first-child > li {
	line-height: 1;
	padding: 1em;
}
.stage_list > li.stage_flag {
	display: flex;
	align-items: center;
	justify-content: center;
}

.stage_list > li:nth-of-type(2) {
	background: #51d3e7;
}
.stage_list > li:nth-of-type(3), .stage_list > li:nth-of-type(4) {
	background: #fb7401;
}
.stage_list > li:nth-of-type(5), .stage_list > li:nth-of-type(6) {
	background: #fc091d;
}
.stage_list > li:nth-of-type(7) {
	background: #04ad3a;
}

.stage_list.stage_tit > li {
	width: 100%;
	background: #f6f5f3;
	color: #2a2a2a;
	font-weight: bold;
	font-size: 1.2em;
	line-height: 1;
	padding: 1rem;
}

.method_list > li {
	display: flex;
	flex-wrap: wrap;
	background: #ffffff1f;
	margin-bottom: 2px;
}

.method_list > li .method_area {
	width: 28%;
	line-height: 0;
}
.method_list > li .method_txt {
	width: 72%;
	padding: 1rem 1.6rem;
	display: flex;
	align-items: center;
}


.inner_txt.upgrade_notice {
    background: #000;
    color: #fff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.upgradeinfo img {
    pointer-events: none;
}

/****************************************

	PC

*****************************************/

@media screen and (min-width: 960px) {
.sp{
	display:none!important;  
}

#menuButton {
	display: none;
}

#gNav {
	transform: none;
	width: auto;
	height: auto !important;
	padding: 3.5rem 0 0;
	box-shadow: none;
	top: 0;
	background: none;
	right: 0;
	transition: 0.5s 1.5s;
	opacity: 0;
	transform: translateY(1rem);
	backdrop-filter: none;
}

.loaded #gNav {
	transform: none;
	opacity: 1;
}

#gNav a {
	font-size: 2.4rem;
	margin: 0;
	background: #000000;
	line-height: 1.2;
	padding: 0.2em 0.5em;
	color: #e62828;
}

}





/****************************************

	SP

*****************************************/

@media screen and (max-width: 960px) {

html {
	font-size: clamp(10px, 3.5vw, 2.5vh);
}

.pc{
	display:none!important;  
}

.btn a {
	font-size: 1.05rem;
}

.nav_logo {
	width: 35%;
	margin: 0 auto 3rem;
}


#gNav a {
	color: #000000;
	display: block;
	text-align: right;
	font-size: 3rem;
	margin-bottom: 0.2em;
	line-height: 1;
	letter-spacing: 0;
}

.gNavInr {
	padding: 8%;
}


/****************************************
	ビジュアル
*****************************************/


body:not(.page--home) .wovn-languages {
	top: 1rem;
}

.main_visual {
	width: 45%;
}

.visual {
}


.visual h1 .main_visual {
	width: 100%;
}

.visual .visual_title {
	width: 95%;
}

.visual_copy {
	width: 94%;
	left: 3%;
	top: 3%;
}

.scroll {
	display: block;
	position: absolute;
	bottom: 0%;
	left: 8%;
	height: 15%;
}

.scroll::before {
	width: 62px;
	text-align: center;
	content: 'Scroll';
	bottom: 9px;
	left: 0;
}

.scroll:after {
	width: 1px;
}

.anker_list > li {
	width: 50%;
}
.anker_list > li a {
	padding: 0.5rem 3rem;
}
.anker_list > li a img {
	max-width: 9rem;
}


h2 {
	font-size: 3.2em;
	margin-bottom: 3rem;
	letter-spacing: 0;
}

h2 .tit_area {
	font-size: 1.3rem;
}

h2 p {
}

.inBox {
	width: 90%;
	margin: auto;
	position: relative;
	z-index: 1;
}

.contents {
	padding: 5rem 0;
}

.attentionList li {
	font-size: 11px;
}

.general_box_tit {
	margin-bottom: 1.5rem;
	line-height: 1.5;
	font-size: 1.2em;
	padding: 0 6% 1.5rem;
}

.general_box {
	margin-bottom: 2rem;
	padding: 2rem 1.2rem;
}

.general_flex .fc_ph {
	width: 100%;
	margin-bottom: 1.2rem;
}
.general_flex .general_flex_txt {
	width: 100%;
}

.general_txt {
	font-size: 1em;
	line-height: 1.7;
	margin-bottom: 0.8rem;
}

.general_flex {
	margin-bottom: 1.5rem;
}


.logo-fc {
	width: 50%;
	margin: 0 auto 1rem;
}

.fc_title {
	margin-bottom: 2.5rem;
}

.fc_tit_entry {
	font-size: 1.3em;
}

.fc_icon {
	width: 6.5rem;
	top: -2.5rem;
	right: -2rem;
}

.schedule_inner {
	padding: 5rem 0;
	background-repeat: repeat;
}

#schedule .schedule_table {
	padding: 1.5rem;
}


#schedule tr:first-child th {
	font-size: 0.8em;
	line-height: 1.4;
}

#schedule .date {
	width: 100%;
}
#schedule .time {
	width: 100%;
}
#schedule .venue {
	width: 100%;
}
#schedule .area {
	width: 15%;
}
#schedule .info {
	width: 100%;
}

#schedule tr {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid;
	padding: 1rem 0;
	align-items: flex-start;
}
#schedule tr:first-child {
	display: none;
}

#schedule td.date {
	font-size: 2.6em;
	letter-spacing: 0;
	padding: 0;
}

#schedule .date .week {
	font-size: 0.75em;
}

#schedule td.time {
	font-size: 1.1em;
	line-height: 1.2;
	letter-spacing: -0.02em;
	padding: 0 0 0.5em;
}

#schedule td {
	padding: 0;
	display: block;
	border: none;
}

#schedule td.area {
	padding: 0.1em 0.2rem;
	text-align: center;
	font-size: 0.85em;
	background: #000000;
	color: #e62828;
}
#schedule td.venue {
	font-size: 1.4em;
	padding: 0;
}
#schedule td .venue_place {
	width: 100%;
	padding-right: 0;
	margin-bottom: 0.5em;
	font-size: 0.92em;
}
#schedule .venue_con {
	width: 100%;
	font-size: 0.8em;
	opacity: 0.8;
}
#schedule .venue {
	padding-left: 0;
}
#schedule td.date .new {
    top: -1.2rem;
    left: -2rem;
    display: inline-block;
    height: auto;
    text-align: center;
    margin-left: 0.7rem;
    padding: 0.6em 0.7em;
    width: auto;
    vertical-align: 3px;
    font-size: 0.9rem;
}
#schedule #schedule_tokyo .day-one .venue_info, #schedule #schedule_osaka .day-one .venue_info {
	display: none;
}


#ticket .price > li {
	padding: 1.2rem 0;
}

#ticket .price > li h5 {
	width: 100%;
	border: none;
	font-size: 1.1em;
	margin-bottom: 0.2em;
}
#ticket .price > li .price_info {
	width: 100%;
}

#ticket .price > li .price_txt {
    line-height: 1.2;
    font-size: 1.6em;
}
#ticket .price > li .price_txt + .attentionList {
	border-top: 1px dotted #ffffff4d;
}
#ticket .price > li .price_txt .sml.price_note {
    letter-spacing: 0.02em;
    font-size: 0.58em;
}

#ticket .price {
	margin-bottom: 3rem;
}

#ticket .txt--notice {
	font-size: 1em;
}

.accordion {
	margin-bottom: 1.8rem;
}
.accordion::before {
	bottom: -5px;
	right: -5px;
}

dl.accordion dt {
	padding: 1.3rem 3.4rem 1.3rem 1.5rem;
	font-size: 1.1em;
	line-height: 1.6;
}

dl.accordion dd {
	padding: 1.3rem 1.5rem 1.9rem 1.5rem;
}

.accordion dt::before, .accordion dt::after {
	right: 0.96em;
}

dl.accordion dt .type {
	font-size: 0.9em;
	padding: 5px 10px 4px;
}

.ticketInfo_target {
	width: 7em;
	padding: 1.2rem 0.8em 1.2rem 0;
}

.ticketInfo_target_desc {
	width: calc(100% - 7em);
	padding: 1.2rem 0 1.2rem 1rem;
	line-height: 1.6;
}

.ticketInfo_desc.desc_large .ticketInfo_target {
    width: 100%;
    padding: 1rem 0 0.2rem;
}
.ticketInfo_desc.desc_large .ticketInfo_target::after {
    display: none;
}
.ticketInfo_desc.desc_large .ticketInfo_target_desc {
    width: 100%;
    padding: 0 0 1rem;
}

.ticketInfo_desc .target_wrap {
	font-size: 0.92em;
}
.ticketInfo {
	margin-bottom: 1.5rem;
}

.ticketAttention {
	margin-bottom: 1.5rem;
}

.ticketBox_inner {
	margin-bottom: 3rem;
}

.inner_txt.upgrade_notice {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.fc_entry.accordion {
	padding: 2rem;
}

.logo_fc {
	width: 70%;
	margin: 0 auto 2rem;
}

.link:hover{
opacity: 1;
}


.cs {
	padding: 1rem 0.5rem;
	font-size: 1.2rem;
}

.copy {
	text-align: center;
	font-size: 1em;
	writing-mode: initial;
	display: block;
	width: 100%;
	font-size: 0.7rem;
}


.btn.btn_sub a {
	font-size: 1em;
	padding: 1.2em;
	width: 17em;
}

.btn.btn_w a {
	box-shadow: 3px 3px 0 #fff;
	font-size: 1.3em;
}

.footer_box {
	text-align: center;
}



.btn.btn_bnr {
	margin-bottom: 3em;
}

.footer_logo {
	width: 200px;
	height: 33px;
}

body:not(.page--home) .footer .copyright {
	text-align: center;
	padding-top: 0;
}


.innerWrap {
	width: 90%;
}

.attr_box {
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.contact_box {
	padding: 1.3rem;
}


.accordion_arc > dt {
	font-size: 1em;
	padding: 1.2rem 1.2rem 1.2rem 0;
}

.accordion_arc {
	margin-bottom: 1rem;
}

.inner_box {
	margin-bottom: 1.5rem;
}
.inner_tit {
	font-size: 1.1em;
	margin-bottom: 0.5rem;
}
.inner_txt {
	font-size: 0.9em;
}

.stage_table_wrap {
	overflow-x: scroll;
}

.stage_table {
	min-width: 540px;
}

.stage_list:first-child {
	font-size: 1.1em;
}
.stage_list:first-child > li {
	padding: 0.7em;
}
.stage_list > li {
	padding: 1em;
}

.stage_list.stage_tit > li {
	text-align: left;
	font-size: 1.1em;
	padding: 1rem 1.3rem;
}

.method_list > li .method_area {
	width: 100%;
}
.method_list > li .method_txt {
	width: 100%;
	padding: 1.2rem;
}
.method_list > li {
	margin-bottom: 1.5rem;
}


}



@media screen and (max-width: 960px) and (min-width: 500px) {

html {
    font-size: clamp(10px, 2vw, 2.5vh);
}

}
