@charset "UTF-8";
/**
 * =========================
 *    features/index.html 専用
 *    ※2カラムの骨格(.layout/.main/.side)は触らない
 * =========================
 *
 * @format
 */
.page-features .featuresHero {
  margin: 28px 0 18px;
}

.page-features .featuresHero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
}

/* 年ブロック */
.page-features .featuresYear {
  margin: 26px 0 38px;
}

.page-features .featuresYear__title {
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 900;
  margin: 0 0 16px;
}

/* カードグリッド：PCは2列、狭いと1列 */
.page-features .featureGrid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* カード */
.page-features .featureCard {
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.featureCard__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.featureCard__badge {
  display: inline-block;
  margin-bottom: 8px;
  width: fit-content; /* ← 中身サイズにする */
  max-width: 100%; /* 念のため保険 */
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  color: #fff;
  background: #c0392b; /* 上映中（赤） */
}

/* 上映中 */
.featureCard[data-status=now] .featureCard__badge {
  background: #c40000;
}

/* 次回上映 */
.featureCard[data-status=next] .featureCard__badge {
  background: #2f5fb3;
}

/* 終了 */
.featureCard[data-status=end] .featureCard__badge {
  background: #999;
}

.page-features .featureCard__link {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 14px;
  color: inherit;
  text-decoration: none;
}

.page-features .featureCard__poster {
  width: 120px;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
}

.page-features .featureCard__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-features .featureCard__body {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.page-features .featureCard__date {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-features .featureCard__name {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.page-features .featureCard__cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 900;
  background: #7b3e3a; /* あの茶色系 */
  color: #fff;
  width: fit-content;
}

/* hover */
.page-features .featureCard__link:hover {
  opacity: 0.92;
}

/* SP：1列 */
@media (max-width: 900px) {
  .page-features .featureGrid {
    grid-template-columns: 1fr;
  }
  .page-features .featureCard__link {
    grid-template-columns: 110px 1fr;
  }
  .page-features .featureCard__poster {
    width: 110px;
  }
}
/* =========================
  Feature Detail
========================= */
.page-feature .featureHead {
  margin: 32px 0 16px;
}

.page-feature .featureHead__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 8px;
}

.page-feature .featureHead__date {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-feature .featureHead__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.25;
  color: #433333;
}

/* バッジ（上映中/次回/終了） */
.page-feature .featureBadge {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.page-feature .featureBadge.is-now {
  background: #b93a2f;
}

.page-feature .featureBadge.is-next {
  background: #3a61b9;
}

.page-feature .featureBadge.is-end {
  background: #777;
}

/* 特集ビジュアル：切らない／余白は背景で演出 */
.page-feature .featureVisual {
  margin: 0 0 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-feature .featureVisual__media {
  display: block;
  width: 100%;
  /* PCは16:9 */
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.35);
}

.page-feature .featureVisual__media img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ←顔を切らない */
  display: block;
}

/* SPは4:3に（縦長に感じにくい） */
@media (max-width: 640px) {
  .page-feature .featureVisual__media {
    aspect-ratio: 4/3;
  }
}
/* =========================
  Feature Notice（特集お知らせ）
========================= */
.page-feature .featureNotice {
  max-width: 100%; /* 横いっぱい */
  margin: 18px 0; /* 右寄せ解除 */
  border-radius: 28px;
  background: #fff;
  border: 6px solid rgba(239, 114, 65, 0.45); /* うすピンク枠 */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-feature .featureNotice__title {
  margin: 0;
  padding: 16px 18px 10px;
  font-size: 1.45rem;
  font-weight: 900;
  color: rgb(239, 114, 65); /* ピンク見出し */
}

.page-feature .featureNotice__body {
  padding: 0 18px 18px;
}

.page-feature .featureNotice__lead {
  margin: 0 0 10px;
  font-weight: 900;
  color: rgb(239, 114, 65); /* ピンク見出し */
}

.page-feature .featureNotice__text {
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.8;
}

.page-feature .featureNotice__sub {
  margin-top: 14px;
}

.page-feature .featureNotice__subTitle {
  margin: 0 0 8px;
  font-weight: 900;
  color: rgb(239, 114, 65); /* ピンク見出し */
}

.page-feature .featureNotice__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.page-feature .featureNotice__list li {
  display: grid;
  grid-template-columns: 4.5em 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f7f7f7;
}

.page-feature .featureNotice__time {
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

/* SPは横幅いっぱいに（右寄せ解除） */
@media (max-width: 900px) {
  .page-feature .featureNotice {
    max-width: 100%;
    margin-left: 0;
  }
}
/* セクション */
.page-feature .featureSection {
  margin: 20px 0 56px;
}

.page-feature .featureSection__title {
  margin: 0 0 14px;
  font-size: 1.3rem;
  font-weight: 900;
}

/* 作品ブロック */
.page-feature .filmBlock {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.page-feature .filmBlock + .filmBlock {
  margin-top: 18px;
}

.page-feature .filmBlock__head {
  margin-bottom: 12px;
}

.page-feature .filmBlock__title {
  margin: 0 0 4px;
  font-size: 1.2rem;
  color: #433333;
}

.page-feature .filmBlock__title .filmBlock__subtitle {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #433333;
}

.page-feature .filmBlock__sub {
  margin: 0;
  opacity: 0.75;
  font-weight: 600;
}

/* 画像＋本文 2カラム（SPで1カラム） */
.page-feature .filmBlock__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
  align-items: start;
}

@media (max-width: 900px) {
  .page-feature .filmBlock__grid {
    grid-template-columns: 1fr;
  }
}
.page-feature .filmStill {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
  aspect-ratio: 16/9;
}

.page-feature .filmStill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-feature .filmInfo__list {
  margin: 0 0 12px;
}

.page-feature .filmInfo__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(234, 214, 186, 0.08);
}

.page-feature .filmInfo__row dt {
  font-weight: 800;
  color: #433333;
  background-color: #f3eee1;
  padding: 2px 0 0 4px;
  border-radius: 2px;
}

.page-feature .filmInfo__row dd {
  margin: 0;
}

/* 上映時間 */
.page-feature .filmTimes__title,
.page-feature .filmText__title,
.page-feature .filmStaff__title {
  margin: 14px 0 6px;
  font-weight: 900;
  color: #433333;
  background-color: #f3eee1;
  padding: 2px 0 0 4px;
  border-radius: 2px;
}

.page-feature .filmTimes__list {
  margin: 0;
  padding-left: 1.2em;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ===== 個別の作品画像設定 ===== */
/* ===== 作品画像（3:2） ===== */
.filmMedia {
  margin: 0;
}

.filmMedia__frame {
  aspect-ratio: 3/2;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.06);
}

/* 画像は枠の中に収める（切らない） */
.filmMedia__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ←切らない */
  display: block;
}

/* slick が入った時の高さ崩れ防止 */
.filmMedia__slider,
.filmMedia__slider .slick-list,
.filmMedia__slider .slick-track,
.filmMedia__slide {
  height: 100%;
}

/* film画像エリアの幅を「枠」に閉じ込める */
.filmMedia__frame {
  width: 100%;
  overflow: hidden;
  border-radius: 18px; /* 既存デザインに合わせて */
}

/* slick本体も100%に */
.filmMedia__slider {
  width: 100%;
}

/* 画像を枠にフィットさせる（クソデカ防止の本命） */
.filmMedia__slider img,
.filmMedia__frame > img {
  display: block;
  width: 100%;
  height: auto;
}

/* gridの子要素が中身に引っ張られて横に伸びるのを止める */
.page-feature .filmBlock__grid > * {
  min-width: 0;
}

/* 念のため、画像側にも */
.page-feature .filmMedia {
  min-width: 0;
}

.filmMedia__slider .slick-list {
  overflow: hidden;
}

/* ドット（必要なら） */
.filmMedia__slider .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
}

.filmMedia__slider .slick-dots li button:before {
  font-size: 10px;
}

/* ========== filmMedia credit ========== */
.filmMedia__frame {
  position: relative;
}

.filmMedia__credit {
  position: absolute;
  right: 10px;
  bottom: 0px;
  z-index: 5;
  font-size: 12px;
  line-height: 1.2;
  padding: 6px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  pointer-events: none;
  user-select: none;
}

@media (max-width: 640px) {
  .filmMedia__credit {
    right: 8px;
    bottom: 0px;
    font-size: 11px;
    padding: 5px 7px;
  }
}
/* btn の共通がある前提で、これ以前の企画へ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  background-color: #8b3a3a;
  color: #fff;
  width: 100%;
}

/* ★小さいボタン */
.btn--sm {
  padding: 8px 12px;
  font-size: 0.9rem;
}/*# sourceMappingURL=feature.css.map */