@charset "utf-8";

/*------------------------------------------------------------
Reset
------------------------------------------------------------*/
*, *::before, *::after {
	box-sizing: border-box
}

html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	scroll-behavior: smooth;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
	margin: 0
}

ul[role='list'], ol[role='list'] {
	list-style: none
}

body {
	min-height: 100vh;
}

h1, h2, h3, h4, button, input, label {}

h1, h2, h3, h4 {
	text-wrap: wrap;
}

a:not([class]) {
	text-decoration-skip-ink: auto;
	color: currentColor
}

img, picture {
	max-width: 100%;
	display: block
}

input, button, textarea, select {
	font: inherit
}

textarea:not([rows]) {
	min-height: 10em
}

:target {
	scroll-margin-block: 5ex
}

ol, ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/*------------------------------------------------------------
Body
------------------------------------------------------------*/
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	font-size: 1rem;
	line-height: 1.6;
	font-family: 'noto-sans-cjk-jp', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
	font-weight: 500;
}

@media (max-width: 960px) {
	body {
		width: 100%;
	}
}

@media (max-width: 768px) {
	body {
		width: 100%;
	}
}

/*------------------------------------------------------------
共通
------------------------------------------------------------*/
p, li, dd {
	font-size: 1rem;
}

section {}

.inner {
	max-width: 1140px;
	width: 100%;
	margin: 0px auto;
}

.container {
	display: flex;
	flex-wrap: wrap;
}

a,
a:hover,
a:visited,
a:focus {
	text-decoration: none;
}

small {
	display: block;
}

.sp_only {
	display: none;
}

.pc_only {
	display: block;
}

.txtImp {
	font-weight: 700;
}

@media (max-width: 960px) {
	.inner {
		width: 100%;
		padding: 0 20px;
		margin: 0px auto;
	}
}

@media (max-width: 768px) {
	section {
		padding: 30px 0;
	}

	.inner {
		width: 100%;
		padding: 0 10px;
		margin: 0px auto;
	}

	.sp_only {
		display: block;
	}

	.pc_only {
		display: none;
	}
}

/*------------------------------------------------------------
見出し
------------------------------------------------------------*/
h2 {
	color: #35abf3;
	font-family: "bebas-neue-pro-semiexpanded";
	font-weight: 700;
	text-align: center;
	font-size: 6rem;
	line-height: .8;
	margin-bottom: 30px;
	padding: 0;
	background: #7EC9F7;
	background: linear-gradient(to bottom, #7EC9F7 0%, #35ABF3 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


@media screen and (max-width:768px) {
	h2 {
		font-size: 4rem;
	}
}

/*------------------------------------------------------------
全画面
------------------------------------------------------------*/

/* 初期ロゴを全画面に配置 */
#intro-logo {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 1s ease;
}

/* ロゴ画像スタイル（必要に応じて調整） */
#intro-logo img {
	width: 200px;
	opacity: 0;
	animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

/* フェードアウト用クラス */
#intro-logo.hide {
	opacity: 0;
	pointer-events: none;
}


/*------------------------------------------------------------
メインビジュアル
------------------------------------------------------------*/
#hero {
	position: relative;
	width: 100%;
	height: 100vh;
	background-image: url(../img/endorfin_kv.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

#hero .announce_area{
	position: absolute;
	bottom: -100px;
	opacity: 0;
	transform: translateY(100%);
	transition: all 0.8s ease-out;
	width:100%;
}

#hero .announce_area.visible {
	bottom: 0;
	opacity: 1;
	transform: translateY(0);
}


#hero .tagline{
	background-color: rgba(255, 255, 255, 0.9);
	padding: 10px 0;
	opacity: 0;
	transform: translateX(-50px); 
	transition: all 1.2s ease-out;
}

#hero .tagline.visible {
  opacity: 1;
  transform: translateY(0);
}

#hero .tagline img {
  width: 40%;
  height: auto;
  margin: 0 auto;
  max-height: 40px;
}

#hero .announce {
	width: 100%;
	background-color: rgba(53, 171, 243, 0.9);
	padding: 20px 0;
	text-align: center;
	color:#fff;
}

#hero .announce img {
	margin: 0 auto 15px;
	width: 180px;
}

