@charset "UTF-8";

/* ============================================
   映画祭風テーマ — Film Festival Theme
   ============================================ */

:root {
	--ff-bg: #0a0a0a;
	--ff-surface: #141414;
	--ff-surface-2: #1e1e1e;
	--ff-gold: #c9a84c;
	--ff-gold-light: #e8d5a3;
	--ff-gold-dark: #8b6914;
	--ff-cream: #f5f0e6;
	--ff-cream-muted: #b8b0a0;
	--ff-red: #9b1c31;
	--ff-red-hover: #c4243f;
	--ff-font-display: 'Playfair Display', 'Noto Serif JP', serif;
	--ff-font-body: 'Noto Sans JP', sans-serif;
}

/* --- Base --- */
body.film-festival {
	background-color: var(--ff-bg);
	color: var(--ff-cream);
	font-family: var(--ff-font-body);
	font-variant-numeric: lining-nums tabular-nums;
	font-feature-settings: "lnum" 1, "tnum" 1;
}

body.film-festival .content-page {
	background-color: var(--ff-bg);
}

body.film-festival .card {
	background-color: var(--ff-surface);
	border: 1px solid rgba(201, 168, 76, 0.15);
	border-radius: 0;
}

body.film-festival .hero-card {
	border: none;
	background: transparent;
}

/* --- Navbar --- */
body.film-festival #header {
	background-color: rgba(10, 10, 10, 0.95) !important;
	border-bottom: 1px solid rgba(201, 168, 76, 0.3);
	backdrop-filter: blur(8px);
}

body.film-festival #header .nav-link,
body.film-festival #header .text-link_3rd,
body.film-festival #header #eventName {
	color: var(--ff-cream) !important;
	font-family: var(--ff-font-body);
	letter-spacing: 0.05em;
	transition: color 0.3s;
}

body.film-festival #header .nav-link:hover,
body.film-festival #header .text-link_3rd:hover,
body.film-festival #header #eventName:hover {
	color: var(--ff-gold) !important;
}

body.film-festival #header .navbar-toggler-icon {
	filter: invert(1);
}

body.film-festival #header .btn-color_2nd {
	background-color: var(--ff-red);
	border-color: var(--ff-red);
	color: var(--ff-cream);
	font-family: var(--ff-font-body);
	letter-spacing: 0.1em;
}

body.film-festival #header .btn-color_2nd:hover {
	background-color: var(--ff-red-hover);
	border-color: var(--ff-red-hover);
}

body.film-festival #header .btn-outline-color_2nd {
	color: var(--ff-gold);
	border-color: var(--ff-gold);
	background: transparent;
}

body.film-festival #header .btn-outline-color_2nd:hover {
	background-color: var(--ff-gold);
	color: var(--ff-bg);
}


body.film-festival #header #btn0 .btn,
body.film-festival #header #btn1 .btn,
body.film-festival #header #btn2 .btn,
body.film-festival #header #btn3 .btn {
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

@media screen and (max-width: 1199px) {
	body.film-festival #header #btn0 .btn,
	body.film-festival #header #btn1 .btn,
	body.film-festival #header #btn2 .btn,
	body.film-festival #header #btn3 .btn {
		font-size: 0.76rem;
		padding-left: 0.85rem !important;
		padding-right: 0.85rem !important;
	}
}

body.film-festival #header .btn-outline-color_4th {
	color: var(--ff-cream-muted);
	border-color: rgba(201, 168, 76, 0.4);
}

body.film-festival #header .btn-outline-color_4th:hover {
	background-color: rgba(201, 168, 76, 0.15);
	color: var(--ff-gold);
}

/* --- Hero Section --- */
.main-img {
	width: 100%;
	height: 768px;
	position: relative;
	overflow: hidden;
}

.main-img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.7) 0%,
		rgba(0, 0, 0, 0.2) 35%,
		rgba(0, 0, 0, 0.2) 55%,
		rgba(0, 0, 0, 0.85) 100%
	);
	z-index: 2;
}

.no-fileter::before {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.4) 0%,
		rgba(0, 0, 0, 0.1) 40%,
		rgba(0, 0, 0, 0.1) 60%,
		rgba(0, 0, 0, 0.5) 100%
	);
}

.letterbox {
	position: absolute;
	left: 0;
	width: 100%;
	height: 8%;
	background: #000;
	z-index: 3;
	pointer-events: none;
}

.letterbox-top {
	top: 0;
}

.letterbox-bottom {
	bottom: 0;
}

.film-grain {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 4;
	pointer-events: none;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-size: 128px 128px;
}

.main-img .center,
.main-img .hero-title {
	position: absolute;
	text-align: center;
	top: 38%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--ff-cream);
	width: 80%;
	z-index: 5;
	font-family: var(--ff-font-display);
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
	line-height: 1.3;
}

.main-img .bottom-center,
.main-img .hero-subtitle {
	position: absolute;
	text-align: center;
	top: 58%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--ff-gold-light);
	width: 70%;
	z-index: 5;
	font-family: var(--ff-font-body);
	font-size: 1.2rem;
	font-weight: 300;
	letter-spacing: 0.15em;
	line-height: 1.8;
}

.main-img .bottom-left {
	position: absolute;
	top: 85%;
	left: 15%;
	transform: translate(-50%, -50%);
	color: var(--ff-cream);
	z-index: 5;
}

body.film-festival .festival-hero-actions {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10%;
	display: flex !important;
	visibility: visible !important;
	justify-content: space-between;
	align-items: center;
	padding: 0 6%;
	z-index: 20;
	pointer-events: none;
	box-sizing: border-box;
}

body.film-festival .festival-hero-actions > span {
	position: static !important;
	display: inline-flex !important;
	visibility: visible !important;
	pointer-events: auto;
}

.main-img .bottom-right,
#requestBtnBig .entry,
#requestBtnBigLeft .entry {
	position: relative;
	top: auto;
	bottom: auto;
	left: auto;
	right: auto;
	transform: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 0.2rem;
	width: 9rem;
	height: 9rem;
	background: var(--ff-red) !important;
	border: 2px solid var(--ff-gold) !important;
	border-radius: 50% !important;
	box-shadow: 0 0 30px rgba(201, 168, 76, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s, box-shadow 0.3s;
}

#requestBtnBig .entry:hover,
#requestBtnBigLeft .entry:hover {
	transform: scale(1.08);
	box-shadow: 0 0 40px rgba(201, 168, 76, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.3);
}

#requestBtnBig .entry .hero-entry-category,
#requestBtnBigLeft .entry .hero-entry-category {
	display: block;
	font-family: var(--ff-font-body);
	/* Playfair Display は数字が旧体（1が特殊な字形）になるため本文フォントを使う */
	font-variant-numeric: lining-nums tabular-nums;
	font-feature-settings: "lnum" 1, "tnum" 1;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--ff-gold);
	line-height: 1.1;
}

#requestBtnBig .entry h4,
#requestBtnBigLeft .entry h4 {
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--ff-cream);
	margin: 0;
}


/* U-18 などの数字が旧体・装飾体にならないよう統一 */
body.film-festival .festival-nav-banner,
body.film-festival .festival-nav-badge,
body.film-festival .festival-nav-title,
body.film-festival .festival-nav-tagline,
body.film-festival .festival-intro-badge,
body.film-festival .festival-intro-title,
body.film-festival .festival-intro-tagline,
body.film-festival .festival-concept-title,
body.film-festival .festival-concept-text,
body.film-festival .festival-guidelines-body,
body.film-festival .festival-guidelines-heading,
body.film-festival .hero-entry-category {
	font-family: var(--ff-font-body);
	font-variant-numeric: lining-nums tabular-nums;
	font-feature-settings: "lnum" 1, "tnum" 1;
}

/* --- Section Titles --- */
.section-label {
	font-family: var(--ff-font-display);
	font-size: 0.75rem;
	letter-spacing: 0.4em;
	color: var(--ff-gold);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.section-title {
	font-family: var(--ff-font-display);
	font-size: 2rem;
	color: var(--ff-cream);
	letter-spacing: 0.1em;
	font-weight: 600;
}

.section-divider {
	width: 60px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--ff-gold), transparent);
	margin: 1rem auto 0;
}

body.film-festival #lectureDiv h3,
body.film-festival .card.mt-5.py-5 h3,
body.film-festival .card.mb-5.pb-5 h3 {
	font-family: var(--ff-font-display);
	font-size: 2rem;
	color: var(--ff-cream);
	letter-spacing: 0.1em;
	font-weight: 600;
}

