/* ヨベル / YOBERU - 共通スタイル */

:root {
  --navy: #122347;
  --navy-light: #1b3a6b;
  --wine-red: #7a2331;
  --red-warm: #d9573f;
  --gold: #e8b923;
  --bg-white: #ffffff;
  --bg-gray: #f7f8fa;
  --text-main: #1a1a1a;
  --text-muted: #5a5f6a;
  --border-color: #e2e5ea;
  --container-width: 1120px;
  --font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "Meiryo", -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--text-main);
  background: var(--bg-white);
  line-height: 1.7;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.4;
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 1.2em;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー・ナビ */

.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand-main {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.brand-sub {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
}

.brand-logo {
  display: none;
  height: 44px;
  width: auto;
}

.brand-logo.is-loaded {
  display: block;
}

.brand-logo.is-loaded ~ .brand-main,
.brand-logo.is-loaded ~ .brand-sub {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 20px 16px;
}

.site-nav.nav-open {
  display: flex;
}

.site-nav a {
  padding: 10px 4px;
  font-weight: 600;
  color: var(--navy);
}

.site-nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-favorites {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.nav-favorites:hover {
  color: var(--gold);
}

.favorites-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

@keyframes favorites-count-badge-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.favorites-count-badge--pulse {
  animation: favorites-count-badge-pulse 0.4s ease;
}

.favorite-flyer {
  position: fixed;
  background: var(--gold);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.3, 0, 0.6, 1), opacity 0.6s ease-in;
}

.site-nav .nav-cta {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  text-align: center;
  color: var(--navy);
}

.site-nav .nav-cta:hover {
  background: var(--navy);
  color: #ffffff;
}

/* フッター */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 20px 24px;
  margin-top: 60px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-logo-wrap {
  display: inline-block;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 14px;
}

.footer-brand-logo {
  display: block;
  height: 52px;
  width: auto;
}

.footer-brand-tagline {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 320px;
}

.footer-column h3 {
  margin: 0 0 14px;
  font-size: 14px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 24px;
  }
}

/* ボタン */

.button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.button-primary {
  background: var(--navy);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--navy-light);
}

.button-secondary {
  background: var(--bg-white);
  color: var(--navy);
  border-color: var(--navy);
}

.button-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ヒーロー */

.hero-section {
  background: linear-gradient(135deg, var(--wine-red) 0%, #b23a3a 55%, var(--red-warm) 100%);
}

.hero {
  padding: 44px 0 40px;
  text-align: center;
}

.hero-headline {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.hero-headline-lead {
  display: block;
  font-weight: 700;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  color: var(--gold);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: hero-underline-grow 1s ease-out 0.3s forwards;
}

.hero-headline-sub {
  display: block;
  font-size: 0.62em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
}

@keyframes hero-underline-grow {
  to {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-highlight::after {
    animation: none;
    width: 100%;
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 28px;
}

.hero-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hero-search-select {
  width: 100%;
  border: none;
  outline: none;
  background: var(--bg-gray);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-main);
}

.hero-search-select--genre {
  padding-left: 38px;
  background-color: var(--bg-gray);
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23122347' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41 11 3.83A2 2 0 0 0 9.59 3.24L4 3a1 1 0 0 0-1 1l.24 5.59a2 2 0 0 0 .59 1.41l9.58 9.58a2 2 0 0 0 2.83 0l4.35-4.35a2 2 0 0 0 0-2.82Z'/%3E%3Ccircle cx='7.5' cy='7.5' r='1.5'/%3E%3C/svg%3E");
}

.hero-search-select--region {
  padding-left: 38px;
  background-color: var(--bg-gray);
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23122347' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-7.5 7-13a7 7 0 1 0-14 0c0 5.5 7 13 7 13Z'/%3E%3Ccircle cx='12' cy='8' r='2.5'/%3E%3C/svg%3E");
}

.hero-search-button {
  width: 96px;
  height: 73px;
  flex-shrink: 0;
  align-self: center;
  margin: 6px auto 0;
  padding: 28px 0 0;
  border: none;
  background-color: transparent;
  background-image: url("images/bell-shape.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--navy);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
}

.hero-search-button:hover {
  filter: brightness(1.08);
}

@media (min-width: 480px) {
  .hero-search {
    flex-direction: row;
    align-items: center;
    border-radius: 999px;
    padding: 10px;
    gap: 10px;
  }

  .hero-search-select {
    flex: 1;
    width: auto;
    min-width: 0;
  }

  .hero-search-button {
    width: 82px;
    height: 62px;
    margin: 0;
    padding-top: 24px;
    font-size: 13px;
  }
}

/* ヒーロー写真（雰囲気写真が自動で流れる、画面いっぱいのバナー） */

.hero-photo {
  position: relative;
}

.hero-gallery {
  overflow: hidden;
  height: 220px;
}

.hero-gallery-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: hero-gallery-scroll 14s linear infinite;
}

.hero-gallery:hover .hero-gallery-track {
  animation-play-state: paused;
}

.hero-gallery img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-trust-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 92%;
  background: #ffffff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(18, 35, 71, 0.2);
}

.hero-trust-stars {
  color: var(--gold);
  letter-spacing: 1px;
}

@keyframes hero-gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-gallery-track {
    animation: none;
  }
}

/* ジャンルグリッド */

.section {
  padding: 40px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.page-heading {
  margin-top: 32px;
  margin-bottom: 24px;
}

.section-heading-accent h2 {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  padding-bottom: 3px;
  border-bottom: 4px solid;
  border-image: linear-gradient(90deg, var(--navy), var(--gold), var(--red-warm), var(--wine-red)) 1;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.genre-card {
  display: block;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  font-weight: 700;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.genre-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(18, 35, 71, 0.08);
}

.genre-card svg {
  width: 32px;
  height: 32px;
  stroke: var(--navy);
}

.genre-card:hover svg {
  stroke: var(--gold);
}

.genre-card-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-gray);
}

.genre-card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.genre-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 35, 71, 0.45);
}

