/* =============================================
   瞬蹴杯 ENJOY CUP — style.css
============================================= */

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

:root {
  --red:        #E8192C;
  --red-dark:   #C0001F;
  --red-light:  #FF4D5E;
  --white:      #FFFFFF;
  --off-white:  #FFF5F5;
  --gray-light: #F5F5F5;
  --gray:       #888;
  --text:       #222;
  --accent:     #FFD700;
  --radius:     12px;
  --shadow:     0 4px 20px rgba(0,0,0,.12);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 36px;
  color: var(--text);
}

.pc-only { display: inline; }
.sp-only { display: none; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: .04em;
}

.nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.nav a:hover { color: var(--red); }

.btn-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 22px;
  border-radius: 99px;
  transition: background var(--transition) !important;
}
.btn-nav:hover { background: var(--red-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- ① ヒーロー ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 45%, #FF6B7A 80%, #FFB3BB 100%);
  overflow: hidden;
  padding-top: 64px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,.10) 0%, transparent 35%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 30px,
    rgba(255,255,255,.04) 30px, rgba(255,255,255,.04) 60px
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  display: inline-block;
  padding: 6px 22px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.hero-title {
  line-height: 1.0;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.hero-title-enjoy {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 3.6rem);
  letter-spacing: .22em;
  color: rgba(255,255,255,.88);
  margin-bottom: 2px;
}

.hero-title-main {
  display: block;
  font-family: 'Kaisei Decol', serif;
  font-size: clamp(4.5rem, 18vw, 10rem);
  font-weight: 700;
  color: var(--accent);
  text-shadow:
    0 0 0 transparent,
    3px 3px 0 rgba(160, 0, 0, .45),
    0 6px 30px rgba(0,0,0,.35);
  line-height: 1.0;
  letter-spacing: .06em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  opacity: .92;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  font-size: .95rem;
  opacity: .88;
}

.btn-hero {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 44px;
  border-radius: 99px;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,.28);
}

.hero-deco {
  position: absolute;
  font-size: 4rem;
  opacity: .18;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
.deco1 { top: 15%; left: 8%; animation-delay: 0s; }
.deco2 { bottom: 20%; right: 6%; animation-delay: 2s; font-size: 6rem; }
.deco3 { top: 55%; left: 5%; animation-delay: 4s; font-size: 3rem; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(15deg); }
}

/* ---------- ② コンセプト ---------- */
.concept {
  padding: 96px 0;
  background: var(--white);
  text-align: center;
}

.concept-lead {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: #555;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.9;
}
.concept-lead strong { color: var(--red); font-weight: 800; }

.concept-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.concept-card {
  background: linear-gradient(160deg, #fff 0%, #fff5f6 100%);
  border: 2px solid #FFD0D5;
  border-radius: 20px;
  padding: 36px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
  cursor: default;
}
.concept-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(232,25,44,.18);
  border-color: var(--red);
}

.ccard-icon {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(232,25,44,.2));
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.concept-card:hover .ccard-icon { transform: scale(1.18) rotate(-4deg); }

.ccard-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: .04em;
  margin: 0;
}

