/* ============================================================
 * 北原孝彦アカデミー名鑑 - 共通スタイル（プレビュー版）
 * ========================================================== */
* { box-sizing: border-box; }
body {
	margin: 0;
	font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
	color: #2b2b2b;
	line-height: 1.7;
	background: #fafafa;
}
a { color: inherit; }

/* ---------- ヘッダー ---------- */
.site-header {
	background: #fff;
	border-bottom: 1px solid #eee;
}
.site-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.site-header__logo {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	color: #2b2b2b;
}
.site-header__nav {
	display: flex;
	gap: 24px;
	font-size: 13px;
}
.site-header__nav a {
	text-decoration: none;
	color: #2b2b2b;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s;
}
.site-header__nav a:hover,
.site-header__nav a.is-current {
	border-bottom-color: #2b2b2b;
}
.site-header__contact {
	font-size: 12px;
	color: #6b6b6b;
	text-decoration: none;
}

/* ---------- フッター ---------- */
.site-footer {
	background: #fff;
	border-top: 1px solid #eee;
	margin-top: 80px;
}
.site-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: #6b6b6b;
}
.site-footer__nav {
	display: flex;
	gap: 16px;
}
.site-footer__nav a {
	text-decoration: none;
	color: #6b6b6b;
}
.site-footer__nav a:hover { color: #2b2b2b; }

/* ---------- メイン共通 ---------- */
.meikan-main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 24px;
}