body.film-festival #lectureDiv .row.pt-5::before,
body.film-festival .card.mt-5.py-5 > .row > .col-12.text-center::before,
body.film-festival .card.mb-5.pb-5 .row.text-center .col-12.mt-3::before {
	content: attr(data-label);
	display: block;
	font-family: var(--ff-font-display);
	font-size: 0.75rem;
	letter-spacing: 0.4em;
	color: var(--ff-gold);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

body.film-festival #lectureDiv .row.pt-5::before {
	content: "SCREENING";
}

body.film-festival .card.mt-5.py-5 > .row > .col-12.text-center::before {
	content: "FESTIVAL INFO";
}

body.film-festival .card.mb-5.pb-5 .row.text-center .col-12.mt-3::before {
	content: "CONTACT";
}

/* --- Event Detail Content --- */
body.film-festival #eventDetail h5 {
	font-family: var(--ff-font-body);
	font-size: 1rem;
	font-weight: 300;
	color: var(--ff-cream-muted);
	line-height: 2;
	letter-spacing: 0.05em;
}

body.film-festival #eventDetail img {
	border: 1px solid rgba(201, 168, 76, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* --- Video Cards --- */
body.film-festival #noticeVideo .card {
	background: var(--ff-surface-2);
	border: 1px solid rgba(201, 168, 76, 0.12);
	overflow: hidden;
	transition: border-color 0.3s, transform 0.3s;
}

body.film-festival #noticeVideo .card:hover {
	border-color: rgba(201, 168, 76, 0.4);
	transform: translateY(-4px);
}

body.film-festival #noticeVideo .card-body p {
	color: var(--ff-cream-muted);
	font-size: 0.875rem;
	line-height: 1.7;
}

body.film-festival #noticeVideo .embed-responsive {
	border-bottom: 2px solid var(--ff-gold-dark);
}

/* --- Entry Button (inline) --- */
body.film-festival #requestBtn .entry {
	background: transparent !important;
	border: 1px solid var(--ff-gold) !important;
	color: var(--ff-gold) !important;
	font-family: var(--ff-font-body);
	letter-spacing: 0.2em;
	padding: 0.8rem 2.5rem !important;
	transition: all 0.3s;
}

body.film-festival #requestBtn .entry:hover {
	background: var(--ff-gold) !important;
	color: var(--ff-bg) !important;
}

/* --- Lecture Cards --- */
body.film-festival #lectureDiv .card {
	background: var(--ff-surface-2);
	border: 1px solid rgba(201, 168, 76, 0.12);
	overflow: hidden;
	transition: border-color 0.3s, transform 0.3s;
}

body.film-festival #lectureDiv .card:hover {
	border-color: rgba(201, 168, 76, 0.4);
	transform: translateY(-4px);
}

body.film-festival #lectureDiv .card-title {
	color: var(--ff-cream);
	font-family: var(--ff-font-display);
}

body.film-festival #lectureDiv .card-text {
	color: var(--ff-cream-muted);
}

body.film-festival #lectureDiv .text-color_2nd {
	color: var(--ff-gold) !important;
}

body.film-festival #lectureDiv h5 {
	color: var(--ff-gold);
	font-family: var(--ff-font-display);
	letter-spacing: 0.1em;
}

/* --- Event Summary --- */
body.film-festival .card.mt-5.py-5 {
	background: var(--ff-surface);
	border: 1px solid rgba(201, 168, 76, 0.15);
}

body.film-festival .card.mt-5.py-5 h5 {
	color: var(--ff-gold);
	font-size: 0.85rem;
	letter-spacing: 0.1em;
	font-weight: 500;
}

body.film-festival .card.mt-5.py-5 h6,
body.film-festival .card.mt-5.py-5 .eventName,
body.film-festival .card.mt-5.py-5 .venue,
body.film-festival .card.mt-5.py-5 .overview,
body.film-festival .card.mt-5.py-5 .terms,
body.film-festival .card.mt-5.py-5 .companyName {
	color: var(--ff-cream);
	font-weight: 300;
	line-height: 1.8;
}

body.film-festival .card.mt-5.py-5 #eventURL {
	color: var(--ff-gold-light);
}

body.film-festival .item-b-border {
	border-color: rgba(201, 168, 76, 0.15) !important;
}

/* --- Support Section --- */
body.film-festival .card.mb-5.pb-5 {
	background: var(--ff-surface);
	border: 1px solid rgba(201, 168, 76, 0.15);
}

body.film-festival .card.mb-5.pb-5 .organizerName {
	color: var(--ff-cream);
	font-family: var(--ff-font-display);
}

body.film-festival .card.mb-5.pb-5 .text-link_3rd {
	color: var(--ff-gold-light) !important;
}

body.film-festival .card.mb-5.pb-5 .material-symbols-outlined {
	color: var(--ff-gold);
}

/* --- Footer --- */
body.film-festival .footer {
	background-color: #050505;
	border-top: 1px solid rgba(201, 168, 76, 0.2);
	color: var(--ff-cream-muted);
}

body.film-festival .footer a {
	color: var(--ff-cream-muted);
	transition: color 0.3s;
}

body.film-festival .footer a:hover {
	color: var(--ff-gold);
}

body.film-festival .footer .copyright {
	color: rgba(245, 240, 230, 0.4);
	font-size: 0.8rem;
	letter-spacing: 0.05em;
}

/* --- Booth Slider --- */
.booth-card {
	border: 0.5px solid rgba(201, 168, 76, 0.2);
}

body.film-festival .boothList-nav .nav-link {
	color: var(--ff-cream-muted);
}

body.film-festival .boothList-nav .nav-link.active {
	color: var(--ff-gold);
	border-color: var(--ff-gold);
}

/* --- Responsive: Hero --- */
#for-sp {
	display: none;
}

@media screen and (max-width: 1280px) {
	.main-img .center,
	.main-img .hero-title {
		top: 35%;
		width: 90%;
		font-size: 2.4rem;
	}

	.main-img .bottom-center,
	.main-img .hero-subtitle {
		top: 52%;
		width: 80%;
	}

	.main-img .bottom-left {
		left: 25%;
	}

	.main-img .bottom-right,
	#requestBtnBig .entry,
	#requestBtnBigLeft .entry {
		width: 8rem;
		height: 8rem;
	}
}

@media screen and (max-width: 768px) {
	#for-pc {
		display: none;
	}

	#for-sp {
		display: block;
	}

	.letterbox {
		height: 5%;
	}

	.main-img .center,
	.main-img .hero-title {
		top: 40%;
		width: 95%;
		text-align: left;
		font-size: 1.8rem;
	}

	.main-img .bottom-center,
	.main-img .hero-subtitle {
		top: 58%;
		width: 95%;
		text-align: left;
		font-size: 1rem;
	}

	.main-img .bottom-left {
		left: 50%;
		top: 80%;
		width: 95%;
	}

	body.film-festival .festival-hero-actions {
		bottom: 8%;
		padding: 0 5%;
	}

	.main-img .bottom-right,
	#requestBtnBig .entry,
	#requestBtnBigLeft .entry {
		width: 6.5rem;
		height: 6.5rem;
	}

	#requestBtnBig .entry .hero-entry-category,
	#requestBtnBigLeft .entry .hero-entry-category {
		font-size: 0.8rem;
	}

	#requestBtnBig .entry h4 {
		font-size: 0.75rem;
	}

	.section-title {
		font-size: 1.5rem;
	}
}

/* ============================================
   エントリーページ
   ============================================ */

body.film-festival.entry-page .content-page {
	position: relative;
}

body.film-festival.entry-page .entry-hero {
	position: relative;
	width: 100%;
	height: 180px;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 40%, #0a0a0a 100%);
	overflow: hidden;
	margin-bottom: -40px;
}

body.film-festival.entry-page .entry-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

body.film-festival.entry-page .entry-hero .letterbox {
	height: 15%;
}

body.film-festival.entry-page .entry-lead {
	color: var(--ff-cream-muted);
	font-size: 0.95rem;
	letter-spacing: 0.12em;
	font-weight: 300;
}

body.film-festival.entry-page .entry-card {
	background: var(--ff-surface-2);
	border: 1px solid rgba(201, 168, 76, 0.15);
	transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
	height: 100%;
}

