
/* ===================================
	 CSS変数・グローバル設定
	 =================================== */
:root {
	/* カラー */
	--color-bg: #050507;
	--color-bg-secondary: #0c0c10;
	--color-text: #ffffff;
	--color-text-muted: #8a8a9a;
	--color-accent: #00aa8e;
	--color-accent-blue: #0099ff;
	--color-glow-white: rgba(255, 255, 255, 0.1);
	--color-glow-accent: rgba(0, 170, 142, 0.18);
	--color-border: rgba(255, 255, 255, 0.08);

	/* フォント */
	--font-en: 'Figtree', 'Helvetica Neue', Arial, sans-serif;
	--font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

	/* z-index */
	--z-header: 100;
	--z-overlay: 200;
	--z-glow: 1;

	/* トランジション */
	--transition-base: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	/* カスタムカーソル */
	--cursor-size: 8rem;
}

/* ===================================
	 ユーティリティ・共通コンポーネント
	 =================================== */
body {
	background-color: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-ja);
	font-size: 1.6rem;
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
}

/* セクション見出し共通 */
.section-heading {
	display: flex;
	align-items: baseline;
	gap: 1.6rem;
	margin-bottom: 4rem;
}

.section-heading__title {
	font-family: var(--font-en);
	font-size: 3.2rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--color-text);
}

@media (min-width: 768px) {
	.section-heading__title {
		font-size: 4rem;
	}
}

.section-heading__line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--color-border), transparent);
}

/* 共通ボタン */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1.4rem 3.2rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 100px;
	font-family: var(--font-en);
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	color: var(--color-text);
	background: transparent;
	transition: background var(--transition-base), color var(--transition-base);
}

@media (any-hover: hover) {
	.btn:hover,
	.btn:focus-visible {
		background: color-mix(in srgb, var(--color-accent) 5%, transparent);
	}
}

/* マウス追従グロー背景 */
.glow-bg {
	position: fixed;
	top: 0;
	left: 0;
	z-index: var(--z-glow);
	width: 100%;
	height: 100%;
	pointer-events: none;
	background: radial-gradient(
		200px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
		var(--color-glow-accent) 0%,
		rgba(0, 170, 142, 0.08) 20%,
		rgba(0, 170, 142, 0.03) 40%,
		rgba(255, 255, 255, 0.01) 60%,
		rgba(255, 255, 255, 0.003) 80%,
		transparent 100%
	);
	opacity: 0;
	transition: opacity 0.8s ease;
}

.glow-bg.is-active {
	opacity: 1;
}

@media (min-width: 768px) {
	.glow-bg {
		background: radial-gradient(
			250px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
			var(--color-glow-accent) 0%,
			rgba(0, 170, 142, 0.08) 20%,
			rgba(0, 170, 142, 0.03) 40%,
			rgba(255, 255, 255, 0.01) 60%,
			rgba(255, 255, 255, 0.003) 80%,
			transparent 100%
		);
	}
}

/* スクロールフェードインアニメーション（ブラー付き） */
.js-fade-in {
	opacity: 0;
	translate: 0 2.4rem;
	filter: blur(8px);
	transition:
		opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
		translate 0.8s cubic-bezier(0.16, 1, 0.3, 1),
		filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform, filter;
}

.js-fade-in.is-visible {
	opacity: 1;
	translate: 0 0;
	filter: blur(0);
}

/* ===================================
	 ヘッダー
	 =================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: var(--z-header);
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.6rem 2rem;
	background: transparent;
	transition: background var(--transition-base), padding var(--transition-base);
}

.header.is-scrolled {
	padding: 1rem 2rem;
	background: color-mix(in srgb, var(--color-bg) 85%, transparent);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
	.header {
		padding: 2.4rem 4rem;
	}

	.header.is-scrolled {
		padding: 1.2rem 4rem;
	}
}

.header__logo {
	position: relative;
	z-index: calc(var(--z-overlay) + 1);
}

.header__logo-link {
	display: block;
}

.header__logo-img {
	height: 3.2rem;
	width: auto;
}

@media (min-width: 768px) {
	.header__logo-img {
		height: 4rem;
	}
}

/* ハンバーガートリガー */
.header__trigger {
	position: relative;
	z-index: calc(var(--z-overlay) + 1);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.8rem;
	height: 4.8rem;
	cursor: pointer;
}

.header__trigger-lines {
	position: relative;
	width: 2.4rem;
	height: 2px;
	background: var(--color-text);
	transition: background var(--transition-base);
}

.header__trigger-lines::before,
.header__trigger-lines::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--color-text);
	transition: translate var(--transition-base), rotate var(--transition-base);
}

.header__trigger-lines::before {
	translate: 0 -6px;
}

.header__trigger-lines::after {
	translate: 0 6px;
}

/* ハンバーガーオープン時 */
.header__trigger.is-open .header__trigger-lines {
	background: transparent;
}

.header__trigger.is-open .header__trigger-lines::before {
	translate: 0 0;
	rotate: 45deg;
}

.header__trigger.is-open .header__trigger-lines::after {
	translate: 0 0;
	rotate: -45deg;
}

/* オーバーレイナビゲーション */
.header__overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: var(--z-overlay);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100dvh;
	background: color-mix(in srgb, var(--color-bg) 95%, transparent);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.header__overlay.is-open {
	opacity: 1;
	visibility: visible;
}

/* ナビリンクのスタガードアニメーション */
.header__overlay .header__nav-list li {
	opacity: 0;
	translate: 0 2rem;
	filter: blur(4px);
	transition:
		opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
		translate 0.5s cubic-bezier(0.16, 1, 0.3, 1),
		filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__overlay.is-open .header__nav-list li {
	opacity: 1;
	translate: 0 0;
	filter: blur(0);
}

/* 各リンクの遅延を設定 */
.header__overlay.is-open .header__nav-list li:nth-child(1) { transition-delay: 0.08s; }
.header__overlay.is-open .header__nav-list li:nth-child(2) { transition-delay: 0.16s; }
.header__overlay.is-open .header__nav-list li:nth-child(3) { transition-delay: 0.24s; }
.header__overlay.is-open .header__nav-list li:nth-child(4) { transition-delay: 0.32s; }
.header__overlay.is-open .header__nav-list li:nth-child(5) { transition-delay: 0.40s; }
.header__overlay.is-open .header__nav-list li:nth-child(6) { transition-delay: 0.48s; }

/* SNSリンクもスタガード */
.header__overlay .header__nav-sns {
	opacity: 0;
	translate: 0 1rem;
	transition: opacity 0.5s ease 0.56s, translate 0.5s ease 0.56s;
}

.header__overlay.is-open .header__nav-sns {
	opacity: 1;
	translate: 0 0;
}

.header__nav-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.2rem;
}

