/* SYO PLAYER POINT - Main Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --beige: #f7f3ec;
  --beige-dark: #ede8df;
  --brown: #8b6914;
  --brown-light: #c4a35a;
  --brown-dark: #5a4209;
  --text-dark: #2c2416;
  --text-mid: #5a5040;
  --text-light: #8a7a60;
  --border: #ddd5c0;
  --accent: #7a9e6f;
}

body {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'MS Mincho', Georgia, serif;
  background-color: var(--beige);
  color: var(--text-dark);
  line-height: 1.9;
  font-size: 16px;
}

a { color: var(--brown); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brown-dark); }

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

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

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

.logo-text .main { font-size: 18px; font-weight: 700; color: var(--brown-dark); letter-spacing: 0.05em; }
.logo-text .sub { font-size: 10px; color: var(--brown-light); letter-spacing: 0.15em; text-transform: uppercase; }

nav ul { list-style: none; display: flex; gap: 4px; }
nav ul li a {
  padding: 6px 12px;
  font-size: 14px;
  color: var(--text-mid);
  border-radius: 4px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
nav ul li a:hover, nav ul li a.active { background: var(--beige); color: var(--brown-dark); }

/* FOOTER */
.site-footer {
  background: var(--brown-dark);
  color: #d4c4a0;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand .logo-wrap .main { color: #f0e0b0; }
.footer-brand .logo-wrap .sub { color: #c4a35a; }

.footer-brand p { font-size: 13px; line-height: 1.8; color: #b0a080; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #f0e0b0;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #6b5520;
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #b0a080; font-size: 13px; }
.footer-col ul li a:hover { color: #f0e0b0; }

.footer-contact p { font-size: 13px; color: #b0a080; margin-bottom: 8px; }
.footer-contact a { color: #c4a35a; }

.footer-bottom {
  border-top: 1px solid #4a3510;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 12px; color: #8a7a50; line-height: 1.8; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: #8a7a50; }
.footer-legal a:hover { color: #c4a35a; }

/* HERO */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  color: white;
}

.hero-tag {
  display: inline-block;
  background: var(--brown-light);
  color: white;
  font-size: 12px;
  padding: 4px 14px;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-family: sans-serif;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--brown-light);
  color: white;
  font-size: 14px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  font-family: sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover { background: var(--brown); color: white; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--brown-light);
  color: var(--brown-light);
}
.btn-outline:hover { background: var(--brown-light); color: white; }

/* PAGE WRAPPER */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* SECTION TITLES */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title .label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--brown-light);
  font-family: sans-serif;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 32px;
  color: var(--text-dark);
  font-weight: 700;
}

.section-title p {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ARTICLE CARDS */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }

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

.card-body { padding: 20px; }

.card-category {
  font-size: 11px;
  font-family: sans-serif;
  letter-spacing: 0.15em;
  color: var(--brown-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}

.card-excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
  font-family: sans-serif;
}

/* SECTION SPACING */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--brown-dark); color: #d4c4a0; }

/* PAGE HERO (smaller) */
.page-hero {
  background: var(--brown-dark);
  color: white;
  padding: 60px 0;
  text-align: center;
}
.page-hero .label { color: var(--brown-light); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; display: block; margin-bottom: 12px; font-family: sans-serif; }
.page-hero h1 { font-size: 38px; font-weight: 700; margin-bottom: 14px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.75); }

/* ARTICLE PAGE */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 60px 0; }
.article-body { }
.article-header { margin-bottom: 36px; }
.article-header .category { font-size: 11px; color: var(--brown-light); letter-spacing: 0.15em; text-transform: uppercase; font-family: sans-serif; margin-bottom: 12px; }
.article-header h1 { font-size: 36px; font-weight: 700; line-height: 1.5; margin-bottom: 16px; }
.article-header .meta { font-size: 13px; color: var(--text-light); font-family: sans-serif; display: flex; gap: 20px; }
.article-img { width: 100%; height: 400px; object-fit: cover; border-radius: 4px; margin-bottom: 32px; }
.article-content p { font-size: 16px; line-height: 2; color: var(--text-mid); margin-bottom: 24px; }
.article-content h2 { font-size: 24px; font-weight: 700; color: var(--text-dark); margin: 40px 0 16px; border-left: 4px solid var(--brown-light); padding-left: 16px; }
.article-content h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin: 32px 0 12px; }

/* SIDEBAR */
.sidebar {}
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 24px; margin-bottom: 28px; }
.sidebar-widget h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sidebar-item { display: flex; gap: 12px; margin-bottom: 16px; }
.sidebar-item img { width: 70px; height: 60px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.sidebar-item-title { font-size: 13px; line-height: 1.6; font-weight: 600; color: var(--text-dark); }
.sidebar-item-meta { font-size: 11px; color: var(--text-light); margin-top: 4px; font-family: sans-serif; }

/* CATEGORY PAGE */
.category-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.category-hero-overlay { position: absolute; inset: 0; background: rgba(44,36,22,0.65); }
.category-hero-content { position: relative; z-index: 2; color: white; text-align: center; }
.category-hero-content h1 { font-size: 42px; font-weight: 700; margin-bottom: 12px; }
.category-hero-content p { font-size: 16px; color: rgba(255,255,255,0.8); }

/* AUTHOR BOX */
.author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--beige-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  margin: 48px 0;
}
.author-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--brown-light); display: flex; align-items: center; justify-content: center; color: white; font-size: 28px; flex-shrink: 0; }
.author-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.author-info .role { font-size: 12px; color: var(--brown-light); font-family: sans-serif; margin-bottom: 8px; }
.author-info p { font-size: 13px; color: var(--text-mid); line-height: 1.8; }

/* DIVIDER */
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* FORM */
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--brown-light); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* INFO BOXES */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 28px; text-align: center; }
.info-card .icon { font-size: 32px; margin-bottom: 16px; }
.info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.info-card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }

/* BREADCRUMB */
.breadcrumb { padding: 16px 0; font-size: 13px; color: var(--text-light); font-family: sans-serif; }
.breadcrumb a { color: var(--brown-light); }
.breadcrumb span { margin: 0 8px; }

/* PAGINATION */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 0; }
.pagination a, .pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 14px;
  font-family: sans-serif;
  color: var(--text-mid);
}
.pagination a:hover, .pagination .current { background: var(--brown-light); color: white; border-color: var(--brown-light); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; height: auto; padding: 16px; }
  nav ul { flex-wrap: wrap; }
  .hero { height: 380px; }
  .hero-content h1 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}