#hero .announce p {
	font-family: "bebas-neue-pro-semiexpanded";
	font-weight: 700;
	text-align: center;
	font-size: 2rem;
	line-height: .8;
}

#hero .announce p span.live {
	display: inline-block;
	transform: translateY(-3px);
	font-family: "noto-sans-cjk-jp";
	font-weight: 900;
	font-size: 1.5rem;
	margin-left: 10px;
}

@media (max-width: 960px) {
	#hero .tagline img{
		width:60%;
	}
}

@media (max-width: 768px) {
	#hero .announce p span.live {
		display: inline-block;
		transform: translateY(-2px);
		font-size: 1.375rem; 
		margin: 10px 0 0 0;
	}
	
	#hero .tagline img{
		width:80%;
	}
	
	#hero .announce p {
		font-size: 1.75rem;
	}
	
	#hero .announce p span:nth-child(2){
		display:block;
		margin-top:10px;
	}
}

/*------------------------------------------------------------
Sparkle
------------------------------------------------------------*/
.triangle-sparkle {
	position: absolute;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 14px solid rgba(255, 255, 255, 0.8);
	opacity: 0;
	animation: sparkleAnim 3s ease-out forwards;
	transform: rotate(var(--rotate, 0deg));
	filter: drop-shadow(0 0 4px white) blur(2px);
}

@keyframes sparkleAnim {
	0% {
		opacity: 0;
		transform: translateY(0px) scale(0.6) rotate(var(--rotate, 0deg));
		filter: blur(3px);
	}
	30% {
		opacity: 1;
		transform: translateY(20px) scale(1) rotate(calc(var(--rotate, 0deg) + 15deg));
		filter: blur(1px);
	}
	100% {
		opacity: 0;
		transform: translateY(40px) scale(0.5) rotate(calc(var(--rotate, 0deg) + 45deg));
		filter: blur(4px);
	}
}

@media screen and (max-width: 768px) {
	.triangle-sparkle {
		filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
		animation-duration: 2s;
	}
}

/*------------------------------------------------------------
Profile
------------------------------------------------------------*/
#profile {
	background: #fff;
	padding: 60px 0;
}

#profile p.lead {
	text-align: center;
	margin-bottom: 60px;
}

#profile .profile_wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto;
	gap: 40px;
	position: relative;
}

#profile .profile_wrap:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	background-color: #35abf3;
}

#profile .profile_wrap .item {
	width: calc((100% - 40px) /2);
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	align-items: flex-start;
}

#profile .profile_wrap img {
	width: 30%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

#profile .profile_wrap .profile-text {
	width: 70%;
}


#profile .profile_wrap .item h3 {
	font-size: 1.5rem;
	color: #35abf3;
	margin-bottom: 1rem;
	line-height: 1;
}

#profile .profile_wrap .item:nth-of-type(2) h3 {
	text-align: right;
}

@media (max-width: 768px) {
	#profile {
		padding: 30px 0;
	}

	#profile p.lead {
		margin-bottom: 30px;
	}
	#profile .profile_wrap {
		width: 100%;
		flex-direction: column;
	}

	#profile .profile_wrap .item {
		width: 100%;
		flex-direction:column;
		border: 2px solid #35abf3;
		gap: 0;
		padding:20px 10px;
		border-radius:10px;
	}
	
	#profile .profile_wrap img {
		width: 60%;
		aspect-ratio: 1 / 1;
		object-fit: cover;
		margin:0 auto;
	}

	#profile .profile_wrap:after {
		content: none;
	}

	#profile .profile_wrap .item:nth-of-type(2) {
		flex-direction: column-reverse;
	}

	#profile .profile_wrap .profile-text {
		width: 100%;
		text-align:center;
		margin:10px 0 0 0;
	}

	#profile .profile_wrap .profile-text p{
		text-align:left;
	}

	#profile .profile_wrap .item:nth-of-type(2) h3 {
		text-align: center;
	}
}

/*------------------------------------------------------------
Schedule
------------------------------------------------------------*/
#schedule {}

#schedule .inner {
	border-left: 3px solid #35abf3;
	border-right: 3px solid #35abf3;
	text-align: center;
	padding-bottom: 40px;
}

#schedule img.event_ttl {
	margin: 0 auto;
	width: 40%;
}