.header__nav-link {
	position: relative;
	font-family: var(--font-en);
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: var(--color-text-muted);
	transition: color var(--transition-base);
}

/* ホバー時のアクセントライン */
.header__nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--color-accent);
	transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (any-hover: hover) {
	.header__nav-link:hover,
	.header__nav-link:focus-visible {
		color: var(--color-accent);
	}

	.header__nav-link:hover::after,
	.header__nav-link:focus-visible::after {
		width: 100%;
	}
}

.header__nav-sns {
	display: flex;
	gap: 2.4rem;
	margin-top: 3.2rem;
	padding-top: 3.2rem;
	border-top: 1px solid var(--color-border);
}

.header__sns-link {
	font-family: var(--font-en);
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
	transition: color var(--transition-base);
}

@media (any-hover: hover) {
	.header__sns-link:hover,
	.header__sns-link:focus-visible {
		color: var(--color-accent);
	}
}

/* ===================================
	 ヒーローセクション
	 =================================== */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100dvh;
	overflow: hidden;
}

.hero__video-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		color-mix(in srgb, var(--color-bg) 30%, transparent) 0%,
		color-mix(in srgb, var(--color-bg) 10%, transparent) 50%,
		var(--color-bg) 100%
	);
}

.hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.hero__logo {
	width: 16rem;
	margin-bottom: 2.4rem;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.9;
}

@media (min-width: 768px) {
	.hero__logo {
		width: 22.4rem;
	}
}

.hero__tagline {
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	color: var(--color-text-muted);
}

@media (min-width: 768px) {
	.hero__tagline {
		font-size: 1.4rem;
	}
}

/* スクロールインジケーター */
.hero__scroll {
	position: absolute;
	bottom: 3.2rem;
	left: 50%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.8rem;
	translate: -50% 0;
}

.hero__scroll-text {
	font-family: var(--font-en);
	font-size: 1rem;
	letter-spacing: 0.2em;
	color: var(--color-text-muted);
	writing-mode: vertical-lr;
}

.hero__scroll-line {
	width: 1px;
	height: 4.8rem;
	background: linear-gradient(180deg, var(--color-accent), transparent);
	animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
	0% {
		opacity: 0;
		scale: 1 0;
		transform-origin: top;
	}
	50% {
		opacity: 1;
		scale: 1 1;
		transform-origin: top;
	}
	51% {
		transform-origin: bottom;
	}
	100% {
		opacity: 0;
		scale: 1 0;
		transform-origin: bottom;
	}
}

/* ===================================
	 LATEST WORKセクション
	 =================================== */
.latest-work {
	position: relative;
	z-index: 2;
	padding-top: 8rem;
	padding-bottom: 8rem;
}

@media (min-width: 768px) {
	.latest-work {
		padding-top: 11.2rem;
		padding-bottom: 11.2rem;
	}
}

.latest-work__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3px;
}

@media (min-width: 768px) {
	.latest-work__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 4px;
	}
}

@media (min-width: 1080px) {
	.latest-work__grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.latest-work__item {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	cursor: none;
}

/* フィーチャー作品（大きく表示） */
@media (min-width: 768px) {
	.latest-work__item--featured {
		grid-column: span 2;
		grid-row: span 2;
	}
}

.latest-work__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: scale var(--transition-slow);
}

.latest-work__info {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	padding: 1.6rem;
	background: linear-gradient(
		180deg,
		transparent 40%,
		color-mix(in srgb, var(--color-bg) 80%, transparent) 100%
	);
	opacity: 0;
	transition: opacity var(--transition-base);
}

/* ホバー時の矢印アイコン */
.latest-work__arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: 5.6rem;
	height: 5.6rem;
	border: 1.5px solid var(--color-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	scale: 0.6;
	transition: opacity 0.4s ease, scale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}

.latest-work__arrow::after {
	content: '';
	width: 1.2rem;
	height: 1.2rem;
	border-right: 1.5px solid var(--color-accent);
	border-top: 1.5px solid var(--color-accent);
	rotate: 45deg;
	translate: -2px 0;
}

@media (any-hover: hover) {
	.latest-work__item:hover .latest-work__thumb,
	.latest-work__item:focus-visible .latest-work__thumb {
		scale: 1.05;
	}

	.latest-work__item:hover .latest-work__info,
	.latest-work__item:focus-visible .latest-work__info {
		opacity: 1;
	}

	.latest-work__item:hover .latest-work__arrow,
	.latest-work__item:focus-visible .latest-work__arrow {
		opacity: 1;
		scale: 1;
	}
}

.latest-work__category {
	font-family: var(--font-en);
	font-size: 1rem;
	letter-spacing: 0.15em;
	color: var(--color-accent);

}

.latest-work__title {
	font-size: 1.2rem;
	font-weight: 400;
	margin-top: 0.4rem;
	color: var(--color-text);
}

@media (min-width: 768px) {
	.latest-work__category {
		font-size: 1.1rem;
	}

	.latest-work__title {
		font-size: 1.3rem;
	}
}

.latest-work__more {
	display: flex;
	justify-content: center;
	margin-top: 4.8rem;
}

/* ===================================
	 NEWSセクション
	 =================================== */
.news {
	position: relative;
	z-index: 2;
	padding-top: 4.8rem;
	padding-bottom: 8rem;
	border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
	.news {
		padding-top: 8rem;
		padding-bottom: 11.2rem;
	}
}

.news__list {
	display: flex;
	flex-direction: column;
}

.news__item {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 2rem 0;
	border-bottom: 1px solid var(--color-border);
	transition: background var(--transition-base);
}

@media (min-width: 768px) {
	.news__item {
		flex-direction: row;
		align-items: center;
		gap: 2.4rem;
		padding: 2rem 1.6rem;
	}
}

@media (any-hover: hover) {
	.news__item:hover,
	.news__item:focus-visible {
		background: color-mix(in srgb, var(--color-accent) 5%, transparent);
	}

	.news__item:hover .news__thumb-img {
		transform: scale(1.08);
	}
}

/* トップページ ニュースサムネイル（ミニマル） */
.news__thumb {
	display: none;
}

@media (min-width: 768px) {
	.news__thumb {
		display: block;
		width: 8rem;
		height: 5.6rem;
		border-radius: 4px;
		overflow: hidden;
		flex-shrink: 0;
	}
}

.news__thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.news__date {
	font-family: var(--font-en);
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
	white-space: nowrap;
}

.news__category {
	display: inline-block;
	padding: 0.2rem 1rem;
	border: 1px solid var(--color-accent);
	border-radius: 2px;
	font-family: var(--font-en);
	font-size: 1rem;
	letter-spacing: 0.1em;
	color: var(--color-accent);
	white-space: nowrap;
  font-weight: 700;
}

.news__title {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.7;
}

@media (min-width: 768px) {
	.news__title {
		font-size: 1.5rem;
	}
}

