/* =========================================================
   common.css
   フロント全ページ共通スタイル
   - スコープ: .pcu95front（FrontLayout が付与する共通ラッパー）
   ========================================================= */

/* =========================
   CSS VARIABLES
   ========================= */
:root {
  --header-h: clamp(52px, 5vw, 64px);
  --infobar-h: clamp(30px, 2.8vw, 36px);
  --header-pad-x: clamp(16px, 2vw, 32px);
  --header-gap: 20px;
  --nav-gap: clamp(14px, 2vw, 32px);

  --container-max: 1200px;
  --container-padding: clamp(16px, 2vw, 24px);
  /* スマホ：タップ推奨サイズ（約44px相当） */
  --touch-min: 44px;

  /* セクション見出し・MORE・見出し直下ブロックの縦リズム（PC 基準値。SP は同一ファイル内の max-width:768px で上書き） */
  --section-head-margin-bottom: 40px;
  --section-more-margin-top: 40px;
  --section-gap-after-head: 40px;
}

/* =========================
   SITE BACKGROUND（CMS「背景画像登録」）
   背景は固定レイヤー、コンテンツは手前。白の半透明で本文の可読性を確保。
   ========================= */
.pcu95front-wrap {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}
/* サイト背景未設定時は明示的に白（テンプレ・画像とも OFF のとき） */
.pcu95front-wrap:not(.pcu95front-wrap--has-site-bg) {
  background-color: #fff;
}
.pcu95front-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  /* インライン backgroundImage だと SSR とブラウザの url() 正規化差でハイドレーション不一致になりやすいため CSS 変数で渡す */
  background-image: var(--bg-url, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.pcu95front-bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* 本文の可読性を保ちつつ、淡い地紋が透ける程度（不透明すぎるとページルートの白に隠れて見えない） */
  background: rgba(255, 255, 255, 0.5);
}
.pcu95front-wrap > .pcu95front {
  position: relative;
  z-index: 2;
}

/* CMS背景あり時: 各ページルートの不透明白／テーマ色を外し、固定背景＋オーバーレイが見えるようにする */
.pcu95front-wrap--has-site-bg > .pcu95front,
.pcu95front-wrap--has-site-bg .pcu95front .pcu95top,
.pcu95front-wrap--has-site-bg .pcu95front .pcu95profile,
.pcu95front-wrap--has-site-bg .pcu95front .pcu95schedule,
.pcu95front-wrap--has-site-bg .pcu95front .pcu95castlist,
.pcu95front-wrap--has-site-bg .pcu95front .pcu95system,
.pcu95front-wrap--has-site-bg .pcu95front .pcu95reserve,
.pcu95front-wrap--has-site-bg .pcu95front .pcu95reservation,
.pcu95front-wrap--has-site-bg .pcu95front .list-page,
.pcu95front-wrap--has-site-bg .pcu95front .index-page,
.pcu95front-wrap--has-site-bg .pcu95front .index-page__body,
.pcu95front-wrap--has-site-bg .pcu95front .index-page__hero,
.pcu95front-wrap--has-site-bg .pcu95front .pd-page__main,
.pcu95front-wrap--has-site-bg .pcu95front main {
  /* テーマCSSが後読みでも勝つよう background を強制透過 */
  background: transparent !important;
  background-color: transparent !important;
}

/* =========================
   CONTAINER
   ========================= */
.pcu95front .container {
  width: min(100%, var(--container-max));
  margin-inline: auto;
  padding-inline: var(--container-padding);
  box-sizing: border-box;
}

/* =========================
   SECTION HEAD
   ========================= */