.genre-card-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

/* シナリオセクション */

.scenario-section {
  background: var(--bg-gray);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}

.scenario-section .scenario-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 24px;
}

.scenario-section .scenario-lead {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  margin-top: 8px;
}

.scenario-uses {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 18px;
  margin: 24px 0 28px;
}

.scenario-use {
  --accent: var(--navy);
  --accent-tint: rgba(18, 35, 71, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 136px;
}

.scenario-use-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent-tint);
  box-shadow: 0 2px 8px rgba(18, 35, 71, 0.08);
}

.scenario-use-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-use-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.3;
  white-space: nowrap;
}

.scenario-use-2 { --accent: var(--gold); --accent-tint: rgba(232, 185, 35, 0.16); }
.scenario-use-3 { --accent: var(--red-warm); --accent-tint: rgba(217, 87, 63, 0.14); }
.scenario-use-4 { --accent: var(--wine-red); --accent-tint: rgba(122, 35, 49, 0.14); }
.scenario-use-5 { --accent: var(--navy-light); --accent-tint: rgba(27, 58, 107, 0.12); }
.scenario-use-6 { --accent: var(--gold); --accent-tint: rgba(232, 185, 35, 0.16); }

/* 選ばれる理由 */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.trust-item {
  --accent: var(--navy);
  --accent-tint: rgba(18, 35, 71, 0.1);
  position: relative;
  padding: 24px 20px 20px;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(18, 35, 71, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(18, 35, 71, 0.12);
}

.trust-item-price { --accent: var(--gold); --accent-tint: rgba(232, 185, 35, 0.14); }
.trust-item-track { --accent: var(--red-warm); --accent-tint: rgba(217, 87, 63, 0.12); }
.trust-item-contact { --accent: var(--wine-red); --accent-tint: rgba(122, 35, 49, 0.12); }

.trust-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.trust-item p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--accent-tint);
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  overflow: visible;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 比較しやすい：棒グラフが伸び縮みする */
.trust-icon-compare .bar {
  fill: var(--accent);
  stroke: none;
  transform-origin: bottom;
  animation: bar-grow 2.4s ease-in-out infinite;
}
.trust-icon-compare .bar-1 { animation-delay: 0s; }
.trust-icon-compare .bar-2 { animation-delay: 0.2s; }
.trust-icon-compare .bar-3 { animation-delay: 0.4s; }

@keyframes bar-grow {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.55); }
}

/* 料金帯が分かる：コインが時々くるっと回る */
.trust-icon-price .coin {
  fill: none;
  transform-origin: center;
  transform-box: fill-box;
  animation: coin-flip 3s ease-in-out infinite;
}
.trust-icon-price .coin circle {
  fill: var(--bg-white);
  stroke: var(--accent);
}
.trust-icon-price .coin text {
  font-size: 10px;
  font-weight: 700;
  fill: var(--accent);
  stroke: none;
}

