/* =========================================================
   YANAGAWA BANKSY — Luxury Night Lounge Theme
   inspired by high-end club sites (black × gold × pink)
   ========================================================= */

:root {
  --bg:        #050505;
  --bg-dark:   #000000;
  --bg-card:   #0d0a0a;
  --paper:     #f8f5f1;   /* オフホワイト */
  --paper-2:   #efe9e1;
  --ink:       #f7f3f0;
  --ink-mute:  #a89e98;
  --ink-dark:  #1a1413;

  --pink:      #ff1f7a;
  --pink-deep: #c4135b;
  --pink-soft: #ffb3d1;
  --gold:      #c9a96a;
  --gold-2:    #e6c98a;
  --line:      rgba(255, 255, 255, 0.1);
  --line-dark: rgba(0, 0, 0, 0.1);

  --font-serif:   "Cormorant Garamond", "Shippori Mincho", serif;
  --font-mincho:  "Shippori Mincho", "游明朝", serif;
  --font-display: "Cormorant Garamond", serif;
  --font-banksy:  "Cormorant Garamond", "Caprasimo", serif;
  --font-jp:      "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-jp);
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}
.container.narrow { max-width: 820px; }
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: #000;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ink-mute);
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 40px;
  display: flex; justify-content: space-between;
}
.topbar-tag { color: var(--gold); }
@media (max-width: 720px) {
  .topbar-inner { padding: 8px 20px; font-size: 10px; gap: 8px; }
  .topbar-hours { text-align: right; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 40px;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.brand {
  grid-column: 2;
  text-align: center;
}
.brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 4px;
}
.brand-en {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  color: var(--gold);
  font-weight: 500;
}
.brand-sub {
  font-family: var(--font-mincho);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--ink-mute);
}
.brand-banksy {
  font-family: var(--font-banksy);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--pink);
  text-shadow: 0 0 30px rgba(255,31,122,0.5);
}

.nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex; justify-content: center; gap: 32px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.nav a {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  transition: color .25s;
  position: relative;
  padding: 2px 0;
}
.nav a::after {
  content: "";
  position: absolute; left: 50%; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s, left .3s;
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; left: 0; }

.menu-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  background: transparent;
  border: 0;
  width: 32px; height: 32px;
  cursor: pointer;
  flex-direction: column; gap: 6px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 100%; height: 1px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}

@media (max-width: 860px) {
  .site-header { padding: 14px 20px; grid-template-columns: 1fr auto 1fr; }
  .brand-en { font-size: 18px; }
  .brand-banksy { font-size: 22px; }
  .nav { display: none; flex-direction: column; gap: 14px; margin-top: 14px; }
  .nav.open { display: flex; }
  .menu-toggle { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 80px 24px;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(255,31,122,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 15% 85%, rgba(201,169,106,0.18) 0%, transparent 65%),
    radial-gradient(ellipse at 50% 100%, rgba(196,19,91,0.25) 0%, transparent 60%),
    linear-gradient(180deg, #000 0%, #0a0505 100%);
  z-index: -3;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.12;
  mix-blend-mode: overlay;
  z-index: -2;
  pointer-events: none;
}

.hero-stage {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.55em;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 36px;
  text-indent: 0.55em;
}
.hero-eyebrow span {
  color: var(--gold);
  margin: 0 12px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}
.hero-line {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  font-size: clamp(56px, 11vw, 140px);
  letter-spacing: 0.04em;
  display: block;
}
.hero-line.line-1 {
  color: var(--ink);
  font-style: italic;
}
.hero-line.line-2 {
  color: var(--pink);
  font-family: var(--font-banksy);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 0 50px rgba(255,31,122,0.5);
  font-size: clamp(72px, 14vw, 180px);
}
.hero-divider {
  color: var(--gold);
  opacity: 0.8;
  margin: 4px 0;
}

.hero-tag {
  font-family: var(--font-mincho);
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 500;
}
.hero-jp {
  font-family: var(--font-mincho);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin-bottom: 48px;
}

.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.hero-art {
  position: absolute;
  bottom: 0; right: 5%;
  width: clamp(100px, 14vw, 180px);
  color: var(--gold);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.hero-art .hero-girl { color: var(--gold); }

.scroll-indicator {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.4em;
  color: var(--ink-mute);
}
.scroll-indicator i {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-display);
  letter-spacing: 0.25em;
  font-size: 13px;
  border-radius: 0;
  transition: transform .3s, background .3s, color .3s, border-color .3s, box-shadow .3s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255,31,122,0.35);
  border-color: var(--pink);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255,31,122,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: #000;
}
.btn-outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: #fff;
}

/* =========================================================
   SECTION COMMON
   ========================================================= */
.section {
  padding: 120px 0;
  position: relative;
  background: var(--paper);
  color: var(--ink-dark);
}
.section.dark {
  background: var(--bg);
  color: var(--ink);
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
}

.section-head {
  text-align: center;
  margin-bottom: 72px;
}
.kicker {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.5em;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 16px;
  text-indent: 0.5em;
}
.kicker.pink { color: var(--pink); }
.section-title {
  font-family: var(--font-mincho);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section.dark .section-title { color: var(--ink); }
.section-sub {
  font-family: var(--font-display);
  letter-spacing: 0.35em;
  font-size: 12px;
  color: var(--ink-mute);
  text-indent: 0.35em;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-art .art-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255,31,122,0.3) 0%, transparent 65%),
    linear-gradient(160deg, #1a0a14 0%, #050505 100%);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  overflow: hidden;
}
.about-art .art-frame::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(201,169,106,0.3);
  pointer-events: none;
}
.about-art .art-girl {
  width: 65%; height: auto;
  color: var(--ink);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}
.frame-label {
  position: absolute;
  left: 20px; bottom: 20px;
  font-family: var(--font-display);
  letter-spacing: 0.35em;
  color: var(--gold);
  font-size: 11px;
}

.about-text .lead {
  font-family: var(--font-mincho);
  font-size: 17px;
  line-height: 2.1;
  margin-bottom: 24px;
  color: var(--ink);
}
.about-text p { color: var(--ink-mute); margin-bottom: 18px; font-size: 14px; }

.badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 32px;
}
.badges li {
  font-family: var(--font-display);
  letter-spacing: 0.25em;
  font-size: 11px;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* =========================================================
   POINT
   ========================================================= */
.point-section { background: var(--paper); }
.point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .point-grid { grid-template-columns: 1fr; }
}

.point-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-dark);
  padding: 56px 32px 40px;
  text-align: center;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  overflow: hidden;
}
.point-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.point-card.featured {
  background: linear-gradient(180deg, #1a1413 0%, #0a0505 100%);
  color: var(--ink);
  border-color: var(--gold);
}
.point-card.featured h3 { color: var(--gold-2); }
.point-card.featured p { color: var(--ink-mute); }
.point-card.featured .point-num { color: var(--pink); opacity: 0.8; }

.point-num {
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  font-style: italic;
}
.point-mark {
  width: 70px; height: 90px;
  margin: 0 auto 24px;
  color: var(--pink);
}
.point-mark.gold { color: var(--gold); height: 70px; }
.point-mark svg { width: 100%; height: 100%; }

.point-badge {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.3em;
  padding: 4px 12px;
  background: var(--pink);
  color: #fff;
}

.point-card h3 {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  color: var(--ink-dark);
}
.point-card p {
  font-size: 13px;
  line-height: 2;
  color: #5a5048;
}

/* =========================================================
   CAST
   ========================================================= */
.cast-section { background: var(--bg-dark); }
.cast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .cast-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.cast-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,31,122,0.05), rgba(15,10,10,0.6));
  transition: transform .35s, border-color .35s;
}
.cast-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
}
.cast-photo {
  aspect-ratio: 3 / 4;
  display: grid; place-items: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,31,122,0.25), transparent 60%),
    linear-gradient(135deg, #1a0a14 0%, #050505 100%);
  font-family: var(--font-display);
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}
.cast-card figcaption {
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line);
}
.cast-rank {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.3em;
  padding: 3px 10px;
  border: 1px solid var(--pink);
  color: var(--pink);
}
.cast-name {
  font-family: var(--font-mincho);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--ink);
}

.cast-note {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}

/* =========================================================
   SYSTEM
   ========================================================= */
.system-section { background: var(--paper-2); }
.system-table-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  padding: 48px;
  border: 1px solid var(--line-dark);
}
@media (max-width: 720px) {
  .system-table-wrap { padding: 24px; }
}
.system-table {
  width: 100%;
  border-collapse: collapse;
}
.system-table tr {
  border-bottom: 1px solid var(--line-dark);
}
.system-table tr:last-child { border-bottom: 0; }
.system-table th,
.system-table td {
  padding: 22px 12px;
  text-align: left;
  font-weight: 400;
  vertical-align: middle;
}
.system-table th {
  font-family: var(--font-mincho);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--ink-dark);
  width: 40%;
}
.system-table td {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--pink);
  width: 25%;
  font-style: italic;
}
.system-table td.muted {
  font-family: var(--font-jp);
  color: #8a7e76;
  font-size: 12px;
  font-style: normal;
  width: 35%;
}
.system-table .ask {
  letter-spacing: 0.15em;
  font-weight: 500;
}
@media (max-width: 720px) {
  .system-table th,
  .system-table td { display: block; width: 100%; padding: 8px 0; }
  .system-table tr { padding: 18px 0; display: block; }
}

.system-foot {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: #6a605a;
  letter-spacing: 0.1em;
}

/* =========================================================
   NEWS
   ========================================================= */
.news-section { background: var(--bg-dark); }
.news-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.news-list li {
  display: grid;
  grid-template-columns: 130px 80px 1fr;
  gap: 24px; align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .25s;
}
.news-list li:hover { background: rgba(255,31,122,0.04); }
.news-list time {
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  color: var(--gold);
  font-size: 14px;
}
.news-tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-align: center;
  padding: 4px 0;
  border: 1px solid var(--pink);
  color: var(--pink);
}
.news-list p { font-size: 14px; color: var(--ink); }
@media (max-width: 600px) {
  .news-list li { grid-template-columns: 1fr; gap: 6px; }
  .news-tag { justify-self: start; padding: 4px 12px; }
}

/* =========================================================
   INFO
   ========================================================= */
.info-section { background: var(--paper); }
.info-list {
  border-top: 1px solid var(--line-dark);
}
.info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line-dark);
}
.info-row dt {
  font-family: var(--font-display);
  letter-spacing: 0.25em;
  color: var(--pink);
  font-size: 13px;
  padding-top: 2px;
}
.info-row dd {
  font-family: var(--font-mincho);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--ink-dark);
}
.info-row dd small {
  color: #8a7e76; font-size: 12px; margin-left: 6px;
}
.info-row dd a { color: var(--pink); border-bottom: 1px solid var(--pink); padding-bottom: 1px; }
@media (max-width: 600px) {
  .info-row { grid-template-columns: 1fr; gap: 4px; }
}

/* =========================================================
   ACCESS
   ========================================================= */
.access-section { background: var(--bg-dark); }
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 860px) { .access-grid { grid-template-columns: 1fr; } }