.news__meta {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.news__more {
	display: flex;
	justify-content: center;
	margin-top: 4.8rem;
}

/* ===================================
	 フッター
	 =================================== */
.footer {
	position: relative;
	z-index: 2;
	padding-top: 4.8rem;
	padding-bottom: 3.2rem;
	border-top: 1px solid var(--color-border);
	background: var(--color-bg-secondary);
}

@media (min-width: 768px) {
	.footer {
		padding-top: 6.4rem;
		padding-bottom: 4rem;
	}
}

.footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.2rem;
}

@media (min-width: 768px) {
	.footer__inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
}

.footer__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (min-width: 768px) {
	.footer__brand {
		align-items: flex-start;
	}
}

.footer__logo {
	height: 5rem;
	width: auto;
	margin-bottom: 1.2rem;
}

.footer__brand-text {
	font-size: 1.2rem;
	color: var(--color-text-muted);
}

.footer__nav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.6rem 3.2rem;
}

@media (min-width: 768px) {
	.footer__nav-list {
		justify-content: flex-end;
	}
}

.footer__nav-link {
	font-family: var(--font-en);
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	color: var(--color-text-muted);
	transition: color var(--transition-base);
}

@media (any-hover: hover) {
	.footer__nav-link:hover,
	.footer__nav-link:focus-visible {
		color: var(--color-accent);
	}
}

.footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.6rem;
	margin-top: 4rem;
	padding-top: 2.4rem;
	border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
	.footer__bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

.footer__sns {
	display: flex;
	gap: 2.4rem;
}

.footer__sns-link {
	font-family: var(--font-en);
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
	transition: color var(--transition-base);
}

@media (any-hover: hover) {
	.footer__sns-link:hover,
	.footer__sns-link:focus-visible {
		color: var(--color-accent);
	}
}

.footer__copy {
	font-family: var(--font-en);
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
}

.footer__privacy-link {
	font-family: var(--font-en);
	font-size: 1.1rem;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
	transition: color var(--transition-base);
}

.footer__privacy-link:hover {
	color: var(--color-accent);
}

/* ===================================
	 下層ページ共通：ページヘッダー
	 =================================== */
.page-header {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 32vh;
	min-height: 24rem;
	padding-top: 8rem;
	background: var(--color-bg-secondary);
	border-bottom: 1px solid var(--color-border);
}

.page-header__title {
	font-family: var(--font-en);
	font-size: 3.6rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--color-text);
	text-align: center;
}

@media (min-width: 768px) {
	.page-header__title {
		font-size: 5.6rem;
	}
}

/* 404エラーページ */
.error-404 {
	text-align: center;
	padding: 8rem 2rem;
}

.error-404__text {
	font-size: 2rem;
	margin-bottom: 4rem;
}

/* グレープレースホルダー共通 */
.placeholder-gray {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1a1a22;
	color: var(--color-text-muted);
	font-family: var(--font-en);
	font-size: 1.2rem;
	letter-spacing: 0.05em;
}

/* ===================================
	 WORKページ
	 =================================== */
.work-intro {
	position: relative;
	z-index: 2;
	padding-top: 4.8rem;
	padding-bottom: 4.8rem;
}

@media (min-width: 768px) {
	.work-intro {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
}

.work-intro__reel {
	aspect-ratio: 16 / 9;
	max-width: 96rem;
	margin-left: auto;
	margin-right: auto;
	border-radius: 4px;
	overflow: hidden;
}

.work-grid {
	position: relative;
	z-index: 2;
	padding-top: 6rem;
	padding-bottom: 8rem;
}

@media (min-width: 768px) {
	.work-grid {
		padding-top: 8rem;
		padding-bottom: 11.2rem;
	}
}

.work-grid__notice {
  margin-top: 3.2rem;
  margin-bottom: 4.8rem;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.work-grid__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3px;
}

@media (min-width: 768px) {
	.work-grid__list {
		grid-template-columns: repeat(4, 1fr);
		gap: 4px;
	}
}

@media (min-width: 1080px) {
	.work-grid__list {
		grid-template-columns: repeat(5, 1fr);
	}
}

.work-grid__item {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	cursor: none;
}

/* フィーチャー作品（大きく表示） */
@media (min-width: 768px) {
	.work-grid__item--featured {
		grid-column: span 2;
		grid-row: span 2;
	}
}

/* ホバー時の矢印アイコン */
.work-grid__arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: 5.6rem;
	height: 5.6rem;
	border: 1.5px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	scale: 0.6;
	transition: opacity 0.4s ease, scale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}

.work-grid__arrow::after {
	content: '';
	width: 1.2rem;
	height: 1.2rem;
	border-right: 1.5px solid rgba(255, 255, 255, 0.9);
	border-top: 1.5px solid rgba(255, 255, 255, 0.9);
	rotate: 45deg;
	translate: -2px 0;
}

.work-grid__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: scale var(--transition-slow);
}

.work-grid__info {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	padding: 1.6rem;
	background: linear-gradient(
		180deg,
		transparent 40%,
		color-mix(in srgb, var(--color-bg) 80%, transparent) 100%
	);
	opacity: 0;
	transition: opacity var(--transition-base);
}

@media (any-hover: hover) {
	.work-grid__item:hover .work-grid__thumb,
	.work-grid__item:focus-visible .work-grid__thumb {
		scale: 1.05;
	}

	.work-grid__item:hover .work-grid__info,
	.work-grid__item:focus-visible .work-grid__info {
		opacity: 1;
	}

	.work-grid__item:hover .work-grid__arrow,
	.work-grid__item:focus-visible .work-grid__arrow {
		opacity: 1;
		scale: 1;
	}
}

.work-grid__category {
	font-family: var(--font-en);
	font-size: 1rem;
	letter-spacing: 0.15em;
	color: var(--color-accent);
}

.work-grid__title {
	font-size: 1.2rem;
	font-weight: 400;
	margin-top: 0.4rem;
	color: var(--color-text);
}

@media (min-width: 768px) {
	.work-grid__category {
		font-size: 1.1rem;
	}

	.work-grid__title {
		font-size: 1.3rem;
	}
}

/* ===================================
	 CULTUREページ
	 =================================== */
.culture-section {
	position: relative;
	z-index: 2;
	padding-top: 4.8rem;
	padding-bottom: 4.8rem;
}

@media (min-width: 768px) {
	.culture-section {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
}

.culture-section + .culture-section {
	border-top: 1px solid var(--color-border);
}

/* #Movie: B3比率（1:1.414 縦長） */
.culture-section__grid--movie {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
}

@media (min-width: 768px) {
	.culture-section__grid--movie {
		grid-template-columns: repeat(3, 1fr);
		gap: 2.4rem;
	}
}

@media (min-width: 1080px) {
	.culture-section__grid--movie {
		grid-template-columns: repeat(4, 1fr);
	}
}

.culture-section__item--movie {
	position: relative;
	aspect-ratio: 1 / 1.414;
	overflow: hidden;
	border-radius: 4px;
	cursor: pointer;
}

.culture-section__item--movie .culture-section__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: scale var(--transition-slow);
}

