@charset "UTF-8";
/*
 * Nishiguchi Entertainment - Main Stylesheet
 * ====================================================
 */

/* ============ CSS Variables ============ */
:root {
	--color-bg: #ffffff;
	--color-text: #1a1a1a;
	--color-text-soft: #555;
	--color-text-muted: #888;
	--color-line: #d8d8d8;
	--color-line-soft: #ececec;
	--color-accent: #c8102e;       /* 西口ロゴ寄りの赤 */
	--color-accent-hover: #a30d24;
	--color-link: #2050a0;
	--color-link-hover: #c8102e;
	--color-surface: #fafafa;
	--color-surface-alt: #f3f3f3;

	--font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
	--font-en: "Bebas Neue", "Oswald", "Noto Sans JP", sans-serif;

	--max-width: 1100px;
	--gutter: 24px;

	--radius: 4px;
	--radius-lg: 8px;

	--shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
	--shadow-md: 0 4px 14px rgba(0,0,0,0.10);

	--transition: 200ms ease;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-jp);
	font-size: 15px;
	line-height: 1.8;
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-link-hover); }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; line-height: 1.4; }
ul, ol { padding-left: 1.5em; }
p { margin: 0 0 1em; }

/* スクリーンリーダー用 */
.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}
.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--color-text); color: #fff; padding: 10px 16px; z-index: 9999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ============ Layout ============ */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }
.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

/* ============ Header ============ */
.site-header {
	background: #fff;
	position: relative;
}
.header-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 28px var(--gutter) 18px;
}

.site-branding { flex-shrink: 0; }
.site-title-link {
	display: inline-block;
	color: var(--color-text);
	text-decoration: none;
}
.site-title-link:hover { color: var(--color-text); }
.site-title-jp {
	display: block;
	font-size: 32px;
	font-weight: 900;
	letter-spacing: -0.06em;
	line-height: 1.1;
}
.site-title-en {
	display: block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: var(--color-text-muted);
	margin-top: 6px;
}

.site-contact {
	text-align: right;
	font-size: 13px;
	line-height: 1.7;
}
.site-contact p, .site-contact address {
	margin: 0;
	font-style: normal;
}
.site-contact .contact-label { color: var(--color-text-muted); }
.site-contact .sep { color: var(--color-text-muted); }
.site-tel, .site-mail { font-weight: 600; }
.site-mail a { color: var(--color-text); }
.site-mail a:hover { color: var(--color-accent); }

.menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--color-line);
	padding: 10px;
	cursor: pointer;
	width: 44px;
	height: 44px;
	position: relative;
}
.menu-toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--color-text);
	margin: 4px auto;
	transition: transform var(--transition), opacity var(--transition);
}

/* ============ Navigation ============ */
.header-nav-wrap {
	background: #fff;
}
.main-nav { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.main-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	gap: 0;
	justify-content: space-between;
	align-items: stretch;
}
.main-menu > li {
	flex: 1 1 auto;
	min-width: 0;
}
.main-menu > li > a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	padding: 14px 4px 16px;
	color: var(--color-text);
	font-weight: 500;
	font-size: 14px;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	transition: border-color var(--transition), color var(--transition);
}
.main-menu > li > a:hover,
.main-menu > .current-menu-item > a {
	color: var(--color-accent);
	border-bottom-color: var(--color-accent);
}
.main-menu .jp {
	display: block;
	line-height: 1.3;
}
.main-menu .en {
	display: block;
	font-family: var(--font-en);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: var(--color-text-muted);
	line-height: 1.2;
}

/* ============ Page Header ============ */
.page-header {
	padding: 40px 0 32px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--color-line);
}
.page-title {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 0;
}
.page-title-bilingual {
	display: flex;
	align-items: baseline;
	gap: 16px;
	flex-wrap: wrap;
}
.page-title-bilingual .title-en {
	font-family: var(--font-en);
	font-size: 36px;
	letter-spacing: 0.15em;
	color: var(--color-text);
}
.page-title-bilingual .title-jp {
	font-size: 13px;
	color: var(--color-text-muted);
	font-weight: 400;
}