.access-text h3 {
  font-family: var(--font-mincho);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.access-text p {
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.access-map {
  min-height: 360px;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  filter: grayscale(0.5) contrast(1.05) brightness(0.85);
  transition: filter .35s;
  position: relative;
}
.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}
.access-map:hover { filter: grayscale(0) contrast(1) brightness(1); }
@media (max-width: 720px) {
  .access-map { min-height: 320px; }
  .access-map iframe { min-height: 320px; }
}

/* =========================================================
   RECRUIT
   ========================================================= */
.recruit-section {
  background: linear-gradient(135deg, #1a0a14 0%, #050505 100%);
  color: var(--ink);
  padding: 80px 0;
}
.recruit-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 60px;
  border: 1px solid var(--gold);
  background: rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}
.recruit-card::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,31,122,0.3), transparent 70%);
  border-radius: 50%;
}
.recruit-text {
  position: relative;
}
.recruit-text h2 {
  font-family: var(--font-mincho);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.recruit-text p {
  color: var(--ink-mute);
  margin-bottom: 24px;
  font-size: 14px;
}
.recruit-art {
  width: 140px;
  color: var(--pink);
  opacity: 0.5;
  position: relative;
}
@media (max-width: 720px) {
  .recruit-card { grid-template-columns: 1fr; padding: 36px 24px; }
  .recruit-art { display: none; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #000;
  color: var(--ink);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-brand {
  text-align: center;
  margin-bottom: 56px;
}
.footer-tag {
  margin-top: 16px;
  color: var(--ink-mute);
  font-family: var(--font-mincho);
  font-size: 13px;
  letter-spacing: 0.25em;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; gap: 28px; text-align: center; }
}
.footer-cols h4 {
  font-family: var(--font-display);
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-cols ul li {
  font-size: 13px;
  color: var(--ink-mute);
  padding: 4px 0;
}
.footer-cols a:hover { color: var(--pink); }
.footer-copy {
  margin-top: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s cubic-bezier(.16,1,.3,1), transform 1.2s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   ¥6,000,000 — LUXURY UPGRADE LAYER
   オープニング・カーソル・グレイン・縦書き・パララックス・微細演出
   ========================================================= */

/* --- ロード時はスクロール禁止＆フェードイン --- */
html.is-loading,
html.is-loading body {
  overflow: hidden;
}
html.is-loading body > *:not(.loader):not(.cursor):not(.grain):not(svg) {
  opacity: 0;
}
body > *:not(.loader):not(.cursor):not(.grain):not(svg) {
  transition: opacity 1.2s ease 0.2s;
}

/* --- オープニングローダー --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 1s ease;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
}
.loader-curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000 0%, #1a0a14 100%);
  transform-origin: top;
  transition: transform 1.2s cubic-bezier(.86,0,.07,1) 0.4s;
}
.loader.is-done .loader-curtain {
  transform: scaleY(0);
  transform-origin: top;
}
.loader-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.loader-mark {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, #fff 0%, var(--gold) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: loaderPulse 1.8s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.7; letter-spacing: 0.1em; }
  50%      { opacity: 1;   letter-spacing: 0.18em; }
}
.loader-en {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  opacity: 0.8;
}
.loader-bar {
  display: block;
  width: 140px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.loader-bar i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--pink), transparent);
  animation: loaderBar 1.4s ease-in-out infinite;
}
@keyframes loaderBar {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* --- カスタムカーソル（PCのみ） --- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  html.cursor-ready,
  html.cursor-ready * { cursor: none !important; }
}
.cursor-dot {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: #ff1f7a;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-ring {
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .25s cubic-bezier(.16,1,.3,1),
              height .25s cubic-bezier(.16,1,.3,1),
              border-color .25s,
              transform .15s ease-out;
}
.cursor.is-hover .cursor-ring {
  width: 64px; height: 64px;
  border-color: var(--pink);
}
.cursor.is-hover .cursor-dot {
  width: 0; height: 0;
}
.cursor.is-text .cursor-ring {
  width: 4px; height: 28px;
  border-radius: 2px;
  background: #fff;
  border: none;
}
.cursor.is-text .cursor-dot { width: 0; height: 0; }

/* --- フィルムグレイン（全体に薄くノイズ） --- */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  animation: grainShift 8s steps(8) infinite;
  mix-blend-mode: overlay;
  will-change: transform;
}
/* モバイルでは動かさない（パフォーマンス優先） */
@media (max-width: 720px) {
  .grain { animation: none; opacity: 0.04; }
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  10%  { transform: translate(-2%,-3%); }
  20%  { transform: translate(-4%,2%); }
  30%  { transform: translate(3%,-4%); }
  40%  { transform: translate(-3%,3%); }
  50%  { transform: translate(2%,2%); }
  60%  { transform: translate(-2%,-2%); }
  70%  { transform: translate(4%,-3%); }
  80%  { transform: translate(-3%,4%); }
  90%  { transform: translate(2%,-2%); }
  100% { transform: translate(0,0); }
}

/* --- 縦書きキャッチ（ヒーロー左右） --- */
.hero { overflow: hidden; min-height: 100vh; }
.hero-vertical {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  opacity: 0.55;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-vertical-left  { left: 28px; }
.hero-vertical-right {
  right: 28px;
  font-family: var(--font-mincho);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--ink);
  opacity: 0.4;
  writing-mode: vertical-rl;
}
.hero-vertical-right .dot { display: none; }
.hero-vertical .dot {
  opacity: 0.5;
  font-style: normal;
}
@media (max-width: 900px) {
  .hero-vertical { display: none; }
}

/* --- ヒーロー強化（パララックス対応） --- */
.hero-bg {
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255,31,122,0.18), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201,169,106,0.12), transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(196,19,91,0.10), transparent 70%);
  z-index: 1;
  will-change: transform;
}
/* ボタンと下メタが被らないよう、下にしっかり余白 */
.hero-stage {
  position: relative;
  z-index: 3;
  padding-block: 80px 220px;
}
.hero-art { z-index: 2; will-change: transform; opacity: 0.5; }

@media (max-width: 720px) {
  .hero-stage { padding-block: 60px 180px; }
}

/* --- ヒーロー下メタ（数字3点） --- */
.hero-meta {
  position: absolute;
  bottom: 60px;     /* SCROLLは左下なので下に余裕あり */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
  z-index: 4;
  padding-top: 24px;
  border-top: 1px solid rgba(201,169,106,0.3);
  min-width: 480px;
  justify-content: center;
}
.meta-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.meta-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.meta-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .hero-meta {
    bottom: 60px;
    min-width: auto;
    gap: 28px;
    padding-top: 16px;
  }
  .meta-num { font-size: 16px; }
  .meta-label { font-size: 8px; }
}

/* --- スクロールリビール強化（方向別） --- */
.reveal-up    { opacity:0; transform: translateY(40px); }
.reveal-left  { opacity:0; transform: translateX(-40px); }
.reveal-right { opacity:0; transform: translateX(40px); }
.reveal-zoom  { opacity:0; transform: scale(0.94); }
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible {
  opacity:1; transform: none;
  transition: opacity 1.4s cubic-bezier(.16,1,.3,1),
              transform 1.4s cubic-bezier(.16,1,.3,1);
}

/* --- Split text（1文字ずつフェード） --- */
.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%) rotateX(-90deg);
  transform-origin: bottom;
  transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1);
}
.split-text.is-in .char {
  opacity: 1;
  transform: none;
}

/* --- magnetic button --- */
.magnetic { position: relative; will-change: transform; transition: transform .3s cubic-bezier(.16,1,.3,1); }
.btn { transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s, color .3s, border-color .3s; }

/* --- セクション余白増加（高級感） --- */
.section { padding: 140px 0; }
@media (max-width: 720px) {
  .section { padding: 90px 0; }
}

/* --- セクションタイトル装飾追加 --- */
.section-head {
  position: relative;
}
.section-head::after {
  content: "";
  display: block;
  width: 1px; height: 60px;
  margin: 36px auto 0;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.6;
}
.section-head.light::after {
  background: linear-gradient(180deg, var(--gold), transparent);
}

/* --- セクションのキックエッジ装飾 --- */
.section { position: relative; }
.section.dark::before {
  content: "";
  position: absolute;
  top: 60px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* --- カードのhover強化 --- */
.point-card { transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .4s, background .4s; }
.point-card:hover { transform: translateY(-8px); }
.cast-card { transition: transform .5s cubic-bezier(.16,1,.3,1); }
.cast-card:hover { transform: translateY(-4px); }
.cast-photo { transition: filter .5s, transform .8s cubic-bezier(.16,1,.3,1); filter: grayscale(0.5); }
.cast-card:hover .cast-photo { filter: grayscale(0); transform: scale(1.03); }

/* --- bodyの初期グラデーション微調整 --- */
body {
  background:
    radial-gradient(ellipse at top, #0a0507 0%, #050505 50%),
    var(--bg);
  background-attachment: fixed;
}

/* --- ヒーローライン1（YANAGAWA）も微調整 --- */
.hero-line.line-1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
  font-size: clamp(40px, 6vw, 72px);
  color: var(--ink);
  opacity: 0.95;
}

/* --- スクロールインジケーター強化（位置：左下に移動して重なり回避） --- */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 40px;       /* 右→左に移動。メタ数字とも重ならない */
  right: auto;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  opacity: 0.7;
}
.scroll-indicator i {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-indicator i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff, transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(20%); }
  100% { transform: translateY(120%); }
}
@media (max-width: 720px) {
  .scroll-indicator { left: 20px; right: auto; bottom: 16px; font-size: 9px; }
  .scroll-indicator i { height: 32px; }
  .hero-meta { bottom: 80px; }
}

/* --- Cast photoにグラデーション追加 --- */
.cast-photo {
  position: relative;
  background:
    linear-gradient(135deg, #1a0a14 0%, #0a0707 100%);
  overflow: hidden;
}
.cast-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,31,122,0.15), transparent 70%);
}

/* --- Newsアイテムのhoverライン --- */
.news-list li {
  position: relative;
  transition: padding-left .4s ease;
}
.news-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s ease;
  transform: translateY(-50%);
}
.news-list li:hover { padding-left: 24px; }
.news-list li:hover::before { width: 18px; }

/* --- Footerにロゴグロー --- */
.footer-brand .brand-logo {
  position: relative;
}
.footer-brand .brand-logo::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,31,122,0.1), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* --- 縦線装飾を各セクションに --- */
.kicker {
  position: relative;
  padding: 0 24px;
  display: inline-block;
}
.kicker::before,
.kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px; height: 1px;
  background: currentColor;
  opacity: 0.4;
  transform: translateY(-50%);
}
.kicker::before { left: -30px; }
.kicker::after  { right: -30px; }

