:root {
    --text-color: #5476a6;
    --primary-color: #344877;
    --font-en: "Crimson Text", serif;
}
body {
	color: var(--text-color);
	background: #86ade1;
	min-height: 100vh;
    font-family: "tot-shizukago-stdn", sans-serif;
	font-weight: 500;
	margin: 0;
}
.bg {
	content: "";
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}
.bg::before {
	content: "";
	background: url(/static/produce101/feature/jo1dershow2026_f6Tvs3S7/img/noise.png);
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
}
h1, h2, h3 {
	margin: 0;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
dl, dd {
	margin: 0;
}
p {
	margin: 0;
}
img {
	max-width: 100%;
	pointer-events: none;
}
.block {
    border: 1px solid;
    background: linear-gradient(180deg, #fff, #ebf6ff);
    box-shadow: 0 0 15px #b4cdff;
    border-radius: 10px;
    border-top: 1px solid #8eaeff;
}
.block + .block {
	margin-top: 2em;
}
.block.block--upgrade {
    background: linear-gradient(360deg, #fff9e9, #dafffc);
}

.container {
    margin: 0 auto;
    padding: 7vw 10% 7vw;
    position: relative;
    z-index: 0;
}
section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10vh 0;
}
section:last-child {
    margin-bottom: 0;
}

section .inner {
    padding: 2em 2.5em;
    background: linear-gradient(180deg, #fff, #ebf6ff);
    box-shadow: 0 0 18px #b4cdff, 0 0 18px inset #a8c5fe57;
    border-radius: 10px;
}
.main-title {
	text-align: center;
}
.logo {
	width: 90%;
	max-width: 600px;
}
.section-title {
    text-align: center;
    font-size: clamp(50px, 7vw, 72px);
    margin-bottom: 1em;
    color: rgb(255 255 255);
    text-shadow: 0px 0px 15px rgb(107 136 198 / 80%);
    opacity: .95;
    letter-spacing: -0.03em;
    font-family: 'new-science-extended';
    font-weight: 600;
}
.list li {
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.65;
}
.list li + li {
	margin-top: .5em;
}
.list li a {
    color: #5fb7c9;
    text-indent: 0;
}
.list--sub {
	margin-top: 1em;
	font-size: .8em;
}
.points {
	color: #d10000;
}
.accordion .tit {
	font-size: clamp(16px, 2vw, 20px);
	font-weight: 800;
	padding: 1em 2.8em 1em 1.8em;
	position: relative;
	cursor: pointer;
}
.accordion .txt {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease-in-out;
}
.accordion.open .txt {
	max-height: 2000px;
}
.accordion .tit::before {
	content: "";
	width: 8px;
	height: 8px;
	border-color: var(--text-color);
	border-right: 1px solid;
	border-bottom: 1px solid;
	transform: rotate(45deg);
	position: absolute;
	right: .5em;
	top: calc(50% - 8px);
	transition: .3s;
}
.accordion.open .tit::before {
	transform: rotate(225deg);
	top: calc(50% - 3px);
}
.btn {
	text-align: center;
	margin: 2em 0;
}
.btn a {
    display: inline-block;
    text-decoration: none;
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 700;
    color: white;
    background: linear-gradient(to bottom, #92abd8, #6a91e0);
    width: 80%;
    max-width: 350px;
    padding: 1.2em;
    border-radius: 25px;
    border-top: 1px solid #ffffffcf;
    border-bottom: 1px solid #5a6081;
}

.btn.hide a {
    pointer-events: none;
    background: #a8b3b7;
    color: #ebebeb;
}

* {
    box-sizing: border-box;
}





/* wovn
------------------------------ */

.languages {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 999;
    background: #fff;
    padding: 0 10px;
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgb(107 136 198 / 94%), 0px 0px 6px inset #a8c5fe30;
}


.wovn-languages {
    color: #7598dd;
    font-size: 12px;
    position: relative;
    z-index: 2;
    width: 190px;
    height: 35px;
    cursor: pointer;
}
.wovn-languages::before {
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -4px;
	border: 0px;
	border-bottom: solid 2px;
	border-right: solid 2px;
	transform: rotate(45deg) translateY(-50%);
	z-index: 10;
}
.wovn-languages .langIcon {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 50%;
	margin: auto;
	line-height: 1;
	transform: translateY(-50%);
}
.wovn-languages .langIcon svg {
    fill: #7598dd;
}
.wovn-languages .nav-dropdown {
	position: absolute;
	top: 50%;
	left: 30px;
	line-height: 1.4;
	text-align: left;
	z-index: 2;
	transform: translateY(-50%);
}
.wovn-languages .nav-dropdown .list--language {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}
.wovn-languages .nav-dropdown .list--language li {
	width: 100%;
	display: none;
	cursor: pointer;
	padding-bottom: 0;
	text-align: left;
	padding: 0;
}
.wovn-languages .nav-dropdown .list--language li::after {
	content: none;
}
.wovn-languages .nav-dropdown .list--language li.selected {
	display: block;
	order: -1;
}
.wovn-languages.visible::before {
	content: none;
}
.wovn-languages.visible .nav-dropdown {
    opacity: 1;
    pointer-events: visible;
    z-index: 1;
    border: none;
    color: #fff;
    top: 0;
    transform: translateY(0);
    background: #7598dd;
    padding: 10px 10px 0;
    border-radius: 10px;
}
@media screen and (min-width: 581px) and (max-width: 1000px) {
	.wovn-languages.visible .nav-dropdown {
		left: 21px;
	}
}
.wovn-languages.visible .nav-dropdown .list--language li {
	display: block;
	transition: opacity 0.4s;
	margin-bottom: 10px;
}
.wovn-languages.visible .nav-dropdown .list--language li.selected {
	pointer-events: none;
	background: transparent;
	padding: 0;
	opacity: 0.5;
	transition: none;
}
@media screen and (min-width: 581px) and (max-width: 1000px) {
	.wovn-languages.visible .nav-dropdown .list--language li.selected {
		margin-bottom: 14px;
	}
}

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

.languages {
    top: 20px;
    left: 10px;
}

.wovn-languages {
    width: 150px;
}


}


/* menu
------------------------------ */

#menuButton {
    display: block;
    width: 45px;
    height: 40px;
    position: fixed;
    top: 12px;
    right: 10px;
    z-index: 9999;
    border: none;
    text-decoration: none;
    opacity: 1;
}

#menuButton::before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    background: #fff;
    position: fixed;
    top: 10px;
    right: 10px;
    border-radius: 8px;
    box-shadow: 0px 0px 6px rgb(107 136 198 / 94%), 0px 0px 6px inset #a8c5fe30;
}

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

#menuButton.active span {
}
#menuButton.active span:first-child { 
	-webkit-transform: translateY(7px) rotate(45deg); 
	transform: translateY(7px) rotate(45deg); 
} 
#menuButton.active span:nth-child(2) { opacity: 0;} 
#menuButton.active span:nth-child(3) { 
	-webkit-transform: translateY(-7px) rotate(-45deg); 
	transform: translateY(-7px) 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: #7598dd;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 8px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}


