/* ==========================================================================
   RYUKYU SEAHORSE メインスタイル v2（クリーンデザイン）
   白基調・余白広め・細いライン・控えめな装飾で清潔感を重視。
   カラーはロゴのブランドカラーに準拠し、body.club-* で切り替える。
   ========================================================================== */

/* ---------- 変数 ---------- */
:root {
	--ink: #101820;            /* 基調色（ほぼ黒） */
	--navy: #0B2545;
	--ocean: #1B7FC4;
	--text: #2A3138;
	--gray-text: #767F8A;
	--line: #E6EAEE;           /* ヘアライン */
	--bg-soft: #F7F9FA;        /* 薄いグレー背景 */
	--white: #FFFFFF;

	/* ブランドカラー（ロゴ準拠） */
	--brand-baseball5: #111417;
	--brand-baseball: #5CE1E6;
	--brand-softball: #FF66C4;
	/* 文字用の濃色（コントラスト確保） */
	--deep-baseball: #14939B;
	--deep-softball: #D93D97;

	--accent: #0B2545;
	--accent-text: #FFFFFF;

	--font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
	--font-en: 'Montserrat', 'Noto Sans JP', sans-serif;
	--radius: 3px;
	--header-h: 72px;
}

/* クラブ別テーマ切替（accent=文字やボタンに使える濃色） */
body.club-baseball5 { --accent: #111417; --accent-text: #FFFFFF; --brand: var(--brand-baseball5); }
body.club-baseball  { --accent: #14939B; --accent-text: #FFFFFF; --brand: var(--brand-baseball); }
body.club-softball  { --accent: #D93D97; --accent-text: #FFFFFF; --brand: var(--brand-softball); }

/* ---------- リセット・ベース ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--font-jp);
	font-size: 15px;
	line-height: 2;
	color: var(--text);
	background: var(--white);
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: opacity 0.25s; }
a:hover { opacity: 0.6; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
	outline: 2px solid var(--ocean);
	outline-offset: 2px;
}
h1, h2, h3, h4 { line-height: 1.5; margin: 0 0 0.6em; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); }
p { margin: 0 0 1.2em; }
ul, ol { padding-left: 1.4em; }

.screen-reader-text {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: #fff;
	padding: 10px 16px;
	z-index: 1000;
}
.skip-link:focus { left: 0; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

/* ---------- ボタン ---------- */
.btn {
	display: inline-block;
	padding: 15px 40px;
	border-radius: var(--radius);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-align: center;
	border: 1px solid var(--ink);
	color: var(--ink);
	background: transparent;
	cursor: pointer;
	min-width: 200px;
	transition: opacity 0.25s, background 0.25s, color 0.25s;
}
.btn:hover { opacity: 0.65; }
.btn--accent { background: var(--accent); color: var(--accent-text); border-color: var(--accent); }
.btn--white { border-color: #fff; color: #fff; background: transparent; }
.btn--white:hover { background: #fff; color: var(--ink); opacity: 1; }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--small { padding: 9px 22px; min-width: 0; font-size: 12px; }
/* クラブ別ボタン（明るいブランド色には黒文字でコントラスト確保） */
.btn--club-baseball5 { background: var(--brand-baseball5); color: #fff; border-color: var(--brand-baseball5); }
.btn--club-baseball { background: var(--brand-baseball); color: var(--ink); border-color: var(--brand-baseball); }
.btn--club-softball { background: var(--brand-softball); color: var(--ink); border-color: var(--brand-softball); }
.text-link { font-weight: 500; color: var(--ink); border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.text-link--white { color: var(--ink); }

/* ---------- ヘッダー ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-h);
	padding: 0 24px;
	max-width: 1280px;
	margin: 0 auto;
}
.site-header__logo img, .site-header__logo .custom-logo { max-height: 46px; width: auto; }
.site-header__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.site-header__logo-en { font-family: var(--font-en); font-size: 17px; font-weight: 600; color: var(--ink); letter-spacing: 0.08em; }
.site-header__logo-jp { font-size: 10px; color: var(--gray-text); letter-spacing: 0.2em; }

.hamburger {
	width: 48px; height: 48px;
	background: none;
	border: none;
	position: relative;
	cursor: pointer;
}
.hamburger__line, .hamburger__line::before, .hamburger__line::after {
	content: "";
	display: block;
	position: absolute;
	left: 12px;
	width: 24px; height: 1px;
	background: var(--ink);
	transition: transform 0.25s, opacity 0.25s;
}
.hamburger__line { top: 23px; }
.hamburger__line::before { left: 0; top: -8px; }
.hamburger__line::after { left: 0; top: 8px; }
.is-menu-open .hamburger__line { background: transparent; }
.is-menu-open .hamburger__line::before { transform: translateY(8px) rotate(45deg); }
.is-menu-open .hamburger__line::after { transform: translateY(-8px) rotate(-45deg); }

.global-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 0; right: 0;
	background: #fff;
	border-bottom: 1px solid var(--line);
	max-height: calc(100vh - var(--header-h));
	overflow-y: auto;
}
.is-menu-open .global-nav { display: block; }
.global-nav__list { list-style: none; margin: 0; padding: 8px 0 16px; }
.global-nav__list a {
	display: block;
	padding: 13px 28px;
	color: var(--ink);
	font-size: 13px;
	letter-spacing: 0.1em;
	border-bottom: 1px solid var(--line);
}

/* クラブサブナビ（白ベース＋ブランドカラーのライン） */
.club-nav { background: #fff; border-bottom: 1px solid var(--line); border-top: 2px solid var(--brand, var(--navy)); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.club-nav__inner { display: flex; align-items: center; gap: 12px; padding: 0 24px; max-width: 1280px; margin: 0 auto; }
.club-nav__label { color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; white-space: nowrap; padding-right: 6px; }
.club-nav__list { display: flex; list-style: none; margin: 0; padding: 0; }
.club-nav__list a {
	display: block;
	padding: 13px 12px;
	color: var(--gray-text);
	font-size: 12px;
	letter-spacing: 0.08em;
	white-space: nowrap;
}
.club-nav__list a:hover { color: var(--accent); opacity: 1; }

/* ---------- ヒーロー ---------- */
.hero {
	position: relative;
	min-height: 86vh;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
}
.hero--club { min-height: 62vh; align-items: center; }
.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 24, 32, 0) 35%, rgba(16, 24, 32, 0.62) 100%);
}
.hero--club .hero__overlay { background: linear-gradient(180deg, rgba(16, 24, 32, 0.2), rgba(16, 24, 32, 0.5)); }
.hero__content { position: relative; padding: 0 24px 9vh; max-width: 900px; }
.hero--club .hero__content { padding: 100px 24px; }
.hero__en {
	font-family: var(--font-en);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.45em;
	margin-bottom: 16px;
	opacity: 0.9;
}
.hero__copy {
	font-size: clamp(22px, 4.2vw, 40px);
	font-weight: 600;
	line-height: 1.9;
	letter-spacing: 0.08em;
	color: #fff;
	text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
	margin-bottom: 0;
}
.hero__logo { width: min(240px, 56vw); height: auto; margin: 0 auto 20px; }
.hero__club-name { font-size: clamp(24px, 4vw, 38px); font-weight: 600; letter-spacing: 0.1em; color: #fff; }
.hero__catch { font-size: clamp(14px, 2vw, 17px); font-weight: 400; letter-spacing: 0.12em; opacity: 0.95; }
.hero__buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	margin-top: 36px;
}

/* ---------- セクション ---------- */
.section { padding: 88px 0; }
.section--gray { background: var(--bg-soft); }
.section__en {
	font-family: var(--font-en);
	color: var(--gray-text);
	letter-spacing: 0.35em;
	font-size: 11px;
	font-weight: 500;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.section__title { font-size: clamp(21px, 3vw, 28px); margin-bottom: 40px; position: relative; padding-bottom: 18px; }
.section__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 1px; background: var(--accent); }
.section__title--sub { font-size: clamp(18px, 2.4vw, 22px); margin-top: 72px; }
.section__lead { max-width: 720px; }
.section__more { margin-top: 48px; text-align: center; }
.empty-note { color: var(--gray-text); background: var(--bg-soft); padding: 24px; border-radius: var(--radius); font-size: 13px; }
.section--gray .empty-note { background: #fff; border: 1px solid var(--line); }

/* ページヘッダー（白基調） */
.page-header { background: #fff; padding: 72px 0 36px; border-bottom: 1px solid var(--line); }
.page-header__en { font-family: var(--font-en); letter-spacing: 0.35em; font-size: 11px; font-weight: 500; color: var(--accent); margin: 0 0 8px; text-transform: uppercase; }
.page-header__title { font-size: clamp(24px, 4vw, 34px); margin-bottom: 4px; }

/* パンくず */
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; margin: 0; padding: 16px 0 0; font-size: 11px; color: var(--gray-text); letter-spacing: 0.05em; }
.breadcrumbs li { display: flex; align-items: center; }
.breadcrumbs li + li::before { content: "/"; margin: 0 10px; opacity: 0.4; }
.breadcrumbs a { color: var(--gray-text); }
.site-main > .container > .breadcrumbs { padding: 16px 0; }

/* ---------- クラブカード ---------- */
.club-cards { display: grid; gap: 32px; }
.club-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.3s;
}
.club-card:hover { box-shadow: 0 10px 40px rgba(16, 24, 32, 0.08); }
/* ブランドバンド（クラブカラーのロゴ帯） */
.club-card__brand { display: flex; align-items: center; justify-content: center; padding: 18px 0; }
.club-card__brand img { height: 56px; width: auto; }
.club-card__brand--baseball5 { background: #000000; }
.club-card__brand--baseball { background: var(--brand-baseball); }
.club-card__brand--softball { background: var(--brand-softball); }
.club-card__image-link img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.4s; }
.club-card__image-link:hover img { transform: scale(1.02); }
.club-card__body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.club-card__en { font-family: var(--font-en); font-size: 10px; letter-spacing: 0.3em; color: var(--gray-text); margin: 0 0 2px; }
.club-card__name { font-size: 18px; }
.club-card__desc { flex: 1; font-size: 13px; color: var(--gray-text); line-height: 2; }
.club-card__buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.club-card__buttons .btn { min-width: 0; }

/* ---------- 理念バンド（白・大きなタイポグラフィ） ---------- */
.philosophy-band {
	background: #fff;
	color: var(--ink);
	text-align: center;
	padding: 120px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.philosophy-band__copy {
	font-size: clamp(22px, 4vw, 38px);
	font-weight: 600;
	line-height: 2.1;
	letter-spacing: 0.1em;
	margin-bottom: 28px;
}
.philosophy-band a { color: var(--ink); }
.philosophy-band--page { padding: 96px 0; border-top: none; }

/* ---------- お知らせ ---------- */
.news-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.news-list__item { border-bottom: 1px solid var(--line); }
.news-list__item a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
	padding: 22px 4px;
	color: var(--text);
}
.news-list__item time { color: var(--gray-text); font-size: 12px; font-family: var(--font-en); letter-spacing: 0.08em; }
.news-list__title { width: 100%; font-weight: 400; font-size: 14px; }

/* バッジ（アウトラインチップ） */
.badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
	padding: 5px 10px;
	border-radius: 2px;
	border: 1px solid var(--navy);
	color: var(--navy);
	background: transparent;
	white-space: nowrap;
}
.badge--baseball5 { border-color: var(--brand-baseball5); color: var(--brand-baseball5); }
.badge--baseball { border-color: var(--deep-baseball); color: var(--deep-baseball); }
.badge--softball { border-color: var(--deep-softball); color: var(--deep-softball); }
.badge--general { border-color: var(--navy); color: var(--navy); }
.badge--cat { border-color: var(--line); color: var(--gray-text); }
.badge--win { border-color: var(--ocean); color: var(--ocean); }
.badge--lose { border-color: var(--gray-text); color: var(--gray-text); }
.badge--draw, .badge--other { border-color: var(--gray-text); color: var(--gray-text); }
.badge--canceled { border-color: #C0392B; color: #C0392B; }
.badge--changed { border-color: #B9770E; color: #B9770E; }

/* ---------- スケジュール ---------- */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-tabs__btn {
	padding: 9px 22px;
	border-radius: 2px;
	border: 1px solid var(--line);
	background: #fff;
	color: var(--gray-text);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: all 0.25s;
}
.filter-tabs__btn.is-active { background: var(--accent); color: var(--accent-text); border-color: var(--accent); }

.schedule-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.schedule-list__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: #fff;
	border-bottom: 1px solid var(--line);
	padding: 22px 4px;
}
.schedule-list__item.is-canceled { opacity: 0.5; }
.schedule-list__item.is-hidden { display: none; }
.schedule-list__date { font-family: var(--font-en); font-weight: 500; font-size: 13px; letter-spacing: 0.06em; color: var(--ink); display: flex; gap: 12px; flex-wrap: wrap; }
.schedule-list__time { color: var(--gray-text); font-weight: 400; }
.schedule-list__title { font-weight: 500; margin: 0; font-size: 14px; }
.schedule-list__meta { display: flex; flex-wrap: wrap; gap: 4px 16px; font-size: 12px; color: var(--gray-text); margin: 0; }
.schedule-list__note { font-size: 12px; color: #C0392B; margin: 0; }
.section--gray .schedule-list__item { background: transparent; }

/* ---------- テーブル ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.info-table { width: 100%; border-collapse: collapse; background: #fff; }
.info-table th, .info-table td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 13px; }
.info-table tr:first-child th, .info-table tr:first-child td { border-top: 1px solid var(--line); }
.info-table th { color: var(--ink); width: 32%; min-width: 110px; font-weight: 500; letter-spacing: 0.06em; }

.result-table { width: 100%; min-width: 640px; border-collapse: collapse; background: #fff; }
.result-table th, .result-table td { padding: 14px 16px; font-size: 13px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
.result-table thead th { color: var(--gray-text); font-weight: 500; font-size: 11px; letter-spacing: 0.1em; border-bottom: 1px solid var(--ink); }
.result-table__score { font-family: var(--font-en); font-weight: 600; font-size: 15px; }
.result-table__rank { font-size: 11px; color: var(--gray-text); margin-left: 6px; }

.filter-form { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 32px; }
.filter-form label { font-weight: 500; font-size: 13px; letter-spacing: 0.06em; }
.filter-form select { padding: 10px 14px; border-radius: 2px; border: 1px solid var(--line); font-size: 14px; background: #fff; }

/* スコアボード */
.score-board { background: #fff; border: 1px solid var(--line); color: var(--ink); border-radius: var(--radius); padding: 40px 24px; text-align: center; margin-bottom: 40px; }
.score-board__tournament { color: var(--gray-text); font-size: 13px; letter-spacing: 0.08em; margin-bottom: 12px; }
.score-board__main { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.score-board__team { font-weight: 600; font-size: 15px; letter-spacing: 0.06em; }
.score-board__score { font-family: var(--font-en); font-size: clamp(34px, 7vw, 52px); font-weight: 600; letter-spacing: 0.04em; }
.score-board__sub { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; margin: 16px 0 0; font-size: 12px; color: var(--gray-text); }

/* ---------- 人物カード ---------- */
.person-grid { display: grid; gap: 28px; }
.person-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.person-card__photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.person-card__body { padding: 22px; }
.person-card__role { color: var(--accent); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; margin: 0; }
.person-card__name { font-size: 17px; font-weight: 600; margin: 4px 0 10px; letter-spacing: 0.06em; }
.person-card__profile { font-size: 12px; color: var(--gray-text); line-height: 1.9; }
.person-card__comment { font-size: 12px; line-height: 1.9; }

/* ---------- ギャラリー ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery-grid__item { margin: 0; }
.gallery-grid__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px; }

/* ---------- スポンサー ---------- */
.sponsor-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	max-width: 820px;
}
.sponsor-card__photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.sponsor-card__body { padding: 32px; }
.sponsor-card__role { color: var(--gray-text); font-weight: 500; font-size: 11px; letter-spacing: 0.2em; margin: 0; }
.sponsor-card__name { font-size: 24px; font-weight: 600; margin: 4px 0 14px; letter-spacing: 0.08em; }
.sponsor-card__text { font-size: 13px; color: var(--gray-text); line-height: 2; }
.sponsor-grid { display: grid; gap: 28px; }
.sponsor-grid__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.sponsor-grid__role { color: var(--gray-text); font-size: 11px; letter-spacing: 0.15em; font-weight: 500; margin: 10px 0 0; }
.sponsor-grid__name { font-size: 17px; font-weight: 600; margin: 0 0 10px; }
.sponsor-grid__text { font-size: 12px; color: var(--gray-text); }
.sponsor-invite { margin-top: 72px; background: var(--bg-soft); border-radius: var(--radius); padding: 48px 32px; text-align: center; }

/* ---------- スポンサー・アドバイザー カード ---------- */
.partner-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	justify-content: center;
	margin-top: 16px;
}
.partner-card {
	display: block;
	flex: 1 1 280px;
	max-width: 380px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 56px 32px 40px;
	text-align: center;
	color: var(--ink);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.partner-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 48px rgba(16, 24, 32, 0.1);
	opacity: 1;
}
.partner-card__media {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 26px;
}
.partner-card__media img {
	max-height: 100%;
	max-width: 80%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.35s ease;
}
.partner-card:hover .partner-card__media img { transform: scale(1.05); }
.partner-card__text-name {
	font-size: clamp(24px, 4vw, 30px);
	font-weight: 600;
	letter-spacing: 0.22em;
	color: var(--ink);
	transition: color 0.3s ease;
}
.partner-card:hover .partner-card__text-name { color: var(--ocean); }
.partner-card__name {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin: 0 0 8px;
}
.partner-card__label {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gray-text);
	transition: color 0.3s ease;
}
.partner-card__label::after { content: " \2197"; }
.partner-card:hover .partner-card__label { color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
	.partner-card, .partner-card__media img, .partner-card__text-name { transition: none; }
	.partner-card:hover { transform: none; }
	.partner-card:hover .partner-card__media img { transform: none; }
}

/* ---------- FAQ ---------- */
.faq-list { margin: 0; }
.faq-list__item { background: #fff; border-bottom: 1px solid var(--line); }
.faq-list__item:first-child { border-top: 1px solid var(--line); }
.faq-list__q {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 22px 4px 6px;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.04em;
	color: var(--ink);
}
.faq-list__a { display: flex; gap: 14px; align-items: flex-start; padding: 6px 4px 22px; margin: 0; }
.faq-list__mark {
	flex-shrink: 0;
	font-family: var(--font-en);
	font-weight: 600;
	color: var(--accent);
	font-size: 14px;
	line-height: 2;
}
.faq-list__mark--a { color: var(--gray-text); }
.faq-list__answer { font-size: 13px; color: var(--gray-text); }
.faq-list__answer p:last-child { margin-bottom: 0; }

/* ---------- CTA ---------- */
.cta { background: var(--bg-soft); color: var(--ink); text-align: center; padding: 96px 0; border-top: 1px solid var(--line); }
.cta__title { font-size: clamp(20px, 3.2vw, 28px); letter-spacing: 0.1em; }
.cta__text { color: var(--gray-text); font-size: 13px; letter-spacing: 0.06em; }
.cta__buttons { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-top: 32px; }

/* ---------- フォーム ---------- */
.contact-form-wrap { margin-top: 48px; }
.form-row { margin-bottom: 26px; }
.form-label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 13px; letter-spacing: 0.06em; }
.req, .opt {
	display: inline-block;
	font-size: 10px;
	font-weight: 500;
	padding: 2px 8px;
	border-radius: 2px;
	margin-left: 10px;
	vertical-align: middle;
	letter-spacing: 0.08em;
}
.req { border: 1px solid #C0392B; color: #C0392B; }
.opt { border: 1px solid var(--line); color: var(--gray-text); }
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 14px;
	font-size: 16px; /* iOSのズーム防止 */
	border: 1px solid #D6DDE3;
	border-radius: 2px;
	background: #fff;
	font-family: inherit;
	transition: border-color 0.25s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--ink); }
.form-row--error input, .form-row--error select, .form-row--error textarea { border-color: #C0392B; background: #FDF6F5; }
.form-error { color: #C0392B; font-size: 12px; margin: 8px 0 0; font-weight: 500; }
.form-error-box { border: 1px solid #C0392B; color: #C0392B; padding: 16px 20px; border-radius: 2px; font-weight: 500; font-size: 13px; }
.form-check { font-size: 13px; }
.form-check a { text-decoration: underline; }
.form-submit { text-align: center; margin-top: 40px; }
.rs-hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-confirm__table { width: 100%; border-collapse: collapse; margin: 28px 0; }
.form-confirm__table th, .form-confirm__table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: 13px; }
.form-confirm__table tr:first-child th, .form-confirm__table tr:first-child td { border-top: 1px solid var(--line); }
.form-confirm__table th { width: 36%; color: var(--ink); font-weight: 500; }
.form-confirm__buttons { text-align: center; margin: 28px 0 16px; }
.form-confirm form { text-align: center; margin-bottom: 12px; }
.form-complete { text-align: center; padding: 64px 0; }
.recruit-status { background: var(--bg-soft); border-left: 2px solid var(--accent); padding: 16px 20px; border-radius: 2px; font-size: 14px; letter-spacing: 0.04em; }
.club-contact-links { background: var(--bg-soft); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 8px; font-size: 13px; }
.club-contact-links ul { margin: 0; }

/* ---------- 本文（ブロックエディター） ---------- */
.entry-content { font-size: 14px; }
.entry-content h2 { border: none; padding: 0 0 14px; margin-top: 2.4em; font-size: clamp(19px, 2.6vw, 24px); position: relative; }
.entry-content h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 1px; background: var(--accent); }
.entry-content h3 { margin-top: 2em; font-size: clamp(15px, 2.2vw, 18px); }
.entry-content ul li { margin-bottom: 0.5em; }
.entry-content img { border-radius: 2px; }
.single-meta { display: flex; gap: 14px; align-items: center; color: var(--gray-text); font-size: 13px; }
.single-meta time { font-family: var(--font-en); letter-spacing: 0.08em; }
.single-thumbnail { margin: 0 0 32px; }
.single-thumbnail img { border-radius: 2px; width: 100%; }

/* ---------- SNS ---------- */
.sns-links { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin: 0; padding: 0; }
.sns-links a {
	display: inline-block;
	padding: 10px 26px;
	border: 1px solid var(--line);
	border-radius: 2px;
	color: var(--ink);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.12em;
	font-family: var(--font-en);
}
.sns-links a:hover { border-color: var(--ink); opacity: 1; }
.sns-note { color: var(--gray-text); font-size: 13px; }

/* ---------- フッター（白基調） ---------- */
.site-footer { background: #fff; color: var(--text); padding: 72px 0 96px; border-top: 1px solid var(--line); }
.site-footer a { color: var(--gray-text); }
.site-footer a:hover { color: var(--ink); opacity: 1; }
.site-footer__grid { display: grid; gap: 40px; }
.site-footer__logo { margin: 0 0 12px; }
.site-footer__logo img { max-height: 44px; width: auto; }
.site-footer__logo-en { font-family: var(--font-en); font-size: 20px; font-weight: 600; letter-spacing: 0.08em; color: var(--ink); display: block; }
.site-footer__logo-jp { font-size: 11px; color: var(--gray-text); letter-spacing: 0.2em; }
.site-footer__area { font-size: 12px; color: var(--gray-text); letter-spacing: 0.06em; }
.site-footer__heading { font-weight: 600; margin-bottom: 14px; font-size: 12px; letter-spacing: 0.2em; color: var(--ink); }
.site-footer__nav ul { list-style: none; margin: 0; padding: 0; }
.site-footer__nav li { margin-bottom: 10px; font-size: 12px; letter-spacing: 0.05em; }
.site-footer__sub { padding-left: 1em; font-size: 11px; }
.site-footer .sns-links a { border-color: var(--line); color: var(--gray-text); }
.site-footer__copyright { text-align: center; font-size: 10px; color: var(--gray-text); letter-spacing: 0.2em; margin-top: 64px; font-family: var(--font-en); }

/* ---------- モバイル固定CTA ---------- */
.mobile-cta {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	display: flex;
	z-index: 90;
	background: #fff;
	border-top: 1px solid var(--line);
}
.mobile-cta__btn {
	flex: 1;
	text-align: center;
	padding: 15px 8px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
}
.mobile-cta__btn--trial { background: var(--accent); color: var(--accent-text); }
.mobile-cta__btn--contact { background: #fff; color: var(--ink); }

/* ---------- ページネーション ---------- */
.pagination { margin-top: 48px; text-align: center; }
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pagination .page-numbers {
	display: inline-block;
	min-width: 40px;
	padding: 9px 13px;
	border-radius: 2px;
	border: 1px solid var(--line);
	color: var(--ink);
	font-size: 13px;
	font-family: var(--font-en);
}
.pagination .page-numbers.current { background: var(--accent); color: var(--accent-text); border-color: var(--accent); }

/* ---------- フェードイン（控えめ） ---------- */
.js-fade { opacity: 0; transform: translateY(14px); transition: opacity 0.8s ease, transform 0.8s ease; }
.js-fade.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.js-fade { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   モバイル：既定FVは縦型ビジュアルに切り替え
   ========================================================================== */
@media (max-width: 767px) {
	.hero--default { background-image: url(../img/hero-mobile.jpg) !important; }
	/* モバイルはボタンを小さくまとめ、ビジュアルの見える面積を確保する */
	.hero__buttons { margin-top: 24px; gap: 8px; }
	.hero__buttons .btn { padding: 11px 24px; min-width: 240px; font-size: 12px; }
	.hero__content { padding-bottom: 6vh; }
	.hero__copy { font-size: 21px; }
}

/* ==========================================================================
   タブレット以上
   ========================================================================== */
@media (min-width: 768px) {
	body { font-size: 16px; }
	.hero__buttons, .cta__buttons { flex-direction: row; justify-content: center; }
	.club-cards { grid-template-columns: repeat(3, 1fr); }
	.person-grid { grid-template-columns: repeat(3, 1fr); }
	.gallery-grid { grid-template-columns: repeat(4, 1fr); }
	.sponsor-card { flex-direction: row; }
	.sponsor-card__photo { flex: 0 0 300px; }
	.sponsor-card__photo img { height: 100%; }
	.sponsor-grid { grid-template-columns: repeat(2, 1fr); }
	.schedule-list__item { flex-direction: row; gap: 32px; align-items: flex-start; }
	.schedule-list__date { flex: 0 0 220px; flex-direction: column; gap: 0; }
	.news-list__title { width: auto; flex: 1; }
	.site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
	.site-footer { padding-bottom: 72px; }
	.club-nav__list a { font-size: 13px; padding: 15px 14px; }
}

/* ==========================================================================
   デスクトップ
   ========================================================================== */
@media (min-width: 1024px) {
	.hamburger { display: none; }
	.global-nav {
		display: block;
		position: static;
		background: transparent;
		border: none;
		max-height: none;
		overflow: visible;
	}
	.global-nav__list { display: flex; padding: 0; gap: 4px; }
	.global-nav__list a {
		color: var(--ink);
		font-size: 12px;
		letter-spacing: 0.06em;
		padding: 10px 10px;
		border-bottom: none;
	}
	.mobile-cta { display: none; }
	.site-footer { padding-bottom: 72px; }
	.section { padding: 112px 0; }
}