/* --- リダクション設定（モーションを抑える人向け） --- */
@media (prefers-reduced-motion: reduce) {
  .grain { display: none; }
  .loader { display: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   ¥10,000,000 — QUALITY UPGRADE LAYER
   金箔・大理石・ガラス・光沢・多重シャドウで質感を極限まで
   ========================================================= */

/* --- カラー追加（深みのある色） --- */
:root {
  --gold-grad: linear-gradient(135deg, #e6c98a 0%, #c9a96a 25%, #8b6f3f 50%, #c9a96a 75%, #f5dca0 100%);
  --pink-grad: linear-gradient(135deg, #ff5ba1 0%, #ff1f7a 50%, #c4135b 100%);
  --paper-tex: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.15 0'/></filter><rect width='100%' height='100%' filter='url(%23p)'/></svg>");
  --marble-tex: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='4' seed='5'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.93  0 0 0 0 0.88  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23m)'/></svg>");

  --shadow-deep:
    0 1px 2px rgba(0,0,0,0.4),
    0 8px 24px rgba(0,0,0,0.45),
    0 24px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(201,169,106,0.1) inset;
  --shadow-glow:
    0 0 24px rgba(255,31,122,0.15),
    0 8px 32px rgba(0,0,0,0.4),
    0 0 0 1px rgba(201,169,106,0.15) inset;
}

/* --- BANKSY 文字：金箔のような光沢ピンク --- */
.hero-line.line-2 {
  background: linear-gradient(
    180deg,
    #ffb3d1 0%,
    #ff5ba1 25%,
    #ff1f7a 50%,
    #c4135b 75%,
    #ff1f7a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  filter:
    drop-shadow(0 0 30px rgba(255,31,122,0.4))
    drop-shadow(0 0 60px rgba(255,31,122,0.2));
}

/* YANAGAWA に金箔風グラデ */
.hero-line.line-1 {
  background: linear-gradient(180deg, #fff 0%, #f7f3f0 50%, #e6c98a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* --- セクションタイトル：金箔細グラデ --- */
.section-title {
  position: relative;
}
/* 暗いセクション：白→金グラデ */
.section.dark .section-title,
.section.dark .recruit-text h2 {
  background: linear-gradient(180deg, #fff 0%, #f0e6d4 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
/* 明るいセクション：濃い黒→ほんの少しだけ金（最後の数%のみ） */
.section:not(.dark) .section-title {
  background: linear-gradient(180deg, var(--ink-dark) 0%, var(--ink-dark) 88%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--ink-dark);
  -webkit-text-fill-color: transparent;
}

/* --- 大理石テクスチャを全body背景に薄く --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--marble-tex);
  background-size: 800px;
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* --- 紙テクスチャ：明るいセクション（point, system, info, recruit） --- */
.point-section,
.system-section,
.info-section,
.recruit-section {
  position: relative;
}
.point-section::before,
.system-section::before,
.info-section::before,
.recruit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-tex);
  background-size: 400px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.point-section > *,
.system-section > *,
.info-section > *,
.recruit-section > * {
  position: relative;
  z-index: 1;
}

/* --- TOPBAR：ガラス＋金線下 --- */
.topbar {
  background: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(10,5,7,0.95));
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
  position: relative;
  z-index: 102;
}
.topbar::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -1px;
  width: 200px; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

/* --- HEADER：ガラスを濃く＆下に金線 --- */
.site-header {
  background: linear-gradient(180deg, rgba(5,5,5,0.85), rgba(5,5,5,0.7));
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: none;
  position: sticky;
  box-shadow:
    0 1px 0 rgba(201,169,106,0.15),
    0 16px 40px rgba(0,0,0,0.4);
}

/* --- ロゴ：BANKSY部分に金箔縁取り（micro highlight） --- */
.brand-banksy {
  position: relative;
  text-shadow:
    0 0 1px rgba(255,255,255,0.2),
    0 0 10px rgba(255,31,122,0.4);
}

/* --- ヒーローエンブレム（中央背景に紋章） --- */
.hero-stage::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  background:
    radial-gradient(circle, transparent 40%, rgba(201,169,106,0.08) 41%, rgba(201,169,106,0.08) 42%, transparent 43%),
    radial-gradient(circle, transparent 55%, rgba(201,169,106,0.05) 56%, rgba(201,169,106,0.05) 57%, transparent 58%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.hero-stage::after {
  content: "Y · B";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 280px;
  letter-spacing: 0.1em;
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(201,169,106,0.12);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .hero-stage::after { font-size: 160px; }
  .hero-stage::before { width: 280px; height: 280px; }
}

/* --- ボタン：質感全面強化 --- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.4em;
  font-weight: 500;
  isolation: isolate;
}
.btn > span { position: relative; z-index: 2; }
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.25) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left .8s cubic-bezier(.16,1,.3,1);
  z-index: 1;
}
.btn:hover::before { left: 130%; }

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.15) inset,
    0 -2px 0 rgba(0,0,0,0.2) inset,
    0 4px 16px rgba(255,31,122,0.4),
    0 12px 32px rgba(255,31,122,0.2),
    0 0 0 1px rgba(255,255,255,0.05);
}
.btn-primary:hover {
  box-shadow:
    0 2px 0 rgba(255,255,255,0.2) inset,
    0 -2px 0 rgba(0,0,0,0.2) inset,
    0 6px 24px rgba(255,31,122,0.6),
    0 16px 48px rgba(255,31,122,0.3),
    0 0 0 1px rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid transparent;
  background-image:
    linear-gradient(rgba(5,5,5,0.6), rgba(5,5,5,0.6)),
    linear-gradient(135deg, var(--gold), var(--gold-2), var(--gold));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 4px 20px rgba(0,0,0,0.3),
    0 0 0 1px rgba(201,169,106,0.2);
}
.btn-ghost:hover {
  color: var(--gold-2);
  box-shadow:
    0 6px 28px rgba(0,0,0,0.4),
    0 0 24px rgba(201,169,106,0.2),
    0 0 0 1px rgba(201,169,106,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 32px;
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* --- ポイントカード：ガラスモーフィズム＋多重影 --- */
.point-card {
  background: linear-gradient(155deg,
    rgba(255,255,255,0.6) 0%,
    rgba(255,255,255,0.4) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.05),
    0 8px 24px rgba(0,0,0,0.08),
    0 24px 60px rgba(0,0,0,0.06),
    0 0 0 1px rgba(201,169,106,0.1) inset;
  position: relative;
  overflow: hidden;
}
.point-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.6), transparent 50%);
  pointer-events: none;
}
.point-card.featured {
  background: linear-gradient(155deg,
    rgba(255,31,122,0.95) 0%,
    rgba(196,19,91,1) 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow:
    0 2px 4px rgba(255,31,122,0.3),
    0 12px 32px rgba(255,31,122,0.25),
    0 32px 80px rgba(255,31,122,0.15),
    0 0 0 1px rgba(255,255,255,0.1) inset;
}
.point-card.featured::before {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.25), transparent 60%);
}
.point-num {
  font-family: var(--font-display);
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- CASTカード：シネマティックなガラス --- */
.cast-card {
  background: linear-gradient(155deg,
    rgba(20,10,15,0.8) 0%,
    rgba(10,7,7,0.95) 100%);
  border: 1px solid rgba(201,169,106,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.5),
    0 12px 32px rgba(0,0,0,0.4),
    0 32px 80px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
  position: relative;
}
.cast-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.cast-card:hover {
  border-color: rgba(201,169,106,0.4);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.5),
    0 16px 48px rgba(0,0,0,0.5),
    0 40px 100px rgba(255,31,122,0.15),
    0 0 0 1px rgba(201,169,106,0.2) inset;
}

/* --- SYSTEM テーブル：質感アップ --- */
.system-table-wrap {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,169,106,0.2);
  border-radius: 2px;
  padding: 48px;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.06),
    0 16px 48px rgba(0,0,0,0.05),
    0 32px 80px rgba(0,0,0,0.04),
    0 0 0 1px rgba(255,255,255,0.5) inset;
  position: relative;
}
.system-table-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.system-table th { font-family: var(--font-display); letter-spacing: 0.15em; font-weight: 600; }
.ask {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* --- INFO リスト：金箔縁取り --- */
.info-row {
  border-bottom: 1px solid rgba(201,169,106,0.15);
  padding: 24px 0;
  transition: padding-left .4s ease, background .4s ease;
}
.info-row:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(201,169,106,0.04), transparent);
}
.info-row dt {
  font-family: var(--font-display);
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 12px;
}

/* --- ABOUT セクション：金箔の額縁 --- */
.about-art .art-frame {
  position: relative;
  padding: 32px;
  border: 1px solid transparent;
  background-image:
    linear-gradient(rgba(5,5,5,0.9), rgba(20,10,15,0.95)),
    linear-gradient(135deg, var(--gold-2), var(--gold), #8b6f3f, var(--gold-2));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.4),
    0 0 0 1px rgba(201,169,106,0.2) inset,
    0 0 80px rgba(255,31,122,0.1) inset;
}
.art-frame::before,
.art-frame::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--gold);
}
.art-frame::before {
  top: 8px; left: 8px;
  border-right: none; border-bottom: none;
}
.art-frame::after {
  bottom: 8px; right: 8px;
  border-left: none; border-top: none;
}
.frame-label {
  position: absolute;
  bottom: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0 16px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
}

/* --- 金箔の光点（ヒーロー背景の浮遊光） --- */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(201,169,106,0.6), transparent 50%),
    radial-gradient(1.5px 1.5px at 78% 32%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(2px 2px at 24% 72%, rgba(201,169,106,0.5), transparent 50%),
    radial-gradient(1px 1px at 62% 80%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(201,169,106,0.4), transparent 50%),
    radial-gradient(1px 1px at 40% 28%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(2px 2px at 92% 88%, rgba(201,169,106,0.4), transparent 50%),
    radial-gradient(1px 1px at 8% 50%, rgba(255,255,255,0.4), transparent 50%);
  z-index: 2;
  pointer-events: none;
  animation: particleFloat 12s ease-in-out infinite;
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.7; }
  50%      { transform: translateY(-30px) translateX(10px); opacity: 1; }
}

/* --- ナビ：高級ホテル風 underline --- */
.nav a {
  position: relative;
  padding: 8px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  transition: width .5s cubic-bezier(.16,1,.3,1);
}
.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--gold-2); }

/* --- メタ数字：下に金箔線 --- */
.meta-cell {
  position: relative;
  padding: 0 16px;
}
.meta-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%; right: -30px;
  width: 1px; height: 24px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateY(-50%);
}

/* --- News：質感アップ（ガラス＋金線） --- */
.news-list li {
  background: linear-gradient(155deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(201,169,106,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 28px 32px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  position: relative;
}
/* モバイルでは縦積みに（ギュッと詰まり解消） */
@media (max-width: 720px) {
  .news-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 22px 22px;
  }
  .news-list li:hover { padding-left: 22px; }
  .news-list li:hover::before { width: 0; }
  .news-list time {
    font-size: 12px;
    letter-spacing: 0.25em;
  }
  .news-list p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
  }
  .news-tag { min-width: auto; padding: 3px 10px; font-size: 9.5px; }
}
.news-list li:hover {
  border-color: rgba(201,169,106,0.35);
  background: linear-gradient(155deg,
    rgba(255,31,122,0.04) 0%,
    rgba(201,169,106,0.04) 100%);
}
.news-list time {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  min-width: 110px;
}

/* 2周年記念ハイライト */
.news-list li.featured {
  background:
    linear-gradient(155deg, rgba(255,31,122,0.18) 0%, rgba(201,169,106,0.10) 100%);
  border-color: rgba(255,31,122,0.4);
  position: relative;
}
.news-list li.featured::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--pink), var(--gold));
}
.news-list li.featured p strong {
  background: linear-gradient(135deg, #ff5ba1 0%, var(--pink) 50%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
}
.news-tag.anniv {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  border: 1px solid var(--gold);
  font-weight: 700;
}
.news-tag {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.3em;
  padding: 4px 10px;
  border: 1px solid var(--pink);
  color: var(--pink);
  min-width: 70px;
  text-align: center;
}

/* --- RECRUIT card：BANKSY ポスター背景 --- */
.recruit-card {
  background:
    /* 上のグラデーションオーバーレイ（テキスト読みやすく） */
    linear-gradient(120deg,
      rgba(10, 0, 5, 0.85) 0%,
      rgba(40, 5, 20, 0.55) 40%,
      rgba(80, 10, 35, 0.35) 70%,
      rgba(10, 0, 5, 0.65) 100%),
    /* BANKSY ポスター画像 */
    url("images/art/banksy-poster.jpg") center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 80px 64px;
  border-radius: 2px;
  border: 1px solid rgba(201,169,106,0.3);
  box-shadow:
    0 4px 8px rgba(255,31,122,0.15),
    0 24px 64px rgba(0,0,0,0.4),
    0 48px 120px rgba(255,31,122,0.2),
    0 0 0 1px rgba(255,255,255,0.05) inset;
}
.recruit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto; height: auto;
  border-radius: 0;
  /* ピンクの差し色 + ゴールドのアクセント */
  background:
    radial-gradient(circle at 80% 10%, rgba(255,31,122,0.18), transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(201,169,106,0.15), transparent 55%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 1;
}
.recruit-text {
  position: relative;
  z-index: 2;
}
.recruit-text h2 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.recruit-text p {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.recruit-text .kicker.pink {
  background: rgba(0,0,0,0.4);
  padding: 4px 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,31,122,0.4);
}
/* SVG少女は非表示（画像が主役） */
.recruit-art { display: none; }
@media (max-width: 720px) {
  .recruit-card { padding: 56px 28px; }
}

/* =========================================================
   MANIFESTO（理念）セクション
   ========================================================= */
.manifesto-section {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,31,122,0.08), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(201,169,106,0.06), transparent 60%),
    linear-gradient(180deg, #050505 0%, #0a0707 50%, #050505 100%);
  position: relative;
  overflow: hidden;
}
/* 浮遊光粒子（控えめに） */
.manifesto-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 14% 22%, rgba(201,169,106,0.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 80% 30%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(2px 2px at 28% 75%, rgba(201,169,106,0.45), transparent 50%),
    radial-gradient(1.5px 1.5px at 70% 80%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(2px 2px at 90% 55%, rgba(201,169,106,0.4), transparent 50%);
  pointer-events: none;
}

.manifesto-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.manifesto-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fff 0%, #f0e6d4 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-top: 14px;
  margin-bottom: 60px;
  line-height: 1.1;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
@media (max-width: 720px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 16px; }
}

.manifesto-card {
  position: relative;
  padding: 56px 36px 48px;
  text-align: center;
  background:
    linear-gradient(160deg,
      rgba(20,10,15,0.55) 0%,
      rgba(10,7,7,0.7) 100%);
  border: 1px solid transparent;
  background-image:
    linear-gradient(160deg, rgba(20,10,15,0.55), rgba(10,7,7,0.7)),
    linear-gradient(135deg, rgba(230,201,138,0.5), rgba(201,169,106,0.7), rgba(139,111,63,0.5), rgba(201,169,106,0.7));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 0 80px rgba(255,31,122,0.06) inset;
  transition: transform .6s cubic-bezier(.16,1,.3,1), box-shadow .6s;
}
.manifesto-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.6),
    0 0 120px rgba(255,31,122,0.12) inset;
}
/* 四隅マーク */
.manifesto-card::before,
.manifesto-card::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  opacity: 0.7;
}
.manifesto-card::before { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.manifesto-card::after  { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.manifesto-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.5em;
  padding: 5px 14px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  border: 1px solid rgba(201,169,106,0.4);
  margin-bottom: 28px;
}

.manifesto-quote {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 64px;
  line-height: 0.4;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 8px;
}

.manifesto-text {
  font-family: var(--font-mincho);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0;
}
.manifesto-text strong {
  display: block;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.6;
  letter-spacing: 0.16em;
  margin-top: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #ffe9b5 50%, #f5dca0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.manifesto-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.6;
}

/* 中央の × 装飾 */
.manifesto-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.divider-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.manifesto-divider::before,
.manifesto-divider::after {
  content: "";
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
@media (max-width: 720px) {
  .manifesto-divider { flex-direction: row; }
  .manifesto-divider::before,
  .manifesto-divider::after {
    width: 50px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .divider-mark { font-size: 32px; }
}

.manifesto-sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 20px;
}

/* =========================================================
   RECRUIT PERKS — 4特典カード
   ========================================================= */
.recruit-lead {
  margin-bottom: 28px !important;
}

/* RECRUIT 動画 */
.recruit-video {
  position: relative;
  margin: 0 auto 32px;
  max-width: 720px;
  overflow: hidden;
  border: 1px solid rgba(201,169,106,0.3);
  background: #000;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.5),
    0 24px 64px rgba(255,31,122,0.15),
    0 0 0 1px rgba(255,255,255,0.05) inset;
}
.recruit-video::before,
.recruit-video::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.recruit-video::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.recruit-video::after  { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.recruit-video video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}
@media (max-width: 720px) {
  .recruit-video { margin-bottom: 24px; }
}
.recruit-lead strong {
  color: var(--gold-2);
  font-weight: 600;
  font-family: var(--font-mincho);
  background: linear-gradient(135deg, #f5dca0 0%, #e6c98a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.recruit-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px) {
  .recruit-perks { grid-template-columns: 1fr; gap: 10px; }
}

.recruit-perks li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,106,0.25);
  border-left: 3px solid var(--gold);
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .35s, border-color .35s;
  position: relative;
  overflow: hidden;
}
.recruit-perks li::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.08) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left .8s cubic-bezier(.16,1,.3,1);
}
.recruit-perks li:hover {
  transform: translateX(4px);
  background: rgba(0,0,0,0.45);
  border-color: var(--gold);
}
.recruit-perks li:hover::before { left: 200%; }