.culture-section__item--movie .culture-section__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.culture-section__item--movie .culture-section__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	padding: 1.6rem;
	background: linear-gradient(
		180deg,
		transparent 50%,
		color-mix(in srgb, var(--color-bg) 80%, transparent) 100%
	);
	opacity: 0;
	transition: opacity var(--transition-base);
}

@media (any-hover: hover) {
	.culture-section__item--movie:hover .culture-section__thumb {
		scale: 1.05;
	}

	.culture-section__item--movie:hover .culture-section__overlay {
		opacity: 1;
	}
}

/* #Make Culture: 正方形 */
.culture-section__grid--square {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3px;
}

@media (min-width: 768px) {
	.culture-section__grid--square {
		grid-template-columns: repeat(4, 1fr);
		gap: 4px;
	}
}

@media (min-width: 1080px) {
	.culture-section__grid--square {
		grid-template-columns: repeat(5, 1fr);
	}
}

.culture-section__item--square {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	cursor: pointer;
}

.culture-section__item--square .culture-section__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: scale var(--transition-slow);
}

.culture-section__item--square .culture-section__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.culture-section__item--square .culture-section__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	padding: 1.6rem;
	background: linear-gradient(
		180deg,
		transparent 40%,
		color-mix(in srgb, var(--color-bg) 80%, transparent) 100%
	);
	opacity: 0;
	transition: opacity var(--transition-base);
}

@media (any-hover: hover) {
	.culture-section__item--square:hover .culture-section__thumb {
		scale: 1.05;
	}

	.culture-section__item--square:hover .culture-section__overlay {
		opacity: 1;
	}
}

.culture-section__item-title {
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--color-text);
}

.culture-section__item-category {
	font-family: var(--font-en);
	font-size: 1rem;
	letter-spacing: 0.15em;
	color: var(--color-accent);
	margin-bottom: 0.4rem;
}

/* ===================================
	 CREATIVE ASSETページ
	 =================================== */
.asset-section {
	position: relative;
	z-index: 2;
	padding-top: 4.8rem;
	padding-bottom: 4.8rem;
}

@media (min-width: 768px) {
	.asset-section {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
}

.asset-section + .asset-section {
	border-top: 1px solid var(--color-border);
}

/* 正方形グリッド（AE / DaVinci） */
.asset-section__grid--square {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
}

@media (min-width: 768px) {
	.asset-section__grid--square {
		grid-template-columns: repeat(3, 1fr);
		gap: 2.4rem;
	}
}

@media (min-width: 1080px) {
	.asset-section__grid--square {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* 9:16グリッド（SNS Template） */
.asset-section__grid--vertical {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
}

@media (min-width: 768px) {
	.asset-section__grid--vertical {
		grid-template-columns: repeat(4, 1fr);
		gap: 2.4rem;
	}
}

@media (min-width: 1080px) {
	.asset-section__grid--vertical {
		grid-template-columns: repeat(4, 1fr);
	}
}

.asset-item {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	cursor: pointer;
}

.asset-item--square {
	aspect-ratio: 1 / 1;
}

.asset-item--vertical {
	aspect-ratio: 9 / 16;
}

.asset-item__thumb {
	width: 100%;
	height: 100%;
	transition: scale var(--transition-slow);
}

.asset-item__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.asset-item__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	padding: 1.6rem;
	background: linear-gradient(
		180deg,
		transparent 50%,
		color-mix(in srgb, var(--color-bg) 85%, transparent) 100%
	);
	opacity: 0;
	transition: opacity var(--transition-base);
}

@media (any-hover: hover) {
	.asset-item:hover .asset-item__thumb {
		scale: 1.05;
	}

	.asset-item:hover .asset-item__overlay {
		opacity: 1;
	}
}

.asset-item__title {
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--color-text);
}

/* FREEラベル */
.asset-item__free-label {
	position: absolute;
	top: 1.2rem;
	left: 1.2rem;
	z-index: 3;
	padding: 0.3rem 1rem;
	background: var(--color-accent);
	border-radius: 2px;
	font-family: var(--font-en);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--color-bg);
}

/* ===================================
	 ABOUTページ
	 =================================== */
.about-hero {
	position: relative;
	z-index: 2;
	padding-top: 6rem;
	padding-bottom: 6rem;
}

@media (min-width: 768px) {
	.about-hero {
		padding-top: 12rem;
		padding-bottom: 12rem;
	}
}

.about-hero .section-heading {
	max-width: 84rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4rem;
}

.about-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4rem;
	max-width: 84rem;
	margin-left: auto;
	margin-right: auto;
}

.about-hero__logo-wrap {
	flex-shrink: 0;
}

.about-hero__logo {
	width: 10rem;
	height: auto;
}

@media (min-width: 768px) {
	.about-hero__logo {
		width: 20rem;
	}
}

.about-hero__body {
	width: 100%;
}

.about-hero__text {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 2.4;
	color: var(--color-text-muted);
	text-align: left;
}

.about-hero__text + .about-hero__text {
	margin-top: 2.4rem;
}

@media (min-width: 768px) {
	.about-hero__text {
		font-size: 1.6rem;
	}
}

/* Core Value */
.core-value {
	position: relative;
	z-index: 2;
	padding-top: 8rem;
	padding-bottom: 8rem;
}

.core-value__item {
	max-width: 120rem;
	margin-left: auto;
	margin-right: auto;
	padding-top: 4.8rem;
}

.core-value__item + .core-value__item {
	margin-top: 2.4rem;
	border-top: 1px solid var(--color-border);
}

.core-value__title {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 4rem;
	text-align: center;
}

@media (min-width: 768px) {
	.core-value__title {
		font-size: 3.2rem;
	}
}

.core-value__text {
	font-size: 1.4rem;
	line-height: 2.2;
	color: var(--color-text-muted);
	margin-bottom: 3.2rem;
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	.core-value__text {
		font-size: 1.5rem;
	}
}

.core-value__lead {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1.6rem;
	color: var(--color-text);
}

@media (min-width: 768px) {
	.core-value__lead {
		font-size: 1.8rem;
	}
}

.core-value__media-row {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
}

@media (min-width: 768px) {
	.core-value__media-row {
		flex-direction: row;
		gap: 2.4rem;
	}
}

.core-value__media {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: var(--color-bg-secondary, #1a1a1a);
	border-radius: 0.8rem;
	overflow: hidden;
}

.core-value__media img,
.core-value__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 768px) {
	.core-value__media {
		flex: 1;
	}
}