/* ============ Section Heading ============ */
.section-heading {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-text);
}
.section-heading-en {
	font-family: var(--font-en);
	font-size: 32px;
	letter-spacing: 0.12em;
}
.section-heading-jp {
	font-size: 13px;
	color: var(--color-text-muted);
	font-weight: 400;
}

/* ============ Top Page ============ */
.top-page { padding-bottom: 60px; }

/* 自由編集エリア（カスタマイザーで選択した固定ページの本文を表示） */
.top-freearea {
	padding: 50px 0 20px;
}
.top-freearea-content {
	line-height: 1.9;
}
.top-freearea-content > *:first-child {
	margin-top: 0;
}
.top-freearea-content > *:last-child {
	margin-bottom: 0;
}
.top-freearea-content h1,
.top-freearea-content h2,
.top-freearea-content h3 {
	font-weight: 700;
	margin: 1.8em 0 0.8em;
}
.top-freearea-content h2 {
	font-size: 22px;
}
.top-freearea-content h3 {
	font-size: 18px;
	color: var(--color-accent);
}
.top-freearea-content p {
	margin: 0 0 1em;
}
.top-freearea-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius);
}
.top-freearea-content figure {
	margin: 1em 0;
}
.top-freearea-content a {
	color: var(--color-link);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.top-freearea-content a:hover {
	color: var(--color-link-hover);
}

/* お知らせ（カスタマイザー入力） */
.top-notice {
	padding: 60px 0 40px;
	border-bottom: 1px solid var(--color-line-soft);
}
.top-notice-title {
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 28px;
}
.top-notice-body {
	max-width: 780px;
	margin: 0 auto 28px;
	line-height: 1.9;
}
.top-notice-signature {
	max-width: 780px;
	margin: 0 auto;
	text-align: right;
	font-size: 14px;
	line-height: 1.7;
}

/* TOPICS */
.top-topics { padding: 60px 0 30px; }
.topics-list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--color-line-soft);
}
.topics-item {
	display: flex;
	align-items: baseline;
	gap: 24px;
	padding: 14px 4px;
	border-bottom: 1px solid var(--color-line-soft);
	flex-wrap: wrap;
}
.topics-date {
	font-family: var(--font-en);
	font-size: 16px;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
	flex-shrink: 0;
	min-width: 100px;
}
.topics-link {
	color: var(--color-link);
	text-decoration: underline;
	text-underline-offset: 3px;
	flex: 1;
	min-width: 200px;
}
.topics-link:hover {
	color: var(--color-link-hover);
	text-decoration: none;
}

/* バナーグリッド（トップページ） */
.top-banners { padding: 60px 0; }
.banner-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
	justify-content: center;
}
.banner-item {
	display: block;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--color-surface-alt);
	transition: transform var(--transition), box-shadow var(--transition);
	aspect-ratio: 173 / 100;
	width: 100%;
	max-width: 346px;
	margin: 0 auto;
}
.banner-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}
.banner-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner-no-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--color-text-muted);
	font-weight: 600;
}

