@charset "UTF-8";
/* ==========================================================================
   1. 基本設定 (Base & Typography)
   ========================================================================== */
body {
  background-color: #f8f9fa;
  color: #333;
  /* header.tplとindex.tplのフォントを統合 */
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  /* ★重要: ヘッダーがfixed-topなので、コンテンツが隠れないように上に余白を開ける */
  padding-top: 80px;
}
/* ユーティリティカラー */
.text-pink {
  color: #ffc107;
}
.bg-pink {
  background-color: #ffc107;
}
.bg-warning-subtle {
  background-color: #fff3cd;
}
/* ==========================================================================
   2. ヘッダー / ナビゲーション (Navbar)
   ========================================================================== */
.navbar-custom {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 80px;
  padding: 0;
}
.navbar-brand {
  font-weight: bold;
  color: #333 !important;
  letter-spacing: 1px;
  font-size: 1.3rem;
}
/* スマホ用アイコンボタン共通 */
.mobile-header-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.2s;
  margin-left: 10px;
  text-decoration: none;
  cursor: pointer;
}
.btn-member-circle {
  background-color: #ffc107 !important;
  color: #333;
}
.navbar-toggler-circle {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #333;
  font-size: 1.5rem;
  padding: 0;
}
/* ▼ ハンバーガーアイコンの切り替え（開閉アニメーション用） */
.navbar-toggler .icon-open {
  display: none;
}
.navbar-toggler .icon-close {
  display: block;
}
.navbar-toggler.collapsed .icon-open {
  display: block;
}
.navbar-toggler.collapsed .icon-close {
  display: none;
}
/* ▼ PC用ナビゲーション (992px以上) */
@media (min-width: 992px) {
  .navbar-nav .nav-link {
    color: #555;
    font-weight: bold;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #cd7f32 !important;
  }
  .nav-item-text {
    display: flex;
    align-items: center;
  }
  .nav-item-text::after {
    content: "・";
    color: #ffc107;
    font-size: 10px;
    opacity: 0.6;
    margin: 0 10px;
  }
  .nav-item-text:last-of-type::after {
    content: none;
  }
}
/* ▼ スマホ用メニュー (991px以下) - ガラス効果と全画面表示 */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100% !important;
    align-items: stretch !important;
    padding: 20px 0;
    margin: 0;
    height: calc(100vh - 80px); /* 画面下までいっぱい */
    /* ガラス効果 */
    background-color: rgba(255, 255, 255, 0.95) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    backdrop-filter: blur(20px) !important;
    /* 表示位置調整 */
    overflow-y: auto;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 9999;
    /* アニメーション用 */
    display: block;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.2s ease-in-out, visibility 0.2s;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
  }
  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .collapsing {
    display: block;
    height: auto !important;
    opacity: 0;
    transition: none !important;
  }
  .navbar-nav .nav-link {
    width: 100% !important;
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: bold;
  }
  .nav-item {
    width: 100% !important;
  }
}
/* ▼ ドロップダウンメニュー調整 */
.navbar-nav .dropdown-menu {
  background-color: #fff;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.navbar-nav .dropdown-menu .dropdown-item {
  font-size: 1.1rem;
  font-weight: bold;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    text-align: center;
    background-color: #fff8e7;
    border: none;
    padding: 10px 0;
    margin-top: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .navbar-nav .dropdown-menu .dropdown-item {
    text-align: center;
    display: block;
    width: 100%;
  }
}
/* =========================================
   エンター画面 (年齢認証)
   ========================================= */
#enter-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999; /* 最前面 */
  /* 白ベース・透過・ぼかし */
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* 中央配置 */
  display: flex;
  align-items: center;
  justify-content: center;
  /* 初期状態 */
  opacity: 1;
  transition:
    opacity 0.5s ease, visibility 0.5s ease;
}
#enter-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.enter-content {
  width: 90%;
  max-width: 600px;
  max-height: 90vh; /* 縦長になりすぎないよう制限 */
  overflow-y: auto; /* コンテンツが多い場合はスクロール */
  text-align: center;
  padding: 2rem;
  /* コンテンツ自体の背景（うっすら影をつける） */
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.enter-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
}
.enter-warning-box {
  background: #fff0f0;
  border: 1px solid #ffcccc;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
}
.enter-banners-area {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed #ddd;
}
.enter-banners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
/* バナー画像のサイズ調整 */
.enter-banner-img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.enter-banner-img:hover {
  opacity: 0.8;
}
/* ==========================================================================
   3. トップページ要素 (Index Elements: Banner, Title, Date)
   ========================================================================== */