.pcu95front .section-head {
  text-align: center;
  margin-bottom: var(--section-head-margin-bottom);
}
.pcu95front .section-head__title {
  margin: 0;
  font-family: var(--font-family-inter), sans-serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-primary, #111827);
  line-height: 1.2;
  display: inline-block;
  position: relative;
}
.pcu95front .section-head__title::after {
  content: '';
  display: block;
  width: min(48px, 22%);
  height: 3px;
  margin: 14px auto 0;
  border-radius: var(--radius-pill, 9999px);
  background: linear-gradient(90deg, var(--accent, #e8919f), var(--accent-deep, #d4707f));
}
.pcu95front .section-head__subtitle {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted, #9ca3af);
}

/* =========================
   SECTION MORE BUTTON
   ========================= */
.pcu95front .section-more {
  text-align: center;
  margin-top: var(--section-more-margin-top);
}
.pcu95front .section-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 48px;
  border: 1px solid var(--text-primary, #111827);
  border-radius: var(--radius-pill, 9999px);
  font-family: var(--font-family-inter), sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-primary, #111827);
  box-shadow: var(--shadow-accent, 0 4px 18px rgba(232, 145, 159, 0.22));
  transition:
    background var(--transition, 0.22s cubic-bezier(0.4, 0, 0.2, 1)),
    color var(--transition, 0.22s cubic-bezier(0.4, 0, 0.2, 1)),
    border-color var(--transition, 0.22s cubic-bezier(0.4, 0, 0.2, 1)),
    box-shadow var(--transition, 0.22s cubic-bezier(0.4, 0, 0.2, 1)),
    transform var(--transition-fast, 0.18s cubic-bezier(0.4, 0, 0.2, 1));
}
.pcu95front .section-more__btn:hover {
  background: var(--text-primary, #111827);
  color: #fff;
  border-color: var(--text-primary, #111827);
  box-shadow: var(--shadow-md, 0 6px 18px rgba(17, 24, 39, 0.12));
}

/* =========================
   動画サムネイル — ホバー（拡大＋暗転）
   ========================= */
.pcu95front .video-thumb-wrap,
.pcu95profile .video-thumb-wrap {
  position: relative;
  overflow: hidden;
}
.pcu95front .video-thumb-wrap img,
.pcu95profile .video-thumb-wrap img {
  transition: none;
}

@media (hover: hover) and (pointer: fine) {
  .pcu95front .video-thumb-wrap img,
  .pcu95profile .video-thumb-wrap img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
  }
  .pcu95front .video-thumb-wrap:hover img,
  .pcu95profile .video-thumb-wrap:hover img {
    transform: scale(1.05);
    filter: brightness(0.85);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcu95front .video-thumb-wrap img,
  .pcu95profile .video-thumb-wrap img {
    transition: none;
  }
  .pcu95front .video-thumb-wrap:hover img,
  .pcu95profile .video-thumb-wrap:hover img {
    transform: none;
    filter: none;
  }
}

/* =========================
   動画再生ボタン（統一・グラスモーフィズム）
   ========================= */
.pcu95front .video-play-btn,
.pcu95profile .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pcu95front .video-play-btn::after,
.pcu95profile .video-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
  margin-left: 3px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

@media (hover: hover) and (pointer: fine) {
  .pcu95front *:hover > .video-play-btn,
  .pcu95profile *:hover > .video-play-btn,
  .pcu95front a:hover .video-play-btn,
  .pcu95profile a:hover .video-play-btn,
  .pcu95front button:hover .video-play-btn,
  .pcu95profile button:hover .video-play-btn {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.pcu95front .video-play-btn--sm,
.pcu95profile .video-play-btn--sm {
  width: 44px;
  height: 44px;
}
.pcu95front .video-play-btn--sm::after,
.pcu95profile .video-play-btn--sm::after {
  border-width: 7px 0 7px 12px;
  margin-left: 2px;
}

/* トップ MOVIE フィーチャー：全画面クリック用ボタン内の再生マーク */
.pcu95front .movie-feature__play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.pcu95front .movie-feature__play-overlay .video-play-btn {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .pcu95front .video-play-btn,
  .pcu95profile .video-play-btn {
    transition: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 0, 0, 0.45);
  }
  .pcu95front .video-play-btn::after,
  .pcu95profile .video-play-btn::after {
    border-color: transparent transparent transparent #fff;
  }
}

/* =========================
   SWIPER ARROWS — shared navigation arrows
   Swiper v12: SVG ベース。::after は使わない
   ========================= */
.pcu95front .swiper-button-prev,
.pcu95front .swiper-button-next {
  width: 36px;
  height: 36px;
  margin-top: -18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, .10);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  color: var(--text-primary, #333);
}

.pcu95front .swiper-button-prev::after,
.pcu95front .swiper-button-next::after {
  content: none;
  display: none;
}

.pcu95front .swiper-button-prev svg,
.pcu95front .swiper-button-next svg {
  width: 11px;
  height: 20px;
  color: var(--text-primary, #333);
}

.pcu95front .swiper-button-prev:hover,
.pcu95front .swiper-button-next:hover {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .14);
}

.pcu95front .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .pcu95front .swiper-button-prev,
  .pcu95front .swiper-button-next {
    width: 26px;
    height: 26px;
    margin-top: -13px;
  }
  .pcu95front .swiper-button-prev svg,
  .pcu95front .swiper-button-next svg {
    width: 8px;
    height: 14px;
  }
}

/* =========================
   CAST CARD — shared card for all cast listings
   (PLAY NOW, NEW FACE, SCHEDULE, RANKING, PROFILE)
   ========================= */
.pcu95front .cast-card {
  display: flex;
  flex-direction: column;
}

.pcu95front .cast-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.pcu95front .cast-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: visible;
  border-radius: var(--radius-sm, 8px);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(17, 24, 39, 0.06));
}

@media (hover: hover) and (pointer: fine) {
  .pcu95front .cast-card__media {
    transition: box-shadow var(--transition, 0.22s cubic-bezier(0.4, 0, 0.2, 1));
  }

  .pcu95front .cast-card:hover .cast-card__media,
  .pcu95front .cast-card__link:hover .cast-card__media {
    box-shadow: var(--shadow-md, 0 6px 18px rgba(17, 24, 39, 0.09));
  }
}

.pcu95front .cast-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm, 8px);
}

