/*☆☆汎用的に使う☆☆*/
.align-left {
	text-align: left;
}

.clear {
	clear: both;
}

.margin-100 {
	margin: 100px 0;
}

.no-wrap {
	white-space: nowrap;
}

a.text-deco-none {
	text-decoration: none;
}

.twitter-i:hover {
	color: #1DA1F2;
}

.youtube-i:hover {
	color: #FF0000;
}

.red-text {
	color: red;
}

.full-image {
	width: 100%;
	margin: 15px 0px;
}

/*☆☆ヘッダー開始☆☆*/
.hp-title {
	height: 100%;
	color: white;
	opacity: 0;
	transition: all 500ms;
}

.hp-title.fade-in {
	opacity: 1;
}

.hp-title h2 {
	position: absolute;
	margin: 0;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

/*メニュー関連*/
.open-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 1);
  border-radius: 0%;
}

.open-btn2 {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.open-btn2 span {
  display: inline-block;
  transition: all 400ms;
  position: absolute;
  left: 12px;
  height: 4px;
  background-color: white;
}

.open-btn2 span:nth-of-type(1) {
  top: 27px;
  width: 36px;
}

.open-btn2 span:nth-of-type(2) {
  top: 39px;
  width: 20px;
}

.open-btn2.active span:nth-of-type(1) {
  top: 27x;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 30px;
}

.open-btn2.active span:nth-of-type(2) {
  top: 40px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 30px;
}

.menu {
	position: fixed;
	top: 70px;
	left: -100%;
	width: 100%;
	height: 100%;
	margin: 0px;
	background-color: rgba(255, 255, 255, 1);
	text-align: center;
	overflow-y: scroll;
	opacity: 1;
	transition: 400ms;
	z-index: 2;
}

.menu.active {
	left: 0;
	opacity: 1;
	display: block;
	overflow-y: scroll;
}

nav.menu-content {
	width: 60%;
	margin-top: 70px;
	margin-left: 20%;
	padding-bottom: 70px;
	text-align: center;
}

nav.menu-content hr {
	margin: 50px 0px;
	border: 1px solid #000;
}

nav.menu-content ul {
  margin: 0px auto;
  padding: 0px;
  width: 100%;
}

nav.menu-content ul li {
  list-style-type: none;
  padding: 1em 0px;
  width: 33%;
  float: left;
  font-size: large;
  font-weight: bold;
  color: #000;
}

nav.menu-content ul li .not-link {
	text-decoration: none;
	color: #ccc;
}

nav.menu-content ul li a {
  text-decoration: none;
  color: #000;
  padding: 1em 0px;
}

nav.menucontent ul li a:hover {
  color: white;
}

.no-scroll {
  overflow: hidden;
}

ul.menu-tab {
  display: none;
}

header {
  height: 70px;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 1);
  z-index: 2;
}

/*横スクロールメニュー*/
.nav-scroll {
	top: 70px;
	left: 0px;
	position: fixed;
	margin: 0px;
	padding: 0px;
	width: 100%;
	z-index: 1;
	overflow-x: auto;
	background: #000000;
	border-top: 1px solid #fff;
}

.nav-scroll::-webkit-scrollbar {
	display: none;
}

.nav-scroll ul {
	display: flex;
	padding: 0px;
	width: 100%;
	transform: translate( -100%, 0px);
	transition: all 400ms;
}

.nav-scroll.slide-in ul {
	transform: translate( 0px, 0px);
}

.nav-scroll ul > li {
	list-style-type: none;
	white-space: nowrap;
	width: 20%;
	text-align: center;
}

.nav-scroll ul > li a {
	text-decoration: none;
	color: white;
	font-weight: bold;
}

.nav-scroll ul > li a:hover {
	color: #FF4B00;
}
/*横スクロールメニュー終了*/
/*メニュー関連終了*/
/*☆☆ヘッダー終了☆☆*/

/*☆☆ボディー開始☆☆*/
body {
	margin: 0px;
	margin-top: 70px;
	padding: 0px;
}

/*画面トップ背景画像*/
.topImg {
	width: 100%;
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	position: fixed;
	opacity: 1;
	z-index: -2;
}

.topImg img {
	width: 100%;
}

/*スライドショー画像*/
.slider {
	width: 100%;
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	position: fixed;
	opacity: 1;
	transition: all 500ms;
}

.slider.fade-out {
	opacity: 0;
}

.slider-inner {
	overflow: hidden;
	width: 100%;
}

.slider-item {
	position: relative;
	width: 100%;
	top: 0px;
	left: 0px;
}

.slider-item2 {
	position: absolute;
	width: 100%;
	top: 0px;
	left: 0px;
}

