@charset "UTF-8";
/* CSS Document */
/* ------------------------------
   RESET（モダン・最小限・乱れない型）
--------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, p, ul, ol, li, figure, img {
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* ------------------------------
   色・フォント
--------------------------------*/
:root {
  --yellow: #fff700;
  --bg-white: #f7f7f2;
  --text: #333;
}

body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: linear-gradient(
    to bottom,
    var(--yellow) 0%,
    #fffa9d 20%,
    #fffde5 40%,
    #fafafa 100%
  );
  overflow-x: hidden;
  position: relative;
}

/* ------------------------------
   背景ノイズ
--------------------------------*/
#noise-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
/* ------------------------------
   nav
--------------------------------*/
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  width: auto;
  height: 48px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  z-index: 1000;
}

.nav-links a {
  margin-left: 24px;
  color: #00e0d5; 
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: 
  opacity 0.2s ease,
  filter 0.4s ease ,
  text-shadow 0.4s ease;
}
.nav-links a:hover {
	opacity:1;
	filter:blur(1px);
	text-shadow:
	0 0 6px rbga(0,0,0,0.18),
		0 0 10px rbga(0,0,0,0.12);
}
.fade-basic {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease,
  transform 0.8s ease;
}
.fade-basic .show {
  opacity: 1;
  transform: translateY(0);
}
/* ------------------------------
   HERO
--------------------------------*/
.hero {
	height:100vh;
	display:flex;
	justify-content:flex-start;
	align-items:center;
	padding-left:60px;
  position: relative;
}

.hero-lines {
	display:block !important;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 12vw;
  line-height: 0.85;
}
@media (max-width:768px) {
  .hero-lines{
    font-size: 15vw;
  }
}
.line {
  position: relative;
  display:block;
  width:max-content;
  overflow:visible;
}

/* 白ボックス（ワイプ） */
.mask {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #ffffff;
  z-index: 1;
  animation: wipe 1s ease forwards;
}

/* テキスト（少しあとに出る） */
.text {
  opacity: 0;
  display: inline-block;
  transform: translateX(-0.4vw);
  animation: textReveal 0.8s ease forwards;
  animation-delay: 0.55s;
    z-index: 2;
	position:relative;
}

/* 行ごとに遅延 */
.line:nth-child(2) .mask { animation-delay: 0.35s; }
.line:nth-child(3) .mask { animation-delay: 0.55s; }

.line:nth-child(2) .text { animation-delay: 0.85s; }
.line:nth-child(3) .text { animation-delay: 1.15s; }

/* 白ボックスの動き */
@keyframes wipe {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* テキスト出現 */
@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateX(-0.4vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }}
  /* scroll */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.2rem;
  opacity: 0.6;
  overflow: hidden;
}
.scroll-indicator span{
  position: relative;
  display: inline-block;
}
.scroll-indicator span::after{
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );
  animation: shine 6s ease-in-out infinite;
}
@keyframes shine {
  0% {
    left:-120%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    left: 120%;
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}
/* ------------------------------
   about
--------------------------------*/
#about {
  width: 80%;
  margin: 0 auto;
  padding-top: 80px;
  position: relative;
}
.about-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  opacity: 0.4;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
 /* about-fade */
.fade-about {
  opacity: 0;
  filter: blur(6px);
  transform: translate(20px);
  transition: opacity 1.6s ease,
  filter 1.6s ease,
  transform 1.6s ease;
}
.fade-about .show{
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
@keyframes fadeInSoft {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
 /* text */
.en {
	font-size:1.05rem;
	line-height:1.6;
	font-weight:300;
	margin-bottom:2.4rem;
	max-width:28rem;
}
.emphasis {
	font-weight:600;
	font-size:1.25rem;
	line-height:1.8;
	margin-top:1.8rem;
	margin-bottom:2.6rem;
	letter-spacing:0.01rem;
}
.ja{
	font-size:1rem;
	line-height:1.4;
	font-weight:300;
}


/* ------------------------------
  参加者リスト（3列、SPは2列）
--------------------------------*/
#participants{
  position: relative;
  margin: 120px auto;
}
.participants-contents {
  text-align: center;
}

.participants_title {
  margin-bottom: 40px;
  text-align:center;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

/* ★ PC 三列・中央寄せ */
.participant-list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 12px 32px;
}

/* ★ カード（リンク化） */
.participant-list .card {
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 4px 0;
  white-space: nowrap;
  text-decoration: none;
  color: #222;
  transition: filter 0.3s ease, text-shadow 0.3s ease, opacity 0.2s ease;
}

/* ★ 滲み系ホバー */
.participant-list .card:hover {
  filter: blur(0.8px);
  text-shadow: 0 0 6px rgba(0,0,0,0.25);
  opacity: 1;
}

/* ★ スマホは二列 */
@media (max-width: 768px) {
  .participant-list {
    grid-template-columns: repeat(2, auto);
}}
.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
/* ------------------------------
   プレイヤー詳細
--------------------------------*/
.players-section {
  max-width: 860px;
  margin: 40px auto 100px;
  padding: 0 24px;
  z-index: 3;
  position: relative;
}

.player {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 32px;
  margin-top: 32px;
}

.player-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.player-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
}

.player-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.player-name {
  font-size: 1.1rem;
  font-weight: 600;
}

.player-instagram a {
  text-decoration: none;
  font-weight: 500;
}

.player-instagram a{
  text-decoration: underline;
}

/* tracks */
.tracks {
  display: grid;
  gap: 14px;
}

.track-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.track-comment {
  font-size: 0.9rem;
  line-height: 1.7;
}
.comment-title{
	 font-size: 0.95rem;
  font-weight: 600;
}
.comment-txt{
	  font-size: 0.9rem;
  line-height: 1.7;
}
/* ------------------------------
   footer
--------------------------------*/
footer {
  padding: 40px 0;
  text-align: center;
  opacity: 0.65;
  font-size: 0.8rem;
  z-index: 3;
  position: relative;
}

.platform-links {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.platform-links a {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: #000;
  padding-bottom: 2px;
  border-bottom: 1px solid #000;
  transition: opacity 0.2s ease;
}

.platform-links a:hover {
  opacity: 0.5;
}

/* スマホ */
@media (max-width: 720px) {
  .platform-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