/* ---------- ヒーロー ---------- */
.meikan-hero { text-align: center; margin-bottom: 48px; }
.meikan-hero__title {
	font-size: 28px; font-weight: 700;
	letter-spacing: 0.08em; margin: 0 0 8px;
}
.meikan-hero__lead { font-size: 14px; color: #6b6b6b; margin: 0; }

/* ---------- 絞り込み ---------- */
.meikan-filter {
	margin-bottom: 40px;
	display: flex; flex-direction: column; gap: 24px;
	background: #fff;
	padding: 24px;
	border-radius: 8px;
}
.meikan-filter__heading {
	font-size: 14px; font-weight: 600;
	margin: 0 0 12px; color: #2b2b2b;
}
.meikan-filter__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.meikan-chip {
	appearance: none;
	border: 1px solid #d8d8d8;
	background: #fff;
	color: #2b2b2b;
	font-size: 13px;
	padding: 8px 16px;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	font-family: inherit;
}
.meikan-chip:hover { background: #f4f4f4; }
.meikan-chip.is-active {
	background: #2b2b2b; color: #fff; border-color: #2b2b2b;
}

/* ---------- 4カラムグリッド ---------- */
.meikan-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px 24px;
	align-items: start;
}
.meikan-card.is-hidden { display: none; }
.meikan-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
}
.meikan-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.meikan-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}
.meikan-card__thumb {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f0f0f0;
}
.meikan-card__thumb img {
	width: 100%; height: 100%;
	object-fit: cover; display: block;
}
.meikan-card__thumb--placeholder {
	background: linear-gradient(135deg, #e8d9c0 0%, #c4a374 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.meikan-card__thumb--placeholder span {
	font-size: 64px;
	font-weight: 700;
	color: #fff;
	font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.meikan-card__body { padding: 16px 4px 8px; }
.meikan-card__position {
	font-size: 11px; color: #888;
	margin: 0 0 4px; letter-spacing: 0.04em;
}
.meikan-card__name {
	font-size: 16px; font-weight: 600;
	margin: 0 0 4px; line-height: 1.4;
}
.meikan-card__area {
	font-size: 12px; color: #6b6b6b; margin: 0 0 12px;
}
.meikan-card__more {
	display: inline-block; font-size: 12px;
	color: #2b2b2b;
	border-bottom: 1px solid #2b2b2b;
	padding-bottom: 2px;
}
.meikan-no-result,
.meikan-empty {
	grid-column: 1 / -1;
	text-align: center;
	color: #888;
	padding: 48px 0;
}
.meikan-empty a { color: #2b2b2b; }

/* ---------- もっと見る／閉じるボタン ---------- */
.load-more-wrap {
	text-align: center;
	margin-top: 48px;
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}
.load-more,
.load-close {
	appearance: none;
	display: inline-block;
	font-family: inherit;
	font-size: 14px;
	letter-spacing: 0.06em;
	padding: 16px 56px;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s, color 0.2s;
	border: 1px solid #2b2b2b;
}
.load-more {
	background: #2b2b2b;
	color: #fff;
	border-color: #2b2b2b;
}
.load-more:hover {
	background: #555;
	border-color: #555;
	transform: translateY(-2px);
}
.load-close {
	background: #fff;
	color: #2b2b2b;
}
.load-close:hover {
	background: #f4f4f4;
	transform: translateY(-2px);
}
.load-more[hidden],
.load-close[hidden] { display: none; }

/* ---------- タグ一覧（地域・カテゴリーで探す） ---------- */
.tag-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.tag-card {
	background: #fff;
	border-radius: 8px;
	padding: 24px;
	text-align: center;
	text-decoration: none;
	color: #2b2b2b;
	border: 1px solid #eee;
	transition: transform 0.2s, box-shadow 0.2s;
}
.tag-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.tag-card__name {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 4px;
}
.tag-card__count {
	font-size: 12px;
	color: #888;
	margin: 0;
}

/* ---------- TOP FV（画像ヒーロー） ---------- */
.top-fv {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto 48px;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	border-radius: 12px;
}
.top-fv__img {
	width: 100%; height: 100%;
	object-fit: cover; display: block;
}
.top-fv__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 70%, rgba(0,0,0,0.65) 100%);
}
.top-fv__caption {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 40px 48px;
	color: #fff;
	text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.top-fv__title {
	font-size: 32px; font-weight: 700;
	letter-spacing: 0.08em; margin: 0 0 8px;
	line-height: 1.3;
}
.top-fv__lead {
	font-size: 15px; margin: 0; opacity: 0.95;
}

@media (max-width: 720px) {
	.top-fv { aspect-ratio: 4 / 5; border-radius: 0; margin-bottom: 32px; }
	.top-fv__caption { padding: 24px 20px; }
	.top-fv__title { font-size: 22px; }
	.top-fv__lead { font-size: 13px; }
}

/* ---------- About FV（黒〜グレーグラデ＋CTA） ---------- */
.about-fv {
	width: 100%;
	background: linear-gradient(90deg, #1a1a1a 0%, #5a5a5a 100%);
	margin: 0 0 64px;
	padding: 80px 0;
}
.about-fv__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	color: #fff;
}
.about-fv__caption { flex: 1; }
.about-fv__title {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0 0 28px;
	line-height: 1.4;
}
.about-fv__lead {
	font-size: 15px;
	line-height: 2;
	margin: 0;
}

.fv-cta {
	display: inline-block;
	background: linear-gradient(180deg, #f3d98a 0%, #c79a3e 100%);
	color: #2b2b2b;
	font-weight: 700;
	font-size: 15px;
	padding: 22px 44px;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.4);
	transition: transform 0.2s, box-shadow 0.2s;
	white-space: nowrap;
}
.fv-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}

@media (max-width: 720px) {
	.about-fv { padding: 56px 0; margin-bottom: 48px; }
	.about-fv__inner { flex-direction: column; align-items: flex-start; padding: 0 24px; gap: 32px; }
	.about-fv__title { font-size: 24px; margin-bottom: 20px; }
	.about-fv__lead { font-size: 13px; }
	.fv-cta { padding: 18px 32px; font-size: 14px; }
}

/* ---------- About ページ ---------- */
.about-section {
	background: #fff;
	padding: 48px 32px;
	border-radius: 8px;
	margin-bottom: 32px;
}
.about-section__title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 16px;
	text-align: center;
}
.about-section__lead {
	font-size: 15px;
	line-height: 1.9;
	margin: 0 0 24px;
}
.about-cta {
	display: inline-block;
	background: #2b2b2b;
	color: #fff;
	text-decoration: none;
	padding: 14px 32px;
	border-radius: 999px;
	font-size: 14px;
	letter-spacing: 0.04em;
	transition: background 0.2s;
}
.about-cta:hover { background: #555; }
.about-section--center { text-align: center; }

.about-stats {
	background: #fff;
	padding: 48px 32px;
	border-radius: 8px;
	text-align: center;
	margin-bottom: 32px;
}
.about-stats__num {
	font-size: 48px;
	font-weight: 700;
	margin: 0;
}
.about-stats__label {
	font-size: 14px;
	color: #6b6b6b;
	margin: 0;
}
.about-industries {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin-top: 24px;
}
.about-industries span {
	background: #f4f4f4;
	font-size: 12px;
	padding: 8px 12px;
	border-radius: 4px;
	text-align: center;
}

/* ---------- 人物詳細 ---------- */
.meikan-detail {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	padding: 48px 32px;
	border-radius: 8px;
}
.meikan-detail__header {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
	margin-bottom: 40px;
	align-items: start;
}
.meikan-detail__thumb img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}
.meikan-detail__position {
	font-size: 12px; color: #888; margin: 0 0 8px;
}
.meikan-detail__name {
	font-size: 24px; font-weight: 700; margin: 0 0 8px;
}
.meikan-detail__area {
	font-size: 14px; color: #6b6b6b; margin: 0 0 16px;
}
.meikan-detail__cats {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-wrap: wrap; gap: 6px;
}
.meikan-detail__cats li {
	font-size: 12px; color: #2b2b2b;
	border: 1px solid #d8d8d8;
	padding: 4px 10px;
	border-radius: 999px;
}
.meikan-detail__body {
	font-size: 15px; line-height: 1.9;
}
.meikan-detail__body h2 {
	font-size: 18px;
	border-left: 3px solid #2b2b2b;
	padding-left: 10px;
	margin: 32px 0 12px;
}
.meikan-detail__back {
	margin-top: 64px; text-align: center;
}
.meikan-detail__back a {
	color: #2b2b2b; text-decoration: none;
	border-bottom: 1px solid #2b2b2b;
	padding-bottom: 2px;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 960px) {
	.meikan-grid { grid-template-columns: repeat(3, 1fr); }
	.tag-grid { grid-template-columns: repeat(3, 1fr); }
	.about-industries { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
	.meikan-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
	.tag-grid { grid-template-columns: repeat(2, 1fr); }
	.about-industries { grid-template-columns: repeat(2, 1fr); }
	.meikan-detail__header { grid-template-columns: 1fr; }
	.meikan-detail__thumb { max-width: 240px; margin: 0 auto; }
	.site-header__inner { flex-wrap: wrap; }
	.site-header__nav { font-size: 12px; gap: 16px; }
}
@media (max-width: 480px) { .meikan-main { padding: 40px 16px; } }

/* ---------- 編集可能エリアの目印（プレビュー用） ---------- */
[contenteditable="true"] {
	outline: 1px dashed transparent;
	transition: outline-color 0.2s, background 0.2s;
	border-radius: 4px;
	padding: 2px 4px;
}
[contenteditable="true"]:hover {
	outline-color: #d4a418;
	background: #fffbe6;
	cursor: text;
}
[contenteditable="true"]:focus {
	outline: 2px solid #d4a418;
	background: #fffbe6;
}
.edit-note {
	background: #fff8e7;
	border-left: 3px solid #d4a418;
	padding: 12px 18px;
	margin-bottom: 24px;
	font-size: 13px;
	color: #6b5a1a;
	border-radius: 4px;
}
.edit-note b { color: #2b2b2b; }

/* WPでおすすめ記事を選び直すエリア */
.featured-pickbox {
	background: #fff;
	border: 2px dashed #d4a418;
	padding: 16px;
	margin-bottom: 24px;
	border-radius: 8px;
	font-size: 13px;
	color: #6b5a1a;
}