/* SNS */
.top-sns { padding: 30px 0 60px; }
.sns-links {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
.sns-link {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: var(--color-text);
	border-radius: 50%;
	transition: background-color var(--transition), transform var(--transition);
}
.sns-link:hover {
	transform: translateY(-2px);
	color: #fff;
}
.sns-link.sns-facebook:hover { background: #1877F2; }
.sns-link.sns-twitter:hover { background: #000; }
.sns-link.sns-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sns-link.sns-youtube:hover { background: #FF0000; }

/* ============ Page Content ============ */
.page-article, .single-article {
	padding-bottom: 60px;
}
.page-content {
	line-height: 2;
}
.page-content h2 {
	font-size: 20px;
	font-weight: 700;
	margin-top: 2.5em;
	margin-bottom: 1em;
	padding-left: 12px;
	border-left: 4px solid var(--color-accent);
}
.page-content h3 {
	font-size: 17px;
	margin-top: 2em;
	margin-bottom: 0.8em;
	color: var(--color-accent);
}
.page-content a { text-decoration: underline; text-underline-offset: 3px; }
.page-content img { margin: 1em 0; border-radius: var(--radius); }

/* ページコンテンツはcontainerの幅に従う（中の幅制限なし） */

/* 単一ページ */
.single-header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--color-line); }
.single-category {
	font-family: var(--font-en);
	font-size: 14px;
	letter-spacing: 0.15em;
	color: var(--color-accent);
	margin-bottom: 8px;
}
.single-title {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 12px;
}
.single-date {
	font-family: var(--font-en);
	font-size: 15px;
	color: var(--color-text-muted);
}
.single-thumb { margin-bottom: 28px; }
.single-content { line-height: 2; max-width: 800px; margin: 0 auto; }
.single-footer { margin-top: 40px; text-align: center; }
.back-link {
	display: inline-block;
	padding: 10px 24px;
	border: 1px solid var(--color-text);
	color: var(--color-text);
	border-radius: var(--radius);
	transition: background var(--transition), color var(--transition);
}
.back-link:hover { background: var(--color-text); color: #fff; }

/* ============ Talent ============ */
.talent-category-section { margin-bottom: 50px; }
.talent-category-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--color-text);
}
.talent-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}
.talent-card {
	text-align: center;
	color: var(--color-text);
	transition: transform var(--transition);
}
.talent-card:hover { color: var(--color-accent); transform: translateY(-3px); }
.talent-card-photo {
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--color-surface-alt);
	border-radius: var(--radius);
	margin-bottom: 8px;
}
.talent-card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.talent-no-photo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 32px;
	font-weight: 700;
	color: var(--color-text-muted);
}
.talent-card-name {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* タレント詳細 */
.talent-single { padding-bottom: 60px; }
.talent-single-inner {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 32px;
	align-items: start;
	margin-bottom: 40px;
}
.talent-photo {
	border-radius: var(--radius);
	overflow: hidden;
	line-height: 0;
}
.talent-photo img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius);
}
.talent-name {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 24px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-text);
	letter-spacing: 0.02em;
}
.talent-profile-list {
	margin: 0;
	display: grid;
	gap: 0;
}
.profile-row {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px dotted var(--color-line);
	margin: 0;
	font-size: 14px;
}
.profile-row:last-child {
	border-bottom: none;
}
.profile-row dt {
	font-weight: 700;
	color: var(--color-text-soft);
	position: relative;
	padding-right: 12px;
}
.profile-row dt::after {
	content: "：";
	position: absolute;
	right: 0;
}
.profile-row dd { margin: 0; }
.talent-description { margin-top: 20px; line-height: 1.9; }

/* ============ Post List ============ */
.post-list {
	display: grid;
	gap: 24px;
	margin-bottom: 40px;
}
.post-card {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 20px;
	padding: 16px;
	border: 1px solid var(--color-line-soft);
	border-radius: var(--radius);
	transition: box-shadow var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-sm); }