#schedule dl.live_detail {
	margin: 30px 0 0;
}

#schedule dl.live_detail dt {
	font-size: 1.5rem;
	color: #35abf3;
	font-weight: 700;
}

#schedule dl.live_detail dd {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 40px;
}

#schedule dl.live_detail dd:last-of-type {
	margin-bottom: 0;
}

#schedule dl.live_detail dd small {
	font-size: 1rem;
}

@media (max-width: 768px) {
	#schedule .inner {
		border: none;
		text-align: center;
		padding-bottom: 0;
	}

	#schedule img.event_ttl {
		width: 80%;
	}

}

/*------------------------------------------------------------
ticket
------------------------------------------------------------*/
#ticket {
	background: #35abf3;
	color: #fff;
	padding: 40px 0;
}

#ticket .inner {
	text-align: center;
}

#ticket p.date{
	font-family: "bebas-neue-pro-semiexpanded";
	font-weight: 700;
	text-align: center;
	font-size: 4rem;
	line-height: .8;
	margin-bottom: 20px;
	letter-spacing:3px;
}

#ticket p.date span{
	font-size: 1.875rem;
	display: inline-block;
	transform: translateY(-10px);
}

#ticket p.time {
	font-family: "bebas-neue-pro-semiexpanded";
	font-weight: 700;
	text-align: center;
	font-size: 2rem;
	line-height: .8;
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
	letter-spacing:2px;
}

#ticket h3.sheet {
	font-size: 1.5rem;
	position: relative;
}

#ticket h3.sheet::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 2px;
	background: rgba(255, 255, 255, 0);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

#ticket ul.ticket-info {
	padding: 30px 0;
	position: relative;
}

#ticket ul.ticket-info::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 2px;
	background: rgba(255, 255, 255, 0);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

#ticket .item:nth-of-type(3) {
	margin-bottom: 30px;
}

#ticket ul.ticket-info li:first-child {
	font-size: 1.25rem;
	font-weight: 700;
}

#ticket ul.ticket-info li strong {
	font-weight: 700;
}

#ticket ul.ticket-info li:nth-child(2) {
	font-size: 2rem;
	font-family: "bebas-neue-pro-semiexpanded";
	font-weight: 700;
	letter-spacing: 3px;
}

#ticket ul.ticket-info li:nth-child(4) {
	font-family: "bebas-neue-pro-semiexpanded";
}

#ticket ul.ticket-info li:nth-child(2) span {
	font-size: 1rem;
	font-weight: 700;
}

#ticket ul.ticket-info li:nth-child(3) {
	margin-bottom: 10px;
}

.ticket-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	font-size: 1.125rem;
	color: #000;
	background: #f7ff47;
	border: none;
	border-radius: 40px;
	text-decoration: none;
	font-weight: 600;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s;
	width: auto;
}

.ticket-btn:hover {
	transform: scale(1.03);
}

.ticket-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(120deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.6) 50%,
			rgba(255, 255, 255, 0) 100%);
	transform: skewX(-20deg);
	animation: shine-move 3s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}

.ticket-btn .icon {
	width: 20px;
	height: 20px;
	margin-right: 0.5rem;
}

@keyframes shine-move {
	0% {
		left: -75%;
	}
	100% {
		left: 125%;
	}
}

#ticket .lottery {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	color: #35abf3;
	width: 40%;
	margin: 40px auto 10px;
}

#ticket .lottery h3 {
	font-size: 1.5rem;
}

#ticket .lottery ul.lottery_list {
	margin: 20px 0 0;
}

#ticket .lottery ul.lottery_list li {
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 10px;
	color: #000;
}

@media (max-width: 768px) {
	#ticket h3.sheet::after {
		width: 100%;
	}

	#ticket ul.ticket-info::after {
		width: 100%;
	}

	.ticket-btn {
		width: 100%;
	}

	#ticket .lottery {
		background: #fff;
		border-radius: 10px;
		padding: 20px;
		color: #35abf3;
		width: 100%;
	}

}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
	padding: 40px 0;
	background-color: #fff;
	display: block;
}

footer p {
	color: #000;
	text-align: center;
	font-size: 0.875rem;
}

@media (max-width: 768px) {}