.slider-item img {
	width: 100%;
	will-change: all;
	animation: img1Slider 8s infinite ease;
}

.slider-item2 img {
	width: 100%;
	will-change: all;
	opacity: 0;
	animation: img2Slider 8s infinite ease;
	animation-delay: 1s;
}

@keyframes img1Slider {
	0% {
		transform: scale(1);
	}
	70% {
		transform: scale(1.1);
	}
	90% {
		transform: scale(1);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes img2Slider {
	0% {
		opacity: 0;
		transform: scale(1);
	}
	40% {
		opacity: 0;
		transform: scale(1);
	}
	50% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: scale(1.1);
	}
}
/*スライドショー画像終わり*/

/*ローディング関連*/
.no-scroll {
  overflow: hidden;
}

.loading{
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
}

.spinner {
	width: 50px;
	height: 40px;
	text-align: center;
	font-size: 10px;
}

.spinner > div {
	background-color: #FF4B00;
	height: 100%;
	width: 6px;
	display: inline-block;

	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
	background-color: #FF4B00;
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.spinner .rect3 {
	background-color: #FF4B00;
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

.spinner .rect4 {
	background-color: #FF4B00;
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.spinner .rect5 {
	background-color: #FF4B00;
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

.spinner p {
	color: #000;
	white-space: nowrap;
}

@-webkit-keyframes sk-stretchdelay {
	0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
	20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
	0%, 40%, 100% {
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}  20% {
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}
/*ローディング関連終わり*/

/*ロゴ画像*/
.logo-box {
	width: 100%;
	height: 100vh; /* カスタムプロパティ未対応ブラウザ用のフォールバック */
	height: calc(var(--vh, 1vh) * 100);
	position: fixed;
}

.logo-img {
	position: relative;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -65%);
	transform: translate(-50%, -65%);
	color: #fff;
	text-align: center;
}

.logo-img img {
	width: 50%;
	filter: drop-shadow(0px 0px 15px rgba(160, 160, 160, 0.9));
	opacity: 0;
}

.logo-img p {
	margin: 0;
	padding: 0;
	font-size: large;
	font-weight: bold;
	filter: drop-shadow(0px 0px 5px rgba(160, 160, 160, 0.9));
	opacity: 0;
}

.fade-in-img {
  animation: fade-in 450ms;
  animation-delay: 150ms;
  animation-fill-mode: forwards;
}

.fade-in-text {
  animation: fade-in 400ms;
  animation-delay: 600ms;
  animation-fill-mode: forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*ロゴ画像終わり*/

/*カウントダウンタイマー*/
.timer {
	width: 100%;
	top: 142px;
	position: fixed;
	margin: 0;
	padding: 0;
	text-align: right;
	opacity: 0;
}

.timer-inner {
	margin-right: 15px;
	color: #fff;
	font-weight: bold;
}

.timer-detail {
	margin: 0 5px;
	float: right;
	text-align: center;
}

.timer-detail1 span {
	font-size: x-large;
}

.timer-detail2 {
	font-size: x-small;
}

/*カウントダウンタイマー終わり*/

.all-content {
	width: 100%;
	top: 98%;
	position: absolute;
}

.top-content {
	width: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
}

.caption {
	transform: scale(0);
	transition: all 400ms;
}

.caption.zoom-in {
	transform: scale(1);
}

.caption h1 {
	margin: 0;
	padding: 0;
}

.caption p {
	margin-top: 0;
	margin-bottom: 30px;
	padding: 0;
	font-size: small;
}

.sub-caption {
	margin-bottom: 15px;
	transform: scale(0);
	transition: all 400ms;
}

.sub-caption.zoom-in {
	transform: scale(1);
}

.content-blue {
	position: relative;
	background-color: transparent;
	width: 100%;
	margin: 0;
	padding: 0;
	color: #fff;
}

.content-blue:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	background: #FF4B00;
	width: 100%;
	height: 100%;
	z-index: -1;
	transform: translateX(-100%);
	transition: all 400ms;
	will-change: transform;
}

.content-blue.slide-in:after {
	transform: translateX(0);
}


.content-black {
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000;
	color: #fff;
}

.content-white {
	width: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
}

.content-inner {
	width: 60%;
	max-width: 750px;
	min-width: 700px;
	margin: 0 auto;
	padding: 30px 0 45px;
	text-align: center;
}

.white-box {
	background: #fff;
	color: #000;
	margin: 0;
	padding: 30px;
}

.white-border-box {
	border: 2px solid #fff;
	border-radius: 10px;
	margin: 30px 0px;
	padding: 30px;
}

.black-border-box {
	border: 1px solid #000;
	margin: 30px 0px 0px;
	padding: 20px;
}

.news-content {
	width: 100%;
}

.news-date {
	width: 20%;
	float: left;
	text-align: left;
}

.news-detail {
	width: 80%;
	float: right;
	text-align: left;
}

.band-list {
	width: 100%;
	display: inline-block;
	text-align: center;
}

.band-card {
	display: inline-block;
	float: left;
	background-color: #FF4B00;
	color: white;
	width: 31%;
	margin: 1%;
	cursor: pointer;
	box-sizing: border-box;
	border: medium outset #FF4B00;
	overflow: hidden;
	opacity: 0;
	transform: translate(0px, 120px);
	transition: all 400ms;
}

.band-card.float-in {
	opacity: 1;
	transform: translate(0px, 0px);
}

.band-image {
	width: 100%;
}

.band-image:after {
	display: block;
	overflow: hidden;
}

.band-image img {
	display: block;
	height: 10vw;
	width: 100%;
	object-fit: cover;
	position: relative;
	left: 50%;
	-webkit-transform: translate(-50%, 0%);
	transform: translate(-50%, 0%);
}

.band-card:hover {
	background: #FFC000;
	border: medium outset #FFC000;
}

.band-card:hover img {
	opacity: 0.5;
}

.band-card p {
	white-space: nowrap;
	font-size: small;
	font-weight: bold;
}

/*バンド詳細 ポップアップ*/
.modal-container {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: 300ms;
	box-sizing: border-box;
	text-align: center;
	z-index: 2;
}

.modal-container:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

.modal-container.active {
	opacity: 1;
	visibility: visible;
}

.modal-body {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 70%;
}

.modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	top: -40px;
	width: 40px;
	height: 40px;
	color: white;
	font-weight: bold;
	cursor: pointer;
}

.modal-content {
	background: white;
	border-radius: 5px;
	padding: 10px;
	padding-bottom: 20px;
}

.modal-content-inner {
	width: 100%;
	max-width: 750px;
	margin: auto;
}

.band-name {
	width: 100%;
	font-weight: normal;
	padding: 5px;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.modal-content img {
	margin-top: 20px;
	width: 90%;
}

.modal-content ul {
	overflow: hidden;
}

.modal-content li {
	display: inline-block;
	float: left;
	width: 48%;
	padding: 5px 1%;
}

.modal-content h4 {
	margin: 30px 0px 15px;
}

.modal-content iframe {
	width: 90%;
	aspect-ratio: 16 / 9;
}

.music-link-btn {
	display: inline-block;
	width: 90%;
	text-decoration: none;
	text-align: center;
	border: solid 2px #333333;
	border-radius: 30px;
	color: #333333;
	font-size: large;
	font-weight: bold;
	margin: 5px 0px;
	padding: 10px;
}

.music-link-btn:hover {
	color: #79E8F2;
	border-color: #79E8F2;
}
/*バンド詳細 ポップアップ終わり*/

#time-table-image {
	margin: 0;
	padding: 0;
	width: 100%;
}

ul.archives {
  list-style-type: none;
  overflow-y: hidden;
  border: 1px solid;
  padding: 15px 0px;
}

ul.archives li {
  width: 50%;
  float: left;
  margin: 2px 0px;
}

a.blue-link {
	text-decoration: none;
	font-size: large;
	color: #FF4B00;
}

a.black-link {
	text-decoration: none;
	color: #000;
}

ul.archives a {
  text-decoration: none;
  font-size: large;
  font-weight: bold;
  color: #FF4B00;
}

a.blue-link:hover, ul.archives a:hover {
  color: #FFC000;
}

/*料金表*/
table.price-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 15px;
}

table.price-table th {
	width: 40%;
	background-color: #FF4B00;
	color: white;
	padding: 15px 0px;
	border: solid 1px black;
}

table.price-table td {
	width: 60%;
	border: solid 1px black;
}

.share-btn-list {
	margin-bottom: 50px;
}

.twitter-share-btn {
	display: inline-block;
	background: #1DA1F2;
	color: white;
	padding: 5px 10px;
	margin: 0 2px;
	font-size: small;
}

.facebook-share-btn {
	display: inline-block;
	background: #4267B2;
	color: white;
	padding: 5px 10px;
	margin: 0 2px;
	font-size: small;
}

.line-share-btn {
	display: inline-block;
	background: #06C755;
	color: white;
	padding: 5px 10px;
	margin: 0 2px;
	font-size: small;
}

.copy-share-btn {
	display: inline-block;
	background: #333;
	color: white;
	padding: 5px 10px;
	margin: 0 2px;
	font-size: small;
}

.copy-share-btn {
	cursor: pointer;
}

/*Coming soon...*/
.coming-soon {
	padding: 150px 0px;
	background: #111;
	color: white;
	margin-bottom: 50px;
}

.vh-center {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}