body.film-festival.entry-page .entry-card:hover {
	border-color: rgba(201, 168, 76, 0.45);
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

body.film-festival.entry-page .entry-card-accent {
	border-color: rgba(201, 168, 76, 0.3);
	background: linear-gradient(160deg, var(--ff-surface-2) 0%, #1a1408 100%);
}

body.film-festival.entry-page .entry-card-label {
	font-family: var(--ff-font-display);
	font-size: 0.7rem;
	letter-spacing: 0.35em;
	color: var(--ff-gold);
	margin-bottom: 1rem;
	text-transform: uppercase;
}

body.film-festival.entry-page .entry-card-title {
	font-family: var(--ff-font-display);
	color: var(--ff-cream);
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	font-weight: 600;
	margin-bottom: 1rem;
}

body.film-festival.entry-page .entry-card-desc {
	color: var(--ff-cream-muted);
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.8;
	letter-spacing: 0.05em;
	margin-bottom: 0;
}

body.film-festival.entry-page .entry-btn-event {
	background: transparent !important;
	border: 1px solid rgba(201, 168, 76, 0.5) !important;
	color: var(--ff-cream) !important;
	letter-spacing: 0.15em;
	transition: all 0.3s;
	min-width: 260px;
}

body.film-festival.entry-page .entry-btn-event:hover {
	background: rgba(201, 168, 76, 0.15) !important;
	border-color: var(--ff-gold) !important;
	color: var(--ff-gold) !important;
}

body.film-festival.entry-page .entry-btn-ticket {
	background: var(--ff-red) !important;
	border: 1px solid var(--ff-gold) !important;
	color: var(--ff-cream) !important;
	letter-spacing: 0.15em;
	box-shadow: 0 0 24px rgba(155, 28, 49, 0.4);
	transition: all 0.3s;
	min-width: 260px;
}

body.film-festival.entry-page .entry-btn-ticket:hover {
	background: var(--ff-red-hover) !important;
	box-shadow: 0 0 32px rgba(201, 168, 76, 0.3);
	transform: scale(1.03);
}

@media screen and (max-width: 768px) {
	body.film-festival.entry-page .entry-hero {
		height: 120px;
		margin-bottom: -20px;
	}

	body.film-festival.entry-page .entry-btn-event,
	body.film-festival.entry-page .entry-btn-ticket {
		min-width: auto;
		width: 100%;
	}
}

/* ============================================
   全ページ共通スタイル
   ============================================ */

body.film-festival .wrapper {
	background-color: var(--ff-bg);
	/* JS が実測値で上書きするまでのフォールバック（ヘッダーは3行タイトルで高い） */
	padding-top: 120px;
}

@media (max-width: 991px) {
	body.film-festival .wrapper {
		padding-top: 110px !important;
	}
}

body.film-festival h1,
body.film-festival h2,
body.film-festival h3,
body.film-festival h4,
body.film-festival h5,
body.film-festival h6,
body.film-festival .header-title {
	color: var(--ff-cream);
	font-family: var(--ff-font-display);
	letter-spacing: 0.06em;
}

body.film-festival p,
body.film-festival .card-text,
body.film-festival .card-body {
	color: var(--ff-cream-muted);
}

body.film-festival label,
body.film-festival .form-group label {
	color: var(--ff-cream-muted);
	letter-spacing: 0.05em;
}

body.film-festival .form-control,
body.film-festival .custom-select,
body.film-festival select.form-control,
body.film-festival textarea.form-control {
	background-color: var(--ff-surface-2);
	border: 1px solid rgba(201, 168, 76, 0.25);
	color: var(--ff-cream);
	border-radius: 0;
}

body.film-festival .form-control:focus,
body.film-festival .custom-select:focus {
	background-color: var(--ff-surface-2);
	border-color: var(--ff-gold);
	color: var(--ff-cream);
	box-shadow: 0 0 0 0.15rem rgba(201, 168, 76, 0.2);
}

body.film-festival .form-control::placeholder {
	color: rgba(184, 176, 160, 0.5);
}

body.film-festival a:not(.btn) {
	color: var(--ff-gold-light);
}

body.film-festival a:not(.btn):hover {
	color: var(--ff-gold);
}

body.film-festival .text-link_3rd {
	color: var(--ff-gold-light) !important;
}

body.film-festival .text-color_2nd {
	color: var(--ff-gold) !important;
}

body.film-festival .btn-color {
	background: transparent !important;
	border: 1px solid var(--ff-gold) !important;
	color: var(--ff-gold) !important;
	letter-spacing: 0.1em;
}

body.film-festival .btn-color:hover {
	background: var(--ff-gold) !important;
	color: var(--ff-bg) !important;
}

body.film-festival .btn-color_2nd {
	background: var(--ff-red) !important;
	border: 1px solid var(--ff-gold) !important;
	color: var(--ff-cream) !important;
	letter-spacing: 0.1em;
}

body.film-festival .btn-color_2nd:hover {
	background: var(--ff-red-hover) !important;
	color: var(--ff-cream) !important;
}

body.film-festival .btn-color_3rd,
body.film-festival .btn-color_4th {
	background: transparent !important;
	border: 1px solid rgba(201, 168, 76, 0.4) !important;
	color: var(--ff-cream) !important;
	letter-spacing: 0.1em;
}

body.film-festival .btn-color_3rd:hover,
body.film-festival .btn-color_4th:hover {
	background: rgba(201, 168, 76, 0.15) !important;
	border-color: var(--ff-gold) !important;
	color: var(--ff-gold) !important;
}

body.film-festival .btn-outline-color,
body.film-festival .btn-outline-color_2nd,
body.film-festival .btn-outline-color_4th {
	border-color: rgba(201, 168, 76, 0.4) !important;
	color: var(--ff-cream-muted) !important;
	background: transparent !important;
}

body.film-festival .btn-outline-color:hover,
body.film-festival .btn-outline-color_2nd:hover,
body.film-festival .btn-outline-color_4th:hover {
	background: rgba(201, 168, 76, 0.15) !important;
	color: var(--ff-gold) !important;
	border-color: var(--ff-gold) !important;
}

body.film-festival .table {
	color: var(--ff-cream);
}

body.film-festival .table th {
	color: var(--ff-gold);
	border-color: rgba(201, 168, 76, 0.2);
	font-weight: 500;
	letter-spacing: 0.08em;
}

body.film-festival .table td {
	border-color: rgba(201, 168, 76, 0.12);
}

body.film-festival .table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(255, 255, 255, 0.02);
}

body.film-festival .modal-content {
	background: var(--ff-surface);
	border: 1px solid rgba(201, 168, 76, 0.2);
	color: var(--ff-cream);
	border-radius: 0;
}

body.film-festival .modal-header {
	border-bottom-color: rgba(201, 168, 76, 0.15);
}

body.film-festival .modal-footer {
	border-top-color: rgba(201, 168, 76, 0.15);
}

body.film-festival .close {
	color: var(--ff-cream);
	text-shadow: none;
	opacity: 0.7;
}

body.film-festival .nav-tabs {
	border-bottom-color: rgba(201, 168, 76, 0.2);
}

body.film-festival .nav-tabs .nav-link {
	color: var(--ff-cream-muted);
	border-color: transparent;
}

body.film-festival .nav-tabs .nav-link.active {
	color: var(--ff-gold);
	background: transparent;
	border-color: rgba(201, 168, 76, 0.2) rgba(201, 168, 76, 0.2) var(--ff-bg);
}

body.film-festival .nav-pills .nav-link {
	color: var(--ff-cream-muted);
}

body.film-festival .nav-pills .nav-link.active {
	background-color: var(--ff-gold) !important;
	color: var(--ff-bg) !important;
}

body.film-festival .badge-danger {
	background-color: var(--ff-red);
}

body.film-festival .alert {
	border-radius: 0;
	border-color: rgba(201, 168, 76, 0.2);
}

body.film-festival .loader-bg {
	background: var(--ff-bg);
}

body.film-festival .item-b-border {
	border-color: rgba(201, 168, 76, 0.15) !important;
}

body.film-festival .page-title,
body.film-festival .breadcrumb {
	color: var(--ff-cream-muted);
}

body.film-festival .breadcrumb-item.active {
	color: var(--ff-gold);
}

body.film-festival .card-header {
	background: var(--ff-surface-2);
	border-bottom: 1px solid rgba(201, 168, 76, 0.15);
	color: var(--ff-cream);
}

body.film-festival .list-group-item {
	background: var(--ff-surface-2);
	border-color: rgba(201, 168, 76, 0.12);
	color: var(--ff-cream-muted);
}

body.film-festival .material-symbols-outlined {
	color: var(--ff-gold);
}

/* content-topbar（ルートページ） */
body.film-festival .navbar.fixed-top {
	background-color: rgba(10, 10, 10, 0.95) !important;
	border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

body.film-festival .navbar.fixed-top .nav-link {
	color: var(--ff-cream) !important;
}

body.film-festival .navbar.fixed-top .nav-link:hover {
	color: var(--ff-gold) !important;
}

body.film-festival .navbar.fixed-top .navbar-toggler-icon {
	filter: invert(1);
}

body.film-festival .navbar.fixed-top .navbar-brand img {
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

/* 映画祭タイトル画像 */
body.film-festival .hero-title-img {
	object-fit: contain;
	padding: 1.5rem 2rem;
	background-color: #fff;
}


body.film-festival #header .container-fluid {
	flex-wrap: wrap;
	align-items: center;
}

/* ナビ左端バナー（映画祭タイトル） */
body.film-festival .navbar-brand.festival-nav-brand {
	padding: 0;
	margin-right: 0.75rem;
}

body.film-festival .festival-nav-banner {
	display: inline-block;
	background: transparent;
	padding: 0;
	line-height: 1.3;
	max-width: 468px;
}

body.film-festival #eventName {
	display: none !important;
}

body.film-festival .festival-nav-badge,
body.film-festival .festival-nav-title,
body.film-festival .festival-nav-tagline {
	display: block;
	margin: 0;
}

body.film-festival .festival-nav-badge {
	font-size: 0.975rem;
	letter-spacing: 0.03em;
	color: var(--ff-gold);
}

body.film-festival .festival-nav-title {
	font-size: 1.17rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--ff-cream);
}