.core-value__images {
	display: flex;
	flex-direction: row;
	gap: 1.6rem;
}

@media (min-width: 768px) {
	.core-value__images {
		flex-direction: column;
		width: 30%;
		flex-shrink: 0;
	}
}

.core-value__image {
	flex: 1;
	aspect-ratio: 16 / 9;
	background: var(--color-bg-secondary, #1a1a1a);
	border-radius: 0.8rem;
	overflow: hidden;
}

.core-value__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* ===================================
   固定ページ本文（エディタ出力）
   =================================== */
.page-content {
	position: relative;
	z-index: 2;
	padding-top: 6rem;
	padding-bottom: 8rem;
}

.page-content__body {
	max-width: 84rem;
	margin-left: auto;
	margin-right: auto;
}

.page-content__body h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-top: 4rem;
	margin-bottom: 1.6rem;
}

.page-content__body h3 {
	font-size: 1.7rem;
	font-weight: 700;
	margin-top: 3.2rem;
	margin-bottom: 1.2rem;
}

.page-content__body p {
	font-size: 1.4rem;
	line-height: 2.2;
	color: var(--color-text-muted);
	margin-bottom: 1.6rem;
}

.page-content__body ol {
	list-style: decimal;
	padding-left: 2.4rem;
	margin-bottom: 1.6rem;
}

.page-content__body ul {
	list-style: disc;
	padding-left: 2.4rem;
	margin-bottom: 1.6rem;
}

.page-content__body li {
	font-size: 1.4rem;
	line-height: 2;
	color: var(--color-text-muted);
	margin-bottom: 0.4rem;
}

.page-content__body a {
	color: var(--color-accent);
	text-decoration: underline;
}

.page-content__body a:hover {
	opacity: 0.7;
}

@media (min-width: 768px) {
	.page-content__body h2 {
		font-size: 2.4rem;
	}

	.page-content__body h3 {
		font-size: 2rem;
	}

	.page-content__body p,
	.page-content__body li {
		font-size: 1.5rem;
	}
}


/* メンバー紹介 */
.about-members {
	position: relative;
	z-index: 2;
	padding-top: 4.8rem;
	padding-bottom: 8rem;
	border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
	.about-members {
		padding-top: 8rem;
		padding-bottom: 11.2rem;
	}
}

.about-members__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4.8rem;
}

@media (min-width: 768px) {
	.about-members__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem;
	}
}

@media (min-width: 1080px) {
	.about-members__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.member-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.member-card__photo {
	width: 16rem;
	height: 16rem;
	margin-bottom: 2rem;
	border-radius: 50%;
	overflow: hidden;
}

.member-card__photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.member-card__role {
	font-family: var(--font-en);
	font-size: 1.1rem;
	letter-spacing: 0.15em;
	color: var(--color-accent);
	margin-bottom: 0.8rem;
}

.member-card__name {
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 0.4rem;
}

.member-card__name-en {
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
	margin-bottom: 1.6rem;
}

.member-card__bio {
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.8;
	color: var(--color-text-muted);
	margin-bottom: 1.6rem;
}

.member-card__sns {
	display: flex;
	gap: 1.6rem;
}

.member-card__sns-link {
	font-family: var(--font-en);
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
	transition: color var(--transition-base);
}

@media (any-hover: hover) {
	.member-card__sns-link:hover,
	.member-card__sns-link:focus-visible {
		color: var(--color-accent);
	}
}

/* 会社概要 */
.company-overview {
	padding-top: 6.4rem;
	padding-bottom: 6.4rem;
	border-top: 1px solid var(--color-border);
	text-align: center;
}

.company-overview .section-heading {
	justify-content: center;
}

.company-overview .section-heading__line {
	display: none;
}

@media (min-width: 768px) {
	.company-overview {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
}

.company-overview__table {
	width: 100%;
	max-width: 72rem;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0;
	padding: 3.2rem;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	text-align: left;
}

.company-overview__table th,
.company-overview__table td {
	padding: 1.6rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 1.4rem;
	line-height: 1.8;
	text-align: left;
	vertical-align: top;
}

.company-overview__table tr:last-child th,
.company-overview__table tr:last-child td {
	border-bottom: none;
}

.company-overview__table th {
	width: 12rem;
	font-family: var(--font-ja);
	font-weight: 500;
	color: var(--color-accent);
	white-space: nowrap;
	padding-right: 2.4rem;
}

.company-overview__table td {
	color: var(--color-text);
}

/* モバイルではthとtdを縦積み */
@media (max-width: 767px) {
	.company-overview__table {
		padding: 2.4rem;
	}

	.company-overview__table th,
	.company-overview__table td {
		display: block;
		width: 100%;
	}

	.company-overview__table th {
		padding-bottom: 0.4rem;
		border-bottom: none;
		font-size: 1.2rem;
	}

	.company-overview__table td {
		padding-top: 0;
	}
}

.company-overview__sns {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 4.8rem;
}

.company-overview__sns-link {
  font-family: var(--font-en);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

@media (any-hover: hover) {
  .company-overview__sns-link:hover,
  .company-overview__sns-link:focus-visible {
    color: var(--color-accent);
  }
}

/* ===================================
	 CONTACTページ
	 =================================== */
.contact {
	position: relative;
	z-index: 2;
	padding-top: 6.4rem;
	padding-bottom: 9.6rem;
}

@media (min-width: 768px) {
	.contact {
		padding-top: 10rem;
		padding-bottom: 14rem;
	}
}

.contact__form {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
}

.contact__field {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.contact__label {
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--color-text-muted);
}

.contact__label-required {
	color: var(--color-accent);
	margin-left: 0.4rem;
}

.contact__input,
.contact__textarea {
	width: 100%;
	padding: 1.4rem 1.6rem;
	background: var(--color-bg-secondary);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	font-size: 1.5rem;
	color: var(--color-text);
	transition: border-color var(--transition-base);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
	color: var(--color-text-muted);
	opacity: 0.5;
}

.contact__input:focus,
.contact__textarea:focus {
	outline: none;
	border-color: var(--color-accent);
}

.contact__textarea {
	min-height: 20rem;
	resize: vertical;
}

.contact__submit {
	align-self: center;
	padding: 1.6rem 6.4rem;
	background: var(--color-text);
	border: none;
	border-radius: 100px;
	font-family: var(--font-en);
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--color-bg);
	cursor: pointer;
	transition: opacity var(--transition-base);
}

@media (any-hover: hover) {
	.contact__submit:hover,
	.contact__submit:focus-visible {
		opacity: 0.85;
	}
}

/* Contact Form 7 スタイル上書き */

/* CF7が出力する<br>を非表示 */
.contact-form br {
	display: none;
}

/* CF7が出力する<p>のマージンをリセット */
.contact-form p {
	margin: 0;
}

/* .contact-form ラッパー */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 3.2rem;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-top: 6.4rem;
	padding-bottom: 9.6rem;
}

@media (min-width: 768px) {
	.contact-form {
		padding-top: 10rem;
		padding-bottom: 14rem;
	}
}

/* 各フィールドグループ */
.contact-form__group {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

/* ラベル */
.contact-form__group label {
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
}

/* 必須マーク */
.contact-form__required {
	color: var(--color-accent);
	font-size: 1.1rem;
	margin-left: 0.4rem;
}

/* 入力フィールド共通 */
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
	width: 100%;
	padding: 1.4rem 1.6rem;
	background: var(--color-bg-secondary);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	font-size: 1.5rem;
	color: var(--color-text);
	font-family: var(--font-ja);
	transition: border-color var(--transition-base);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
	color: var(--color-text-muted);
	opacity: 0.5;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
	outline: none;
	border-color: var(--color-accent);
}

/* セレクトボックス */
.contact-form__select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a9a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.6rem center;
	padding-right: 4rem;
}