.perk-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 32px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: 0;
  min-width: 36px;
}
.perk-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.perk-body strong {
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.perk-body span {
  font-family: var(--font-jp);
  font-size: 11.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  letter-spacing: 0.04em;
}
@media (max-width: 480px) {
  .recruit-perks li { padding: 14px 16px; gap: 12px; }
  .perk-mark { font-size: 26px; min-width: 30px; }
  .perk-body strong { font-size: 14px; }
  .perk-body span { font-size: 11px; }
}

/* --- FOOTER：上品なグラデ --- */
.site-footer {
  background:
    linear-gradient(180deg, #050505 0%, #000 100%);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

/* --- ローダーをさらにラグジュアリーに --- */
.loader { background: radial-gradient(ellipse at center, #1a0a14 0%, #000 100%); }
.loader-mark {
  filter: drop-shadow(0 0 30px rgba(255,31,122,0.3));
}

/* --- セクション間の金箔区切り --- */
.section + .section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* --- about-text のリードに引用風装飾 --- */
.about-text .lead {
  position: relative;
  padding-left: 24px;
  border-left: 1px solid var(--gold);
  font-family: var(--font-mincho);
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 20px;
}

/* --- 全体的にfont-smoothing強化 --- */
body {
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

/* --- CAST cardのphoto placeholder質感 --- */
.cast-photo {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,31,122,0.2), transparent 60%),
    linear-gradient(135deg, #20101a 0%, #0a0707 100%);
}
.cast-photo span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(201,169,106,0.4);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* --- セレクションカラー --- */
::selection {
  background: var(--pink);
  color: #fff;
}

/* =========================================================
   言語切替リンク
   ========================================================= */
.lang-switch {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid rgba(201,169,106,0.4);
  padding: 4px 10px;
  margin-left: 6px;
  transition: all .3s;
}
.lang-switch:hover {
  background: var(--gold);
  color: var(--bg);
}

/* =========================================================
   スキップリンク（アクセシビリティ）
   ========================================================= */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  background: var(--pink);
  color: #fff;
  padding: 12px 24px;
  font-family: var(--font-mincho);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: top .3s;
}
.skip-link:focus {
  top: 0;
}

/* =========================================================
   sr-only: スクリーンリーダー専用テキスト（視覚的に非表示）
   ========================================================= */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================================
   フォーカス可視化（キーボード操作のアクセシビリティ）
   ========================================================= */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
  box-shadow:
    0 0 0 4px rgba(201,169,106,0.2),
    0 0 24px rgba(255,31,122,0.3);
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

/* =========================================================
   ガイド記事への内部リンクカード（SYSTEMセクション下）
   ========================================================= */
.system-guide-links {
  max-width: 920px;
  margin: 56px auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) {
  .system-guide-links { grid-template-columns: 1fr; }
}
.guide-link-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 4px 16px;
  padding: 24px 28px;
  background: linear-gradient(155deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
  border: 1px solid rgba(201,169,106,0.25);
  text-decoration: none;
  color: var(--ink-dark);
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.guide-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.08),
    0 0 0 1px rgba(255,255,255,0.6) inset;
}
.guide-link-kicker {
  grid-column: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.4em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.guide-link-title {
  grid-column: 1;
  font-family: var(--font-mincho);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-dark);
}
.guide-link-desc {
  grid-column: 1;
  font-size: 12.5px;
  color: rgba(0,0,0,0.65);
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.guide-link-arrow {
  grid-row: 1 / span 3;
  grid-column: 2;
  align-self: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: transform .3s;
}
.guide-link-card:hover .guide-link-arrow {
  transform: translateX(6px);
}

/* ABOUT 観光客向け一文 */
.about-tourist {
  margin-top: 18px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255,31,122,0.10), rgba(201,169,106,0.08));
  border-left: 3px solid var(--gold);
  font-size: 14px;
  line-height: 1.95;
  color: rgba(255,255,255,0.92);
}
.about-tourist strong {
  color: var(--gold-2);
  font-weight: 600;
}

/* =========================================================
   GUIDE PAGE — 柳川の夜遊びガイド記事
   ========================================================= */
.guide-article {
  padding: 60px 0 100px;
  background:
    radial-gradient(ellipse at top, #0a0507 0%, #050505 50%),
    var(--bg);
  position: relative;
  z-index: 2;
}
.breadcrumb {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}
.breadcrumb a {
  color: var(--gold);
  transition: color .3s;
}
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span {
  color: rgba(255,255,255,0.8);
}

.guide-head {
  text-align: center;
  margin-bottom: 70px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,169,106,0.2);
}
.guide-head .kicker {
  color: var(--gold);
}
.guide-title {
  font-family: var(--font-mincho);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin: 16px 0;
  background: linear-gradient(180deg, #fff 0%, #f0e6d4 65%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.guide-title small {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  -webkit-text-fill-color: var(--ink-mute);
  background: none;
  margin-top: 12px;
}
.guide-meta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.85;
  margin-top: 18px;
}

.guide-section {
  margin-bottom: 56px;
}
.guide-section h2 {
  font-family: var(--font-mincho);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,169,106,0.25);
  position: relative;
  color: #fff;
}
.guide-section h2::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
}
.guide-section h3 {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-2);
  margin: 28px 0 14px;
}
.guide-section p {
  font-family: var(--font-jp);
  font-size: 14.5px;
  line-height: 2.05;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.88);
  margin-bottom: 18px;
}
.guide-section p strong {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(180deg, transparent 65%, rgba(255,31,122,0.25) 65%);
  padding: 0 2px;
}
.guide-section ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.guide-section ul li {
  padding: 10px 14px 10px 22px;
  margin-bottom: 6px;
  position: relative;
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--gold);
  letter-spacing: 0.04em;
}
.guide-section ul li strong {
  color: #fff;
  font-weight: 600;
}
.guide-section a {
  color: var(--gold-2);
  border-bottom: 1px solid rgba(201,169,106,0.4);
  transition: color .3s, border-color .3s;
}
.guide-section a:hover {
  color: var(--pink);
  border-color: var(--pink);
}
.guide-cta {
  text-align: center;
  margin: 36px 0 12px !important;
}

.guide-related {
  margin-top: 80px;
  padding: 32px 28px;
  background: linear-gradient(155deg, rgba(20,10,15,0.5), rgba(10,7,7,0.7));
  border: 1px solid rgba(201,169,106,0.3);
}
.guide-related h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,106,0.2);
}
.guide-related ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
@media (max-width: 600px) {
  .guide-related ul { grid-template-columns: 1fr; }
}
.guide-related ul li {
  padding: 0;
  background: none;
  border: none;
}
.guide-related ul li a {
  display: block;
  padding: 8px 0;
  font-family: var(--font-mincho);
  font-size: 13.5px;
  color: var(--ink);
  border-bottom: none;
  letter-spacing: 0.06em;
  transition: padding-left .3s, color .3s;
}
.guide-related ul li a::before {
  content: "→ ";
  color: var(--gold);
}
.guide-related ul li a:hover {
  color: var(--pink);
  padding-left: 6px;
}

/* =========================================================
   CAST CARDS — 個別プロフィール強化
   ========================================================= */
.cast-photo {
  aspect-ratio: 3 / 4;
  position: relative;
}
.cast-photo[data-initial]::before {
  content: attr(data-initial);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(80px, 9vw, 140px);
  background: linear-gradient(180deg, #ff5ba1 0%, #ff1f7a 50%, #c4135b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(255,31,122,0.3));
}
.cast-photo[data-initial="?"]::before {
  background: linear-gradient(180deg, #6a605a, #3a3530);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: none;
  opacity: 0.4;
}
.cast-photo-label {
  position: absolute !important;
  bottom: 18px !important;
  left: 50% !important;
  top: auto !important;
  transform: translateX(-50%) !important;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(201,169,106,0.5);
}

/* 写真ありキャスト用：data-photoがあれば背景画像 */
.cast-photo[data-photo] {
  background-image: var(--photo);
  background-size: cover;
  background-position: center top;
}
.cast-photo[data-photo]::before,
.cast-photo[data-photo] .cast-photo-label {
  display: none;
}

/* figcaption 構造強化 */
.cast-card figcaption {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  position: relative;
}
.cast-card .cast-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink);
}
.cast-card .cast-name small {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 2px;
}
.cast-card .cast-comment {
  font-family: var(--font-jp);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(201,169,106,0.2);
  width: 100%;
}
.cast-card .cast-rank {
  font-family: var(--font-display);
  font-size: 9.5px;
  letter-spacing: 0.4em;
  padding: 4px 14px;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-weight: 500;
}
.cast-card .cast-rank.manager {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border: 1px solid var(--gold);
  position: relative;
}
.cast-card .cast-rank.manager::before {
  content: "★";
  position: absolute;
  top: 50%; left: 6px;
  transform: translateY(-50%);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 8px;
  opacity: 0;
}
@media (max-width: 720px) {
  .cast-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }
  .cast-card figcaption { padding: 16px 12px 18px; }
  .cast-card .cast-name { font-size: 15px; }
  .cast-card .cast-comment { font-size: 10.5px; }
}

/* =========================================================
   CAST CARDS v2 — グラビア雑誌風（写真主役）
   ========================================================= */
.cast-card {
  position: relative;
  background: linear-gradient(155deg, #14090f 0%, #0a0707 100%);
  border: 1px solid rgba(201,169,106,0.18);
  overflow: hidden;
  isolation: isolate;
  transition: transform .6s cubic-bezier(.16,1,.3,1), border-color .4s, box-shadow .5s;
}
/* 番号バッジ */
.cast-card[data-no]::before {
  content: "NO. " attr(data-no);
  position: absolute;
  top: 14px; left: 14px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 9px;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--gold);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 10px;
  border: 1px solid rgba(201,169,106,0.3);
}
/* 額縁の四隅マーク */
.cast-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,169,106,0.0);
  pointer-events: none;
  transition: border-color .5s ease;
  z-index: 4;
}
.cast-card:hover::after {
  border-color: rgba(201,169,106,0.4);
}