.ccard-text {
  font-size: .9rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Photo-overlay concept cards */
.concept-card.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: none;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  gap: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.concept-card.photo-card:hover {
  transform: scale(1.03);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.concept-card.photo-card.c1 {
  background: linear-gradient(135deg, #051f05 0%, #0d4a0d 30%, #1a7a1e 60%, #0f5a12 100%);
}
.concept-card.photo-card.c2 {
  background: linear-gradient(135deg, #1a0500 0%, #6b1800 30%, #c43d00 70%, #ff5a00 100%);
}
.concept-card.photo-card.c3 {
  background: linear-gradient(135deg, #1a1200 0%, #5a4200 30%, #b8880a 70%, #ffd700 100%);
}
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.38) 52%, rgba(0,0,0,.08) 100%);
}
.photo-content {
  position: relative;
  z-index: 1;
  padding: 1.6rem 1.3rem 1.4rem;
  color: #fff;
  text-align: left;
  width: 100%;
}
.photo-content .ccard-icon {
  font-size: 2.6rem;
  margin-bottom: .5rem;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
}
.photo-content .ccard-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .4rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.photo-content .ccard-text {
  font-size: .84rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}

/* ---------- ③ 大会内容 ---------- */
.details {
  padding: 96px 0;
  background: var(--gray-light);
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #FFD0D5;
}

.info-card-head {
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
}
.info-card-icon { font-size: 1.4rem; }
.info-card-title { font-size: 1.1rem; font-weight: 800; letter-spacing: .05em; }
.info-card-body { padding: 24px; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid #FFD0D5;
  border-radius: 8px;
  overflow: hidden;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid #FFD0D5;
  border-right: 1px solid #FFD0D5;
  background: var(--white);
  transition: background var(--transition);
}
.info-item:hover { background: var(--off-white); }
.info-item:nth-child(2n) { border-right: none; }
.info-item:nth-last-child(-n+2) { border-bottom: none; }

.info-item-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.info-item-text { display: flex; flex-direction: column; gap: 3px; }
.info-item-label { font-size: .75rem; font-weight: 700; color: var(--red); letter-spacing: .06em; }
.info-item-val { font-size: .95rem; font-weight: 600; color: var(--text); line-height: 1.5; }
.info-item-val small { display: block; font-size: .8rem; color: var(--gray); font-weight: 400; }
.info-item-strong { color: var(--red) !important; font-size: 1.05rem !important; font-weight: 800 !important; }

.details-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.detail-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #FFD0D5;
}
.detail-block h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.block-icon { font-size: 1.2rem; }

.teams-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }

/* ---------- Digital Details Section ---------- */
.details-digital {
  background: #180006;
  background-image: radial-gradient(ellipse at 20% 50%, rgba(232,25,44,.18) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 20%, rgba(255,80,100,.1) 0%, transparent 55%);
  padding: 96px 0;
  position: relative;
}
.details-digital .section-label { margin-bottom: 12px; }
.details-digital .section-title { color: #fff; margin-bottom: 48px; }

/* Stats row */
.d-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.d-stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 28px 16px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.d-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,25,44,.1) 0%, transparent 70%);
  pointer-events: none;
}
.d-stat-num {
  font-family: 'Bebas Neue', 'Noto Sans JP', cursive;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #fca5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: .02em;
}
.d-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  font-weight: 700;
  letter-spacing: .1em;
  margin-top: 6px;
}

