/* =============================================
   Dange United O-40 - メインスタイルシート
   チームカラー: 赤 (#CC0000) / 白 (#FFFFFF)
   ============================================= */

/* ---- リセット & ベース ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #FF3333;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --gray-dark: #1A1A1A;
  --gray-mid: #333333;
  --gray-light: #F5F5F5;
  --gray-border: #E0E0E0;
  --font-main: 'Noto Sans JP', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-en: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul { list-style: none; }

/* =============================================
   ヘッダー / ナビゲーション
   ============================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--red);
  transition: var(--transition);
}

#header.scrolled {
  box-shadow: 0 2px 20px rgba(204,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
}

/* ロゴ */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--black);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--white);
  font-weight: 700;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--red-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* PCナビ */
.nav-pc {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-pc a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-pc a:hover {
  color: var(--red-light);
  background: rgba(204,0,0,0.15);
}

.nav-cta {
  background: var(--red) !important;
  border-radius: 25px !important;
  padding: 8px 20px !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(204,0,0,0.4);
}

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* スマホメニュー */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--gray-dark);
  border-top: 1px solid var(--red);
  z-index: 999;
  padding: 16px 0;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  color: var(--white);
  padding: 14px 28px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
}

.nav-mobile a:hover {
  background: rgba(204,0,0,0.2);
  color: var(--red-light);
  padding-left: 36px;
}

/* =============================================
   ヒーローセクション
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-main.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.4);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-en);
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 3px;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-title span {
  color: var(--red-light);
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  font-weight: 500;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-desc {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: var(--font-en);
  font-size: 2.8rem;
  color: var(--red-light);
  line-height: 1;
  font-weight: 700;
}

.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   共通ボタン
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,0,0,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--red);
}

.btn-white:hover {
  background: var(--gray-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* =============================================
   共通セクション
   ============================================= */
.section {
  padding: 90px 24px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-en);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  color: var(--black);
  line-height: 1.1;
}

.section-title span {
  color: var(--red);
}

.section-desc {
  margin-top: 14px;
  color: #555;
  font-size: 0.95rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 18px auto 0;
  border-radius: 2px;
}

/* =============================================
   お知らせバー
   ============================================= */
.news-ticker {
  background: var(--red);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}