/* セクションタイトル */
.section-title {
  text-align: center;
  font-weight: bold;
  color: #222;
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
  font-size: 1.8rem;
  font-family: inherit;
  letter-spacing: 0.05em;
}
.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #cd7f32;
  margin: 15px auto 0;
  border-radius: 2px;
}
/* メインバナー (Hero) */
.hero-swiper {
  width: 100%;
  padding-bottom: 30px;
}
.hero-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.swiper-pagination-bullet-active {
  background: #cd7f32;
}
/* サブバナー (Center Mode) */
.sub-banner-swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
}
.sub-banner-swiper .swiper-slide {
  width: 80%;
  opacity: 0.6;
  transform: scale(0.9);
  transition: all 0.4s ease;
}
@media (min-width: 768px) {
  .sub-banner-swiper .swiper-slide {
    width: 30%;
  }
}
.sub-banner-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.sub-banner-swiper img {
  width: 100%;
  border-radius: 8px;
}
/* スケジュール日付ボタン */
.date-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 5px;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .date-scroll-wrapper {
    justify-content: center;
  }
}
.date-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.date-btn:hover {
  background: #f0f0f0;
}
.date-btn.active {
  background: #cd7f32;
  color: #fff;
  border-color: #cd7f32;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(205, 127, 50, 0.3);
}
.date-btn .week {
  font-size: 0.75rem;
  font-weight: bold;
}
.date-btn .day {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}
/* ==========================================================================
   4. キャスト関連要素 (Cast List & Detail)
   ========================================================================== */
/* カード共通設定 */
.card {
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.gravure .card:hover {
  transform: translateY(0px);
}
/* ▼▼▼ 追加・修正：キャスト画像の比率設定（重要） ▼▼▼ */
/* A. 一覧用キャスト画像 (3:4) */
.cast-img-zoom {
  width: 100%;
  height: auto !important; /* ブログ用の高さ固定を強制解除 */
  aspect-ratio: 3 / 4; /* 縦長比率 */
  object-fit: cover;
  object-position: top; /* 顔が見えるように */
  transition: transform 0.4s ease;
}
.cast-card:hover .cast-img-zoom {
  transform: scale(1.05);
}
/* B. サムネイル・新人・NoPhoto用 (1:1 正方形) */
.cast-thumb {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1 / 1; /* 正方形 */
  object-fit: cover;
  object-position: top;
}
.cast-card .bg-light.card-img-top {
  width: 100%;
  height: auto !important;
  aspect-ratio: 3 / 4; /* No Photoも3:4に合わせる */
}
.card-img-top.cast-thumb.bg-secondary {
  aspect-ratio: 1 / 1; /* 新人No Photoは1:1 */
}
/* 詳細ページ用Swiper (Gallery) */
.swiper {
  width: 100%;
  height: 100%;
}
/* メイン画像エリア（可変高さ） */
.mySwiper2 {
  width: 100%;
  height: auto; /* !important は外す */
  background: #000;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.mySwiper2 .swiper-slide img {
  width: 100%;
  aspect-ratio: 2 / 3; /* 枠を2:3に固定 */
  height: auto;
  object-fit: cover; /* どんな比率でも2:3に切り抜く */
  object-position: top; /* 顔が切れないよう上基準 */
  display: block;
}
/* サムネイルエリア */
.mySwiper {
  height: auto !important;
  box-sizing: border-box;
  padding: 10px 0;
}
.mySwiper .swiper-slide {
  width: 20% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  opacity: 0.4;
  cursor: pointer;
  padding: 2px;
}
.mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #cd7f32;
}
/* スケジュール文字サイズ */
.schedule-text {
  font-size: clamp(12px, 3.5vw, 18px);
}
/* 電話ボタン（丸形） */
.btn-phone-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.btn-phone-circle:hover {
  color: white;
  opacity: 0.9;
}
/* 会員限定ロック画面サムネイル */
.locked-thumb-wrapper {
  width: 100%;
  height: 200px; /* デフォルトの高さ */
  background: #000;
  position: relative;
  overflow: hidden;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.locked-thumb-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.6);
  transform: scale(1.1);
}
.locked-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.locked-icon i {
  font-size: 1.8rem;
  color: #ffc107;
  margin-bottom: 3px;
}
.locked-icon .locked-text {
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1;
}
/* ==========================================================================
   5. ブログ / ニュース / 共通UI (Blog, News & UI)
   ========================================================================== */