/* テキストエリア */
.contact-form__textarea {
	min-height: 20rem;
	resize: vertical;
}

/* 送信ボタンエリア */
.contact-form__submit {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 0.8rem;
}

.contact-form__submit .wpcf7-form-control.wpcf7-submit {
	padding: 1.6rem 6.4rem;
	background: var(--color-text);
	border: none;
	border-radius: 100px;
	font-family: var(--font-en);
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--color-bg);
	cursor: pointer;
	transition: opacity var(--transition-base);
	width: auto;
}

@media (any-hover: hover) {
	.contact-form__submit .wpcf7-form-control.wpcf7-submit:hover,
	.contact-form__submit .wpcf7-form-control.wpcf7-submit:focus-visible {
		opacity: 0.85;
	}
}

/* スピナー */
.contact-form .wpcf7-spinner {
	display: block;
	margin: 1rem auto 0;
}

/* バリデーションメッセージ */
.contact-form .wpcf7-not-valid-tip {
	color: #ff6b6b;
	font-size: 1.2rem;
	margin-top: 0.4rem;
}

/* 送信結果メッセージ */
.wpcf7-response-output {
	border-color: var(--color-accent) !important;
	color: var(--color-text);
	font-size: 1.4rem;
	padding: 1.2rem 1.6rem;
	margin-top: 1.6rem;
}

/* reCAPTCHA v3 バッジ非表示（定型文で代替） */
.grecaptcha-badge {
	visibility: hidden !important;
}

/* reCAPTCHA 定型文 */
.contact__recaptcha-notice {
	margin-top: 2.4rem;
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--color-text-muted);
	text-align: center;
}

.contact__recaptcha-notice a {
	color: var(--color-text);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color var(--transition-base);
}

@media (any-hover: hover) {
	.contact__recaptcha-notice a:hover {
		color: var(--color-accent);
	}
}

/* プライバシー同意チェックボックス */
.contact-form__consent {
	margin-top: 2rem;
	margin-bottom: 2.4rem;
}

.contact-form__consent label {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 1.3rem;
	color: var(--color-text);
	cursor: pointer;
}

.contact-form__consent a {
	color: var(--color-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ===================================
	 NEWSページ（一覧）
	 =================================== */
.news-archive {
	position: relative;
	z-index: 2;
	padding-top: 4.8rem;
	padding-bottom: 8rem;
}

@media (min-width: 768px) {
	.news-archive {
		padding-top: 8rem;
		padding-bottom: 11.2rem;
	}
}

.news-archive__list {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	max-width: 84rem;
	margin-left: auto;
	margin-right: auto;
}

.news-archive__item {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-radius: 8px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--color-border);
	transition: transform var(--transition-base), border-color var(--transition-base);
}

.news-archive__item:first-child {
	border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
	.news-archive__item {
		flex-direction: row;
		align-items: stretch;
		gap: 0;
	}
}

@media (any-hover: hover) {
	.news-archive__item:hover,
	.news-archive__item:focus-visible {
		border-color: var(--color-accent);
		transform: translateY(-2px);
	}

	.news-archive__item:hover .news-archive__thumb-img {
		transform: scale(1.05);
	}
}

/* サムネイル */
.news-archive__thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.news-archive__thumb {
		width: 24rem;
		aspect-ratio: auto;
	}
}

@media (min-width: 1080px) {
	.news-archive__thumb {
		width: 28rem;
	}
}

.news-archive__thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

/* コンテンツ */
.news-archive__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.2rem;
	padding: 2rem;
}

@media (min-width: 768px) {
	.news-archive__content {
		padding: 2.4rem 3.2rem;
	}
}

.news-archive__meta {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	flex-shrink: 0;
}

.news-archive__date {
	font-family: var(--font-en);
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
}

.news-archive__category {
	font-family: var(--font-en);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: var(--color-accent);
	padding: 0.2rem 1rem;
	border: 1px solid var(--color-accent);
	border-radius: 2px;
}

.news-archive__title {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8;
	color: var(--color-text);
}

@media (min-width: 768px) {
	.news-archive__title {
		font-size: 1.5rem;
	}
}

/* ===================================
	 NEWS詳細ページ
	 =================================== */
.news-detail {
	position: relative;
	z-index: 2;
	padding-top: 4.8rem;
	padding-bottom: 8rem;
}

@media (min-width: 768px) {
	.news-detail {
		padding-top: 8rem;
		padding-bottom: 11.2rem;
	}
}

.news-detail__header {
	max-width: 84rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4rem;
	padding-bottom: 3.2rem;
	border-bottom: 1px solid var(--color-border);
}

/* アイキャッチ画像 */
.news-detail__eyecatch {
	max-width: 84rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4rem;
	border-radius: 8px;
	overflow: hidden;
}

.news-detail__eyecatch-img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.news-detail__meta {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-bottom: 2rem;
}

.news-detail__date {
	font-family: var(--font-en);
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
}

.news-detail__category {
	font-family: var(--font-en);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: var(--color-accent);
	padding: 0.2rem 1rem;
	border: 1px solid var(--color-accent);
	border-radius: 2px;
}

.news-detail__title {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.6;
	color: var(--color-text);
}

@media (min-width: 768px) {
	.news-detail__title {
		font-size: 2.8rem;
	}
}

.news-detail__body {
	max-width: 84rem;
	margin-left: auto;
	margin-right: auto;
}

.news-detail__body p {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 2;
	color: var(--color-text-muted);
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.news-detail__body p {
		font-size: 1.5rem;
	}
}

.news-detail__body p:last-child {
	margin-bottom: 0;
}

.news-detail__body ol {
	list-style: decimal;
	padding-left: 2.4rem;
	margin-bottom: 2rem;
}

.news-detail__body ul {
	list-style: disc;
	padding-left: 2.4rem;
	margin-bottom: 2rem;
}