/* 写真エリア：縦長グラビア比 */
.cast-photo {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,31,122,0.15), transparent 60%),
    linear-gradient(135deg, #20101a 0%, #0a0707 100%);
}
/* イニシャル文字（写真がない時の主役） */
.cast-photo[data-initial]::before {
  content: attr(data-initial);
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(100px, 11vw, 180px);
  background: linear-gradient(180deg, #ff5ba1 0%, #ff1f7a 50%, #c4135b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(255,31,122,0.4));
  pointer-events: none;
}
.cast-photo[data-initial="?"]::before {
  background: linear-gradient(180deg, #6a605a, #2a2520);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: none;
  opacity: 0.5;
}
/* PHOTO COMING SOON ラベル */
.cast-photo-label {
  position: absolute !important;
  top: 24px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(201,169,106,0.4);
  z-index: 2;
}

/* 名前オーバーレイ（写真下部にグラデでフェード） */
.cast-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 90px 18px 26px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,0.45) 30%,
    rgba(0,0,0,0.85) 65%,
    rgba(0,0,0,0.98) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
/* 金色名前オーバーレイ - 静止時は固定金グラデ、ホバーで光が流れる */
.cast-name-overlay {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(42px, 5.8vw, 72px);
  letter-spacing: 0.06em;
  line-height: 0.95;
  white-space: nowrap;

  /* 金箔グラデーション（白光ハイライトが中央寄り） */
  background: linear-gradient(
    180deg,
    #ffe9b5 0%,
    #f5dca0 30%,
    #d4a857 60%,
    #8b6f3f 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  /* text-shadow（filterより軽い）で可読性確保 */
  text-shadow:
    0 2px 4px rgba(0,0,0,0.6),
    0 4px 16px rgba(0,0,0,0.5);

  transition: letter-spacing .6s cubic-bezier(.16,1,.3,1);
}

/* ホバー時のみシマーアニメ起動 */
.cast-card:hover .cast-name-overlay {
  background: linear-gradient(
    110deg,
    #d4a857 0%,
    #f5dca0 25%,
    #ffffff 45%,
    #f5dca0 65%,
    #d4a857 85%,
    #ffe9b5 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: castNameShimmer 2.4s linear infinite;
  letter-spacing: 0.1em;
}

@keyframes castNameShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* リダクションモーション設定時はアニメ無効 */
@media (prefers-reduced-motion: reduce) {
  .cast-card:hover .cast-name-overlay { animation: none; }
}
.cast-card.placeholder .cast-name-overlay {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: rgba(255,255,255,0.5);
  -webkit-text-fill-color: rgba(255,255,255,0.5);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 0.18em;
  white-space: normal;
  animation: none;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}
@media (max-width: 720px) {
  .cast-name-overlay { font-size: clamp(28px, 7vw, 40px); letter-spacing: 0.06em; }
  .cast-overlay { padding: 70px 10px 22px; }
}
@media (max-width: 480px) {
  .cast-name-overlay { font-size: 32px; letter-spacing: 0.05em; }
}

/* 写真ありの場合：data-img をJSで背景画像に変換 */
.cast-photo.has-photo {
  background-image: var(--photo);
  background-size: cover;
  background-position: center 30%;
}
.cast-photo.has-photo::before,
.cast-photo.has-photo .cast-photo-label {
  display: none;
}
.cast-photo.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity .5s;
}

/* ホバー演出 */
.cast-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,106,0.4);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.5),
    0 24px 60px rgba(0,0,0,0.5),
    0 48px 120px rgba(255,31,122,0.18),
    0 0 0 1px rgba(201,169,106,0.2) inset;
}
.cast-card:hover .cast-photo[data-initial]::before {
  transform: translate(-50%, -52%) scale(1.05);
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.cast-card:hover .cast-photo.has-photo {
  background-size: 105%;
  transition: background-size .8s cubic-bezier(.16,1,.3,1);
}
.cast-card:hover .cast-overlay {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.9) 100%);
}
.cast-card:hover .cast-name-en {
  color: var(--gold-2);
  letter-spacing: 0.6em;
  transition: letter-spacing .5s;
}

/* figcaption（下部のランク・コメント） */
.cast-card figcaption {
  padding: 18px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: linear-gradient(180deg, #0a0707 0%, #050505 100%);
  position: relative;
}
.cast-card figcaption::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,106,0.4), transparent);
}
.cast-card .cast-comment {
  font-family: var(--font-jp);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  margin-top: 2px;
  padding-top: 0;
  border: none;
  width: 100%;
}
.cast-card .cast-rank {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.4em;
  padding: 4px 14px;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-weight: 500;
  font-style: italic;
}
.cast-card .cast-rank.manager {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border: 1px solid var(--gold);
}

/* グリッド：3列固定、隙間広め */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .cast-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .cast-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cast-name-overlay { font-size: 16px; }
  .cast-name-en { font-size: 8px; }
  .cast-card[data-no]::before { font-size: 8px; padding: 3px 8px; }
}

/* =========================================================
   CAST GALLERY MODAL
   ========================================================= */
.cast-card.has-gallery { cursor: pointer; }
.cast-gallery-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 11px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  padding: 4px 9px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 2px 8px rgba(255,31,122,0.4);
  border-radius: 100px;
  min-width: 28px;
  text-align: center;
}

.cast-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 3, 5, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .35s ease;
}
.cast-modal.is-open {
  display: flex;
  opacity: 1;
}
.cast-modal-close {
  position: absolute;
  top: 24px; right: 28px;
  z-index: 10;
  width: 48px; height: 48px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,169,106,0.4);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 200;
  transition: all .3s;
}
.cast-modal-close:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  transform: rotate(90deg);
}

.cast-modal-stage {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  max-height: 80vh;
  width: 100%;
}
.cast-modal-imgwrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80vh;
}
.cast-modal-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.5),
    0 24px 60px rgba(0,0,0,0.7),
    0 0 0 1px rgba(201,169,106,0.2);
  transition: opacity .25s ease;
}
.cast-modal-img.is-loading { opacity: 0.4; }
.cast-modal-count {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(0,0,0,0.6);
  padding: 6px 14px;
  border: 1px solid rgba(201,169,106,0.3);
  backdrop-filter: blur(8px);
}

.cast-modal-nav {
  width: 56px; height: 56px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,169,106,0.4);
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 200;
  flex-shrink: 0;
  transition: all .3s;
}
.cast-modal-nav:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: scale(1.1);
}

.cast-modal-info {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  text-align: center;
  z-index: 5;
  pointer-events: none;
}
.cast-modal-info > * { pointer-events: auto; }
.cast-modal-rank {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.4em;
  padding: 4px 14px;
  border: 1px solid var(--pink);
  color: var(--pink);
  margin-bottom: 10px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}
.cast-modal-rank.manager {
  background: rgba(0,0,0,0.6) var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  border-color: var(--gold);
}
.cast-modal-name {
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
  margin-bottom: 8px;
}
.cast-modal-name small {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold-2);
  margin-top: 6px;
}
.cast-modal-comment {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  margin-bottom: 18px;
}
.cast-modal-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.cast-modal-thumb {
  width: 56px; height: 56px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 1px solid rgba(201,169,106,0.3);
  opacity: 0.55;
  transition: opacity .3s, border-color .3s, transform .3s;
}
.cast-modal-thumb:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.cast-modal-thumb.is-active {
  opacity: 1;
  border-color: var(--pink);
  box-shadow: 0 4px 16px rgba(255,31,122,0.4);
}

@media (max-width: 720px) {
  .cast-modal { padding: 16px; }
  .cast-modal-close { width: 40px; height: 40px; font-size: 22px; top: 12px; right: 12px; }
  .cast-modal-nav { width: 40px; height: 40px; font-size: 22px; }
  .cast-modal-stage { gap: 8px; }
  .cast-modal-info { bottom: 20px; }
  .cast-modal-name { font-size: 22px; }
  .cast-modal-comment { font-size: 11px; padding: 0 20px; }
  .cast-modal-thumb { width: 44px; height: 44px; }
}

/* =========================================================
   SYSTEM v2 — 料金テーブル本番版＋曜日イベント
   ========================================================= */
.system-table th {
  position: relative;
}
.system-table th small {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 3px;
  font-weight: 400;
}
.system-table td {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.system-table td.muted {
  display: table-cell;
  vertical-align: middle;
}
.system-table .ask em {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-left: 4px;
  font-weight: 400;
  -webkit-background-clip: initial;
  background-clip: initial;
  background: none;
}
.system-table .ask.alt {
  background: linear-gradient(135deg, #ff5ba1 0%, #ff1f7a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
}
.system-table .ask.small {
  font-size: 16px;
}
.system-foot strong {
  color: var(--pink-deep);
  font-weight: 600;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.1em;
}

/* === WEEKLY EVENTS === */
.weekly-wrap {
  max-width: 1000px;
  margin: 100px auto 0;
  text-align: center;
}
.weekly-head {
  margin-bottom: 48px;
}
.weekly-title {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.18em;
  background: linear-gradient(180deg, var(--ink-dark) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 14px;
}
.weekly-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 720px) {
  .weekly-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .weekly-wrap { margin-top: 60px; }
}

.weekly-card {
  position: relative;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.85), rgba(255,255,255,0.7));
  border: 1px solid rgba(201,169,106,0.3);
  padding: 28px 18px;
  text-align: center;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.05),
    0 16px 40px rgba(0,0,0,0.06),
    0 0 0 1px rgba(255,255,255,0.5) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.weekly-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.weekly-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow:
    0 4px 12px rgba(255,31,122,0.1),
    0 24px 60px rgba(0,0,0,0.1),
    0 0 0 1px rgba(255,255,255,0.6) inset;
}
.weekly-day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(201,169,106,0.3);
}
.weekly-day-en {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.18em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.weekly-day-jp {
  font-family: var(--font-mincho);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ink-dark);
  opacity: 0.6;
}
.weekly-body h4 {
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--ink-dark);
  margin-bottom: 8px;
}
.weekly-body h4 strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.weekly-body p {
  font-size: 12.5px;
  color: #3a3530;
  letter-spacing: 0.04em;
  line-height: 1.7;
  font-weight: 500;
}

/* Featured（日曜だけ少し豪華に） */
.weekly-card.featured {
  background:
    linear-gradient(160deg, rgba(255,31,122,0.95) 0%, rgba(196,19,91,1) 100%);
  border-color: var(--pink);
  color: #fff;
  box-shadow:
    0 4px 12px rgba(255,31,122,0.3),
    0 24px 60px rgba(255,31,122,0.2),
    0 0 0 1px rgba(255,255,255,0.15) inset;
}
.weekly-card.featured .weekly-day-en {
  background: linear-gradient(180deg, #fff 0%, #f7e3b9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.weekly-card.featured .weekly-day-jp { color: rgba(255,255,255,0.7); }
.weekly-card.featured .weekly-day { border-color: rgba(255,255,255,0.2); }
.weekly-card.featured .weekly-body h4 { color: #fff; }
.weekly-card.featured .weekly-body h4 strong {
  background: linear-gradient(180deg, #fff 0%, #f7e3b9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.weekly-card.featured .weekly-body p { color: rgba(255,255,255,0.85); }

.weekly-foot {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #6a605a;
  margin-top: 8px;
}

/* モバイルでテーブルが2行に並ぶ調整 */
@media (max-width: 720px) {
  .system-table th { padding: 18px 0 6px; }
  .system-table th small { font-size: 9px; margin-top: 2px; }
  .system-table td { padding: 4px 0; }
  .system-table td.muted { padding-bottom: 14px; }
  .system-table .ask { font-size: 20px; }
  .system-table .ask.alt { font-size: 16px; }
}

/* =========================================================
   PRICE SYSTEM v3 — もっと分かりやすく
   ========================================================= */

/* ===== メインプライスカード（MEN/LADY 並列） ===== */
.price-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto 40px;
}
@media (max-width: 720px) {
  .price-main { grid-template-columns: 1fr; gap: 16px; }
}

.price-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,106,0.25);
  padding: 36px 32px 32px;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.05),
    0 24px 60px rgba(0,0,0,0.08),
    0 0 0 1px rgba(255,255,255,0.6) inset;
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 1;
}
.price-card.men::before {
  background: linear-gradient(90deg, #ff5ba1, var(--pink), var(--pink-deep));
}
.price-card.lady::before {
  background: var(--gold-grad);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.08),
    0 32px 80px rgba(0,0,0,0.12),
    0 0 0 1px rgba(255,255,255,0.7) inset;
}

.price-card-head {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,169,106,0.25);
}
.price-card-tag {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.5em;
  margin-bottom: 6px;
}
.price-card.men .price-card-tag {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card.lady .price-card-tag {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card-jp {
  display: block;
  font-family: var(--font-mincho);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--ink-dark);
  opacity: 0.65;
}

.price-card-body {
  text-align: center;
  margin-bottom: 28px;
}
.price-amount-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}
.price-currency {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink-dark);
  opacity: 0.7;
  align-self: flex-start;
  margin-top: 12px;
}
.price-amount {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(56px, 7vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-dark);
}
.price-card.men .price-amount {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card.lady .price-amount {
  background: linear-gradient(135deg, #d4a857 0%, #8b6f3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-unit {
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-dark);
  opacity: 0.65;
  letter-spacing: 0.1em;
  margin-left: 4px;
}
.price-tax-incl {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-dark);
  opacity: 0.6;
  letter-spacing: 0.1em;
}
.price-tax-incl strong {
  font-weight: 600;
  color: var(--ink-dark);
  opacity: 1;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.price-card-incl {
  padding: 18px 20px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 2px;
}
.price-incl-label {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,169,106,0.2);
}
.price-card-incl ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
}
.price-card-incl li {
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 500;
  color: #1a1413;
  padding-left: 20px;
  position: relative;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.price-card-incl li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 600;
}
@media (max-width: 480px) {
  .price-card-incl ul { grid-template-columns: 1fr; }
}

