/* 一色SKクラブ 下層ページ共通スタイル（年間スケジュール・卒団生の進路）。トップと同じ紺×赤の2色・Noto Sans JP */
:root { --white: #ffffff; --navy: #0b2b50; --accent-red: #c8102e; --gray: #f5f6f8; --line: rgba(11, 43, 80, 0.14); --text-sub: #45536a; }
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; color: var(--navy); background: var(--white); line-height: 1.8; font-size: 16px; -webkit-text-size-adjust: 100%; }
a { color: var(--accent-red); font-weight: 700; }
.wrap { max-width: 860px; margin: 0 auto; padding: 0 18px; }
.top { background: var(--navy); color: var(--white); padding: 14px 0; }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.top a { color: var(--white); text-decoration: none; font-size: 14px; min-height: 44px; display: inline-flex; align-items: center; }
.top .brand { font-weight: 700; letter-spacing: 0.08em; }
.hero { background: var(--gray); padding: 40px 0 32px; border-bottom: 1px solid var(--line); }
.hero .kicker { color: var(--accent-red); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; margin-bottom: 8px; }
.hero h1 { font-size: 1.85rem; line-height: 1.3; font-weight: 900; }
.hero p { margin-top: 12px; color: var(--text-sub); font-size: 16px; }
.hero .updated { font-size: 14px; color: var(--text-sub); margin-top: 8px; }
section { padding: 36px 0; }
section + section { border-top: 1px solid var(--line); }
h2 { font-size: 1.4rem; font-weight: 900; margin-bottom: 18px; line-height: 1.3; }
h3 { font-size: 1.1rem; font-weight: 700; margin: 22px 0 10px; }
.note { font-size: 14px; color: var(--text-sub); }
table { width: 100%; border-collapse: collapse; font-size: 16px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--gray); font-weight: 700; }
td.num, th.num { text-align: right; white-space: nowrap; width: 5.5em; }
.grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 720px) { .grid { grid-template-columns: 1fr 1fr; } }
.card { border: 1px solid var(--line); border-top: 4px solid var(--navy); border-radius: 12px; padding: 18px 16px; background: var(--white); }
.card h3 { margin: 0 0 8px; }
.month { display: grid; grid-template-columns: 4.2em 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.month:last-child { border-bottom: 0; }
.month .m { font-weight: 900; color: var(--accent-red); }
.month ul { list-style: none; }
.month li { padding-left: 1em; text-indent: -1em; }
.month li::before { content: "・"; }
.points { counter-reset: n; list-style: none; }
.points li { counter-increment: n; position: relative; padding: 12px 0 12px 44px; border-bottom: 1px solid var(--line); }
.points li::before { content: counter(n); position: absolute; left: 0; top: 12px; width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: var(--white); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.points b { display: block; }
.back { padding: 28px 0 40px; text-align: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 28px; border-radius: 999px; background: var(--accent-red); color: var(--white); text-decoration: none; font-weight: 700; }
.footer { background: var(--navy); color: #cdd6df; text-align: center; padding: 40px 0; font-size: 14px; }
.footer a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
p, li, td { word-break: auto-phrase; }
/* 390pxで .month の ul がグリッドの min-content で右にはみ出す（+177px）→ 列を縮められるようにし、長い大会名は普通に折る */
.month > * { min-width: 0; }
.month li { word-break: normal; overflow-wrap: anywhere; }