.post-card-thumb { display: block; overflow: hidden; border-radius: var(--radius); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.post-card-date {
	font-family: var(--font-en);
	color: var(--color-text-muted);
	font-size: 14px;
}
.post-card-title { font-size: 18px; margin: 4px 0 8px; }
.post-card-title a { color: var(--color-text); }
.post-card-title a:hover { color: var(--color-accent); }
.post-card-excerpt { color: var(--color-text-soft); font-size: 14px; }

.no-results {
	padding: 60px 0;
	text-align: center;
	color: var(--color-text-muted);
}

/* ============ Pagination ============ */
.pagination, .navigation.pagination { margin: 40px 0; text-align: center; }
.pagination .page-numbers, .nav-links .page-numbers {
	display: inline-block;
	min-width: 36px;
	padding: 8px 12px;
	margin: 0 2px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	color: var(--color-text);
	background: #fff;
}
.pagination .page-numbers.current,
.nav-links .page-numbers.current {
	background: var(--color-text);
	color: #fff;
	border-color: var(--color-text);
}
.pagination .page-numbers:hover,
.nav-links .page-numbers:hover {
	background: var(--color-surface-alt);
}

/* ============ Footer ============ */
.site-footer {
	margin-top: 60px;
	background: var(--color-surface);
	border-top: 1px solid var(--color-line);
}
.footer-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 40px var(--gutter) 24px;
}
.footer-sns {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 28px;
}
.footer-nav { margin-bottom: 24px; }
.footer-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0 28px;
}
.footer-nav a {
	color: var(--color-text-soft);
	font-size: 13px;
	position: relative;
	padding: 4px 0;
}
.footer-nav a:hover { color: var(--color-accent); }
.footer-nav li:not(:last-child) a::after {
	content: "";
	position: absolute;
	right: -14px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 12px;
	background: var(--color-line);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--color-line-soft);
	flex-wrap: wrap;
}
.footer-copy {
	font-size: 11px;
	color: var(--color-text-muted);
	line-height: 1.7;
}
.footer-copy p { margin: 0; }
.footer-logo { text-align: right; }
.footer-logo .site-title-jp { font-size: 14px; }
.footer-logo .site-title-en { font-size: 9px; }

/* ============ WordPress Default Classes ============ */
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--color-text-muted); text-align: center; margin-top: 4px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; margin: 1em 0; }
.gallery-item img { width: 100%; height: auto; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
	.main-menu > li > a {
		font-size: 13px;
	}
	.main-menu .en {
		font-size: 9px;
	}
	.site-title-jp { font-size: 28px; }
}

@media (max-width: 900px) {
	.talent-grid { grid-template-columns: repeat(4, 1fr); }
	.main-menu > li > a { font-size: 12px; padding: 12px 2px 14px; }
}

@media (max-width: 768px) {
	body { font-size: 14px; }

	.header-inner {
		padding: 14px var(--gutter);
		align-items: center;
	}

	.site-title-jp { font-size: 22px; letter-spacing: -0.06em; }
	.site-title-en { font-size: 9px; }

	.site-contact {
		display: none;
		width: 100%;
		text-align: left;
		font-size: 12px;
		padding-top: 12px;
		border-top: 1px solid var(--color-line-soft);
	}
	.site-contact.is-open { display: block; }

	.menu-toggle { display: block; }

	.header-nav-wrap {
		display: none;
		border-top: 1px solid var(--color-line-soft);
	}
	.header-nav-wrap.is-open { display: block; }
	.main-menu {
		flex-direction: column;
		flex-wrap: wrap;
		gap: 0;
		padding: 8px 0;
	}
	.main-menu > li { flex: 0 0 auto; }
	.main-menu > li > a {
		flex-direction: row;
		align-items: baseline;
		gap: 8px;
		padding: 12px 0;
		border-bottom: 1px solid var(--color-line-soft);
		white-space: normal;
		font-size: 14px;
	}
	.main-menu > li:last-child > a { border-bottom: none; }
	.main-menu .jp, .main-menu .en { display: inline-block; }

	.menu-toggle.is-active .menu-toggle-bar:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}
	.menu-toggle.is-active .menu-toggle-bar:nth-child(2) { opacity: 0; }
	.menu-toggle.is-active .menu-toggle-bar:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}

	/* ページタイトル */
	.page-title { font-size: 22px; }
	.page-title-bilingual .title-en { font-size: 28px; }

	.section-heading-en { font-size: 24px; }

	/* TOPICS */
	.topics-item { gap: 8px; padding: 12px 0; }
	.topics-date { min-width: auto; width: 100%; font-size: 14px; }
	.topics-link { width: 100%; }

	/* バナーグリッド */
	.banner-grid { grid-template-columns: 1fr; gap: 12px; justify-items: center; }

	/* タレント */
	.talent-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
	.talent-card-name { font-size: 13px; }

	.talent-single-inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.talent-photo { max-width: 240px; }
	.talent-name { font-size: 22px; }

	.profile-row { grid-template-columns: 80px 1fr; gap: 8px; }

	/* 投稿カード */
	.post-card { grid-template-columns: 1fr; }
	.post-card-thumb img { aspect-ratio: 16/9; }

	/* フッター */
	.footer-bottom { flex-direction: column; align-items: center; text-align: center; }
	.footer-logo { text-align: center; }
	.footer-nav ul { gap: 0 16px; }
	.footer-nav li:not(:last-child) a::after { right: -8px; }
}