.news-detail__body li {
	font-size: 1.4rem;
	line-height: 2;
	color: var(--color-text-muted);
	margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
	.news-detail__body li {
		font-size: 1.5rem;
	}
}

.news-detail__footer {
	max-width: 84rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 4.8rem;
	padding-top: 3.2rem;
	border-top: 1px solid var(--color-border);
	text-align: center;
}

/* ===================================
	 ページ遷移オーバーレイ
	 =================================== */
.page-transition {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.page-transition.is-leaving {
	opacity: 1;
	pointer-events: all;
}

.page-transition.is-entering {
	opacity: 1;
	pointer-events: none;
}

/* ページ読み込み時のフェードイン */
body {
	animation: page-enter 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes page-enter {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ===================================
	 カスタムカーソル（View）
	 =================================== */
.custom-cursor {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9998;
	width: var(--cursor-size);
	height: var(--cursor-size);
	border-radius: 50%;
	background: color-mix(in srgb, var(--color-accent) 85%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	scale: 0.4;
	translate: calc(var(--cx, 0) * 1px - var(--cursor-size) / 2) calc(var(--cy, 0) * 1px - var(--cursor-size) / 2);
	transition: opacity 0.3s ease, scale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: transform;
	mix-blend-mode: difference;
}

.custom-cursor.is-visible {
	opacity: 1;
	scale: 1;
}

.custom-cursor__text {
	font-family: var(--font-en);
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	color: #fff;
	text-transform: uppercase;
}

/* モバイルではカスタムカーソルを非表示 */
@media (max-width: 767px) {
	.custom-cursor {
		display: none;
	}

	/* モバイルではデフォルトカーソルに戻す */
	.latest-work__item,
	.work-grid__item {
		cursor: pointer;
	}
}

/* ===================================
	 Work詳細ページ
	 =================================== */

/* パンくずリスト */
.wd-breadcrumb {
	position: relative;
	z-index: 2;
	padding-top: 10rem;
}

.wd-breadcrumb__list {
	display: flex;
	align-items: center;
	gap: 0;
	font-family: var(--font-en);
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
}

.wd-breadcrumb__list li {
	display: flex;
	align-items: center;
}

.wd-breadcrumb__list li:not(:last-child)::after {
	content: '/';
	margin: 0 0.8rem;
	color: var(--color-border);
}

.wd-breadcrumb__link {
	color: var(--color-text-muted);
	transition: color var(--transition-base);
}

@media (any-hover: hover) {
	.wd-breadcrumb__link:hover {
		color: var(--color-accent);
	}
}

.wd-breadcrumb__current {
	color: var(--color-text);
}

/* Work詳細ヘッダー */
.wd-header {
	position: relative;
	z-index: 2;
	padding-top: 4rem;
	padding-bottom: 4rem;
}

@media (min-width: 768px) {
	.wd-header {
		padding-top: 6.4rem;
		padding-bottom: 6.4rem;
	}
}

.wd-header__meta {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-bottom: 2rem;
}

.wd-header__category {
	display: inline-block;
	padding: 0.3rem 1.2rem;
	border: 1px solid var(--color-accent);
	border-radius: 2px;
	font-family: var(--font-en);
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--color-accent);
}

.wd-header__date {
	font-family: var(--font-en);
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
}

.wd-header__title {
	font-family: var(--font-en);
	font-size: 2.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.1;
	color: var(--color-text);
}

@media (min-width: 768px) {
	.wd-header__title {
		font-size: 4.4rem;
	}
}

.wd-header__subtitle {
	margin-top: 1.2rem;
	font-family: var(--font-en);
	font-size: 1.4rem;
	font-weight: 300;
	letter-spacing: 0.15em;
	color: var(--color-text-muted);
}

@media (min-width: 768px) {
	.wd-header__subtitle {
		font-size: 1.6rem;
	}
}

/* 外部リンク・SNSリンクエリア */
.wd-header__links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
	margin-top: 2.4rem;
}

@media (min-width: 768px) {
	.wd-header__links {
		flex-direction: row;
		align-items: center;
		gap: 3.2rem;
		margin-top: 3.2rem;
	}
}

/* 外部リンクボタン */
.wd-header__external-link {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 2.4rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 100px;
	font-family: var(--font-en);
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--color-text);
	transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.wd-header__external-icon {
	position: relative;
	width: 1.2rem;
	height: 1.2rem;
}

.wd-header__external-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
}

.wd-header__external-icon::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 141%;
	height: 1.5px;
	background: currentColor;
	transform-origin: bottom left;
	rotate: -45deg;
}

@media (any-hover: hover) {
	.wd-header__external-link:hover {
		background: color-mix(in srgb, var(--color-accent) 8%, transparent);
		border-color: var(--color-accent);
		color: var(--color-accent);
	}
}

/* SNSリンクエリア */
.wd-header__sns {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}

.wd-header__sns-label {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	color: var(--color-accent);
	white-space: nowrap;
	padding-right: 1.2rem;
	border-right: 1px solid var(--color-accent);
}

.wd-header__sns-list {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0;
	padding-bottom: 2px;
}

.wd-header__sns-link {
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	color: var(--color-text);
	padding: 0 1rem;
	transition: color var(--transition-base);
}

.wd-header__sns-link:not(:last-child) {
	border-right: 1px solid var(--color-border);
}

.wd-header__sns-link:first-child {
	padding-left: 0;
}

@media (any-hover: hover) {
	.wd-header__sns-link:hover {
		color: var(--color-accent);
	}
}

/* YouTube埋め込み */
.wd-video {
	position: relative;
	z-index: 2;
	padding-bottom: 6.4rem;
}

.wd-video__wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9アスペクト比 */
	background: var(--color-bg-secondary);
	border-radius: 4px;
	overflow: hidden;
}

.wd-video__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ヒーロー画像（静止画トップビジュアル） */
.wd-hero {
	position: relative;
	z-index: 2;
	padding-bottom: 6.4rem;
}

.wd-hero__wrapper {
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
}

.wd-hero__img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/* スチルギャラリー */
.wd-gallery {
	position: relative;
	z-index: 2;
	padding-top: 4rem;
	padding-bottom: 6.4rem;
	border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
	.wd-gallery {
		padding-top: 6.4rem;
		padding-bottom: 8rem;
	}
}

.wd-gallery__track {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.2rem;
	max-width: 120rem;
	margin: 0 auto;
	padding: 0 2rem;
}

@media (min-width: 768px) {
	.wd-gallery__track {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.6rem;
	}
}

.wd-gallery__slide {
	aspect-ratio: 16 / 9;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.wd-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: scale var(--transition-slow);
}

@media (any-hover: hover) {
	.wd-gallery__slide:hover .wd-gallery__img {
		scale: 1.05;
	}
}

