@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);
}

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 .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: 12%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 8%;
	z-index: 5;
	pointer-events: none;
	box-sizing: border-box;
}

body.film-festival .festival-hero-actions > span {
	position: static !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-display);
	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;
}

/* --- 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;
}