body.film-festival .festival-nav-tagline {
	font-size: 0.936rem;
	letter-spacing: 0.04em;
	color: var(--ff-cream);
}

@media screen and (max-width: 991px) {
	body.film-festival .festival-nav-banner {
		max-width: 351px;
	}

	body.film-festival .festival-nav-badge {
		font-size: 0.878rem;
	}

	body.film-festival .festival-nav-title {
		font-size: 1.014rem;
	}

	body.film-festival .festival-nav-tagline {
		font-size: 0.819rem;
	}
}

/* 名古屋 Screen JAM ヒーロー（メイン画像） */
body.film-festival .main-img.festival-hero,
body.film-festival .festival-hero {
	display: block;
	position: relative;
	width: 100%;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	overflow: visible !important;
	padding: 0;
	background: #000;
	line-height: 0;
}

body.film-festival .festival-hero::before,
body.film-festival .festival-hero.no-fileter::before {
	display: none !important;
	content: none !important;
}

body.film-festival .festival-hero-img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: center center;
	vertical-align: top;
}

body.film-festival .hero-card,
body.film-festival .hero-card .card-body {
	background: #000 !important;
	overflow: visible !important;
}


/* 開催概要（募集要項） */
body.film-festival .festival-guidelines .section-label {
	margin-bottom: 0.5rem;
}

body.film-festival .festival-guidelines-list {
	list-style: none;
	counter-reset: guideline;
	margin: 0;
	padding: 0;
}

body.film-festival .festival-guidelines-item {
	counter-increment: guideline;
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: 0.75rem 1.25rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

body.film-festival .festival-guidelines-item:last-child {
	border-bottom: none;
}

body.film-festival .festival-guidelines-heading {
	grid-column: 2;
	grid-row: 1;
	position: relative;
	font-family: var(--ff-font-body);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--ff-gold);
	margin: 0;
}

body.film-festival .festival-guidelines-heading::before {
	content: counter(guideline);
	position: absolute;
	left: -4.25rem;
	top: 0;
	width: 2.5rem;
	text-align: right;
	font-family: var(--ff-font-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--ff-gold);
	font-variant-numeric: lining-nums;
}

body.film-festival .festival-guidelines-body {
	grid-column: 2;
	grid-row: 2;
}

body.film-festival .festival-guidelines-body p {
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 300;
	line-height: 1.9;
	letter-spacing: 0.04em;
	color: var(--ff-cream);
	margin: 0 0 0.75rem;
}

body.film-festival .festival-guidelines-body p:last-child {
	margin-bottom: 0;
}


body.film-festival .festival-guidelines-mark {
	display: inline-block;
	font-size: 0.62em;
	line-height: 1;
	vertical-align: 0.2em;
	margin-right: 0.25em;
	color: var(--ff-gold);
}

body.film-festival .festival-guidelines-note {
	color: var(--ff-cream-muted) !important;
	font-size: 0.85rem !important;
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-guidelines-item {
		grid-template-columns: 2.25rem 1fr;
		gap: 0.5rem 0.85rem;
		padding: 1.15rem 0;
	}

	body.film-festival .festival-guidelines-heading::before {
		left: -3.1rem;
		width: 2rem;
		font-size: 1.15rem;
	}

	body.film-festival .festival-guidelines-body p {
		font-size: 0.88rem;
		line-height: 1.8;
	}
}


/* 協賛関係・掲載 */
body.film-festival .festival-sponsors .section-label {
	margin-bottom: 0.5rem;
}

body.film-festival .festival-sponsors-lead {
	font-family: var(--ff-font-body);
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: 0.06em;
	color: var(--ff-cream-muted);
	text-align: center;
	margin: 0 0 1.25rem;
}

body.film-festival .festival-sponsor-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

body.film-festival .festival-sponsor-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 10rem;
	min-height: 5rem;
	padding: 0.85rem 1.25rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-radius: 8px;
}

body.film-festival .festival-sponsor-logo-item img {
	display: block;
	max-width: 10rem;
	max-height: 3.5rem;
	width: auto;
	height: auto;
	object-fit: contain;
}

body.film-festival .festival-sponsor-logo-item--placeholder span {
	font-family: var(--ff-font-body);
	font-size: 0.88rem;
	letter-spacing: 0.08em;
	color: var(--ff-cream-muted);
}

body.film-festival .festival-media-list {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

body.film-festival .festival-media-list li {
	font-family: var(--ff-font-body);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	color: var(--ff-cream);
	line-height: 1.9;
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-sponsor-logo-item {
		min-width: 8.5rem;
		min-height: 4.25rem;
	}

	body.film-festival .festival-media-list li {
		font-size: 0.92rem;
	}
}



/* お問い合わせ */
body.film-festival .festival-contact .section-label {
	margin-bottom: 0.5rem;
}

body.film-festival .festival-contact-org {
	font-family: var(--ff-font-body);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--ff-cream);
	margin: 0 0 0.75rem;
}

body.film-festival .festival-contact-place {
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 300;
	letter-spacing: 0.06em;
	color: var(--ff-cream-muted);
	margin: 0;
}

/* 旧サポート見出しの疑似要素を映画祭お問い合わせでは出さない */


/* お問い合わせフォーム */
body.film-festival.contact-page .contact-page-lead {
	font-family: var(--ff-font-body);
	font-size: clamp(0.72rem, 1vw + 0.62rem, 0.95rem);
	line-height: 1.85;
	color: var(--ff-cream-muted);
	max-width: none;
	margin-left: auto;
	margin-right: auto;
	white-space: nowrap;
}

body.film-festival.contact-page .contact-page-org {
	text-align: center;
	padding: 1.25rem 1.5rem;
	background: rgba(201, 168, 76, 0.06);
	border: 1px solid rgba(201, 168, 76, 0.2);
	border-radius: 8px;
}

body.film-festival.contact-page .contact-page-org .festival-contact-org,
body.film-festival.contact-page .contact-page-org .festival-contact-place {
	margin-bottom: 0;
}

body.film-festival.contact-page .contact-page-org .festival-contact-org {
	margin-bottom: 0.5rem;
}

body.film-festival.contact-page .contact-char-count {
	font-size: 0.8rem;
	color: var(--ff-cream-muted);
	margin: 0.5rem 0 0;
	text-align: right;
}

body.film-festival.contact-page .contact-back-link a {
	color: var(--ff-gold-light) !important;
	font-size: 0.9rem;
	letter-spacing: 0.06em;
	text-decoration: none;
}