@keyframes coin-flip {
  0%, 40%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.1); }
  60% { transform: scaleX(1); }
}

/* 実績を確認できる：右肩上がりの線が描かれる */
.trust-icon-track .track-line,
.trust-icon-track .track-arrow {
  stroke: var(--accent);
  stroke-dasharray: 32;
  animation: track-draw 3s ease-in-out infinite;
}
.trust-icon-track .track-arrow {
  stroke-dasharray: 12;
  animation-name: track-draw-arrow;
}

@keyframes track-draw {
  0% { stroke-dashoffset: 32; opacity: 0; }
  15% { opacity: 1; }
  60%, 85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes track-draw-arrow {
  0%, 45% { stroke-dashoffset: 12; opacity: 0; }
  60% { opacity: 1; }
  60%, 85% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

/* 問い合わせが簡単：封筒が軽く揺れて通知が点滅する */
.trust-icon-contact .envelope {
  stroke: var(--accent);
  transform-origin: center;
  transform-box: fill-box;
  animation: envelope-wiggle 2.6s ease-in-out infinite;
}

@keyframes envelope-wiggle {
  0%, 60%, 100% { transform: rotate(0deg); }
  65% { transform: rotate(-6deg); }
  75% { transform: rotate(5deg); }
  85% { transform: rotate(0deg); }
}

.trust-icon-contact .envelope-dot {
  fill: var(--gold);
  stroke: none;
  transform-origin: center;
  transform-box: fill-box;
  animation: dot-pulse 2.6s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 55% { transform: scale(1); opacity: 1; }
  65% { transform: scale(1.3); opacity: 0.7; }
  75% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-icon-compare .bar,
  .trust-icon-price .coin,
  .trust-icon-track .track-line,
  .trust-icon-track .track-arrow,
  .trust-icon-contact .envelope,
  .trust-icon-contact .envelope-dot {
    animation: none;
  }
}

/* 利用の流れ */

.step-section {
  background: var(--bg-gray);
  border-radius: 8px;
  padding: 32px 24px;
}

.step-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step-item {
  text-align: center;
  padding: 8px 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.step-item h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  max-width: 260px;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.step-arrow svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(90deg);
  animation: step-arrow-nudge-vertical 1.6s ease-in-out infinite;
}

@keyframes step-arrow-nudge-vertical {
  0%, 100% { transform: rotate(90deg) translateX(0); opacity: 0.6; }
  50% { transform: rotate(90deg) translateX(8px); opacity: 1; }
}

@media (min-width: 720px) {
  .step-flow {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }

  .step-item {
    flex: 1 1 0;
    max-width: 240px;
  }

  .step-arrow {
    padding-top: 14px;
  }

  .step-arrow svg {
    transform: rotate(0deg);
    animation-name: step-arrow-nudge;
  }

  @keyframes step-arrow-nudge {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(8px); opacity: 1; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .step-arrow svg {
    animation: none;
  }

  .step-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* お客様の声 */

.testimonial-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-snap-align: start;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(18, 35, 71, 0.05);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  color: var(--navy);
}

.testimonial-rating .star {
  color: var(--gold);
  font-size: 16px;
}

.testimonial-quote {
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.testimonial-tag {
  align-self: flex-start;
}

/* 出演者向けCTA */

.performer-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
}

.performer-cta h2 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 10px;
}

.performer-cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 20px;
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
}

.button-gold:hover {
  background: #c59d1e;
}

/* バッジ */

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.badge-genre {
  background: var(--navy);
  color: #ffffff;
}

.badge-tag {
  background: var(--bg-gray);
  color: var(--navy);
  border: 1px solid var(--border-color);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* アバタープレースホルダー */

.avatar-placeholder {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.performer-photo {
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%; /* 縦長ポートレート写真は顔が上寄りに来ることが多いため */
  flex-shrink: 0;
}

/* 出演者詳細ページ：動画/写真メディア表示 */

.performer-media-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-gray);
}

.performer-media-video {
  position: absolute;
  inset: 0;
}

.performer-media-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* フィルターバー（出演者一覧） */

.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.filter-field[hidden] {
  display: none;
}

.filter-field select,
.filter-field input {
  font-family: inherit;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #ffffff;
  color: var(--text-main);
}

.result-count {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* 出演者カードグリッド */

.performer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.performer-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-white);
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.performer-card:hover {
  box-shadow: 0 8px 20px rgba(18, 35, 71, 0.12);
  transform: translateY(-2px);
}

.performer-card-link {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
}

.performer-card-photo {
  position: relative;
  width: 38%;
  flex-shrink: 0;
  background: var(--bg-gray);
}

.performer-card-photo-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.performer-card-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.performer-card-genre-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
}