@media (max-width: 480px) {
	.talent-grid { grid-template-columns: repeat(2, 1fr); }
	.page-title-bilingual { gap: 8px; }
	.page-title-bilingual .title-en { font-size: 22px; }
	.section-heading { flex-direction: column; gap: 4px; align-items: flex-start; }
	.section-heading-en { font-size: 22px; }
}

/* ============ Page Templates ============ */

/* 製作事業部：アーカイブのグリッド表示 */
.page-lead {
	margin: 0 0 32px;
	font-size: 14px;
	color: var(--color-text-soft);
}
.production-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 40px 32px;
	margin-bottom: 40px;
}
.production-archive-item {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 346px;
	margin: 0 auto;
}
.production-archive-image {
	display: block;
	margin: 0 0 14px;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--color-surface-alt);
	aspect-ratio: 173 / 100;
	line-height: 0;
	width: 100%;
	max-width: 346px;
}
.production-archive-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--transition);
}
a.production-archive-image:hover img {
	transform: scale(1.03);
}
.production-archive-image .banner-no-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--color-text-muted);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.5;
	padding: 16px;
	text-align: center;
}
.production-archive-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 10px;
	line-height: 1.5;
}
.production-archive-title a {
	color: var(--color-text);
	transition: color var(--transition);
}
.production-archive-title a:hover {
	color: var(--color-accent);
}
.production-archive-caption {
	font-size: 13px;
	line-height: 1.8;
	color: var(--color-text-soft);
}
.production-archive-caption p {
	margin: 0 0 0.8em;
}
.production-archive-caption p:last-child {
	margin-bottom: 0;
}
.production-archive-caption strong {
	color: var(--color-text);
	font-weight: 700;
}

/* トップページ：もっと見るリンク */
.section-more {
	margin-top: 24px;
	text-align: center;
}
.section-more .more-link {
	display: inline-block;
	padding: 10px 24px;
	color: var(--color-text);
	border: 1px solid var(--color-text);
	border-radius: var(--radius);
	font-size: 13px;
	transition: background var(--transition), color var(--transition);
}
.section-more .more-link:hover {
	background: var(--color-text);
	color: #fff;
}

/* 製作事業部 単一投稿 */
.single-external-link {
	margin: 32px 0;
	text-align: center;
}
.external-link-button {
	display: inline-block;
	padding: 12px 28px;
	background: var(--color-accent);
	color: #fff;
	border-radius: var(--radius);
	font-weight: 500;
	transition: background var(--transition);
}
.external-link-button:hover {
	background: var(--color-accent-hover);
	color: #fff;
}