/* Info grid */
.d-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.d-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 24px;
  transition: border-color .25s, background .25s;
}
.d-card:hover {
  border-color: rgba(232,25,44,.35);
  background: rgba(232,25,44,.06);
}
.d-card-full { grid-column: 1 / -1; }
.d-card-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.d-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.d-row:last-child { border-bottom: none; }
.d-key { font-size: .78rem; color: rgba(255,255,255,.45); flex-shrink: 0; }
.d-val { font-size: .88rem; color: rgba(255,255,255,.85); font-weight: 600; text-align: right; }
.d-highlight { color: #f59e0b !important; font-weight: 700; }

/* Format grid inside d-card-full */
.d-format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.d-format-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.d-fi { font-size: 1.1rem; flex-shrink: 0; }

/* Teams section */
.d-teams-section {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px;
  margin-top: 0;
}
.d-teams-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.d-teams-title { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.7); }
.d-teams-badge {
  font-size: .7rem;
  background: rgba(232,25,44,.2);
  color: #fca5a5;
  border: 1px solid rgba(232,25,44,.3);
  padding: 3px 10px;
  border-radius: 99px;
  font-weight: 700;
}
.d-teams-section .teams-grid { margin-bottom: 0; }
.d-teams-section .team-tag { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.8); font-size: .82rem; }
.d-teams-section .badge { font-size: .65rem; padding: 2px 8px; border-radius: 99px; font-weight: 700; background: rgba(59,130,246,.2); color: #93c5fd; }

/* ---------- チームモーダル ---------- */
.team-tag[data-img] { cursor: pointer; transition: transform .15s, box-shadow .15s, border-color .15s; }
.team-tag[data-img]:hover { transform: scale(1.06); box-shadow: 0 4px 14px rgba(232,25,44,.25); border-color: var(--red); }

@keyframes modal-overlay-in  { from { opacity:0; } to { opacity:1; } }
@keyframes modal-overlay-out { from { opacity:1; } to { opacity:0; } }
@keyframes modal-blast-in {
  0%   { opacity:0; transform: scale(0.3) rotate(-4deg); filter: blur(12px); }
  60%  { opacity:1; transform: scale(1.07) rotate(0.5deg); filter: blur(0); }
  80%  { transform: scale(0.97); }
  100% { transform: scale(1) rotate(0); }
}
@keyframes modal-name-in {
  0%   { opacity:0; transform: translateY(28px) skewX(-6deg); letter-spacing: .25em; }
  60%  { opacity:1; letter-spacing: .06em; }
  100% { transform: translateY(0) skewX(0); letter-spacing: .04em; }
}
@keyframes spotlight-pulse {
  0%, 100% { opacity:.18; transform: scale(1); }
  50%       { opacity:.32; transform: scale(1.08); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 40px 8px rgba(232,25,44,.5), 0 0 80px 20px rgba(232,25,44,.2); }
  50%       { box-shadow: 0 0 60px 16px rgba(232,25,44,.7), 0 0 120px 40px rgba(232,25,44,.3); }
}

.team-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
  transition: opacity .3s ease;
}
.team-modal-overlay.active {
  pointer-events: auto; opacity: 1;
}
.team-modal-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(4px);
}
.team-modal-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 40px 32px 36px;
  max-width: min(520px, 90vw);
  width: 100%;
}
.team-modal-overlay.active .team-modal-content {
  animation: modal-blast-in .55s cubic-bezier(.22,.9,.32,1.1) both;
}
.team-modal-spotlight {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-55%);
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,200,0,.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: spotlight-pulse 2.4s ease-in-out infinite;
}
.team-modal-close {
  position: absolute; top: -8px; right: -8px;
  background: var(--red); color: #fff;
  border: none; border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1rem; font-weight: 800;
  cursor: pointer; line-height: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
  transition: background .15s, transform .15s;
}
.team-modal-close:hover { background: var(--red-dark); transform: scale(1.15) rotate(90deg); }
.team-modal-img-wrap {
  position: relative;
  width: min(400px, 80vw);
  height: min(400px, 80vw);
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(232,25,44,.6);
  animation: glow-pulse 2s ease-in-out infinite;
}
.team-modal-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.team-modal-img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.65) 100%);
  pointer-events: none;
}
.team-modal-name {
  margin-top: 20px;
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  font-weight: 900;
  color: #fff;
  text-align: center;
  letter-spacing: .06em;
  text-shadow: 0 2px 18px rgba(232,25,44,.8), 0 0 40px rgba(255,180,0,.4);
  line-height: 1.3;
}
.team-modal-overlay.active .team-modal-name {
  animation: modal-name-in .5s .25s cubic-bezier(.22,.9,.32,1.1) both;
}
.team-modal-badge {
  margin-top: 10px;
  animation: modal-name-in .45s .35s cubic-bezier(.22,.9,.32,1.1) both;
  opacity: 0;
}
.team-modal-overlay.active .team-modal-badge { opacity: 1; }
.team-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid #FFB3BB;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 600;
}
.team-tag.recruit { background: var(--gray-light); border-color: #ddd; color: var(--gray); border-style: dashed; }
.badge { font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 99px; }
.badge.confirmed { background: #E8F8EC; color: #2A7A3B; }
.teams-note { font-size: .9rem; color: #555; }
.teams-note strong { color: var(--red); }
.teams-full { display: inline-block; background: var(--red); color: var(--white) !important; font-weight: 800; padding: 8px 20px; border-radius: 99px; font-size: .9rem !important; }
.teams-full strong { color: var(--white) !important; }

.detail-list { list-style: none; display: grid; gap: 10px; }
.detail-list li { font-size: .95rem; padding-left: 1.4em; position: relative; }
.detail-list li::before { content: '▶'; position: absolute; left: 0; color: var(--red); font-size: .75rem; top: .25em; }

/* ---------- ④ スケジュール ---------- */
.schedule { padding: 96px 0; background: var(--white); }

.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 72px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), var(--red-light));
  border-radius: 2px;
}