.ticker-label {
  background: var(--white);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 3px 12px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-track {
  overflow: hidden;
  flex: 1;
}

.ticker-list {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-list:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-size: 0.85rem;
  font-weight: 500;
}

.ticker-item a {
  color: var(--white);
}

.ticker-item a:hover {
  opacity: 0.8;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   最新ニュースセクション (トップページ)
   ============================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--gray-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.news-card-body {
  padding: 20px;
}

.news-card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.news-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 3px;
  background: var(--red);
  color: var(--white);
}

.news-tag.match   { background: #0066CC; }
.news-tag.recruit { background: #009933; }
.news-tag.sponsor { background: #FF9900; color: var(--black); }
.news-tag.info    { background: #666; }

.news-date {
  font-size: 0.78rem;
  color: #888;
}

.news-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black);
}

.news-card:hover .news-card-title {
  color: var(--red);
}

/* =============================================
   試合スコアカード
   ============================================= */
.match-result-card {
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.match-result-header {
  background: var(--red);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.match-result-body {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.match-team {
  text-align: center;
  flex: 1;
}

.match-team-name {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
}

.match-team-name.us {
  color: var(--red-light);
  font-size: 1rem;
}

.match-score {
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.match-score.us { color: var(--red-light); }

.match-vs {
  font-family: var(--font-en);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* =============================================
   特徴カード (アバウトセクション)
   ============================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--gray-dark);
  color: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  border-bottom: 3px solid var(--red);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  background: #222;
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  display: block;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--red-light);
}

.feature-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* =============================================
   チームフォトセクション
   ============================================= */
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.photo-item {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.photo-item:first-child {
  grid-row: 1 / 3;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-item:hover img {
  transform: scale(1.06);
}

.photo-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(204,0,0,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.photo-item:hover .photo-item-overlay {
  opacity: 1;
}

.photo-item-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

/* =============================================
   赤背景セクション (CTA用)
   ============================================= */
.section-red {
  background: var(--red);
  color: var(--white);
}

.section-dark {
  background: var(--gray-dark);
  color: var(--white);
}

.section-red .section-title,
.section-dark .section-title {
  color: var(--white);
}

.section-red .divider {
  background: var(--white);
}

.section-dark .divider {
  background: var(--red);
}

/* =============================================
   スポンサーバナーセクション
   ============================================= */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sponsor-card {
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.sponsor-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.sponsor-logo-placeholder {
  font-size: 2rem;
  color: #aaa;
}

.sponsor-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
}

/* =============================================
   フッター
   ============================================= */
#footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-area .logo-name {
  font-size: 1.5rem;
}

.footer-tagline {
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
  color: var(--red-light);
}

/* =============================================
   ページヘッダー (内部ページ共通)
   ============================================= */
.page-header {
  background: var(--black);
  padding: 140px 24px 60px;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: blur(2px);
}

.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.page-header-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.page-header-title {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1;
}

.page-header-title span { color: var(--red-light); }

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--red-light); }

/* =============================================
   選手カード
   ============================================= */
.player-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.player-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--red);
}

.player-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.player-photo {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--gray-dark) 0%, var(--gray-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.player-number {
  position: absolute;
  top: 10px;
  left: 12px;
  font-family: var(--font-en);
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  font-weight: 700;
}

.player-info {
  padding: 16px;
}

.player-pos {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.player-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.player-name-en {
  font-size: 0.78rem;
  color: #888;
  font-style: italic;
}

.player-stats {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-border);
}

.player-stat-item {
  text-align: center;
  flex: 1;
}

.player-stat-val {
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 700;
  line-height: 1;
}

.player-stat-label {
  font-size: 0.65rem;
  color: #888;
  letter-spacing: 0.5px;
}

/* =============================================
   試合スケジュール テーブル
   ============================================= */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.schedule-table th {
  background: var(--red);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.schedule-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-border);
  vertical-align: middle;
}

.schedule-table tr:hover td {
  background: #FFF5F5;
}

.schedule-table tr.win td { background: #FFF5F5; }
.schedule-table tr.loss td { background: #F5F5F5; }
.schedule-table tr.draw td { background: #FFFFF5; }
.schedule-table tr.upcoming td { }

.result-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 1px;
}

.result-badge.W { background: var(--red); color: var(--white); }
.result-badge.L { background: #444; color: var(--white); }
.result-badge.D { background: #888; color: var(--white); }
.result-badge.upcoming { background: var(--gray-light); color: var(--black); border: 1px solid var(--gray-border); }

/* =============================================
   お問い合わせ フォーム
   ============================================= */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.form-label .required {
  color: var(--red);
  font-size: 0.75rem;
  margin-left: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-border);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.12);
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' fill='none' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* =============================================
   メンバー募集ページ
   ============================================= */
.recruit-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.recruit-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  counter-increment: step;
}

.recruit-step::before {
  content: counter(step);
  font-family: var(--font-en);
  font-size: 4rem;
  color: rgba(204,0,0,0.08);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  font-weight: 700;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  transition: var(--transition);
  border: none;
  width: 100%;
  text-align: left;
  color: var(--black);
}

.faq-question::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-question.open,
.faq-question:hover {
  background: #FFF5F5;
}

.faq-arrow {
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--red);
}

.faq-question.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 16px 24px 20px 24px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.8;
  border-top: 1px solid var(--gray-border);
  background: #FFF5F5;
}

.faq-answer.open {
  display: block;
}

/* =============================================
   スポンサー申し込みセクション
   ============================================= */
.sponsor-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sponsor-plan-card {
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  border: 2px solid var(--gray-border);
  background: var(--white);
  transition: var(--transition);
}

.sponsor-plan-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sponsor-plan-card.featured {
  border-color: var(--red);
  background: var(--gray-dark);
  color: var(--white);
}

.sponsor-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.plan-price {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.sponsor-plan-card.featured .plan-price {
  color: var(--red-light);
}

.plan-price-unit {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 24px;
}

.plan-features {
  text-align: left;
  margin-bottom: 28px;
}

.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sponsor-plan-card.featured .plan-features li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}

.plan-features li::before {
  content: '✓';
  color: var(--red-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   アニメーション (スクロール時)
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   レスポンシブ
   ============================================= */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .player-grid { grid-template-columns: repeat(3, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .photo-item:first-child { grid-row: auto; }
  .recruit-steps { grid-template-columns: repeat(2, 1fr); }
  .sponsor-plan-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-pc { display: none; }
  .hamburger { display: flex; }

  .section { padding: 64px 20px; }

  .hero-stats { gap: 24px; }

  .news-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .player-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .recruit-steps { grid-template-columns: 1fr; }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }

  .schedule-table { font-size: 0.8rem; }
  .schedule-table th,
  .schedule-table td { padding: 10px 10px; }

  .hero-btns { flex-direction: column; align-items: flex-start; }

  .page-header { padding: 110px 20px 48px; }
}

@media (max-width: 480px) {
  .player-grid { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .hero-stat .num { font-size: 2rem; }
}
