:root {
	--color-black: #0A0A0A;
	--color-darkgray: #161616;
	--color-darkblue: #707F89;
	--color-lightblue: #98A6B5;
	--color-orange: #B1650C;
}
* {
	position: relative;
	-webkit-appearance: none;
	font-family: "source-han-sans-japanese", sans-serif;
	z-index: 1;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	line-height: 1.6;
	font-weight: 300;
	font-style: normal;
	color: #FFF;
}
body {
	background: var(--color-darkgray);
	font-size: 20px;
}
a {
	text-decoration: none;
}
img {
	width: 100%;
	vertical-align: bottom;
}
.gradation {
	background: rgb(177,101,12);
	background: linear-gradient(145deg, rgba(177,101,12,1) 0%, rgba(249,170,76,1) 100%);
}

.bgbar {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
	margin: auto;
	width: 80%;
	max-width: 1400px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	opacity: 0.2;
}
.wrap .bgbar {
	padding-left: 250px;
}
.bgbar hr {
	display: block;
	border: 0;
	width: 1px;
	height: 100%;
	background: #FFF;
}
.btn {
	color: #FFF;
	display: block;
	border-radius: 5px;
	padding: 10px;
	max-width: 400px;
	width: 90%;
	text-align: center;
	border: 0;
	cursor: pointer;
	user-select: none;
}
.label {
	display: block;
	background: var(--color-black);
	padding: 20px;
	border: 1px solid var(--color-orange);
	border-radius: 10px;
	width: 100%;
	margin-bottom: 20px;
}
.label__ttl {
	font-size: 0.6em;
	color: var(--color-darkblue);
	margin-bottom: 10px;
}
.input {
	display: block;
	padding: 0;
	font-size: 16px;
	border: 0;
	border-bottom: 1px solid #292929;
	background: rgb(0, 0, 0, 0);
	width: 100%;
	max-width: 100%;
	min-width: 100%;
}
textarea.input {
	height: 200px;
}
.label__error {
	margin-top: 5px;
	text-align: right;
	font-size: 0.5em;
	color: var(--color-orange);
	font-weight: bold;
}

select {}
select option {
	background: var(--color-darkgray);
}

/*=====
=header
=====*/
#header {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	position: fixed;
	top: 10px;
	left: 0;
	right: 0;
	width: 90%;
	margin: auto;
	z-index: 100;
}
#header .header-logo {
	width: 100px;
}
#header .header-logo img {
	object-fit: contain;
	object-position: center;
}
.wrap #header .header-login {
	display: none;
}
#header .header-login {
	font-size: 0.6em;
	width: fit-content;
	padding: 5px 20px;
	text-align: center;
}
.nav-opener {
	display: none;
}
.wrap .nav-opener {
	user-select: none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	background: #0A0A0A;
	border-radius: 5px;
}
.wrap .nav-opener:before,
.wrap .nav-opener:after {
	content: '';
	display: block;
	width: 50%;
	height: 3px;
	background: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-radius: 2px;
	transition: 0.3s;
}
.wrap .nav-opener:before {
	top: 15px;
}
.wrap .nav-opener:after {
	bottom: 15px;
}
.wrap .nav-opener hr {
	display: block;
	border: 0;
	width: 50%;
	height: 3px;
	background: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 1;
	border-radius: 2px;
	transition: 0.3s;
}
.wrap .nav-opener.active hr {
	opacity: 0;
}
.wrap .nav-opener.active:before {
	top: 0;
	transform: rotate(45deg);
}
.wrap .nav-opener.active:after {
	bottom: 0;
	transform: rotate(-45deg);
}



/*=====
=header
=====*/
.wrap #nav {
	display: block;
}
#nav {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	max-width: 250px;
	width: 100%;
	margin: auto;
	z-index: 100;
	background: #0A0A0A;
	overflow: auto;
	transition: 0.3s;
}
#nav .nav-wrap {
	padding: 40px 20px;
}
#nav .nav-wrap .nav-logo {
	display: block;
	width: 100%;
	max-width: 100px;
}
#nav .nav-wrap .nav-logo img {}
#nav .nav-wrap .nav-list {
	list-style: none;
	margin: 40px auto;
}
#nav .nav-wrap .nav-list li {
	border-radius: 10px;
}
#nav .nav-wrap .nav-list li.active {
	background: #161616;
}
#nav .nav-wrap .nav-list li a {
	user-select: none;
	display: block;
	padding: 10px;
	border-radius: 10px;
	font-size: 16px;
	display: flex;
	align-items: center;
}
#nav .nav-wrap .nav-list li a:hover {
	background: #161616;
}
#nav .nav-wrap .nav-list li a img {
	display: block;
	width: 30px;
	height: 30px;
	object-fit: contain;
	object-position: center;
	margin-right: 10px;
}