/* ===== ビール・ハイボール追加バナー ===== */
.price-upgrade {
  max-width: 920px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(255,31,122,0.95) 0%, rgba(196,19,91,1) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(255,31,122,0.2),
    0 16px 40px rgba(255,31,122,0.15);
}
.price-upgrade::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
}
.upgrade-badge {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3em;
  background: rgba(0,0,0,0.25);
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.upgrade-body {
  position: relative;
  z-index: 2;
}
.upgrade-body h4 {
  font-family: var(--font-mincho);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  line-height: 1.5;
}
.upgrade-body p {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
}
.upgrade-body p strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #fff 0%, #f7e3b9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 720px) {
  .price-upgrade { grid-template-columns: 1fr; padding: 20px 22px; text-align: center; }
  .upgrade-badge { justify-self: center; }
}

/* ===== オプション料金 ===== */
.price-options {
  max-width: 920px;
  margin: 0 auto;
}
.price-options-title {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink-dark);
  margin-bottom: 32px;
}
.kicker-mini {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 8px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
@media (max-width: 720px) {
  .option-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
  .option-grid { grid-template-columns: 1fr; }
}

.option-item {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,106,0.2);
  padding: 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
}
.option-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.option-name {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1a1413;
}
.option-en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 9.5px;
  letter-spacing: 0.4em;
  color: var(--gold);
  opacity: 0.85;
}
.option-price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 6px;
}
.option-price small {
  display: inline-block;
  font-family: var(--font-mincho);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-dark);
  opacity: 0.6;
  margin-left: 4px;
  background: none;
  -webkit-text-fill-color: initial;
  font-style: normal;
  font-weight: 400;
}
.option-price.ask-small {
  font-size: 18px;
  letter-spacing: 0.15em;
}

/* ===== 注意事項（3カード） ===== */
.price-notes {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 720px) {
  .price-notes { grid-template-columns: 1fr; gap: 10px; }
}

.note-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(155deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.7) 100%);
  border: 1px solid rgba(201,169,106,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.note-icon {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: 36px;
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.note-icon svg {
  width: 22px; height: 22px;
  color: var(--gold);
  background: none;
  -webkit-text-fill-color: initial;
}
.note-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.note-text strong {
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #1a1413;
}
.note-text span {
  font-size: 13px;
  color: rgba(0,0,0,0.78);
  letter-spacing: 0.05em;
}

/* =========================================================
   浮遊TikTokボタン（画面右下固定）
   ========================================================= */
.float-tiktok {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 20px;
  background: linear-gradient(135deg, #25f4ee 0%, #000 45%, #fe2c55 100%);
  background-size: 200% auto;
  background-position: 0% center;
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-decoration: none;
  border-radius: 100px;
  box-shadow:
    0 8px 24px rgba(254,44,85,0.35),
    0 0 0 1px rgba(255,255,255,0.1) inset;
  transition: all .4s cubic-bezier(.16,1,.3,1), background-position .8s;
  animation: floatBob 4s ease-in-out infinite;
}
.float-tiktok:hover {
  background-position: 100% center;
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 12px 32px rgba(254,44,85,0.5),
    0 0 0 1px rgba(255,255,255,0.18) inset;
  animation-play-state: paused;
}
.float-tiktok-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.float-tiktok-label {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
/* パルスリング（注目を引く） */
.float-tiktok-pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid rgba(254,44,85,0.6);
  animation: floatPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes floatPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

@media (max-width: 720px) {
  .float-tiktok {
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
    font-size: 11.5px;
    letter-spacing: 0.2em;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .float-tiktok .float-tiktok-label { display: none; }
  .float-tiktok { padding: 14px; }
}

/* リダクションモード時は動きを止める */
@media (prefers-reduced-motion: reduce) {
  .float-tiktok { animation: none; }
  .float-tiktok-pulse { animation: none; opacity: 0; }
}

/* =========================================================
   TIKTOK ボタン（ヒーロー常時表示）
   ========================================================= */
.btn.btn-tiktok {
  background: linear-gradient(135deg, #25f4ee 0%, #000 50%, #fe2c55 100%);
  background-size: 200% auto;
  background-position: 0% center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 4px 12px rgba(254,44,85,0.3),
    0 0 0 1px rgba(255,255,255,0.08) inset;
  transition: all .4s cubic-bezier(.16,1,.3,1), background-position .8s;
}
.btn.btn-tiktok:hover {
  background-position: 100% center;
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(254,44,85,0.5),
    0 0 0 1px rgba(255,255,255,0.15) inset;
}
.btn.btn-tiktok .tiktok-icon {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) {
  .hero-actions { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .btn.btn-tiktok { font-size: 12px; padding: 16px 24px; letter-spacing: 0.3em; }
}

/* =========================================================
   TIKTOK LIVE BANNER（最上部・ライブ時のみ）
   ========================================================= */
.live-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 24px;
  background:
    linear-gradient(90deg, #ff0050 0%, #ff1f7a 50%, #ff0050 100%);
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-decoration: none;
  box-shadow:
    0 4px 16px rgba(255,0,80,0.4),
    0 2px 8px rgba(0,0,0,0.3);
  animation: liveSlideDown .6s cubic-bezier(.16,1,.3,1);
  transition: filter .3s, transform .3s;
}
.live-banner:hover {
  filter: brightness(1.1);
  transform: translateY(0) scale(1.005);
}
@keyframes liveSlideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
.live-banner[hidden] { display: none; }

/* ライブ中はサイト本体を少し下に */
html.is-live body { padding-top: 48px; }
html.is-live .topbar { top: 48px; }
html.is-live .site-header { top: 48px !important; }

.live-dot {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%{ box-shadow: 0 0 0 12px rgba(255,255,255,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.live-label {
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.live-msg {
  font-family: var(--font-mincho);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
}
.live-arrow {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  transition: transform .3s;
}
.live-banner:hover .live-arrow { transform: translateX(4px); }

@media (max-width: 720px) {
  .live-banner { padding: 10px 14px; gap: 8px; }
  .live-label { font-size: 11px; letter-spacing: 0.3em; }
  .live-msg { font-size: 11px; letter-spacing: 0.05em; }
  .live-arrow { font-size: 14px; }
  html.is-live body { padding-top: 42px; }
  html.is-live .topbar { top: 42px; }
  html.is-live .site-header { top: 42px !important; }
}
@media (max-width: 480px) {
  .live-msg { display: none; }
}

/* =========================================================
   INTERIOR SECTION — 店内ギャラリー
   ========================================================= */
.interior-section {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,31,122,0.12), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(201,169,106,0.08), transparent 60%),
    linear-gradient(180deg, #050505 0%, #0a0707 50%, #050505 100%);
}
.interior-lead {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 700px;
}
.interior-lead p {
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.88);
}
.interior-lead strong {
  background: linear-gradient(135deg, #fff 0%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.interior-lead strong:nth-of-type(2) {
  background: linear-gradient(135deg, #ff5ba1 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3カード（1枚目大、2-3枚目小） */
.interior-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .interior-grid { grid-template-columns: 1fr 1fr; }
  .interior-card.big { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .interior-grid { grid-template-columns: 1fr; gap: 12px; }
  .interior-card.big { grid-column: auto; }
}

.interior-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,169,106,0.25);
  aspect-ratio: 3 / 2;
  cursor: pointer;
  transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .4s, box-shadow .5s;
  background: #0a0707;
}
.interior-card.big {
  aspect-ratio: 16 / 10;
}
@media (max-width: 900px) {
  .interior-card.big { aspect-ratio: 16 / 9; }
}
.interior-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1), filter .6s;
  filter: contrast(1.05) saturate(1.05);
}
.interior-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.5),
    0 0 60px rgba(255,31,122,0.15) inset;
}
.interior-card:hover img {
  transform: scale(1.05);
  filter: contrast(1.1) saturate(1.15);
}
/* 四隅マーク */
.interior-card::before,
.interior-card::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity .4s;
  z-index: 3;
}
.interior-card::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.interior-card::after  { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.interior-card:hover::before,
.interior-card:hover::after { opacity: 0.8; }

.interior-card figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 32px 18px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.interior-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.interior-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold-2);
}
.interior-name {
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.interior-cta {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  margin-top: 28px;
}
.interior-cta strong {
  background: linear-gradient(135deg, #fff 0%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.interior-cta a {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid rgba(255,31,122,0.4);
  transition: border-color .3s;
}
.interior-cta a:hover { border-color: var(--pink); }

/* =========================================================
   ACCESS DISTANCE LIST — 周辺市町からのアクセス
   ========================================================= */
.access-distance {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 480px;
}
.access-distance li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--gold);
  font-family: var(--font-mincho);
  transition: background .3s, border-color .3s;
}
.access-distance li:hover {
  background: rgba(255,31,122,0.08);
  border-color: var(--pink);
}
.access-distance li span {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.06em;
}
.access-distance li em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.15em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
@media (max-width: 720px) {
  .access-distance { grid-template-columns: 1fr; }
}
/* 駅徒歩20秒を大きく強調 */
.access-distance li.hero-access {
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(255,31,122,0.18), rgba(201,169,106,0.12));
  border-left: 3px solid var(--pink);
  position: relative;
}
.access-distance li.hero-access span {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.12em;
}
.access-distance li.hero-access em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #fff 0%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* =========================================================
   TIKTOK MEDIA SECTION
   ========================================================= */
.tiktok-section {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,31,122,0.10), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(0,242,234,0.05), transparent 60%),
    linear-gradient(180deg, #050505 0%, #0a0707 50%, #050505 100%);
}
.tiktok-lead {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 640px;
}
.tiktok-lead p {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
}
.tiktok-lead strong {
  background: linear-gradient(135deg, #fff 0%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
@media (max-width: 900px) {
  .tiktok-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .tiktok-grid { grid-template-columns: 1fr; gap: 14px; max-width: 360px; }
}

/* 動画カード（埋め込み or プレースホルダー） */
.tiktok-card {
  position: relative;
  aspect-ratio: 9 / 16;
  background: linear-gradient(155deg, #14090f 0%, #0a0707 100%);
  border: 1px solid rgba(201,169,106,0.2);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .4s, box-shadow .4s;
}
.tiktok-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.5),
    0 0 60px rgba(255,31,122,0.12) inset;
}

/* TikTok 公式埋め込みのスタイル調整 */
.tiktok-card .tiktok-embed,
.tiktok-card iframe {
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* プレースホルダー（動画未指定） */
.tiktok-card.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tiktok-placeholder-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 30px;
  color: rgba(201,169,106,0.5);
}
.tiktok-placeholder-inner svg {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}
.placeholder-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0.7;
}
.placeholder-sub {
  font-family: var(--font-mincho);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

.tiktok-cta {
  text-align: center;
  margin-top: 32px;
}

/* =========================================================
   FROM INSTAGRAM SECTION
   ========================================================= */
.instagram-section {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  position: relative;
}
.instagram-lead {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 640px;
}
.instagram-lead p {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink-dark);
}
.instagram-lead strong {
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.instagram-feed-wrap {
  max-width: 1000px;
  margin: 0 auto 40px;
  position: relative;
  min-height: 400px;
}

.lightwidget-widget {
  border-radius: 2px;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.06),
    0 24px 60px rgba(0,0,0,0.05);
}

/* プレースホルダー（LightWidget未設定時） */
.instagram-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  background: linear-gradient(155deg, #fff 0%, var(--paper-2) 100%);
  border: 1px dashed rgba(201,169,106,0.5);
  border-radius: 4px;
  text-align: center;
  min-height: 320px;
}
.ig-placeholder-icon {
  color: transparent;
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}
.ig-placeholder-icon svg {
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.ig-placeholder-text {
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-dark);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.ig-placeholder-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-radius: 100px;
  box-shadow:
    0 4px 12px rgba(225,48,108,0.3),
    0 0 0 1px rgba(255,255,255,0.1) inset;
  transition: transform .3s, box-shadow .3s;
}
.ig-placeholder-link:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(225,48,108,0.5),
    0 0 0 1px rgba(255,255,255,0.2) inset;
  color: #fff;
}

.instagram-cta {
  text-align: center;
  margin-top: 28px;
}
.ig-cta-text {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-dark);
  letter-spacing: 0.06em;
}
.ig-cta-text strong {
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Instagram プロフィールカード */
.ig-card {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(155deg, #fff 0%, var(--paper) 100%);
  border-radius: 18px;
  padding: 32px;
  text-decoration: none;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.06),
    0 24px 60px rgba(0,0,0,0.08),
    0 0 0 1px rgba(255,255,255,0.8) inset;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.ig-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FCAF45, #E1306C, #833AB4, #5B51D8, #515BD4);
}
.ig-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 24px rgba(225,48,108,0.15),
    0 32px 80px rgba(0,0,0,0.12),
    0 0 0 1px rgba(255,255,255,0.9) inset;
}
@media (max-width: 720px) {
  .ig-card { padding: 24px 20px; border-radius: 14px; }
}