body.film-festival.contact-page .contact-back-link a:hover {
	color: var(--ff-gold) !important;
}

body.film-festival .festival-contact-action .btn {
	letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
	body.film-festival.contact-page .contact-page-lead {
		padding: 0 0.25rem;
	}
}

body.film-festival .festival-contact .row.text-center .col-12.mt-3::before {
	content: none !important;
	display: none !important;
}


/* 主催・後援 */

body.film-festival .festival-organizers {
	margin-top: 2.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(201, 168, 76, 0.25);
}

body.film-festival .festival-organizers-row {
	display: grid;
	grid-template-columns: 4.5rem 1fr;
	gap: 0.75rem 1rem;
	margin-bottom: 1.25rem;
}

body.film-festival .festival-organizers-row:last-child {
	margin-bottom: 0;
}

body.film-festival .festival-organizers-label {
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--ff-gold);
}

body.film-festival .festival-organizers-body p {
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 300;
	line-height: 1.8;
	letter-spacing: 0.04em;
	color: var(--ff-cream);
	margin: 0 0 0.35rem;
}

body.film-festival .festival-organizers-body p:last-child {
	margin-bottom: 0;
}

body.film-festival .festival-organizers.festival-organizers--standalone {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

body.film-festival .festival-organizers-block {
	max-width: 920px;
	margin: 1.5rem auto 2rem;
	padding: 0 1rem;
}

body.film-festival .festival-organizers-top {
	margin-top: 0 !important;
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
	background: transparent !important;
	border: none !important;
}

body.film-festival .festival-organizers-top > .row::before,
body.film-festival .festival-organizers-top > .row > .col-12::before {
	content: none !important;
	display: none !important;
}


@media screen and (max-width: 768px) {
	body.film-festival .festival-organizers-row {
		grid-template-columns: 3.5rem 1fr;
		gap: 0.4rem 0.75rem;
	}

	body.film-festival .festival-organizers-label,
	body.film-festival .festival-organizers-body p {
		font-size: 0.88rem;
	}
}


/* 開催概要内の作品応募ボタン（横長） */

body.film-festival .festival-guidelines-category-text {
	margin: 1.15rem 0 0;
	text-align: center;
	font-family: var(--ff-font-body);
	font-size: 0.92rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	color: var(--ff-cream-muted);
}

body.film-festival .festival-guidelines-entry {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin: 2.5rem 0 0;
	padding: 0.5rem 0 0.25rem;
}

body.film-festival .festival-guidelines-entry-btn {
	position: relative !important;
	top: auto !important;
	bottom: auto !important;
	left: auto !important;
	right: auto !important;
	transform: none !important;
	display: inline-flex !important;
	flex-direction: row !important;
	align-items: center;
	justify-content: center;
	column-gap: 0.75rem;
	row-gap: 0;
	width: auto !important;
	min-width: 16rem;
	height: auto !important;
	padding: 0.95rem 2.25rem !important;
	background: var(--ff-red) !important;
	border: 2px solid var(--ff-gold) !important;
	border-radius: 999px !important;
	box-shadow: 0 0 24px rgba(201, 168, 76, 0.25), inset 0 0 12px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

body.film-festival .festival-guidelines-entry-btn:hover {
	transform: translateY(-2px) scale(1.02) !important;
	box-shadow: 0 0 32px rgba(201, 168, 76, 0.4), inset 0 0 12px rgba(0, 0, 0, 0.2);
}

body.film-festival .festival-guidelines-entry-btn .hero-entry-category {
	display: inline;
	font-family: var(--ff-font-body);
	font-variant-numeric: lining-nums tabular-nums;
	font-feature-settings: "lnum" 1, "tnum" 1;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--ff-gold);
	line-height: 1.2;
}

body.film-festival .festival-guidelines-entry-btn h4 {
	display: inline;
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--ff-cream);
	margin: 0;
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-guidelines-entry {
		flex-direction: column;
		gap: 0.85rem;
		margin-top: 2rem;
	}

	body.film-festival .festival-guidelines-entry-btn {
		width: 100% !important;
		min-width: 0;
		padding: 0.85rem 1.5rem !important;
	}

	body.film-festival .festival-guidelines-entry-btn .hero-entry-category,
	body.film-festival .festival-guidelines-entry-btn h4 {
		font-size: 0.85rem;
	}
}


/* 作品応募フォーム */
body.film-festival.entry-page .entry-submit-form {
	padding-bottom: 3rem;
}

body.film-festival.entry-page .entry-form-section {
	background: var(--ff-surface);
	border: 1px solid rgba(201, 168, 76, 0.2);
	padding: 2rem 1.75rem;
}

body.film-festival.entry-page .entry-form-section-title {
	font-family: var(--ff-font-body);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--ff-gold);
	margin: 0 0 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

body.film-festival.entry-page .entry-field label {
	font-size: 0.9rem;
	letter-spacing: 0.06em;
	color: var(--ff-cream);
	margin-bottom: 0.4rem;
}

body.film-festival.entry-page .entry-required {
	display: inline-block;
	margin-left: 0.4rem;
	padding: 0.1rem 0.4rem;
	font-size: 0.7rem;
	color: var(--ff-cream);
	background: var(--ff-red);
	border-radius: 2px;
	letter-spacing: 0.08em;
}

body.film-festival.entry-page .entry-field .form-control {
	background: #111;
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-radius: 0;
	color: var(--ff-cream);
	min-height: 2.75rem;
}

body.film-festival.entry-page .entry-field .form-control:focus {
	background: #151515;
	border-color: var(--ff-gold);
	color: var(--ff-cream);
	box-shadow: 0 0 0 0.15rem rgba(201, 168, 76, 0.2);
}

body.film-festival.entry-page .entry-field textarea.form-control {
	min-height: 7rem;
}

body.film-festival.entry-page .entry-fee-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--ff-cream);
	margin: 0;
}

body.film-festival.entry-page .entry-fee-hint {
	font-size: 0.82rem;
	line-height: 1.6;
	color: var(--ff-cream-muted);
	margin: 0.5rem 0 0;
}

body.film-festival.entry-page .entry-fee-block .form-check-input {
	margin-top: 0.2rem;
}

body.film-festival.entry-page .entry-field .form-check-label {
	color: var(--ff-cream-muted);
}

body.film-festival.entry-page .entry-upload-hint {
	font-size: 0.85rem;
	line-height: 1.7;
	color: var(--ff-cream-muted);
	margin-bottom: 1rem;
}

body.film-festival.entry-page .entry-dropzone {
	border: 2px dashed rgba(201, 168, 76, 0.45);
	background: rgba(0, 0, 0, 0.35);
	padding: 2.5rem 1.5rem;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

body.film-festival.entry-page .entry-dropzone:hover,
body.film-festival.entry-page .entry-dropzone.is-dragover {
	border-color: var(--ff-gold);
	background: rgba(201, 168, 76, 0.08);
	box-shadow: inset 0 0 40px rgba(201, 168, 76, 0.08);
}

body.film-festival.entry-page .entry-dropzone.has-file {
	border-style: solid;
	border-color: var(--ff-gold);
}

body.film-festival.entry-page .entry-dropzone-title {
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--ff-cream);
	margin-bottom: 0.5rem;
}

body.film-festival.entry-page .entry-dropzone-or {
	color: var(--ff-cream-muted);
	margin-bottom: 1rem;
}

body.film-festival.entry-page .entry-file-select-btn {
	background: transparent;
	border: 1px solid var(--ff-gold);
	color: var(--ff-gold);
	padding: 0.65rem 1.75rem;
	letter-spacing: 0.12em;
}

body.film-festival.entry-page .entry-file-select-btn:hover {
	background: var(--ff-gold);
	color: #0a0a0a;
}

body.film-festival.entry-page .entry-dropzone-filename {
	margin: 1.25rem 0 0;
	font-size: 0.9rem;
	color: var(--ff-gold-light);
	word-break: break-all;
}

body.film-festival.entry-page .entry-form-error {
	color: #ff8a8a;
	font-size: 0.85rem;
	margin-top: 0.75rem;
}

body.film-festival.entry-page .entry-submit-btn {
	background: var(--ff-red);
	border: 2px solid var(--ff-gold);
	color: var(--ff-cream);
	font-family: var(--ff-font-body);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	min-width: 14rem;
}

body.film-festival.entry-page .entry-submit-btn:hover,
body.film-festival.entry-page .entry-submit-btn:disabled {
	background: #8a1f28;
	color: var(--ff-cream);
}