.anker_list {
    display: flex;
    flex-wrap: wrap;
    top: 0;
    right: 0;
    position: fixed;
    z-index: 100;
    gap: 25px;
    background: #fff;
    padding: 23px 30px 26px 45px;
    border-radius: 0 0 0 40px;
    box-shadow: 0px 0px 10px rgb(107 136 198 / 94%), 8px -8px 9px inset #a8c5fe30;
}

.anker_list li {
}

.anker_list li a {
    width: auto;
    display: block;
    text-align: center;
    font-size: 14px;
    color: #7598dd;
    letter-spacing: -0.01em;
    font-family: 'new-science-extended';
    font-weight: 600;
    text-decoration: none;
}

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

#menuButton {
    display: none;
}

}

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

#gNav {
    position: fixed;
    right: 0;
    box-sizing: border-box;
    top: 0;
    padding: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    transform: scale(1.2);
    transition: 0.5s;
    background: #fff;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0px 0px 45px inset #a8c5fe96;
}

#gNav.open {
    transform: none;
    opacity: 1;
    pointer-events: all;
}

.gNavInr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.anker_list {
    width: 85%;
    right: 0;
    top: 0;
    position: relative;
    display: block;
    text-align: right;
    padding: 50px 0;
    padding: 0;
    background: none;
    box-shadow: none;
}