/* カードヘッダー */
.ig-card-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 560px) {
  .ig-card-header { gap: 16px; }
}
.ig-card-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.ig-avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 45deg, #FCAF45, #E1306C, #833AB4, #5B51D8, #515BD4, #FCAF45);
  padding: 3px;
  animation: igRingRotate 8s linear infinite;
}
@keyframes igRingRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.ig-avatar-inner {
  position: absolute;
  inset: 3px;
  background: linear-gradient(135deg, #ff5ba1 0%, #ff1f7a 50%, #c4135b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
}
.ig-avatar-initial {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
@media (max-width: 560px) {
  .ig-card-avatar { width: 72px; height: 72px; }
  .ig-avatar-initial { font-size: 36px; }
}

.ig-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ig-card-username {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink-dark);
  letter-spacing: 0.05em;
}
.ig-card-bio {
  font-family: var(--font-mincho);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-dark);
  opacity: 0.78;
  letter-spacing: 0.04em;
}
.ig-card-follow-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
  color: #fff;
  font-family: var(--font-mincho);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(225,48,108,0.3);
}

/* グリッド（投稿サムネ風） */
.ig-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}
@media (max-width: 720px) {
  .ig-card-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }
}
.ig-card-tile {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 4px;
  transition: transform .4s;
}
.ig-card-tile:hover { transform: scale(1.05); }
.ig-card-tile.t1 { background: linear-gradient(135deg, #ff5ba1 0%, #ff1f7a 100%); }
.ig-card-tile.t2 { background: linear-gradient(135deg, #833AB4 0%, #5B51D8 100%); }
.ig-card-tile.t3 { background: linear-gradient(135deg, #FCAF45 0%, #FCB045 100%); }
.ig-card-tile.t4 { background: linear-gradient(135deg, #E1306C 0%, #FD1D1D 100%); }
.ig-card-tile.t5 { background: linear-gradient(135deg, #FFD700 0%, #FCAF45 100%); }
.ig-card-tile.t6 { background: linear-gradient(135deg, #c4135b 0%, #833AB4 100%); }
.ig-tile-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.ig-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.ig-card-cta-label {
  font-family: var(--font-mincho);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-dark);
  letter-spacing: 0.08em;
}
.ig-card-cta-arrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: transform .3s;
}
.ig-card:hover .ig-card-cta-arrow {
  transform: translateX(6px);
}

/* =========================================================
   REMOTE GIFT SECTION
   ========================================================= */
.remote-gift-section {
  background:
    radial-gradient(ellipse at 25% 35%, rgba(255,31,122,0.10), transparent 55%),
    radial-gradient(ellipse at 75% 75%, rgba(201,169,106,0.08), transparent 60%),
    linear-gradient(180deg, #050505 0%, #0a0707 50%, #050505 100%);
  position: relative;
}

.gift-lead {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 700px;
}
.gift-lead p {
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.88);
}
.gift-lead strong {
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #f0e6d4 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gift-lead strong.pink {
  background: linear-gradient(135deg, #ff5ba1 0%, var(--pink) 50%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3ステップ */
.gift-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin: 0 auto 48px;
  max-width: 980px;
}
@media (max-width: 720px) {
  .gift-steps { grid-template-columns: 1fr; gap: 12px; }
}

.gift-step {
  position: relative;
  padding: 32px 24px 28px;
  background:
    linear-gradient(160deg, rgba(20,10,15,0.5) 0%, rgba(10,7,7,0.7) 100%);
  border: 1px solid transparent;
  background-image:
    linear-gradient(160deg, rgba(20,10,15,0.55), rgba(10,7,7,0.7)),
    linear-gradient(135deg, rgba(201,169,106,0.4), rgba(201,169,106,0.7), rgba(139,111,63,0.4), rgba(201,169,106,0.6));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.gift-step:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.5),
    0 0 60px rgba(255,31,122,0.1) inset;
}
.gift-step::before,
.gift-step::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  opacity: 0.6;
}
.gift-step::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.gift-step::after  { bottom: 8px; right: 8px; border-left: none; border-top: none; }

.gift-num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  letter-spacing: 0;
}

.gift-step-body strong {
  display: block;
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.gift-step-body span {
  font-family: var(--font-jp);
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.gift-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}
@media (max-width: 720px) {
  .gift-arrow { transform: rotate(90deg); justify-content: center; padding: 4px 0; }
}

/* CTA エリア */
.gift-cta {
  text-align: center;
  margin-top: 16px;
}
.btn.btn-large {
  padding: 22px 56px;
  font-size: 14px;
  letter-spacing: 0.5em;
}
.gift-cta-btn {
  position: relative;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  box-shadow:
    0 4px 12px rgba(255,31,122,0.4),
    0 12px 32px rgba(255,31,122,0.3),
    0 24px 60px rgba(255,31,122,0.2);
}
.gift-cta-btn::after {
  content: "→";
  margin-left: 14px;
  font-family: var(--font-display);
  font-style: italic;
  display: inline-block;
  transition: transform .3s;
}
.gift-cta-btn:hover::after { transform: translateX(6px); }

.gift-cta-note {
  margin-top: 18px;
  font-family: var(--font-jp);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.gift-cta-note strong {
  color: var(--gold-2);
  font-weight: 600;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}
.faq-list {
  margin-top: 48px;
}
.faq-item {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,106,0.2);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .4s;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.03),
    0 8px 24px rgba(0,0,0,0.04);
}
.faq-item[open],
.faq-item:hover {
  border-color: rgba(201,169,106,0.5);
  box-shadow:
    0 4px 12px rgba(255,31,122,0.05),
    0 16px 40px rgba(0,0,0,0.06);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  user-select: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  line-height: 1;
}
.faq-question {
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-dark);
  line-height: 1.6;
}
.faq-toggle {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  width: 28px;
  text-align: center;
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  color: var(--pink);
}
.faq-answer {
  padding: 0 28px 24px 70px;
  font-family: var(--font-jp);
  font-size: 13.5px;
  line-height: 1.95;
  color: #4a3f3a;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(201,169,106,0.15);
  padding-top: 18px;
  margin-top: 4px;
}
.faq-answer strong {
  font-family: var(--font-mincho);
  color: var(--pink-deep);
  font-weight: 600;
}
.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 4px 0;
}
.faq-answer ul li {
  padding: 4px 0 4px 20px;
  position: relative;
}
.faq-answer ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
@media (max-width: 720px) {
  .faq-item summary { padding: 18px 18px; gap: 12px; }
  .faq-q { font-size: 20px; }
  .faq-question { font-size: 13px; }
  .faq-toggle { font-size: 22px; }
  .faq-answer { padding: 14px 18px 18px 50px; font-size: 12.5px; }
}

/* =========================================================
   SNS LINKS（footer 内）
   ========================================================= */
.footer-cols .sns li {
  padding: 0;
  margin-bottom: 12px;
}
.footer-cols .sns a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--ink-mute);
  transition: color .3s, transform .3s;
}
.footer-cols .sns a:hover {
  color: var(--pink);
  transform: translateX(4px);
}
.footer-cols .sns a svg {
  width: 16px; height: 16px;
  color: var(--gold);
  transition: color .3s;
  flex-shrink: 0;
}
.footer-cols .sns a:hover svg {
  color: var(--pink);
}
.footer-cols .sns a span {
  font-size: 13px;
  letter-spacing: 0.1em;
}
.footer-cols .sns a em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.75;
  margin-left: 2px;
}
.footer-cols .sns a:hover em { color: var(--pink); opacity: 1; }

/* BASE Online Shop を特別に目立たせる */
.footer-cols .sns a.shop-base {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  box-shadow:
    0 4px 12px rgba(255,31,122,0.3),
    0 0 0 1px rgba(255,255,255,0.05) inset;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.footer-cols .sns a.shop-base::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.25) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left .8s cubic-bezier(.16,1,.3,1);
}
.footer-cols .sns a.shop-base:hover {
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--pink) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(255,31,122,0.5),
    0 0 0 1px rgba(255,255,255,0.1) inset;
}
.footer-cols .sns a.shop-base:hover::before { left: 200%; }
.footer-cols .sns a.shop-base svg { color: #fff; }
.footer-cols .sns a.shop-base:hover svg { color: #fff; }
.footer-cols .sns a.shop-base span {
  color: #fff;
  font-weight: 500;
  font-size: 12px;
}
.footer-cols .sns a.shop-base em {
  color: rgba(255,255,255,0.8);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.footer-cols .sns a.shop-base:hover em { color: #fff; }

/* =========================================================
   ロゴ画像＆店内アート — サイトテイストに合わせる加工
   ========================================================= */

/* ===== ロゴ画像（白背景JPG）の暗背景表示 ===== */
/* mix-blend-mode: lighten で白背景を抜く（暗い文字は薄くなるが、暗背景に文字が浮き出る） */
.loader-logo {
  width: clamp(180px, 24vw, 260px);
  height: auto;
  display: block;
  margin: 0 auto 8px;
  /* 白い背景JPGを暗背景に乗せる：lighten で「白以下を背景に同化させる」 */
  mix-blend-mode: lighten;
  /* 色味をピンク・ゴールド調に微調整 */
  filter:
    drop-shadow(0 0 30px rgba(255,31,122,0.4))
    drop-shadow(0 4px 20px rgba(0,0,0,0.6));
}

/* ローダーの背景（黒）でロゴが綺麗に浮く */
.loader-inner {
  filter: drop-shadow(0 0 60px rgba(255,31,122,0.15));
}

/* ===== ヒーローのアート画像（さげもん壁画） ===== */
.hero-art {
  position: absolute;
  right: 4%;
  bottom: 10%;
  width: clamp(180px, 22vw, 340px);
  z-index: 2;
  opacity: 0.55;
  pointer-events: none;
}
.hero-art-img {
  width: 100%;
  height: auto;
  display: block;
  /* サイトの色味（ピンク＋ゴールド＋黒）に寄せるフィルタ */
  filter:
    contrast(1.05)
    saturate(0.95)
    hue-rotate(-5deg);
  mix-blend-mode: luminosity;
  border: 1px solid rgba(201,169,106,0.4);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,31,122,0.15) inset;
}
@media (max-width: 720px) {
  .hero-art { right: 4%; bottom: 18%; width: 160px; opacity: 0.4; }
}

/* ===== ABOUTセクションのアート写真 ===== */
.about-art {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.art-photo {
  width: 100%;
  height: auto;
  display: block;
  /* サイトの世界観に合わせた加工：
     暗めにトーンダウン、ピンク・赤紫寄りの色味、コントラスト強め */
  filter:
    brightness(0.55)
    contrast(1.45)
    saturate(1.35)
    hue-rotate(-20deg);
  transition: filter .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.art-frame:hover .art-photo {
  filter:
    brightness(0.7)
    contrast(1.5)
    saturate(1.55)
    hue-rotate(-15deg);
  transform: scale(1.03);
}
.art-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a14 0%, #0a0707 100%);
  padding: 0;
  border: 1px solid transparent;
  background-image:
    linear-gradient(rgba(5,5,5,0.4), rgba(20,10,15,0.6)),
    linear-gradient(135deg, var(--gold-2), var(--gold), #8b6f3f, var(--gold-2));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.4),
    0 0 0 1px rgba(201,169,106,0.2) inset,
    0 0 80px rgba(255,31,122,0.1) inset;
}
.art-frame .art-photo {
  position: relative;
  z-index: 1;
}

/* 写真の上にピンク × ゴールドの色彩オーバーレイ（mix-blend-mode で合成） */
.art-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 25% 25%, rgba(255,31,122,0.22), transparent 60%),
    radial-gradient(ellipse at 75% 80%, rgba(201,169,106,0.18), transparent 65%),
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
  mix-blend-mode: overlay;
  transition: opacity .6s;
}

/* 四隅ゴールドマーク（覆い隠さないように） */
.art-frame > .art-photo + ::before,
.art-frame::before {
  content: "";
  position: absolute;
  top: 12px; left: 12px;
  width: 20px; height: 20px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 5;
  pointer-events: none;
}
.art-frame > .frame-label {
  z-index: 6;
}

/* art-frame-sub（2枚目のさげもん画像）はちょっと小さく */
.art-frame-sub {
  max-width: 75%;
  align-self: flex-end;
  margin-top: -20px;
  transform: rotate(1deg);
}
.art-frame-sub .frame-label {
  color: var(--pink);
}
/* さげもん画像（既にピンク背景）は別フィルター：ピンクを活かしつつ暗め */
.art-frame-sub .art-photo {
  filter:
    brightness(0.7)
    contrast(1.3)
    saturate(1.15)
    hue-rotate(-5deg);
}
.art-frame-sub:hover .art-photo {
  filter:
    brightness(0.85)
    contrast(1.35)
    saturate(1.3)
    hue-rotate(0deg);
}
.art-frame-sub::after {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.1), transparent 60%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%);
  mix-blend-mode: overlay;
}
@media (max-width: 720px) {
  .art-frame-sub { max-width: 90%; align-self: center; }
}

/* ===== ヘッダーのロゴをマーク化（小さなBANKSYアイコンを追加） ===== */
.brand-banksy {
  position: relative;
  display: inline-block;
}
/* ロゴ画像をヘッダー右側に小さく配置するスタイル（オプション） */
.brand-logo-img {
  width: 40px;
  height: auto;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 8px rgba(255,31,122,0.4));
}

/* ===== Loader バーの位置調整（ロゴが大きくなったので） ===== */
.loader-bar { margin-top: 12px; }

/* art-frame の四隅マーク - 写真でも見えるように */
.art-frame::before,
.art-frame::after {
  z-index: 2;
}

/* =========================================================
   ABOUT QUOTE — アート画像の代わりの引用ブロック
   ========================================================= */
.about-quote {
  position: relative;
  padding: 60px 40px;
  background:
    linear-gradient(155deg, rgba(20,10,15,0.7) 0%, rgba(10,7,7,0.85) 100%);
  border: 1px solid transparent;
  background-image:
    linear-gradient(155deg, rgba(20,10,15,0.7), rgba(10,7,7,0.85)),
    linear-gradient(135deg, var(--gold-2), var(--gold), #8b6f3f, var(--gold-2));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  text-align: center;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.4),
    0 0 80px rgba(255,31,122,0.1) inset;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-quote::before,
.about-quote::after {
  content: "";
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.about-quote::before { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.about-quote::after  { bottom: 12px; right: 12px; border-left: none; border-top: none; }
.quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 100px;
  line-height: 0.6;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
  opacity: 0.7;
}
.quote-text {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 24px;
}
.quote-en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.4em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 720px) {
  .about-quote { padding: 40px 24px; min-height: 240px; }
  .quote-mark { font-size: 70px; }
}

/* =========================================================
   可読性向上：日本語文字を読みやすく
   ========================================================= */

/* 本文の文字サイズ・太さUP・letter-spacing縮小 */
body {
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* セクション内の本文 */
.about-text p,
.point-card p,
.weekly-body p,
.system-foot,
.news-list p,
.faq-answer,
.info-row dd,
.recruit-text p {
  letter-spacing: 0.03em;
  line-height: 1.95;
}

/* ABOUT本文を読みやすく */
.about-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
}
.about-text .lead {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #fff;
}

/* セクションサブテキスト（薄いの）を読みやすく */
.section-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.25em;
}
.section.dark .section-sub { color: rgba(255, 255, 255, 0.65); }
.section:not(.dark) .section-sub { color: rgba(0, 0, 0, 0.55); }

/* INKミュート色を全体的に明るく */
.point-card p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 13.5px;
}
.point-card.featured p {
  color: rgba(255, 255, 255, 0.95);
}

/* CAST コメント */
.cast-card .cast-comment {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.7;
}

/* WEEKLY 本文 */
.weekly-body p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 12px;
}
.weekly-card.featured .weekly-body p {
  color: rgba(255, 255, 255, 0.9);
}