body.film-festival.entry-page .entry-form-message.is-success {
	color: var(--ff-gold-light);
}

body.film-festival.entry-page .entry-form-message.is-error {
	color: #ff8a8a;
}

@media screen and (max-width: 768px) {
	body.film-festival.entry-page .entry-form-section {
		padding: 1.5rem 1rem;
	}
}


/* 生年月日カレンダー */
body.film-festival.entry-page .flatpickr-calendar {
	background: #151515;
	border: 1px solid rgba(201, 168, 76, 0.35);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

body.film-festival.entry-page .flatpickr-months,
body.film-festival.entry-page .flatpickr-weekdays,
body.film-festival.entry-page .flatpickr-days {
	background: #151515;
}

body.film-festival.entry-page .flatpickr-months .flatpickr-month,
body.film-festival.entry-page .flatpickr-current-month .flatpickr-monthDropdown-months,
body.film-festival.entry-page .flatpickr-current-month input.cur-year,
body.film-festival.entry-page span.flatpickr-weekday,
body.film-festival.entry-page .flatpickr-day {
	color: var(--ff-cream);
	fill: var(--ff-cream);
}

body.film-festival.entry-page .flatpickr-day:hover,
body.film-festival.entry-page .flatpickr-day:focus {
	background: rgba(201, 168, 76, 0.2);
	border-color: rgba(201, 168, 76, 0.2);
	color: var(--ff-cream);
}

body.film-festival.entry-page .flatpickr-day.selected,
body.film-festival.entry-page .flatpickr-day.selected:hover {
	background: var(--ff-red);
	border-color: var(--ff-gold);
	color: var(--ff-cream);
}

body.film-festival.entry-page .flatpickr-day.today {
	border-color: var(--ff-gold);
}

body.film-festival.entry-page .flatpickr-day.flatpickr-disabled,
body.film-festival.entry-page .flatpickr-day.flatpickr-disabled:hover {
	color: rgba(245, 240, 230, 0.25);
}

body.film-festival.entry-page .flatpickr-months .flatpickr-prev-month,
body.film-festival.entry-page .flatpickr-months .flatpickr-next-month {
	fill: var(--ff-gold);
	color: var(--ff-gold);
}

body.film-festival.entry-page input.flatpickr-input[readonly],
body.film-festival.entry-page .flatpickr-input.form-control[readonly] {
	background: #111;
	cursor: pointer;
}


/* 生年月日ダイヤル（年・月・日） */
body.film-festival.entry-page .entry-birth-dials {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem 0.5rem;
}

body.film-festival.entry-page .entry-birth-dials .form-control {
	width: auto;
	min-width: 5.5rem;
	flex: 0 0 auto;
	appearance: auto;
	-webkit-appearance: menulist;
}

body.film-festival.entry-page .entry-birth-dials #birthYear {
	min-width: 6.5rem;
}

body.film-festival.entry-page .entry-birth-unit {
	font-size: 0.9rem;
	color: var(--ff-cream-muted);
	margin-right: 0.35rem;
}

@media screen and (max-width: 768px) {
	body.film-festival.entry-page .entry-birth-dials .form-control {
		min-width: 4.75rem;
		flex: 1 1 auto;
	}

	body.film-festival.entry-page .entry-birth-dials #birthYear {
		min-width: 5.5rem;
	}
}


/* LP待ち（ティザー） */
body.film-festival.festival-lp-wait .festival-lp-wait-message {
	padding: 2.5rem 1.5rem 1rem;
}

body.film-festival.festival-lp-wait .festival-lp-wait-text {
	font-family: var(--ff-font-display);
	font-size: 1.05rem;
	letter-spacing: 0.18em;
	color: var(--ff-cream-muted);
	margin: 0.75rem 0 0;
}

body.film-festival.festival-lp-wait #nav2,
body.film-festival.festival-lp-wait #nav3,
body.film-festival.festival-lp-wait #btn2 {
	display: none !important;
}


/* 開催概要内リンク */
body.film-festival .festival-guidelines-link {
	color: var(--ff-gold);
	text-decoration: underline;
	text-underline-offset: 0.2em;
	transition: color 0.2s;
}
body.film-festival .festival-guidelines-link:hover {
	color: var(--ff-gold-light);
}

/* 生成AI詳細規定ページ */

/* 規定ページ見出し：U-18 の数字が旧体にならないよう本文フォントを使う */
body.film-festival.regulations-page .section-title {
	font-family: var(--ff-font-body);
	font-variant-numeric: lining-nums tabular-nums;
	font-feature-settings: "lnum" 1, "tnum" 1;
}

body.film-festival.regulations-page .festival-regulations {
	color: var(--ff-cream);
	line-height: 1.9;
}
body.film-festival.regulations-page .festival-regulations-section {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
body.film-festival.regulations-page .festival-regulations-heading {
	font-family: var(--ff-font-body);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ff-gold);
	letter-spacing: 0.08em;
	margin-bottom: 0.85rem;
}
body.film-festival.regulations-page .festival-regulations p,
body.film-festival.regulations-page .festival-regulations li {
	font-size: 0.98rem;
	color: var(--ff-cream-muted);
}
body.film-festival.regulations-page .festival-regulations ul {
	padding-left: 1.25rem;
	margin-bottom: 0;
}
body.film-festival.regulations-page .festival-regulations li {
	margin-bottom: 0.45rem;
}
body.film-festival.regulations-page .festival-regulations-note {
	margin-top: 1.5rem;
	font-size: 0.85rem;
	color: var(--ff-cream-muted);
	opacity: 0.85;
}
body.film-festival.regulations-page .festival-regulations-back {
	color: var(--ff-cream) !important;
}

body.film-festival.regulations-page .festival-regulations-actions {
	margin-top: 3rem;
	margin-bottom: 0;
	padding-bottom: 3.5rem;
}

body.film-festival.regulations-page .festival-ai-regulations {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 1rem;
}

body.film-festival.regulations-page .festival-ai-regulations-lead,
body.film-festival.regulations-page .festival-ai-regulations-title,
body.film-festival.regulations-page .festival-ai-regulations-body p {
	word-break: keep-all;
	line-break: strict;
	overflow-wrap: normal;
	text-wrap: pretty;
}

body.film-festival.regulations-page .festival-ai-regulations-phrase {
	display: inline-block;
	max-width: 100%;
}

body.film-festival.regulations-page .festival-ai-regulations-lead {
	font-family: var(--ff-font-body);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.85;
	letter-spacing: normal;
	color: var(--ff-cream);
	text-align: center;
	margin: 0 0 2rem;
	padding: 1rem 1.25rem;
	background: rgba(201, 168, 76, 0.08);
	border: 1px solid rgba(201, 168, 76, 0.22);
	border-radius: 8px;
}

body.film-festival.regulations-page .festival-ai-regulations-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

body.film-festival.regulations-page .festival-ai-regulations-item {
	display: grid;
	grid-template-columns: 2.75rem 1fr;
	gap: 0.85rem 1rem;
	align-items: start;
	padding: 1.15rem 1.25rem;
	background: var(--ff-surface);
	border: 1px solid rgba(201, 168, 76, 0.2);
	border-radius: 8px;
}

body.film-festival.regulations-page .festival-ai-regulations-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: rgba(201, 168, 76, 0.15);
	border: 1px solid rgba(201, 168, 76, 0.35);
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ff-gold);
	font-variant-numeric: lining-nums;
}

body.film-festival.regulations-page .festival-ai-regulations-body {
	min-width: 0;
}

body.film-festival.regulations-page .festival-ai-regulations-title {
	font-family: var(--ff-font-body);
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: normal;
	color: var(--ff-gold);
	margin: 0 0 0.45rem;
}

body.film-festival.regulations-page .festival-ai-regulations-body p {
	font-family: var(--ff-font-body);
	font-size: 0.92rem;
	font-weight: 300;
	line-height: 1.85;
	letter-spacing: normal;
	color: var(--ff-cream-muted);
	margin: 0;
}