.anker_list li a {
    font-size: 23px;
    margin: 40px auto;
}

}




/* fv
------------------------------ */
#fv {
    height: 100svh;
    min-height: 47vw;
    background: linear-gradient(0deg, #86ade1, #c9ddf8);
    margin-bottom: 0;
}

.fv_inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.kv {
    position: relative;
    width: 50%;
    height: 100%;
    padding: 1em;
}

.kv img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
    border-radius: 30px;
    box-shadow: 0 0 16px #5484e24f;
}

.logo_wrap {
    width: 50%;
    padding: 20px 5%;
}

h1.main-title {
    width: 80%;
    margin: 0 auto 20px;
}

.logo_info {
    width: 50%;
    margin: 0 auto;
    line-height: 0;
}


/* schedule
------------------------------ */
#schedule .place {
    text-align: center;
    font-size: clamp(24px, 4vw, 30px);
    margin: 1.5em 0 1em;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-family: 'new-science-extended';
}
#schedule .place::before, #schedule .place::after {
    content: "";
    width: 2em;
    height: 0;
    display: inline-block;
    vertical-align: middle;
    margin: 10px 10px 18px;
    border-bottom: 2px solid;
}
.block--schedule {
    border-radius: 10px;
    background: linear-gradient(180deg, #fff, #ebf6ff);
    box-shadow: 0 0 18px #b4cdff, 0 0 18px inset #a8c5fe57;
    overflow: hidden;
}
.block--schedule.tokyo {
	margin-bottom: 4em;
}
.list--schedule li {
    padding: 2.5em;
    font-family: 'new-science-extended';
    font-weight: 600;
}
.list--schedule li + li {
	border-top: 1px solid var(--text-color);
}
.list--schedule li p {
    font-size: 18px;
    padding: 0 5px;
}
.list--schedule li .date {
    font-size: clamp(14px, 2vw, 18px);
}
.list--schedule li .venue {
    font-size: clamp(20px, 2.8vw, 20px);
    font-weight: 700;
}
.list--schedule li .day {
	font-size: .5em;
}
.list--schedule li .time {
    font-size: clamp(11px, 1.2vw, 14px);
}

.list--schedule li .contact {
    font-family: "tot-shizukago-stdn", sans-serif;
    line-height: 1.6;
}
.list--schedule li .contact a {
    color: #86ade0;
}

.list--schedule li:first-child {
    padding: 1em 2.5em;
    background: #e0edfe;
}
.list--schedule li:first-child > p {
    font-size: 13px;
    font-weight: 500;
}


/* ticket
------------------------------ */
#ticket .inner {
	margin-bottom: 2em;
}
.list--ticket > li {
	padding: 2em 1em;
}
.list--ticket > li + li  {
	border-top: 1px solid var(--text-color);
}
.list--ticket > li .seat {
	font-size: clamp(16px, 2vw, 22px);
	font-weight: 800;
	margin-bottom: .5em;
}
.list--ticket > li .price {
	font-weight: 700;
	font-size: 1.2em;
}
.list--ticket > li .price .tax {
	font-size: .6em;
}
.list--ticket .list list--sub {
	margin-top: 1em;
}
.block--ticket .tit::before {
	right: 1.5em;
}
.block--ticket .txt dl {
    padding: 1em 2.5em;
}
.block--ticket .txt dt {
    font-weight: bold;
    border-left: 4px solid;
    padding-left: .6em;
    margin-bottom: .5em;
    line-height: 1.5;
}
.block--ticket .txt dd {
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
}
.block--ticket .txt dd:last-child {
	border: none;
}
.block--ticket .txt dd a {
    color: #5fb7c9;
    text-decoration: none;
}