/* 縦長ギャラリー（9:16） */
.wd-gallery--vertical .wd-gallery__track {
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
	.wd-gallery--vertical .wd-gallery__track {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.wd-gallery--vertical .wd-gallery__track {
		grid-template-columns: repeat(4, 1fr);
	}
}

.wd-gallery--vertical .wd-gallery__slide {
	aspect-ratio: 9 / 16;
}

/* クレジットセクション */
.wd-credits {
	position: relative;
	z-index: 2;
	padding-top: 4rem;
	padding-bottom: 8rem;
	border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
	.wd-credits {
		padding-top: 6.4rem;
		padding-bottom: 11.2rem;
	}
}

.wd-credits__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

@media (min-width: 640px) {
	.wd-credits__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.wd-credits__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.wd-credits__group {
	padding: 2.4rem 0;
	border-bottom: 1px solid var(--color-border);
}

@media (min-width: 640px) {
	.wd-credits__group {
		padding: 2.4rem 2rem;
	}
}

.wd-credits__role {
	font-family: var(--font-en);
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--color-accent);
	margin-bottom: 0.8rem;
}

.wd-credits__name {
	font-family: var(--font-en);
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	color: var(--color-text);
	line-height: 1.6;
}

/* 前後ナビゲーション */
.wd-nav {
	position: relative;
	z-index: 2;
	padding-bottom: 6.4rem;
}

.wd-nav__inner {
	display: flex;
	justify-content: center;
}

.wd-nav__back {
	display: inline-flex;
	align-items: center;
	gap: 1.2rem;
	padding: 1.4rem 3.2rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 100px;
	font-family: var(--font-en);
	font-size: 1.4rem;
	letter-spacing: 0.1em;
	color: var(--color-text);
	transition: background var(--transition-base), border-color var(--transition-base);
}

.wd-nav__back-icon {
	position: relative;
	width: 2rem;
	height: 2rem;
}

.wd-nav__back-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.7rem;
	height: 0.7rem;
	border-left: 1.5px solid var(--color-text);
	border-bottom: 1.5px solid var(--color-text);
	translate: -30% -50%;
	rotate: 45deg;
	transition: border-color var(--transition-base);
}

@media (any-hover: hover) {
	.wd-nav__back:hover {
		background: color-mix(in srgb, var(--color-accent) 8%, transparent);
		border-color: var(--color-accent);
	}

	.wd-nav__back:hover .wd-nav__back-icon::before {
		border-color: var(--color-accent);
	}
}

/* ライトボックス */
.wd-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.wd-lightbox.is-active {
	opacity: 1;
	visibility: visible;
}

.wd-lightbox__backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

.wd-lightbox__content {
	position: relative;
	z-index: 2;
	max-width: 90vw;
	max-height: 85vh;
}

.wd-lightbox__img {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 4px;
	scale: 0.9;
	transition: scale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wd-lightbox.is-active .wd-lightbox__img {
	scale: 1;
}

.wd-lightbox__close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	z-index: 3;
	width: 4.8rem;
	height: 4.8rem;
	cursor: pointer;
	background: none;
	border: none;
}

.wd-lightbox__close::before,
.wd-lightbox__close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2.4rem;
	height: 1.5px;
	background: var(--color-text);
	transition: background var(--transition-base);
}

.wd-lightbox__close::before {
	translate: -50% -50%;
	rotate: 45deg;
}

.wd-lightbox__close::after {
	translate: -50% -50%;
	rotate: -45deg;
}

@media (any-hover: hover) {
	.wd-lightbox__close:hover::before,
	.wd-lightbox__close:hover::after {
		background: var(--color-accent);
	}
}

/* ライトボックスの前後ボタン */
.wd-lightbox__prev,
.wd-lightbox__next {
	position: absolute;
	top: 50%;
	z-index: 3;
	translate: 0 -50%;
	width: 4.8rem;
	height: 4.8rem;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	cursor: pointer;
	transition: background var(--transition-base), border-color var(--transition-base);
}

.wd-lightbox__prev {
	left: 2rem;
}

.wd-lightbox__next {
	right: 2rem;
}

.wd-lightbox__prev::after,
.wd-lightbox__next::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1rem;
	height: 1rem;
	border-right: 1.5px solid var(--color-text);
	border-top: 1.5px solid var(--color-text);
}

.wd-lightbox__prev::after {
	translate: -30% -50%;
	rotate: -135deg;
}

.wd-lightbox__next::after {
	translate: -60% -50%;
	rotate: 45deg;
}

@media (any-hover: hover) {
	.wd-lightbox__prev:hover,
	.wd-lightbox__next:hover {
		background: color-mix(in srgb, var(--color-accent) 15%, transparent);
		border-color: var(--color-accent);
	}
}

/* ===================================
	 イベント概要セクション（makeCulture専用）
	 =================================== */
.wd-overview {
	position: relative;
	z-index: 2;
	padding-top: 4rem;
	padding-bottom: 6.4rem;
	border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
	.wd-overview {
		padding-top: 6.4rem;
		padding-bottom: 8rem;
	}
}

.wd-overview__body {
	max-width: 80rem;
}

.wd-overview__lead {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2;
	color: var(--color-text);
	margin-bottom: 4rem;
}

@media (min-width: 768px) {
	.wd-overview__lead {
		font-size: 1.8rem;
	}
}

.wd-overview__details {
	margin-bottom: 4rem;
	padding: 3.2rem;
	background: var(--color-bg-secondary);
	border: 1px solid var(--color-border);
	border-radius: 4px;
}

.wd-overview__dl {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.wd-overview__dl-row {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.6rem 0;
	border-bottom: 1px solid var(--color-border);
}

.wd-overview__dl-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.wd-overview__dl-row:first-child {
	padding-top: 0;
}

@media (min-width: 640px) {
	.wd-overview__dl-row {
		flex-direction: row;
		gap: 2.4rem;
	}
}

.wd-overview__dl-row dt {
	flex: 0 0 10rem;
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--color-accent);
	padding-top: 0.2rem;
}

.wd-overview__dl-row dd {
	font-size: 1.4rem;
	line-height: 1.7;
	color: var(--color-text);
}

.wd-overview__text {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 2;
	color: var(--color-text-muted);
	margin-bottom: 2rem;
}

.wd-overview__text:last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.wd-overview__text {
		font-size: 1.5rem;
	}
}

/* ===================================
	 テンプレート動画 / nizemeサービスリンク
	 =================================== */
.asset-item__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.asset-section__service {
	display: flex;
	justify-content: center;
	padding-top: 4rem;
}

.asset-section__service-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
	text-decoration: none;
	transition: opacity var(--transition-default);
}

.asset-section__service-link:hover {
	opacity: 0.7;
}

.asset-section__service-logo {
	height: 3.2rem;
	width: auto;
}

.asset-section__service-text {
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--color-text-muted);
}