@media screen and (max-width: 768px) {
	body.film-festival.regulations-page .festival-ai-regulations-lead {
		font-size: 0.92rem;
		margin-bottom: 1.5rem;
		padding: 0.9rem 1rem;
	}

	body.film-festival.regulations-page .festival-ai-regulations-item {
		grid-template-columns: 2.35rem 1fr;
		gap: 0.65rem 0.85rem;
		padding: 1rem;
	}

	body.film-festival.regulations-page .festival-ai-regulations-num {
		width: 2rem;
		height: 2rem;
		font-size: 0.85rem;
	}

	body.film-festival.regulations-page .festival-ai-regulations-title {
		font-size: 0.9rem;
	}

	body.film-festival.regulations-page .festival-ai-regulations-body p {
		font-size: 0.86rem;
		line-height: 1.75;
	}
}

/* 応募カテゴリーページ */
body.film-festival.regulations-page .festival-category-page {
	margin-top: 0.5rem;
	padding-bottom: 1rem;
}

body.film-festival.regulations-page .festival-category-departments {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 2rem;
	margin: 0 0 3rem;
	padding: 0 0.5rem;
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 700;
	font-variant-numeric: lining-nums tabular-nums;
	font-feature-settings: "lnum" 1, "tnum" 1;
	color: var(--ff-cream);
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: center;
}

body.film-festival.regulations-page .festival-category-cards {
	margin: 0 -0.5rem;
}

body.film-festival.regulations-page .festival-category-card {
	position: relative;
	height: 100%;
	margin-top: 1.25rem;
	padding: 2.5rem 1.75rem 1.75rem;
	background: var(--ff-surface);
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-radius: 0 0 12px 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

body.film-festival.regulations-page .festival-category-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--ff-gold);
	border-radius: 2px 2px 0 0;
}

body.film-festival.regulations-page .festival-category-num {
	position: absolute;
	top: -1.1rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 50%;
	background: var(--ff-gold);
	color: #0a0a0a;
	font-family: var(--ff-font-body);
	font-size: 1.05rem;
	font-weight: 700;
	font-variant-numeric: lining-nums tabular-nums;
	font-feature-settings: "lnum" 1, "tnum" 1;
	line-height: 1;
	z-index: 1;
}

body.film-festival.regulations-page .festival-category-card-title {
	margin: 0.5rem 0 0.75rem;
	font-family: var(--ff-font-body);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--ff-cream);
	text-align: center;
	letter-spacing: 0.06em;
}

body.film-festival.regulations-page .festival-category-card-lead {
	margin-bottom: 1rem;
	font-family: var(--ff-font-body);
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--ff-gold);
	text-align: center;
	line-height: 1.6;
}

body.film-festival.regulations-page .festival-category-card-body {
	margin: 0;
	font-family: var(--ff-font-body);
	font-size: 0.92rem;
	color: var(--ff-cream-muted);
	line-height: 1.95;
	text-align: left;
}

@media screen and (max-width: 767px) {
	body.film-festival.regulations-page .festival-category-departments {
		flex-direction: column;
		gap: 0.5rem;
		margin-bottom: 2.25rem;
		font-size: 0.88rem;
	}

	body.film-festival.regulations-page .festival-category-card {
		margin-bottom: 1.5rem;
		padding: 2.25rem 1.25rem 1.5rem;
	}
}

body.film-festival.regulations-page .festival-category-special-section {
	margin-top: 4rem;
	padding-top: 0.5rem;
}

body.film-festival.regulations-page .festival-category-special-label {
	margin: 0 0 1.25rem 0.5rem;
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ff-cream);
	letter-spacing: 0.04em;
}

body.film-festival.regulations-page .festival-category-card--special {
	background: rgba(90, 74, 138, 0.22);
	border-color: rgba(140, 120, 190, 0.45);
}

body.film-festival.regulations-page .festival-category-card--special::before {
	background: #6b5b95;
}

body.film-festival.regulations-page .festival-category-badge {
	position: absolute;
	top: -1rem;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	padding: 0.35rem 1.1rem;
	border-radius: 999px;
	background: #5a4a8a;
	color: #fff;
	font-family: var(--ff-font-body);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2;
	white-space: nowrap;
	z-index: 1;
}

body.film-festival.regulations-page .festival-category-card--special .festival-category-card-title {
	margin-top: 0.75rem;
	font-size: 1.05rem;
}

body.film-festival.regulations-page .festival-category-card--special .festival-category-card-body {
	text-align: center;
}

@media screen and (max-width: 767px) {
	body.film-festival.regulations-page .festival-category-special-section {
		margin-top: 3rem;
	}
}

/* COMING SOON ヒーロー上の応募ボタン（下部に重ねる） */
body.film-festival .festival-hero--coming-soon .festival-hero-actions {
	bottom: 4%;
	padding: 0 10%;
	z-index: 25;
}

body.film-festival .festival-hero--coming-soon .festival-hero-img {
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-hero--coming-soon .festival-hero-actions {
		bottom: 3%;
		padding: 0 6%;
	}
}

/* ヘッダー ZOPS ロゴ */
body.film-festival #header .festival-nav-zops {
	padding: 0.25rem 0.5rem;
	display: inline-flex;
	align-items: center;
}

body.film-festival #header .festival-nav-zops-logo {
	display: block;
	height: 2rem;
	width: auto;
	max-width: 120px;
	object-fit: contain;
}

body.film-festival .footer .festival-footer-logo-wrap {
	text-align: center;
}

body.film-festival .footer .festival-footer-zops-logo {
	display: inline-block;
	height: 2.6rem;
	width: auto;
	max-width: 156px;
	object-fit: contain;
	vertical-align: middle;
}

@media screen and (max-width: 768px) {
	body.film-festival #header .festival-nav-zops-logo {
		height: 1.65rem;
		max-width: 100px;
	}
}

/* 開催概要上のタイトル */
body.film-festival .festival-intro {
	margin: 3rem auto 1.5rem;
	padding: 0 1rem;
	max-width: 900px;
}

body.film-festival .festival-intro-badge,
body.film-festival .festival-intro-title,
body.film-festival .festival-intro-tagline {
	display: block;
	margin: 0;
	text-align: center;
}

body.film-festival .festival-intro-badge {
	font-family: var(--ff-font-body);
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--ff-gold);
	margin-bottom: 0.65rem;
}

body.film-festival .festival-intro-title {
	font-family: var(--ff-font-body);
	font-size: clamp(1.5rem, 4vw, 2.1rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.45;
	color: var(--ff-cream);
	margin-bottom: 0.55rem;
}

body.film-festival .festival-intro-tagline {
	font-family: var(--ff-font-body);
	font-size: 1rem;
	letter-spacing: 0.1em;
	color: var(--ff-cream-muted);
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-intro {
		margin-top: 2rem;
		margin-bottom: 1rem;
	}

	body.film-festival .festival-intro-badge {
		font-size: 0.9rem;
	}

	body.film-festival .festival-intro-tagline {
		font-size: 0.88rem;
	}
}

/* コンセプト（タイトル下） */
body.film-festival .festival-concept {
	max-width: 920px;
	margin: 0 auto 2.5rem;
	padding: 0 1rem;
}

body.film-festival .festival-concept-heading {
	font-family: var(--ff-font-body);
	font-size: clamp(1.15rem, 3vw, 1.45rem);
	font-weight: 700;
	color: var(--ff-cream);
	letter-spacing: 0.06em;
	margin: 0 0 1.5rem;
	text-align: left;
}

body.film-festival .festival-concept-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

body.film-festival .festival-concept-item {
	background: var(--ff-surface);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-radius: 8px;
	padding: 1.35rem 1.5rem 1.4rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

body.film-festival .festival-concept-item-head {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 0.75rem;
}

body.film-festival .festival-concept-icon {
	font-size: 1.35rem;
	line-height: 1;
	flex-shrink: 0;
}

body.film-festival .festival-concept-title {
	margin: 0;
	font-family: var(--ff-font-body);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ff-gold);
	letter-spacing: 0.04em;
}


body.film-festival .festival-concept-guidelines-link {
	font-family: var(--ff-font-body);
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.04em;
	color: var(--ff-cream);
	margin: 1.25rem 0 0;
	text-align: left;
}

body.film-festival .festival-concept-guidelines-link .festival-guidelines-link {
	font-weight: 500;
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-concept-guidelines-link {
		font-size: 1rem;
		margin-top: 1rem;
	}
}

body.film-festival .festival-concept-text {
	margin: 0;
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	line-height: 1.95;
	color: var(--ff-cream-muted);
	text-align: left;
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-concept {
		margin-bottom: 2rem;
	}

	body.film-festival .festival-concept-item {
		padding: 1.1rem 1.15rem 1.2rem;
	}

	body.film-festival .festival-concept-title {
		font-size: 0.98rem;
	}

	body.film-festival .festival-concept-text {
		font-size: 0.9rem;
	}
}

/* コンセプト下の応募ボタン */
body.film-festival .festival-intro-entry.festival-guidelines-entry {
	margin-top: 1rem;
}

body.film-festival .festival-intro-entry {
	max-width: 920px;
	margin: 0 auto 0;
	padding: 0 1rem 1rem;
}


body.film-festival .festival-intro-entry + .festival-guidelines-category-text {
	max-width: 920px;
	margin: 0.5rem auto 0;
	padding: 0 1rem 2.75rem;
	border-bottom: 1px solid rgba(201, 168, 76, 0.28);
	font-size: 1.05rem;
	color: var(--ff-cream);
}

body.film-festival .festival-intro-entry + .festival-guidelines-category-text .festival-guidelines-link {
	font-size: inherit;
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-intro-entry + .festival-guidelines-category-text {
		font-size: 0.98rem;
		padding-bottom: 2.25rem;
	}
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-intro-entry {
		padding-bottom: 2.25rem;
	}
}

/* ワークショップ */
body.film-festival .festival-workshop {
	max-width: 920px;
	margin: 3rem auto 2.5rem;
	padding: 1.5rem 1.5rem 1.75rem;
	background: var(--ff-surface);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-radius: 8px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

body.film-festival .festival-workshop-label {
	font-family: var(--ff-font-body);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--ff-gold);
	margin: 0 0 0.5rem;
	text-align: left;
}

body.film-festival .festival-workshop-title {
	font-family: var(--ff-font-body);
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--ff-cream);
	margin: 0 0 0.35rem;
	text-align: left;
}