/* attention
------------------------------ */
.list--attention {
	font-size: .9em;
	padding: .5em 0 2em;
}
#attention .block-title {
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 800;
    border-left: 5px solid;
    margin-bottom: .7em;
    padding-left: .65em;
    line-height: 1.6;
}
#attention .inner + .inner {
	margin-top: 2.5em;
}
.block--attention {
	border-bottom: 1px solid var(--text-color);
}
.block--attention .tit {
	font-size: clamp(14px, 1.8vw, 18px);
	font-weight: 700;
	padding: 1em 1.8em 1em .5em;
}
.block--attention .list--title {
	font-weight: 700;
}

/* footer
------------------------------ */
footer {
	text-align: center;
}
.copyright {
	color: white;
	font-size: 10px;
	opacity: .7;
}


@media screen and (min-width: 961px) {
	.sp {
		display: none !important;
	}
	body {
		font-size: 15px;
	}
	.btn a {
		transition: .3s;
	}
	.btn a:hover {
		filter: saturate(0.2);
	}
	.list--schedule li {
		display: flex;
		align-items: center;
		text-align: center;
	}
	.list--schedule li .date {
		width: 20%;
	}
	.list--schedule li .venue {
		width: 30%;
	}
	.list--schedule li .time {
		width: 15%;
	}
	.list--schedule li .contact {
	    width: 35%;
	    font-size: 14px;
	}
	


}


@media screen and (max-width: 960px) {
	.pc {
		display: none !important;
	}
	body {
		font-size: 13px;
	}
	#fv {
	    height: auto;
	    line-height: 0;
	}

section {
    padding: 5vh 0;
}

.section-title {
    font-size: clamp(23px, 8vw, 55px);
}

.container {
    padding: 15vw 10px 7vw;
}

.kv_sp {
    padding: 65px 10px 10px;
}

.kv_sp img {
    border-radius: 20px;
    box-shadow: 0 0 10px #5484e24f;
}

#schedule .place {
    font-size: clamp(19px, 3vw, 30px);
}
#schedule .place::before, #schedule .place::after {
    margin: 10px 10px 14px;
}


.list--schedule li {
    padding: 1.75em;
}
.list--schedule li .date {
    font-size: clamp(19px, 3vw, 22px);
}

.list--schedule li .time {
    font-size: clamp(13px, 2vw, 16px);
}

.list--schedule li:first-child {
    display: none;
}

.list--schedule li p {
    padding: 0;
}
.list--schedule li p + p {
    margin-top: 5px;
}
.list--schedule li .venue {
    font-size: clamp(20px, 2.8vw, 21px);
    font-weight: 700;
    line-height: 1.2;
}

.list--schedule li .time::before {
    content: 'open / start';
    font-size: 0.9em;
    margin-right: 1em;
}

.list--schedule li .time {
    font-size: clamp(13px, 2vw, 16px);
    margin-bottom: 12px;
}

.list--schedule li .contact {
    font-size: 12px;
    border: 1px solid;
    padding: 12px;
    border-radius: 7px;
}

.list--schedule li .contact::before {
    content: 'contact';
    display: block;
    opacity: 0.7;
    font-size: 0.9em;
    margin-bottom: 2px;
}

section .inner {
    padding: 2em 1.5em;
}

.block--ticket .tit::before {
    right: 1em;
}

.list--ticket > li {
    padding: 1.4em 0em;
}

.list--ticket > li:first-child {
    padding-top: 0;
}
.list--ticket > li:last-child {
    padding: 0;
}

.list--ticket > li .seat {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 800;
    margin-bottom: .5em;
    line-height: 1.3;
}

#ticket .accordion .tit {
    font-size: clamp(15px, 2vw, 20px);
    padding: 1em 2em 1em 1em;
}

.block--ticket .txt dl {
    padding: 0em 1.3em;
}

.block--ticket .txt dd {
    font-size: 0.9em;
    line-height: 1.7;
    padding-bottom: 1em;
    margin-bottom: 1em;
}

.block--ticket .txt dd .list--sub {
    font-size: 0.9em;
}

.accordion .tit {
    line-height: 1.5;
    font-size: clamp(14px, 2vw, 20px);
    padding: 1em 2em 1em 0;
}

.block + .block {
    margin-top: 1em;
}

.btn a {
    width: 100%;
}


}