/* 出演依頼 */
.works-page-content h2 {
	font-size: 18px;
	font-weight: 700;
	margin: 1.5em 0 0.8em;
	padding-left: 12px;
	border-left: 4px solid var(--color-accent);
	border-bottom: none;
}
.works-page-content ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 1.5em;
}
.works-page-content ul li {
	padding: 6px 0;
	padding-left: 1em;
	position: relative;
}
.works-page-content ul li::before {
	content: "・";
	position: absolute;
	left: 0;
	color: var(--color-accent);
}
.contact-info-box {
	margin-top: 40px;
	padding: 28px 32px;
	background: var(--color-surface);
	border: 1px solid var(--color-line-soft);
	border-radius: var(--radius-lg);
}
.contact-info-heading {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text-soft);
	margin: 0 0 20px;
	padding: 0;
	border: none;
}
.contact-info-list {
	margin: 0;
}
.contact-info-row {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px dotted var(--color-line);
	margin: 0;
}
.contact-info-row:last-child {
	border-bottom: none;
}
.contact-info-row dt {
	font-weight: 700;
	color: var(--color-text);
	position: relative;
	padding-left: 14px;
}
.contact-info-row dt::before {
	content: "■";
	position: absolute;
	left: 0;
	color: var(--color-accent);
	font-size: 10px;
	top: 4px;
}
.contact-info-row dd {
	margin: 0;
	font-family: "Bebas Neue", var(--font-jp);
	font-size: 18px;
	letter-spacing: 0.05em;
}
.contact-info-row dd a {
	font-family: var(--font-jp);
	font-size: 15px;
	letter-spacing: normal;
	color: var(--color-link);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* 会社概要 */
.company-page-content {
	margin: 0 auto;
}
.company-info-table {
	width: 100%;
	margin: 20px 0;
	border-collapse: collapse;
}
.company-info-table th,
.company-info-table td {
	padding: 16px 16px;
	text-align: left;
	border-bottom: 1px solid var(--color-line-soft);
	vertical-align: top;
}
.company-info-table th {
	width: 220px;
	background: var(--color-surface);
	font-weight: 700;
	color: var(--color-text-soft);
	font-size: 13px;
}
.company-info-table td {
	font-size: 14px;
	line-height: 1.8;
}
.company-info-table td a {
	color: var(--color-link);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.company-map {
	margin: 0;
}
.company-map iframe {
	width: 100%;
	max-width: 425px;
	height: 350px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
}
.company-map .map-link {
	margin-top: 8px;
	font-size: 12px;
}

/* 当サイトについて */
.site-info-table {
	width: 100%;
	margin: 20px 0;
	border-collapse: collapse;
}
.site-info-table th,
.site-info-table td {
	padding: 20px 16px;
	text-align: left;
	border-bottom: 1px solid var(--color-line-soft);
	vertical-align: top;
}
.site-info-table th {
	width: 220px;
	background: var(--color-surface);
	font-weight: 700;
	color: var(--color-text);
	font-size: 14px;
	line-height: 1.5;
}
.site-info-table th .info-en {
	display: block;
	font-family: var(--font-en);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: var(--color-text-muted);
	margin-top: 2px;
}
.site-info-table td {
	font-size: 13px;
	line-height: 1.9;
	color: var(--color-text-soft);
}
.site-info-table td p {
	margin: 0 0 1em;
}
.site-info-table td p:last-child {
	margin-bottom: 0;
}
.site-info-table td strong {
	color: var(--color-text);
	font-weight: 700;
}
.site-info-table td a {
	color: var(--color-link);
	text-decoration: underline;
	text-underline-offset: 3px;
	word-break: break-all;
}

/* レスポンシブ：ページテンプレート */
@media (max-width: 768px) {
	.production-archive-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		justify-items: center;
	}
	.production-archive-item {
		max-width: 100%;
	}
	.contact-info-box {
		padding: 20px;
	}
	.contact-info-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}
	.company-info-table th,
	.company-info-table td {
		display: block;
		width: 100%;
		padding: 10px 12px;
	}
	.company-info-table th {
		border-bottom: none;
		padding-bottom: 4px;
	}
	.site-info-table th,
	.site-info-table td {
		display: block;
		width: 100%;
		padding: 14px 12px;
	}
	.site-info-table th {
		border-bottom: none;
		padding-bottom: 8px;
	}
	.company-map iframe {
		height: 280px;
	}
}

/* ============ Print ============ */
@media print {
	.site-header, .site-footer, .menu-toggle { display: none; }
	body { font-size: 12pt; color: #000; }
	a { text-decoration: underline; }
}