#nav .nav-wrap .nav-sublist {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}
#nav .nav-wrap .nav-sublist li {
	margin: 0 10px 10px 0;
}
#nav .nav-wrap .nav-sublist li a {
	font-size: 12px;
	color: #98A6B5;
}
#nav .nav-wrap .nav-sublist li a:hover {
	text-decoration: underline;
}
#nav .nav-wrap .nav__copy {
	margin-top: 40px;
	font-size: 10px;
	color: #98A6B5;
}




/*=====
=footer
=====*/
.wrap #footer {
	display: none;
}
#footer {
	width: 100%;
	margin: auto;
	padding: 50px 0;
	border-top: 5px solid #2A2A2A;
}
#footer .footer__contents {
	width: 90%;
	max-width: 1000px;
	margin: auto;
}
#footer .footer__contents .footer__logo {
	display: block;
	width: 100px;
}
#footer .footer__contents .footer__logo img {}
#footer .footer__contents .footer__list {
	list-style: none;
	margin: 40px auto;
}
#footer .footer__contents .footer__list li {
	margin: 10px auto;
}
#footer .footer__contents .footer__list li a {
	text-decoration: underline;
	font-size: 0.7em;
}
#footer .footer__contents .footer__copy {
	font-size: 0.6em;
	color: var(--color-darkblue);
}



/*=====
=spnav
=====*/
.spnav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 50;
	background: #0A0A0A;
	border-top: 1px solid #393939;
}
.spnav .nav-list {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
}
.spnav .nav-list li {
	width: calc(100% / 5);
}
.spnav .nav-list a {
	user-select: none;
	display: flex;
	align-items: center;
	margin: auto;
	text-align: center;
	padding: 5px 0;
	border-radius: 10px;
}
.spnav .nav-list li.active a {
    background: #161616;
}
.spnav .nav-list a img {
	display: block;
	object-fit: contain;
	object-position: center;
	width: 30px;
	height: 30px;
	margin: auto;
}



/*=====
=loading
=====*/
#loading,
#progressloading {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 10000;
	width: 100%;
	min-height: 100lvh;
	height: 100vh;
	height: 100lvh;
	background: rgb(255 255 255 / 30%);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur( 8px );
	display: none;
}
#loading.active,
#progressloading.active {
	display: flex;
	align-items: center;
	justify-content: center;
}
#loading .loading {
	width: fit-content;
}
#progressbar {
	-webkit-appearance: none; /* プログレスバーのスタイルをリセット */
	-moz-appearance: none; /* プログレスバーのスタイルをリセット */
	background-color: #0a0a0a; /* プログレスバーの背景色/-moz- 用 */
	width: 200px;
	height: 20px;
	border-radius: 4px;
}
::-webkit-progress-bar {
	background-color: #0a0a0a; /* プログレスバーの背景色/-webkit- 用 */
}
::-webkit-progress-value {
	background-color: #b1650c; /* プログレスバーの進捗部分色/-webkit- 用 */
}
::-moz-progress-bar {
	background-color: #b1650c; /* プログレスバーの進捗部分色/-moz- 用 */
}



/*=====
=contents
=====*/
.wrap main {
	padding-left: 250px;
}
.wrap article h1 {
	border: 0;
}
.wrap .section {
	padding: 40px;
	background-color: rgb(10, 10, 10);
	margin: 20px auto;
	border-radius: 10px;
}
.wrap .block {
	background-color: rgb(10, 10, 10);
	margin: 20px auto;
}
.wrap .block-title {
	font-size: 1em;
}
.wrap .block p {
	color: #98A6B5;
	word-wrap: break-word;
}


.scroll_setlist_title {
	font-size: 14px;
	margin: 20px auto 10px;
	width: 100%;
	font-weight: bold;
}
.scroll_setlist {
	padding: 0 15% 10px 0%;
	width: 100%;
	display: flex;
	overflow: auto;
}
.scroll_setlist .setlist-colmun {
	margin: 0 10px 0 0;
	width: 200px;
}
.scroll_setlist .setlist-colmun .colmun__img {
	width: 200px;
}
.scroll_setlist .setlist-colmun .colmun__title {
	width: 200px;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.setlist-colmun {
	width: 100%;
	max-width: 400px;
	margin: 0 auto 40px;
}
.setlist-colmun .colmun__img {
	width: 100%;
	aspect-ratio: 16/9;
	object-position: center;
	object-fit: cover;
	background: #EFEFEF;
	border: 1px solid #EFEFEF;
	border-radius: 5px;
}
.setlist-colmun .colmun__title {
	color: #FFF;
	margin-top: 10px;
	font-size: 14px;
	margin: 10px auto auto;
}
.setlist-colmun .colmun__flag {
	width: fit-content;
	font-size: 11px;
	color: #B1B1B1;
	margin: 0 auto 5px 0;
	max-width: 100%;
}


/*===========================
=============================
SP 750~
=============================
===========================*/
@media screen and (max-width:750px) {

	.wrap .nav-opener {
		display: block;
	}

	.wrap .bgbar {
		padding-left: 0;
	}

	.wrap main {
		padding-left: 0;
	}

	#nav {
		left: -300px;
	}
	#nav.active {
		left: 0px;
	}

	.spnav.active {
		display: block;
	}
}