/* ブログ・お知らせ用カード画像（200px固定） */
/* ※キャスト画像（cast-img-zoom）より詳細度を低くするため、単純なクラス指定に留める */
.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-img-zoom {
  transform: scale(1.05);
}
/* テキスト省略 (2行) */
.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* ニュースリストのホバー */
.news-item:hover {
  background-color: #f8f9fa;
}
.news-item:hover .img-cover {
  transform: scale(1.1);
}
.news-item:hover .title-link {
  color: #cd7f32 !important;
}
/* ページネーション */
.page-item.active .page-link {
  background-color: #cd7f32;
  border-color: #cd7f32;
  color: white;
}
.page-link {
  color: #555;
}
/* ホバー時のオーバーレイ効果 */
.hover-zoom-img .card-img-top {
  transition: transform 0.3s ease;
}
.hover-zoom-img:hover .card-img-top {
  transform: scale(1.05);
}
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
}
.hover-zoom-img:hover .hover-overlay {
  opacity: 1;
}
/* ==========================================================================
   6. フォーム / ステップバー / フィルター (Forms & Filters)
   ========================================================================== */
/* ステップバー */
.step-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  counter-reset: step;
}
.step-bar-item {
  position: relative;
  flex: 1;
  text-align: center;
  color: #999;
  font-size: 12px;
  font-weight: bold;
}
.step-bar-item::before {
  content: counter(step);
  counter-increment: step;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 auto 5px;
  background: #ddd;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  position: relative;
  z-index: 2;
}
.step-bar-item::after {
  content: "";
  position: absolute;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #ddd;
  z-index: -1;
}
.step-bar-item:first-child::after {
  content: none;
}
.step-bar-item.active {
  color: #ffc107;
}
.step-bar-item.active::before {
  background: #ffc107;
  color: #333;
}
.step-bar-item.active::after {
  background: #ffc107;
}
/* チェックボックス・ラジオボタン装飾 */
.btn-check:checked + .card {
  border-color: #ffc107 !important;
  border-width: 3px !important;
  background-color: #ffc107;
  box-shadow: 0 4px 15px rgba(255, 220, 115, 0.5);
}
.check-mark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
  pointer-events: none;
}
.btn-check:checked + .card .check-mark-overlay {
  opacity: 1;
}
.btn-check:checked + .list-group-item {
  border-color: #e9af01 !important;
  background-color: #fffaed;
  color: #e9af01;
  font-weight: bold;
  z-index: 2;
}
.btn-check:checked + .list-group-item .check-icon {
  display: block !important;
}
/* ボタン類 */
.btn-pink {
  background-color: #ffc107;
  color: #333;
  border: none;
}
.btn-pink:hover {
  background-color: #e9af01;
  color: #fff;
}
/* ==========================================================================
   7. カレンダー / コンタクト / モーダル (Modules & Modals)
   ========================================================================== */