/* NEWS テキスト */
.news-list p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.news-list time {
  font-size: 13px;
}

/* INFO リスト */
.info-row dd {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  letter-spacing: 0.05em;
}
.info-row dd small {
  color: rgba(0, 0, 0, 0.55);
}
.info-row dt {
  color: var(--gold);
  font-size: 11.5px;
}

/* FAQ - 読みやすく */
.faq-question {
  font-size: 14px;
  color: var(--ink-dark);
  letter-spacing: 0.04em;
}
.faq-answer {
  font-size: 13.5px;
  color: rgba(0, 0, 0, 0.78);
  line-height: 2;
}

/* RECRUIT */
.recruit-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

/* TOPBAR / ヘッダー文字 */
.topbar-inner { font-size: 11.5px; letter-spacing: 0.2em; }
.nav a {
  font-size: 13px;
  letter-spacing: 0.25em;
}
.brand-en, .brand-sub { letter-spacing: 0.3em; }

/* ヒーロー */
.hero-eyebrow { font-size: 12px; letter-spacing: 0.5em; color: var(--gold); }
.hero-tag { line-height: 1.6; }
.hero-jp { color: rgba(255, 255, 255, 0.82); font-size: 14px; letter-spacing: 0.1em; line-height: 1.8; }

/* footer */
.footer-cols ul li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* システムテーブル */
.system-table th {
  font-size: 14.5px;
  letter-spacing: 0.06em;
  color: var(--ink-dark);
}
.system-table td.muted {
  font-size: 12.5px;
  color: rgba(0, 0, 0, 0.55);
}

/* SYSTEMフッター */
.system-foot {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.82);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 24px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.5);
  border-left: 3px solid var(--gold);
}
.system-foot strong { font-size: 16px; color: var(--pink-deep); }

/* =========================================================
   キャスト写真 — サイト世界観に馴染ませるフィルター
   ========================================================= */
.cast-photo.has-photo {
  /* 全キャスト共通の基調フィルター：彩度少し抑え、コントラスト上げ、影深く */
  filter:
    saturate(0.88)
    contrast(1.08)
    brightness(0.96);
  transition: filter .6s ease, background-size .8s cubic-bezier(.16,1,.3,1);
}
.cast-card:hover .cast-photo.has-photo {
  filter:
    saturate(1.05)
    contrast(1.15)
    brightness(1.02);
}

/* 写真の上にうっすらピンク・ゴールドのライト演出 */
.cast-photo.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(255,31,122,0.08), transparent 50%),
    radial-gradient(ellipse at bottom, rgba(0,0,0,0.4), transparent 60%),
    linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity .5s;
}

/* 横長写真 (りんか) は object-position で顔位置を調整 */
.cast-card[data-no="04"] .cast-photo.has-photo {
  background-size: cover;
  background-position: 70% 30%; /* 顔が右下寄りなので */
}

/* ももこ：うさ耳フィルターを軽くダーク寄せで馴染ませる */
.cast-card[data-no="03"] .cast-photo.has-photo {
  filter:
    saturate(0.78)
    contrast(1.12)
    brightness(0.92)
    hue-rotate(-3deg);
}
.cast-card[data-no="03"]:hover .cast-photo.has-photo {
  filter:
    saturate(0.95)
    contrast(1.18)
    brightness(1.0);
}

/* かりん：白っぽい背景なので少し暗くしてアートっぽく */
.cast-card[data-no="05"] .cast-photo.has-photo {
  filter:
    saturate(0.85)
    contrast(1.12)
    brightness(0.94);
}

/* しおん：店内の赤い雰囲気を活かす */
.cast-card[data-no="02"] .cast-photo.has-photo {
  filter:
    saturate(0.95)
    contrast(1.1)
    brightness(0.95);
  background-position: center 30%;
}

/* =========================================================
   TRIP DIARY（スタッフ旅行記）写真スタイル
   ========================================================= */
.trip-hero {
  margin: 24px 0 32px;
  border: 1px solid rgba(201, 169, 106, 0.25);
  border-radius: 4px;
  overflow: hidden;
  background: #0a0608;
}
.trip-hero img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.trip-hero figcaption {
  font-family: var(--font-mincho);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  padding: 12px 18px;
  text-align: center;
  letter-spacing: 0.06em;
}

.trip-photo {
  margin: 24px 0;
  border: 1px solid rgba(201, 169, 106, 0.2);
  border-radius: 3px;
  overflow: hidden;
  background: #0a0608;
}
.trip-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.trip-photo figcaption {
  font-family: var(--font-mincho);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 16px;
  text-align: center;
  letter-spacing: 0.05em;
  font-style: italic;
}

.trip-cta {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(20, 12, 8, 0.6) 0%, rgba(8, 4, 6, 0.85) 100%);
  border: 1px solid rgba(201, 169, 106, 0.3);
  border-radius: 4px;
  text-align: center;
}
.trip-cta p {
  margin: 6px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.trip-cta .btn {
  margin-top: 12px;
}

@media (max-width: 720px) {
  .trip-hero img { aspect-ratio: 4 / 3; }
  .trip-hero figcaption,
  .trip-photo figcaption { font-size: 12px; padding: 8px 12px; }
  .trip-cta { padding: 18px; }
  .trip-cta p { font-size: 13px; }
}

/* =========================================================
   VISITOR COUNTER（訪問者数カウンター・ゴールド装飾）
   ========================================================= */
.visitor-section {
  padding: 64px 0 32px;
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 106, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, #050505 0%, #0a0608 100%);
  position: relative;
  z-index: 2;
}

.visitor-frame {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 32px 40px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(20, 12, 8, 0.7) 0%, rgba(8, 4, 6, 0.85) 100%);
  border: 1px solid rgba(201, 169, 106, 0.35);
  border-radius: 2px;
  box-shadow:
    0 0 60px rgba(201, 169, 106, 0.08) inset,
    0 12px 40px rgba(0, 0, 0, 0.5);
}

/* 内側の薄い金線（二重枠演出） */
.visitor-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 169, 106, 0.18);
  border-radius: 1px;
  pointer-events: none;
}

/* 四隅の装飾コーナー */
.visitor-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  pointer-events: none;
}
.visitor-corner.tl { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.visitor-corner.tr { top: -1px; right: -1px; border-top: 2px solid; border-right: 2px solid; }
.visitor-corner.bl { bottom: -1px; left: -1px; border-bottom: 2px solid; border-left: 2px solid; }
.visitor-corner.br { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }

.visitor-since {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  opacity: 0.85;
  margin: 0 0 6px;
  text-indent: 0.4em;
}

.visitor-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
  text-indent: 0.35em;
}

.visitor-count {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 0 16px;
}

.visitor-deco {
  font-size: 18px;
  color: var(--gold);
  opacity: 0.7;
  animation: visitorDecoPulse 2.4s ease-in-out infinite;
}
.visitor-deco:last-child { animation-delay: 1.2s; }

@keyframes visitorDecoPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.visitor-count-num {
  font-family: var(--font-mincho);
  font-size: clamp(38px, 7vw, 56px);
  font-weight: 500;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fff 0%, #f0d99a 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(201, 169, 106, 0.25);
  min-width: 1.5em;
  transition: opacity 0.4s ease;
}

.visitor-people {
  font-family: var(--font-mincho);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* モバイル調整 */
@media (max-width: 720px) {
  .visitor-section { padding: 48px 0 24px; }
  .visitor-frame {
    margin: 0 16px;
    padding: 36px 20px 28px;
  }
  .visitor-since { font-size: 10px; letter-spacing: 0.32em; }
  .visitor-label { font-size: 10.5px; letter-spacing: 0.28em; margin-bottom: 18px; }
  .visitor-count { gap: 14px; }
  .visitor-deco { font-size: 14px; }
  .visitor-people { font-size: 12px; }
}

/* =========================================================
   モバイル文字組み最適化（2026-06 追加）
   日本語＋英語の混在時に letter-spacing が広すぎて改行・余白が
   ガタガタになる問題を解消
   ========================================================= */
@media (max-width: 720px) {
  /* セクションキッカー：装飾線を短くしてはみ出し防止 */
  .kicker {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-indent: 0.32em;
  }
  .kicker::before,
  .kicker::after {
    display: none;
  }

  /* セクションタイトル：少し小さく、行間広く、読みやすく */
  .section-title {
    font-size: clamp(22px, 6.5vw, 30px);
    line-height: 1.55;
    letter-spacing: 0.06em;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  /* セクションサブ：英文の letter-spacing を小さく、自然改行 */
  .section-sub {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-indent: 0.15em;
    line-height: 1.85;
    word-break: keep-all;
    overflow-wrap: anywhere;
    padding: 0 8px;
  }

  /* セクション head に上下マージン */
  .section-head {
    padding: 0 6px;
  }
}

/* 超小型端末（iPhone SE 等） */
@media (max-width: 380px) {
  .section-title {
    font-size: 21px;
    letter-spacing: 0.04em;
  }
  .section-sub {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .kicker {
    font-size: 9.5px;
    letter-spacing: 0.28em;
  }
}