.performer-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  flex: 1;
  min-width: 0;
}

.performer-card-name {
  font-size: 18px;
  margin: 0;
}

.performer-card-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 2px 0 0;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.performer-card-catchphrase {
  color: var(--text-muted);
  font-size: 14px;
  margin: 6px 0 0;
}

.performer-card-cta {
  display: block;
  width: 100%;
  margin-top: auto;
  text-align: center;
  font-size: 14px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

/* 出演者詳細ページ */

.performer-detail-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
}

.performer-media {
  display: flex;
  flex-direction: column;
}

.performer-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: var(--bg-gray);
  border-radius: 8px;
  text-align: center;
}

.performer-summary h1 {
  font-size: 22px;
  margin: 4px 0;
}

.performer-summary-facts {
  list-style: none;
  padding: 0;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--text-muted);
}

.performer-summary-catchphrase {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 4px;
}

.performer-summary-cta {
  margin-top: 8px;
  text-align: center;
}

.performer-favorite-toggle {
  margin-top: 4px;
  width: 100%;
}

.performer-favorite-toggle.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

@media (min-width: 960px) {
  .performer-detail-layout {
    flex-direction: row;
    align-items: stretch;
  }

  .performer-media {
    flex: 2.3;
    justify-content: center;
  }

  .performer-summary {
    flex: 1;
    position: sticky;
    top: 96px;
  }
}

.performer-detail-section {
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
}

/* 作業までの流れ */

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-steps li {
  display: flex;
  gap: 16px;
}

.process-step-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-weight: 700;
}

.process-step-body h3 {
  margin: 4px 0 4px;
  font-size: 16px;
}

.process-step-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* キャンセルポリシー */

.cancellation-table-wrap {
  overflow-x: auto;
}

.cancellation-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.cancellation-table th,
.cancellation-table td {
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.cancellation-table th {
  background: var(--bg-gray);
  color: var(--navy);
}

.cancellation-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* 比較リストページ */

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.compare-item-link {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.compare-item-body {
  min-width: 0;
}

.compare-item-name {
  margin: 6px 0 4px;
  font-size: 17px;
  color: var(--navy);
}

.compare-item-catchphrase {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.compare-item-remove {
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

.compare-item-remove:hover {
  border-color: var(--wine-red);
  color: var(--wine-red);
}

.performer-not-found {
  text-align: center;
  padding: 80px 20px;
}

/* 送信完了ページ */

.thanks-section {
  text-align: center;
  padding: 80px 20px;
}

.thanks-section p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 12px auto 28px;
}

.performer-not-found a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

/* フォーム（問い合わせ） */

.form-note {
  color: var(--text-muted);
  font-size: 14px;
}

form label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 16px;
}

form .required {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  margin-left: 6px;
}

form input,
form select,
form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  font-family: inherit;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-main);
}

form textarea {
  resize: vertical;
}

.form-checkbox-group {
  margin-bottom: 16px;
}

.form-checkbox-group[hidden] {
  display: none;
}

.form-checkbox-group-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-checkbox-option input[type="checkbox"] {
  width: auto;
  display: inline-block;
  margin-top: 0;
}

/* レスポンシブ: タブレット以上 */

@media (min-width: 640px) {
  .genre-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .filter-bar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }

  .filter-field {
    flex: 1 1 160px;
  }

  .hero-gallery {
    height: 320px;
  }

  .hero-gallery-track {
    animation-duration: 24s;
  }
}

/* レスポンシブ: デスクトップ以上 */

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    position: static;
    border-bottom: none;
    padding: 0;
    gap: 24px;
  }

  .genre-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .performer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-headline {
    font-size: 38px;
  }

  .hero-highlight {
    font-size: 44px;
  }

  .hero-headline-sub {
    margin-top: 6px;
  }
}