.pcu95front .cast-card__img.lazy-viewport-video {
  width: 100%;
  height: 100%;
}

.pcu95front .cast-card__img.lazy-viewport-video .lazy-viewport-video__media {
  height: 100%;
}

/* 遅延読み込み動画（poster → 画面内で src 付与） */
.lazy-viewport-video {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 0;
}

.lazy-viewport-video__media {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  vertical-align: top;
}

.lazy-viewport-video__placeholder {
  display: block;
  width: 100%;
  min-height: 120px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(155deg, #f1f5f9 0%, #e2e8f0 100%);
}

@media (hover: hover) and (pointer: fine) {
  .pcu95front .cast-card__img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .pcu95front .cast-card:hover .cast-card__img,
  .pcu95front .cast-card__link:hover .cast-card__img {
    transform: scale(1.03);
  }

  .pcu95front .cast-card__img.lazy-viewport-video .lazy-viewport-video__media {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .pcu95front .cast-card:hover .cast-card__img.lazy-viewport-video .lazy-viewport-video__media,
  .pcu95front .cast-card__link:hover .cast-card__img.lazy-viewport-video .lazy-viewport-video__media {
    transform: scale(1.03);
  }
}

.pcu95front .cast-card__tag {
  position: absolute;
  top: -10px;
  left: 10px;
  z-index: 2;
  background: var(--accent, #e8919f);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill, 9999px);
  line-height: 1;
  letter-spacing: 0.04em;
}

/* 在籍一覧リスト・スケジュール等：ピルタグ。プロフィール .profile-badge と同系（クラス色・CMS色は style で上書き） */
.pcu95front .cast-pill-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: var(--radius-pill, 9999px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--accent, #e8919f);
  background: rgba(232, 145, 159, 0.08);
  border: 1px solid rgba(232, 145, 159, 0.3);
  transition: background var(--transition, 0.2s ease);
}
.pcu95front .cast-pill-tag:hover {
  background: rgba(232, 145, 159, 0.14);
}

/* 新人（cast-card__tag / profile-card__cbadge--new と同系のアクセントピンク） */
.pcu95front .cast-new-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill, 9999px);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  background: var(--accent, #e8919f);
  color: #fff;
}

/* 店舗・ルーム：新人バッジと区別する色。グリッドカードでは右上に配置して新人（左上）と重ならないようにする */
.pcu95front .cast-new-badge--room {
  background: #5dbdb1;
}
.pcu95front .cast-card__tag--room {
  background: #5dbdb1;
  left: auto;
  right: 10px;
}

.pcu95front .cast-card__badges {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  display: flex;
  gap: 4px;
}

.pcu95front .cast-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  background: #fff;
  color: #111;
  border: 1px solid #111;
}
.pcu95front .cast-card__badge--photo {
  background: #111;
  color: #fff;
  border-color: #111;
}

.pcu95front .cast-card__badge--class {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border-width: 1px;
  border-style: solid;
  font-weight: 600;
}
.pcu95front .cast-card__badge--class i {
  font-size: 9px;
}

.pcu95front .cast-card__rank {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-family-inter), sans-serif;
  color: #fff;
  background: var(--text-secondary, #4b5563);
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,.05));
}