.timeline-item { display: flex; gap: 24px; margin-bottom: 32px; position: relative; }
.timeline-item.last { margin-bottom: 0; }

.time-badge {
  min-width: 72px;
  text-align: right;
  font-size: .88rem;
  font-weight: 800;
  color: var(--red);
  padding-top: 4px;
  position: relative;
  flex-shrink: 0;
}
.time-badge::after {
  content: '';
  position: absolute;
  right: -13px; top: 10px;
  width: 12px; height: 12px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--red);
}

.timeline-content {
  background: var(--off-white);
  border: 1px solid #FFD0D5;
  border-radius: var(--radius);
  padding: 18px 22px;
  flex: 1;
  transition: transform var(--transition);
}
.timeline-content:hover { transform: translateX(4px); }
.timeline-content h4 { font-size: 1rem; font-weight: 800; color: var(--red); margin-bottom: 6px; }
.timeline-content p { font-size: .88rem; color: #555; line-height: 1.7; }
.timeline-content p strong { color: var(--red); }

.timeline-enjoy .time-badge { color: #FF6B00; }
.timeline-enjoy .time-badge::after { background: #FF6B00; box-shadow: 0 0 0 2px #FF6B00; }
.enjoy-tag { background: #FFF8F0 !important; border-color: #FFCF99 !important; }
.enjoy-tag h4 { color: #D95A00 !important; }

/* ---------- ⑤ 応募 ---------- */
.apply {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.04) 40px, rgba(255,255,255,.04) 80px);
}
.apply-box { position: relative; z-index: 2; color: var(--white); }
.apply-deco { font-size: 3.5rem; margin-bottom: 16px; }
.apply-box h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 18px; line-height: 1.3; }
.apply-box > p { font-size: 1.05rem; opacity: .9; margin-bottom: 28px; }
.apply-meta { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; font-size: .95rem; opacity: .88; }
.btn-apply {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px 56px;
  border-radius: 99px;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: .04em;
}
.btn-apply:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.28); }
.apply-note { margin-top: 24px; font-size: .85rem; opacity: .75; }
.apply-note a { color: var(--accent); text-decoration: underline; }