body.film-festival .festival-workshop-subtitle {
	font-family: var(--ff-font-body);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--ff-cream-muted);
	margin: 0 0 1rem;
	text-align: left;
}

body.film-festival .festival-workshop-lead p {
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 2;
	letter-spacing: normal;
	color: var(--ff-cream-muted);
	margin: 0;
	text-align: left;
	word-break: normal;
	overflow-wrap: anywhere;
}

body.film-festival .festival-workshop-heading {
	font-family: var(--ff-font-body);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--ff-gold);
	margin: 1.5rem 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(201, 168, 76, 0.2);
	text-align: left;
}

body.film-festival .festival-workshop-details {
	margin: 0;
}

body.film-festival .festival-workshop-detail {
	display: grid;
	grid-template-columns: 8.5rem 1fr;
	gap: 0.5rem 1rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

body.film-festival .festival-workshop-detail:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

body.film-festival .festival-workshop-detail dt {
	font-family: var(--ff-font-body);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--ff-gold);
	margin: 0;
}

body.film-festival .festival-workshop-detail dd {
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 300;
	line-height: 1.8;
	letter-spacing: 0.04em;
	color: var(--ff-cream);
	margin: 0;
	font-variant-numeric: lining-nums tabular-nums;
	font-feature-settings: "lnum" 1, "tnum" 1;
}

body.film-festival .festival-workshop-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

body.film-festival .festival-workshop-list li {
	position: relative;
	padding-left: 0.9rem;
	margin-bottom: 0.35rem;
}

body.film-festival .festival-workshop-list li::before {
	content: "・";
	position: absolute;
	left: 0;
	color: var(--ff-gold);
}

body.film-festival .festival-workshop-list li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-workshop {
		margin: 2.25rem 1rem 2rem;
		padding: 1.25rem 1.15rem 1.4rem;
	}

	body.film-festival .festival-workshop-detail {
		grid-template-columns: 1fr;
		gap: 0.35rem;
	}

	body.film-festival .festival-workshop-detail dd,
	body.film-festival .festival-workshop-lead p {
		font-size: 0.88rem;
	}
}
body.film-festival .festival-workshop-entry {
	max-width: 920px;
	margin: 1.25rem auto 1.25rem;
	padding: 0 1rem;
	text-align: center;
}

body.film-festival .festival-workshop-entry-btn {
	min-width: 20rem;
}

body.film-festival .festival-workshop-entry-btn h4 {
	letter-spacing: 0.12em;
}

body.film-festival .festival-workshop-entry-note {
	color: var(--ff-cream-muted);
	font-size: 0.95rem;
	font-weight: 300;
	letter-spacing: 0.08em;
	margin: 0.85rem 0 0;
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-workshop-entry-btn {
		width: 100%;
		min-width: 0;
	}
}

/* TOP：主催・後援 */
body.film-festival .festival-organizers-section {
	max-width: 880px;
	margin: 3rem auto 3.5rem;
	padding: 2rem 1.25rem 0;
	border-top: 1px solid rgba(201, 168, 76, 0.22);
	text-align: center;
}

body.film-festival .festival-organizers-section-label {
	font-family: var(--ff-font-display);
	font-size: 0.68rem;
	letter-spacing: 0.38em;
	color: var(--ff-gold);
	margin: 0 0 1.5rem;
	text-transform: uppercase;
}

body.film-festival .festival-organizers-section-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem 3rem;
	text-align: left;
}

body.film-festival .festival-organizers-section-col {
	min-width: 0;
}

body.film-festival .festival-organizers-section-heading {
	font-family: var(--ff-font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--ff-gold);
	margin: 0 0 0.65rem;
	padding-bottom: 0.45rem;
	border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

body.film-festival .festival-organizers-section-col p {
	font-family: var(--ff-font-body);
	font-size: 0.88rem;
	font-weight: 300;
	line-height: 1.75;
	letter-spacing: normal;
	color: var(--ff-cream-muted);
	margin: 0 0 0.35rem;
}

body.film-festival .festival-organizers-section-col p:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-organizers-section {
		margin: 2.25rem auto 2.75rem;
		padding-top: 1.75rem;
	}

	body.film-festival .festival-organizers-section-grid {
		grid-template-columns: 1fr;
		gap: 1.35rem;
	}

	body.film-festival .festival-organizers-section-col p {
		font-size: 0.84rem;
		line-height: 1.7;
	}
}



body.film-festival .festival-organizers-section-card {
	background: var(--ff-surface);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-radius: 8px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	padding: 2rem 1.75rem 1.75rem;
}

body.film-festival .festival-organizers-section-header {
	text-align: center;
	margin-bottom: 1.75rem;
}

body.film-festival .festival-organizers-section-header .section-label {
	margin-bottom: 0.5rem;
}

body.film-festival .festival-organizers-section-header .section-title {
	margin-bottom: 0;
}

body.film-festival .festival-organizers-section-list {
	margin: 0;
}

body.film-festival .festival-organizers-section-item {
	display: grid;
	grid-template-columns: 5.5rem 1fr;
	gap: 0.75rem 1.25rem;
	padding: 1.15rem 0;
	border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

body.film-festival .festival-organizers-section-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

body.film-festival .festival-organizers-section-item:first-child {
	padding-top: 0;
}

body.film-festival .festival-organizers-section-item dt {
	font-family: var(--ff-font-body);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--ff-gold);
	margin: 0;
	padding-top: 0.15rem;
}

body.film-festival .festival-organizers-section-item dd {
	margin: 0;
}

body.film-festival .festival-organizers-section-item dd p {
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.85;
	letter-spacing: normal;
	color: var(--ff-cream);
	margin: 0 0 0.4rem;
}

body.film-festival .festival-organizers-section-item dd p:last-child {
	margin-bottom: 0;
}

body.film-festival .festival-organizers-section-names {
	list-style: none;
	margin: 0;
	padding: 0;
}

body.film-festival .festival-organizers-section-names li {
	font-family: var(--ff-font-body);
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.85;
	color: var(--ff-cream);
	margin: 0 0 0.35rem;
}

body.film-festival .festival-organizers-section-names li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	body.film-festival .festival-organizers-section {
		margin: 2rem auto 2.5rem;
	}

	body.film-festival .festival-organizers-section-card {
		padding: 1.5rem 1.15rem 1.35rem;
	}

	body.film-festival .festival-organizers-section-item {
		grid-template-columns: 1fr;
		gap: 0.4rem;
		padding: 1rem 0;
	}

	body.film-festival .festival-organizers-section-item dd p,
	body.film-festival .festival-organizers-section-names li {
		font-size: 0.88rem;
		line-height: 1.75;
	}
}