.pcu95front .cast-card__rank--1 {
  background: linear-gradient(145deg, #ffd700, #d4a000);
  box-shadow: 0 2px 8px rgba(212, 160, 0, 0.3);
}
.pcu95front .cast-card__rank--2 {
  background: linear-gradient(145deg, #d0d0d0, #a0a0a0);
  box-shadow: 0 2px 8px rgba(160, 160, 160, 0.3);
}
.pcu95front .cast-card__rank--3 {
  background: linear-gradient(145deg, #d49a6a, #b07840);
  box-shadow: 0 2px 8px rgba(176, 120, 64, 0.3);
}

.pcu95front .cast-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.pcu95front .cast-card__name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary, #1a1a1a);
  line-height: 1.4;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  min-width: 0;
}
.pcu95front .cast-card__name-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.pcu95front .cast-card__name-age {
  flex-shrink: 0;
  white-space: nowrap;
}

.pcu95front .cast-card__spec {
  margin: 0;
  font-size: 12px;
  color: var(--text-secondary, #4b5563);
}

.pcu95front .cast-card__time {
  margin: 0;
  font-family: var(--font-family-inter), sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent, #e8919f);
}

.pcu95front .cast-card__catch {
  margin: 0;
  font-size: 12px;
  color: var(--accent, #e8919f);
  font-weight: 600;
}

.pcu95front .cast-card__status {
  margin: 0;
  font-size: 12px;
  color: var(--accent, #e8919f);
}

.pcu95front .cast-card__status--busy {
  color: var(--text-muted, #9ca3af);
}
.pcu95front .cast-card__status--web {
  color: #b45309;
  font-weight: 700;
}

.pcu95front .cast-card__date {
  margin: 0;
  font-size: 12px;
  color: var(--text-secondary, #4b5563);
}

/* =========================
   HEADER NAV BAR (.view-1)
   ========================= */
.pcu95front .view-1 {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  overflow: visible;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--header-gap);
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
  border-bottom: 1px solid var(--border, #e5e7eb);
}

/* =========================
   INFO BAR (.info)
   ========================= */
.pcu95front .info {
  position: relative;
  width: 100%;
  height: var(--infobar-h);
  background: var(--text-primary, #1a1a1a);
  display: flex;
  align-items: center;
  padding: 0 var(--header-pad-x);
  box-sizing: border-box;
}

/* =========================
   LOGO
   ========================= */
.pcu95front .logo-1-link {
  display: block;
  flex: 0 0 auto;
  width: clamp(130px, 16vw, 190px);
  height: clamp(30px, 4vw, 42px);
  text-decoration: none;
  color: inherit;
}
.pcu95front .logo-1 {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  /* CMS ロゴ URL は style の --logo-url で上書き（url() の SSR/CSR 差を避ける） */
  background-image: var(--logo-url, url(/assets/front/img/logo@2x.png));
}

/* =========================
   MENU
   ========================= */
.pcu95front .menu {
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--header-gap);
}

.pcu95front .menu-1 {
  display: flex;
  align-items: center;
  gap: var(--nav-gap);
  min-width: 0;
  overflow: visible;
}

.pcu95front .menu-1 .text {
  position: relative;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-secondary, #4b5563);
  line-height: 1.35;
  padding-bottom: 2px;
  transition:
    color var(--transition, 0.22s cubic-bezier(0.4, 0, 0.2, 1)),
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.pcu95front .menu-1 .text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent, #e8919f);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.pcu95front .menu-1 .text:hover {
  color: var(--accent, #e8919f);
  transform: translateY(-1px);
}
.pcu95front .menu-1 .text:hover::after {
  transform: scaleX(1);
}

/* =========================
   INFO BAR CONTENT
   ========================= */
.pcu95front .group-2-1 {
  width: min(400px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  line-height: 1.2;
}

/* スマホでアイコン表示（PC は従来どおりテキストラベル） */
.pcu95front .infobar__icon {
  display: none;
}

.pcu95front .tel-092-1234-5678,
.pcu95front .open-close-700 {
  flex: 0 0 auto;
  white-space: nowrap;
  line-height: 1.25;
  font-size: inherit;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: baseline;
}

/* ラベル（TEL / OPEN-CLOSE）は控えめ、番号・時間を大きく */
.pcu95front .group-2-1 .infobar__label.infobar__label--desktop {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.88;
}

.pcu95front .group-2-1 .span1 {
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.pcu95front .group-2-1 .infobar__sep--desktop {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.75;
}

/* =========================
   HEADLINE BAR（.info 直下・CMS ヘッドライン）
   ========================= */
.pcu95front .front-headline-bar {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 7px var(--header-pad-x, 16px);
  min-height: 33px;
  background: linear-gradient(180deg, rgba(253, 242, 244, 0.95) 0%, rgba(250, 250, 250, 0.98) 100%);
  border-bottom: 1px solid rgba(232, 145, 159, 0.22);
}

.pcu95front .front-headline-bar--empty {
  visibility: hidden;
}

.pcu95front .front-headline-bar__inner {
  max-width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--text-secondary, #4b5563);
}

.pcu95front .front-headline-bar__text {
  margin: 0;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
  font-weight: 700;
}

@keyframes front-headline-enter {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pcu95front .front-headline-bar__text--enter {
  animation: front-headline-enter 0.38s ease;
}

@media (prefers-reduced-motion: reduce) {
  .pcu95front .front-headline-bar__text--enter {
    animation: none;
  }
}

@media (max-width: 480px) {
  .pcu95front .front-headline-bar {
    padding-top: 6px;
    padding-bottom: 6px;
    min-height: 30px;
  }

  .pcu95front .front-headline-bar__inner {
    font-size: 11px;
    line-height: 1.5;
  }
}

/* =========================
   RESPONSIVE (Header)
   ========================= */
@media (max-width: 900px) {
  .pcu95front .menu-1 {
    display: none;
  }

  .pcu95front .menu {
    gap: 0;
    flex-shrink: 0;
  }
}

/* =========================
   SHOP INFO
   ========================= */
.pcu95front .shop-info {
  padding: 80px 0 64px;
  background: var(--bg-light, #fafafa);
}
.pcu95front .shop-info__brand {
  margin-top: 28px;
  max-width: 1200px;
}
.pcu95front .shop-info__logo {
  display: block;
  width: 165px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  /* CMS ロゴは --logo-url。未設定時はデフォルトロゴ */
  background-image: var(--logo-url, url(/assets/front/img/logo@2x.png));
}
.pcu95front .shop-info__kana {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary, #4b5563);
}
.pcu95front .shop-info__list {
  max-width: 1200px;
  margin-top: 24px;
  border-top: 1px solid var(--border, #e5e7eb);
}
.pcu95front .shop-info__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border, #e5e7eb);
  align-items: center;
}
.pcu95front .shop-info__term {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, #1a1a1a);
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.pcu95front .shop-info__desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary, #4b5563);
  line-height: 1.8;
}
.pcu95front .shop-info__tel {
  color: var(--accent-deep, #d4707f);
  font-weight: 500;
  transition: color var(--transition, 0.2s ease);
}
.pcu95front .shop-info__tel:hover {
  color: var(--accent, #e8919f);
  text-decoration: underline;
}
@media (max-width: 767px) {
  .pcu95front .shop-info { padding: 56px 0 40px; }
  .pcu95front .shop-info__row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
}

/* =========================
   CONTACT
   ========================= */
.pcu95front .contact {
  background: linear-gradient(135deg, #f7b3c2 0%, #f0a0b6 100%);
  padding: 72px 0;
}
.pcu95front .contact .section-head__title {
  color: #fff;
}
.pcu95front .contact .section-head__title::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55));
}
.pcu95front .contact .section-head__subtitle {
  color: rgba(255,255,255,.85);
}
.pcu95front .contact__grid {
  margin-top: var(--section-gap-after-head);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.pcu95front .contact-card {
  background: #fff;
  border-radius: var(--radius-md, 12px);
  min-height: 100px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-primary, #111827);
  box-sizing: border-box;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(17, 24, 39, 0.06));
  transition:
    transform var(--transition, 0.22s cubic-bezier(0.4, 0, 0.2, 1)),
    box-shadow var(--transition, 0.22s cubic-bezier(0.4, 0, 0.2, 1));
}
.pcu95front .contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md, 0 6px 18px rgba(17, 24, 39, 0.09));
}
.pcu95front .contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  flex: 0 0 auto;
}
.pcu95front .contact-card__icon i {
  font-size: inherit;
  line-height: 1;
}
.pcu95front .contact-card__text {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.pcu95front .contact-card--tel {
  justify-content: center;
}
.pcu95front .contact-card__tel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.pcu95front .contact-card__tel-number {
  font-family: var(--font-family-inter), sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pcu95front .contact-card__tel-hours {
  font-size: 12px;
  line-height: 1.2;
  color: var(--text-muted, #9ca3af);
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .pcu95front .contact__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .pcu95front .contact-card__text {
    white-space: normal;
    text-align: center;
  }
}

/* =========================
   GROUP INFO
   ========================= */
.pcu95front .group-info {
  padding: 70px 0 70px;
}
.pcu95front .group-info__list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.pcu95front .group-info-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 24px;
  border-radius: var(--radius-md, 12px);
  background: #fff;
  color: inherit;
  border: 1px solid var(--border, #e5e7eb);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(17, 24, 39, 0.05));
  transition:
    box-shadow var(--transition, 0.22s cubic-bezier(0.4, 0, 0.2, 1)),
    transform var(--transition, 0.22s cubic-bezier(0.4, 0, 0.2, 1));
}
.pcu95front .group-info-card:hover {
  box-shadow: var(--shadow-md, 0 6px 18px rgba(17, 24, 39, 0.09));
  transform: translateY(-1px);
}
.pcu95front .group-info-card__img {
  width: 280px;
  height: 158px;
  border-radius: var(--radius-sm, 6px);
  object-fit: cover;
  background: #f3f4f6;
}
.pcu95front .group-info-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pcu95front .group-info-card__area {
  font-size: 12px;
  color: var(--text-muted, #9ca3af);
  letter-spacing: 0.04em;
}
.pcu95front .group-info-card__name {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.pcu95front .group-info-card__meta {
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}
.pcu95front .group-info-card__meta-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pcu95front .group-info-card__meta-text {
  font-size: 14px;
  color: var(--text-secondary, #4b5563);
}
@media (max-width: 900px) {
  .pcu95front .group-info-card { grid-template-columns: 1fr; }
  .pcu95front .group-info-card__img { width: 100%; height: auto; aspect-ratio: 16 / 9; }
}

/* =========================
   FOOTER NAV (サイトメニュー)
   ========================= */
.pcu95front .footer-nav {
  padding: 48px 0;
  background: var(--bg-base, #fff);
  border-top: 1px solid var(--border, #e5e7eb);
}
.pcu95front .footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.pcu95front .footer-nav__item {
  position: relative;
}
.pcu95front .footer-nav__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--border, #e5e7eb);
}
.pcu95front .footer-nav__link {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary, #4b5563);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    color 0.2s ease,
    transform 0.25s ease;
  white-space: nowrap;
}
.pcu95front .footer-nav__link:hover {
  color: var(--accent, #e8919f);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .pcu95front .footer-nav {
    padding: 32px 0;
  }
  .pcu95front .footer-nav__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    background: var(--border, #e5e7eb);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .pcu95front .footer-nav__item:not(:last-child)::after {
    display: none;
  }
  .pcu95front .footer-nav__item {
    background: var(--bg-base, #fff);
    min-width: 0;
  }
  .pcu95front .footer-nav__link {
    padding: 12px 10px;
    font-size: 12px;
    min-height: var(--touch-min, 44px);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}
@media (max-width: 480px) {
  .pcu95front .footer-nav__list {
    border-radius: 0;
  }
  .pcu95front .footer-nav__link {
    padding: 12px 8px;
    font-size: 11px;
  }
  .pcu95front .footer-sitemap {
    padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
  }
}

/* フッター直下：サイトマップ（控えめなテキストリンク） */
.pcu95front .footer-sitemap {
  padding: 10px 0 14px;
  border-top: 1px solid var(--border, #e5e7eb);
}
.pcu95front .footer-sitemap__inner {
  text-align: center;
}
.pcu95front .footer-sitemap__link {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted, #9ca3af);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    color 0.2s ease,
    transform 0.25s ease;
}
.pcu95front .footer-sitemap__link:hover {
  color: var(--accent, #e8919f);
  text-decoration: underline;
  transform: translateY(-1px);
}

/* =========================
   PAGE FOOTER / COPYRIGHT
   ========================= */
.pcu95front .page-footer {
  padding: 28px 0 36px;
  text-align: center;
  background: #111827;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pcu95front .page-footer__copyright {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* =========================
   MOBILE / タブレット〜スマホ（トンマナ維持）
   セーフエリア・可読性・タップ領域
   ========================= */
@media (max-width: 900px) {
  .pcu95front-wrap {
    overflow-x: clip;
  }

  .pcu95front .view-1 {
    padding-left: max(var(--header-pad-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--header-pad-x), env(safe-area-inset-right, 0px));
  }

  .pcu95front .logo-1-link {
    width: clamp(118px, 42vw, 170px);
    min-height: 28px;
  }

  /* 2行になっても切れないよう可変高さ */
  .pcu95front .info {
    height: auto;
    min-height: var(--infobar-h);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: max(var(--header-pad-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--header-pad-x), env(safe-area-inset-right, 0px));
  }

  .pcu95front .front-headline-bar {
    padding-left: max(var(--header-pad-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--header-pad-x), env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 768px) {
  .pcu95front .container {
    padding-left: max(var(--container-padding), env(safe-area-inset-left, 0px));
    padding-right: max(var(--container-padding), env(safe-area-inset-right, 0px));
  }

  .pcu95front .section-head {
    margin-bottom: clamp(22px, 6vw, 36px);
  }

  .pcu95front .section-head__title {
    font-size: clamp(1.25rem, 4.2vw, 1.75rem);
    letter-spacing: 0.1em;
  }

  .pcu95front .section-head__subtitle {
    font-size: 11px;
  }

  .pcu95front .section-more {
    margin-top: clamp(22px, 5vw, 36px);
  }

  .pcu95front .section-more__btn {
    width: 100%;
    max-width: min(320px, 100%);
    min-height: var(--touch-min, 44px);
    padding-left: 20px;
    padding-right: 20px;
  }

  .pcu95front .contact {
    padding: 48px 0 56px;
  }

  .pcu95front .contact-card {
    padding: 20px 22px;
  }

  .pcu95front .contact-card__tel-number {
    font-size: clamp(1.125rem, 4vw, 1.375rem);
  }

  .pcu95front .group-info {
    padding: 52px 0 56px;
  }

  .pcu95front .page-footer {
    padding-top: 22px;
    padding-bottom: max(28px, env(safe-area-inset-bottom, 0px));
  }

  /* スマホ幅：1行・電話と営業時間を横並び（アイコン＋値で短く） */
  .pcu95front .group-2-1 {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .pcu95front .infobar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1em;
    margin-right: 3px;
    font-size: clamp(10px, 2.8vw, 12px);
    opacity: 0.92;
  }

  .pcu95front .infobar__label--desktop,
  .pcu95front .infobar__sep--desktop {
    display: none !important;
  }

  .pcu95front .tel-092-1234-5678,
  .pcu95front .open-close-700 {
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
    text-align: left;
    line-height: 1.25;
    font-size: inherit;
    letter-spacing: 0.02em;
  }

  .pcu95front .tel-092-1234-5678:not(:last-child) {
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }

  /* 番号・時間をアイコンより大きく */
  .pcu95front .group-2-1 .span1 {
    font-size: clamp(11px, 3.2vw, 14px);
    font-weight: 500;
  }
}

/* =========================
   UTILITY
   ========================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   MOBILE CONTACT BAR
   スマホ下部固定の電話 / LINE CTA
   ========================= */
.pcu95front-wrap .mobile-contact-bar {
  display: none;
}

@media (max-width: 768px) {
  .pcu95front-wrap {
    --mobile-cta-height: 64px;
  }

  .pcu95front-wrap .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: block;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding-bottom: max(8px, env(safe-area-inset-bottom, 0px));
  }

  .pcu95front-wrap .mobile-contact-bar__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px max(12px, env(safe-area-inset-left, 0px)) 0 max(12px, env(safe-area-inset-right, 0px));
  }

  .pcu95front-wrap .mobile-contact-bar__btn {
    min-height: var(--touch-min, 44px);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    line-height: 1;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  }

  .pcu95front-wrap .mobile-contact-bar__btn:active {
    transform: translateY(1px);
    opacity: 0.95;
  }

  .pcu95front-wrap .mobile-contact-bar__btn--tel {
    background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
    color: var(--text-primary, #1a1a1a);
    border-color: rgba(17, 24, 39, 0.14);
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.1);
  }

  .pcu95front-wrap .mobile-contact-bar__btn--line {
    background: linear-gradient(135deg, #06c755 0%, #00b84d 100%);
    color: #fff;
    box-shadow: 0 3px 10px rgba(6, 199, 85, 0.35);
  }

  .pcu95front-wrap .mobile-contact-bar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
  }

  .pcu95front-wrap .mobile-contact-bar__text {
    white-space: nowrap;
  }

  .pcu95front-wrap {
    padding-bottom: calc(var(--mobile-cta-height) + env(safe-area-inset-bottom, 0px));
  }

  .pcu95front-wrap .mobile-contact-bar__inner.mobile-contact-bar__inner--single {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================
   本文 main（Inertia 遷移時の opacity フェードは未使用）
   ========================= */
.pcu95front .front-layout-main {
  opacity: 1;
  transition: none;
}

/* =========================
   スクロール連動リビール（IntersectionObserver + .is-visible）
   見た目は transform のみ（opacity は常に 1）
   ========================= */
.pcu95front .scroll-reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.pcu95front .scroll-reveal.is-visible {
  transform: translateY(0);
}

.pcu95front .scroll-reveal.scroll-reveal--instant,
.pcu95front .scroll-reveal.scroll-reveal--instant.is-visible {
  transform: none;
  transition: none !important;
}

/* IO 未接続・no-js はレイアウトずれなし（従来フォールバックと同じ役割） */
.no-js .pcu95front .scroll-reveal,
.pcu95front .scroll-reveal:not([data-scroll-observed]) {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .pcu95front .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================
   :focus-visible（フロント本文・キーボード操作）
   ========================= */
.pcu95front .front-layout-main a:focus-visible,
.pcu95front .front-layout-main button:focus-visible,
.pcu95front .front-layout-main [role='button']:focus-visible,
.pcu95front .front-layout-main input:focus-visible,
.pcu95front .front-layout-main select:focus-visible,
.pcu95front .front-layout-main textarea:focus-visible {
  outline: 2px solid var(--color-primary, var(--accent, #e8919f));
  outline-offset: 2px;
}

/* =========================
   WebpImage（blur 演出は無効 — ガタつき防止）
   ========================= */
.pcu95front .webp-image,
.pcu95top .webp-image {
  filter: none;
  transition: none;
}

/* =========================
   タッチ端末：画像カードの transform / filter 変化を無効化
   ========================= */
@media (hover: none), (pointer: coarse) {
  .pcu95front .cast-card,
  .pcu95front .cast-card__link,
  .pcu95front .cast-card__img,
  .pcu95front .cast-card__media,
  .pcu95top .cast-card,
  .pcu95top .cast-card__link,
  .pcu95top .cast-card__img,
  .pcu95top .wide-card__img,
  .pcu95top .wide-card__link,
  .pcu95front .pd-card,
  .pcu95front .pd-card__img,
  .pcu95front .pd-card__media,
  .pcu95top .pd-card,
  .pcu95top .pd-card__img,
  .pcu95top .pd-compact-card,
  .pcu95profile .thumb,
  .pcu95profile .gallery__main-img,
  .pcu95profile .gallery__main,
  .pcu95profile .video-thumb-wrap img,
  .pcu95castlist .castlist-row__photo-wrap,
  .pcu95castlist .castlist-row__photo,
  .pcu95schedule .cast-card__link {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }

  .pcu95front .cast-card__link:active,
  .pcu95top .cast-card__link:active,
  .pcu95front a:active .cast-card__img,
  .pcu95front a:focus .cast-card__img,
  .pcu95front a:active .pd-card__img,
  .pcu95front a:focus .pd-card__img,
  .pcu95top a:active .cast-card__img,
  .pcu95top a:active .cast-card__link,
  .pcu95top a:active .pd-card__img,
  .pcu95top a:active .wide-card__img,
  .pcu95profile button:active .thumb,
  .pcu95profile button:focus .thumb {
    transform: none !important;
    filter: none !important;
  }
}

.pcu95front a:has(.cast-card__img),
.pcu95front a:has(.pd-card__img),
.pcu95front a:has(.webp-image),
.pcu95top a:has(.cast-card__img),
.pcu95top a:has(.pd-card__img),
.pcu95top a:has(.webp-image),
.pcu95profile a:has(.gallery__main-img),
.pcu95profile button:has(.thumb__img) {
  -webkit-tap-highlight-color: transparent;
}

/* =========================
   WEB予約ウィザード（ReservationPage.jsx）ステップ切替
   ========================= */
.pcu95front .reservation-step-panel {
  animation: reservation-step-fade-in 0.2s ease forwards;
}

@keyframes reservation-step-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcu95front .reservation-step-panel {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcu95front .menu-1 .text,
  .pcu95front .menu-1 .text:hover,
  .pcu95front .footer-nav__link:hover,
  .pcu95front .footer-sitemap__link:hover {
    transform: none;
  }
  .pcu95front .menu-1 .text::after {
    transition: none;
  }
}

