/* =====================================================
   SHONAN HIRATSUKA NORTH — 共通スタイル
   エンジ #920F15 / ゴールド #C9A84C / ホワイト #FFFFFF / ブラック #0A0A0A
===================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
}

.site-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 4px 40px rgba(0,0,0,0.15);
  min-height: 100vh;
}

/* ========== ヘッダー ========== */
.site-header {
  background: #0A0A0A;
  border-bottom: 4px solid #C9A84C;
}

.header-top {
  background: linear-gradient(90deg, #920F15, #6E0A10 50%, #0A0A0A);
  padding: 6px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top .team-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 3px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-emblem img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(146,15,21,0.5));
}

.logo-text h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: white;
  letter-spacing: 3px;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-text .sub {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  color: #C9A84C;
  letter-spacing: 2px;
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
}

.header-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
  font-size: 16px;
  transition: all 0.3s;
  text-decoration: none;
}

.header-social a:hover {
  background: #920F15;
  border-color: #920F15;
  color: white;
}

/* ========== ナビ ========== */
.site-nav {
  background: #1A1A1A;
  border-top: 1px solid rgba(201,168,76,0.25);
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.nav-list::-webkit-scrollbar { display: none; }
.nav-list li { flex-shrink: 0; }

.nav-list li a {
  display: block;
  padding: 14px 16px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, #920F15, #C9A84C);
  transition: width 0.3s;
}

.nav-list li a:hover,
.nav-list li.active a {
  color: #C9A84C;
}

.nav-list li a:hover::after,
.nav-list li.active a::after {
  width: 100%;
}

/* ========== ページヒーロー ========== */
.page-hero {
  background: linear-gradient(135deg, #0A0A0A, #1c0406 40%, #2d0509 70%, #0A0A0A);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-60deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 40px);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #920F15, #C9A84C, #920F15);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-path {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(201,168,76,0.6);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
}

.page-hero-title span { color: #C9A84C; }

.page-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  letter-spacing: 1px;
}

/* ========== コンテンツエリア ========== */
.page-content {
  padding: 50px 40px;
  background: #fafafa;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #920F15, #C9A84C, transparent);
}

.section-badge {
  background: #0A0A0A;
  color: #C9A84C;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  padding: 3px 10px;
  text-transform: uppercase;
}

/* ========== フッター ========== */
.site-footer {
  background: #0A0A0A;
  border-top: 4px solid #920F15;
  padding: 56px 40px 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 50px;
  margin-bottom: 36px;
  align-items: start;
}

.footer-logo-wrap { width: 160px; height: 160px; }

.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(146,15,21,0.6));
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #C9A84C;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links li a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a::before {
  content: '›';
  color: #C9A84C;
  font-size: 16px;
  line-height: 1;
}

.footer-links li a:hover { color: #C9A84C; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact-item i {
  color: #C9A84C;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item a:hover { color: #C9A84C; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  color: rgba(255,255,255,0.25);
  font-size: 11px;
  letter-spacing: 1px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #920F15;
  border-color: #C9A84C;
  color: #C9A84C;
}

/* ========== 汎用コンポーネント ========== */
.card {
  background: white;
  border: 1px solid #e8e8e8;
  border-top: 4px solid #920F15;
  padding: 24px;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.card:hover {
  box-shadow: 0 8px 30px rgba(146,15,21,0.12);
  transform: translateY(-2px);
}

.tag-label {
  display: inline-block;
  background: #920F15;
  color: #C9A84C;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 3px 8px;
  text-transform: uppercase;
}

.badge-win {
  background: #920F15;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 12px;
  letter-spacing: 2px;
}

.badge-lose {
  background: #555;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 12px;
  letter-spacing: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, #920F15, #6E0A10);
  color: #C9A84C;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  border: 1px solid rgba(201,168,76,0.6);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C9A84C, #E8C97A);
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .header-main { flex-direction: column; gap: 16px; }
  .logo-text h1 { font-size: 16px; }
  .page-hero { padding: 36px 20px; }
  .page-hero-title { font-size: 30px; }
  .page-content { padding: 30px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-logo-wrap { width: 120px; height: 120px; }
}