/* カレンダーグリッド */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background-color: #eee;
  border: 1px solid #eee;
}
.cal-cell {
  background-color: #fff;
  min-height: 80px;
  padding: 5px;
  text-align: center;
  position: relative;
}
.cal-header {
  background-color: #f8f9fa;
  font-weight: bold;
  font-size: 0.8rem;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px !important;
}
.day-num {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.sun {
  color: #dc3545;
}
.sat {
  color: #0d6efd;
}
.not-month {
  background-color: #fcfcfc;
  color: #ccc;
}
.past {
  background-color: #f0f0f0;
  opacity: 0.6;
  pointer-events: none;
}
.work-day {
  cursor: pointer;
  transition: background-color 0.2s;
}
.work-day:hover {
  background-color: #e9ecef;
}
.time-badge {
  font-size: 0.7rem;
  line-height: 1.2;
  color: #198754;
  font-weight: bold;
}
/* 左端の列を固定する魔法のCSS (出勤表など) */
.sticky-col {
  position: sticky;
  left: 0;
  z-index: 10;
  background-color: #fff !important;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
}
.sticky-col-header {
  position: sticky;
  left: 0;
  z-index: 1030;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
}
td {
  min-width: 120px;
}
@media (min-width: 768px) {
  .border-start-md {
    border-left: 1px solid #eee;
  }
}
/* 右下固定コンタクトパネル */
.fixed-bottom-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 260px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: 1px solid #ddd;
  z-index: 9999;
  font-family: "Helvetica Neue", Arial, sans-serif;
  overflow: hidden;
  backdrop-filter: blur(5px);
}
.contact-card-header {
  background-color: #333;
  color: #fff;
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.contact-card-body {
  padding: 15px;
  text-align: center;
}
.phone-number {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  font-family: Arial, sans-serif;
  line-height: 1.2;
}
.business-hours {
  font-size: 1rem;
  font-weight: bold;
  color: #198754;
}
.reception-time {
  font-size: 0.75rem;
  color: #666;
}
.sns-icon-btn {
  font-size: 1.3rem;
  color: #999;
  transition: all 0.2s;
}
/* SNSアイコンホバー */
.hover-white:hover {
  color: #fff !important;
}
.hover-line:hover {
  color: #06c755 !important;
}
.hover-insta:hover {
  color: #e1306c !important;
}
.hover-youtube:hover {
  color: #ff0000 !important;
}
/* モーダル関連 */
body.modal-open > *:not(.modal):not(.modal-backdrop):not(script) {
  filter: blur(8px) !important;
  transition: filter 0.3s ease;
}
.modal-backdrop.show {
  opacity: 0.5 !important;
  background-color: #000 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.modal-content.glass-modal {
  background-color: rgba(40, 44, 52, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  color: #fff;
  filter: none !important;
}
/* カウントダウン帯 */
.countdown-overlay {
  background: rgba(220, 53, 69, 0.9);
  color: white;
  padding: 5px 0;
  text-align: center;
  width: 100%;
  margin-top: -5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}
/* =========================================
   グラビア・動画 (Gravure) - 追加修正
   ========================================= */
/* ratio (16:9などの枠) の中にある画像は、200px固定を解除して枠いっぱいに広げる */
.ratio {
  overflow: hidden; /* ← これが重要！拡大した部分を隠します */
  /* カードの上部の角丸に合わせる設定 */
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.ratio .card-img-top {
  height: 100% !important;
  object-fit: cover;
}
/* アンケートセクション */
.survey-card {
  background: #fff;
  border-radius: 12px;
}
/* アンケート：3段階の色分け */
.badge-mint {
  background-color: #4bd6ac;
  color: #fff;
  font-weight: normal;
  padding: 0.5em 1em;
} /* 50%以上 */
.badge-mid {
  background-color: #8ee6af;
  color: #fff;
  font-weight: normal;
  padding: 0.5em 1em;
} /* 30%〜49% (水色) */
.badge-gray {
  background-color: #f2f2f2;
  color: #666;
  font-weight: normal;
  padding: 0.5em 1em;
} /* 29%以下 */
/* スライダー */
.style-track {
  position: relative;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  margin: 30px 0 10px;
}
.style-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: #fff;
  border: 4px solid #4bd6ac;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.style-tick {
  position: absolute;
  top: -4px;
  width: 2px;
  height: 14px;
  background: #ddd;
  transform: translateX(-50%);
}
/* 記事カード */
.post-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #444;
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: 0.3s;
}
.post-card:hover {
  background: rgba(0, 0, 0, 0.7) !important;
  border-color: #cd7f32 !important;
}
.thumb-box {
  width: 120px;
  flex-shrink: 0;
}
.thumb-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border: 1px solid #8b5a2b;
}
.no-img {
  width: 100%;
  height: 90px;
  background: #222;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.8em;
}