/* ---------- LINE ---------- */
.line-contact { padding: 48px 0; background: #F0FFF4; border-top: 3px solid #B2E0C0; }
.line-contact-inner { display: flex; justify-content: center; }
.line-contact-block { display: flex; align-items: center; gap: 40px; }
.line-contact-text { text-align: left; }
.line-contact-title { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 900; line-height: 1.3; margin-bottom: 12px; color: var(--text); }
.line-contact-desc { font-size: .93rem; color: #444; line-height: 1.75; margin-bottom: 12px; max-width: 400px; }
.line-contact-desc strong { color: #06C755; font-weight: 800; }
.line-badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.line-badge { background: var(--white); border: 1.5px solid #06C755; color: #06C755; font-size: .82rem; font-weight: 700; padding: 5px 14px; border-radius: 99px; }
.line-qr-wrap { flex-shrink: 0; }
.line-qr-card { background: var(--white); border: 2px solid #06C755; border-radius: 16px; padding: 24px 20px; text-align: center; box-shadow: 0 6px 24px rgba(6, 199, 85, .15); min-width: 200px; }
.line-qr-label { font-size: .8rem; font-weight: 800; color: #06C755; letter-spacing: .08em; margin-bottom: 14px; }
.line-qr-img { width: 110px; height: 110px; object-fit: contain; margin: 0 auto 14px; border-radius: 8px; }
.line-qr-card.qr-fallback::before { content: '📱'; display: block; font-size: 3.5rem; margin: 8px auto 14px; width: 110px; height: 110px; line-height: 110px; text-align: center; background: #F0FFF4; border-radius: 8px; }
.line-qr-note { font-size: .78rem; color: var(--gray); line-height: 1.5; }

/* ---------- フッター ---------- */
.site-footer { background: #1a1a1a; color: rgba(255,255,255,.6); text-align: center; padding: 32px 20px; }
.footer-logo { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-copy { font-size: .82rem; }

/* =============================================
   レスポンシブ
============================================= */
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
  .hamburger { display: flex; }
  .nav { position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-top: 2px solid var(--red); box-shadow: 0 8px 24px rgba(0,0,0,.12); max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .nav.open { max-height: 400px; }
  .nav ul { flex-direction: column; gap: 0; padding: 16px 0; }
  .nav ul li { width: 100%; }
  .nav a { display: block; padding: 14px 24px; border-bottom: 1px solid #F5E5E5; }
  .btn-nav { margin: 8px 16px; text-align: center; border-radius: var(--radius) !important; }
  .concept-cards { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .concept-card { padding: 22px 10px 18px; gap: 9px; border-radius: 14px; }
  .concept-card.photo-card { min-height: 200px; }
  .photo-content { padding: 1rem .9rem; }
  .photo-content .ccard-icon { font-size: 1.9rem; }
  .photo-content .ccard-title { font-size: .88rem; }
  .photo-content .ccard-text { font-size: .72rem; }
  .ccard-icon { font-size: 2rem; }
  .ccard-title { font-size: .8rem; letter-spacing: .02em; }
  .ccard-text { font-size: .72rem; line-height: 1.55; }
  .concept-card:hover { transform: none; box-shadow: none; }
  .concept-card.photo-card:hover { transform: none; box-shadow: none; }
  .info-grid { grid-template-columns: 1fr; }
  .info-item { border-right: none !important; }
  .info-item:nth-last-child(-n+2) { border-bottom: 1px solid #FFD0D5; }
  .info-item:last-child { border-bottom: none; }
  .details-lower { grid-template-columns: 1fr; }
  .d-stats-row { grid-template-columns: repeat(2, 1fr); }
  .d-main-grid { grid-template-columns: 1fr; }
  .d-card-full { grid-column: auto; }
  .d-format-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 56px; }
  .time-badge { min-width: 56px; font-size: .8rem; }
  .time-badge::after { right: -12px; }
  .apply-meta { flex-direction: column; gap: 8px; }
  .btn-apply { padding: 16px 36px; font-size: 1rem; }
  .line-contact-block { flex-direction: column; align-items: center; text-align: center; }
  .line-contact-text { text-align: center; }
  .line-contact-desc { max-width: 100%; }
  .line-badges { justify-content: center; }
  .line-qr-card { min-width: 0; width: fit-content; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.5rem; }
  .concept-cards { grid-template-columns: 1fr; gap: 12px; }
  .concept-card.photo-card { min-height: 160px; }
  .d-stats-row { grid-template-columns: repeat(2, 1fr); }
  .d-stat-num { font-size: 2.2rem; }
  .d-format-grid { grid-template-columns: 1fr; }
  .info-card-body { padding: 16px; }
  .timeline-content { padding: 14px 16px; }
  .hero-title-main { font-size: clamp(3.5rem, 20vw, 5rem); }
  .hero-title-enjoy { font-size: 1.5rem; }
  .concept { padding: 52px 0 48px; }
  .concept-lead { font-size: .85rem; margin-bottom: 28px; }
  /* スマホでは文字送りアニメーションを即表示 */
  .char-reveal { animation: none !important; opacity: 1 !important; transform: none !important; }
}
