/* ===================================================
   Story Crossing ArtFes — new-site / style.css
   =================================================== */

:root {
  --pink:    #FF4D9E;
  --blue:    #4DB6FF;
  --purple:  #9B6BFF;
  --navy:    #0D1B2A;
  --white:   #FFFFFF;
  --offwhite:#F5F5F7;
  --text:    #1A1A1A;
  --muted:   rgba(26,26,26,0.52);
  --nav-h:   64px;
  --radius:  12px;
  --ease:    0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
a  { text-decoration: none; color: inherit; }
img{ max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  padding: 7px 12px;
  border-radius: 7px;
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  margin-top: var(--nav-h);
  background: var(--white);
}
.hero-img-wrap {
  line-height: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-infobar {
  background: var(--offwhite);
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 24px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 56px;
}
.hero-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.hero-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--pink);
  text-transform: uppercase;
}
.hero-info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.hero-info-recruit {
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.04em;
}

/* ── INTRO ── */
.intro-section {
  padding: 88px 0;
  background: var(--offwhite);
  color: var(--text);
  text-align: center;
}
.intro-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.intro-body {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 2.2;
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto;
}
.intro-body strong {
  color: var(--text);
  font-weight: 700;
}

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── ACT SECTIONS ── */
.act-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.act-light { background: var(--white); }
.act-mid   { background: var(--offwhite); }
.act-dark  { background: var(--white); color: var(--text); }

/* large watermark numeral */
.act-watermark {
  position: absolute;
  top: -8px;
  right: 12px;
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  color: rgba(0,0,0,0.04);
  font-variant-numeric: tabular-nums;
}

/* act badge row */
.act-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.act-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 13px;
  border-radius: 100px;
  color: var(--white);
  text-transform: uppercase;
}
.act-badge.blue   { background: var(--blue);   }
.act-badge.pink   { background: var(--pink);   }
.act-badge.purple { background: var(--purple); }

.act-period {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.act-title {
  font-size: clamp(30px, 5.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.act-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.85;
  margin-bottom: 48px;
}

/* ── CARDS ── */
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:not(.card-cs):hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.12);
}
/* card on off-white bg */
.act-mid .card { background: var(--white); }

/* card on former-dark bg (now light) */
.act-dark .card {
  background: var(--white);
  border-color: rgba(0,0,0,0.08);
  color: var(--text);
}
.act-dark .card:not(.card-cs):hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.12);
}

/* card coming soon */
.card-cs {
  opacity: 0.52;
  cursor: default;
  pointer-events: none;
}
.badge-cs {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: rgba(0,0,0,0.07);
  color: var(--muted);
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
}

.card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.card-eyebrow.blue   { color: var(--blue);   }
.card-eyebrow.pink   { color: var(--pink);   }
.card-eyebrow.purple { color: var(--purple); }

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-subtitle-ja {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 20px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-bottom: 2px;
  border-bottom: 1.5px solid currentColor;
  transition: gap var(--ease);
}
.card-cta:hover { gap: 9px; }
.card-cta.blue   { color: var(--blue);   }
.card-cta.pink   { color: var(--pink);   }
.card-cta.purple { color: var(--purple); }

/* ── AND SO ON ── */
.act-and-so-on {
  text-align: right;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* ── ACT 2 NOTE ── */
.act-note {
  background: rgba(255,77,158,0.06);
  border-left: 3px solid var(--pink);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 32px;
  color: var(--text);
}

/* ── EPILOGUE ── */
.epilogue-section {
  padding: 96px 0;
  background: var(--offwhite);
  text-align: center;
}
.epilogue-en {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.epilogue-body {
  font-size: clamp(17px, 3vw, 26px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}
.epilogue-em { color: var(--blue); }

/* ── INFO SECTION ── */
.info-section {
  padding: 88px 0;
  background: var(--offwhite);
}
.s-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.s-heading {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  margin-bottom: 36px;
}
.info-inner { max-width: 740px; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid rgba(0,0,0,0.07); }
.info-table tr:last-child { border-bottom: none; }
.info-key {
  padding: 18px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  width: 130px;
  vertical-align: top;
}
.info-val {
  padding: 18px 0 18px 20px;
  font-size: 15px;
  line-height: 1.75;
}
.info-val a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── FOOTER ── */
.footer {
  background: #060D16;
  padding: 36px 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--offwhite);
  padding: 72px 0 60px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--blue);
}
.page-hero-tag.pink { color: var(--pink); }

.page-hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.page-hero-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ── BACK LINK ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 40px;
  transition: color var(--ease);
}
.back-link::before { content: '←'; }
.back-link:hover { color: var(--navy); }

/* ── CONTENT SECTION ── */
.content-section { padding: 72px 0; }
.content-section + .content-section {
  padding-top: 0;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.content-section.bg-offwhite { background: var(--offwhite); }

.sec-heading {
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.sec-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.85;
  max-width: 640px;
}

/* ── GENRE GRID (workshop) ── */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.genre-chip {
  background: var(--offwhite);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

/* ── NOTICE BOX ── */
.notice-box {
  background: rgba(77,182,255,0.07);
  border: 1.5px solid rgba(77,182,255,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 13px;
  line-height: 1.78;
  margin-top: 32px;
}

/* ── SNS LINKS ── */
.sns-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid rgba(0,0,0,0.16);
  color: var(--text);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.sns-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}

/* ── MARKET ITEMS (creator-market) ── */
.market-item {
  padding: 52px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.market-item:last-child { border-bottom: none; }

.market-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.market-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.25;
}
.market-title.muted { color: var(--muted); }
.market-body {
  font-size: 15px;
  line-height: 1.85;
  max-width: 640px;
  margin-bottom: 28px;
}
.market-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 28px 0;
  max-width: 640px;
}
.market-img img { width: 100%; object-fit: cover; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 100px;
  transition: background var(--ease), transform var(--ease);
}
.btn-primary:hover {
  background: #e0358a;
  transform: translateY(-2px);
}

/* ── COMING SOON (inline) ── */
.cs-inline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 36px 0;
}
.cs-badge-sm {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
  border: 1.5px solid rgba(0,0,0,0.14);
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}
.cs-note {
  font-size: 14px;
  color: var(--muted);
}

/* ── MANGA PAGE ── */
.manga-band {
  background: var(--offwhite);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 64px 0;
  text-align: center;
}
.manga-new-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.manga-title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.manga-sub {
  font-size: 17px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── WORKSHOP LP BANNER ── */
.ws-banner {
  margin-top: var(--nav-h);
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding: 0 24px;
  line-height: 0;
}
.ws-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── WORKSHOP DETAIL TEXT (tighter) ── */
.ws-detail-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 32px;
}
.ws-detail-lead p + p {
  margin-top: 10px;
}

/* ── APPLY BUTTON (blue, standalone) ── */
.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 100px;
  transition: background var(--ease), transform var(--ease);
  text-decoration: none;
}
.btn-apply:hover {
  background: #2b9de0;
  transform: translateY(-2px);
}
.btn-apply.green              { background: var(--green); }
.btn-apply.green:hover        { background: #189970; }
.btn-apply.pink               { background: var(--pink); }
.btn-apply.pink:hover         { background: #e03585; }
.instructor-company.green     { color: var(--green); }

/* ── RECOMMEND HEADING ── */
/* ── SESSION GRID (横並び日程) ── */
.ws-sessions-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.ws-session {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ws-session-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.ws-session-date {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.ws-session-time {
  font-size: 12px;
  color: var(--muted);
}

/* ── RECOMMEND HEADING ── */
.recommend-heading {
  font-size: 15px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
}

/* ── WORKSHOP INFO LIST (vertical) ── */
.ws-info-list {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 40px 0;
}
.ws-info-item {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: var(--white);
}
.ws-info-item:last-child { border-bottom: none; }
.ws-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  min-width: 56px;
  flex-shrink: 0;
  text-transform: uppercase;
}
.ws-info-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}
.ws-info-value small {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}

/* ── WORKSHOP DETAIL TEXT ── */
.ws-detail-body {
  font-size: 17px;
  line-height: 2.0;
  color: var(--text);
  max-width: 720px;
}
.ws-detail-body p + p {
  margin-top: 16px;
}

/* ── INSTRUCTOR PHOTO CARDS ── */
.instructor-company {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.instructor-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.instructor-photo-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  overflow: hidden;
}
.instructor-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(0,0,0,0.06);
}
.instructor-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.instructor-photo-body {
  padding: 20px 20px 24px;
}
.instructor-photo-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.instructor-photo-role {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── PAGE TITLE BLOCK (under banner) ── */
.page-title-block {
  padding: 36px 0 0;
}
.page-title-block h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 10px;
}

/* ── WORKSHOP COLORS ── */
:root {
  --green:  #1FAD87;
  --orange: #FF8A30;
}

/* ── WORKSHOP LISTING CARDS ── */
.ws-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.ws-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.ws-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.12);
}
.ws-card-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ws-card-eyebrow.blue   { color: var(--blue); }
.ws-card-eyebrow.green  { color: var(--green); }
.ws-card-eyebrow.orange { color: var(--orange); }
.ws-card-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 10px;
}
.ws-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 20px;
  flex-grow: 1;
}
.ws-card-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 20px;
}
.ws-meta-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
}
.ws-meta-key {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  min-width: 40px;
  flex-shrink: 0;
}
.ws-meta-val { color: var(--text); font-weight: 500; }
.ws-card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
}
.ws-card-link.blue   { color: var(--blue); }
.ws-card-link.green  { color: var(--green); }
.ws-card-link.orange { color: var(--orange); }

.ws-card-thumb {
  margin: -28px -24px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  line-height: 0;
  background: var(--offwhite);
}
.ws-card-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.ws-sessions-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.ws-session-detail {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.ws-session-detail-head {
  padding: 20px 20px 16px;
  background: var(--green);
  color: #fff;
}
.ws-session-detail-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  display: block;
  opacity: 0.85;
  text-transform: uppercase;
}
.ws-session-detail-theme {
  font-size: 22px;
  font-weight: 900;
  display: block;
  margin: 5px 0 6px;
}
.ws-session-detail-date {
  font-size: 12px;
  display: block;
  opacity: 0.85;
}
.ws-session-detail-body {
  padding: 18px 20px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text);
  background: var(--white);
}
@media (max-width: 680px) {
  .ws-sessions-detail { grid-template-columns: 1fr; }
}

.ws-card-thumb-cs {
  line-height: 1;
  background: #b0b0b0;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ── WORKSHOP LP — HERO PILLS ── */
.ws-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.ws-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.12);
  color: var(--text);
}
.ws-pill.blue   { border-color: rgba(77,182,255,0.45);  color: var(--blue); }
.ws-pill.green  { border-color: rgba(31,173,135,0.45);  color: var(--green); }
.ws-pill.orange { border-color: rgba(255,138,48,0.45);  color: var(--orange); }

/* ── WORKSHOP LP — SPEC BLOCK ── */
.ws-spec-block {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 20px 32px;
}
.ws-spec-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.ws-spec-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.55;
}
.ws-spec-val small {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

/* ── WORKSHOP LP — PROGRAM STEPS ── */
.program-steps { margin: 24px 0; }
.program-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.program-step:last-child { border-bottom: none; }
.ps-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.ps-num.blue   { background: var(--blue); }
.ps-num.green  { background: var(--green); }
.ps-num.orange { background: var(--orange); }
.ps-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.ps-date.blue   { color: var(--blue); }
.ps-date.green  { color: var(--green); }
.ps-date.orange { color: var(--orange); }
.ps-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}
.ps-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.78;
}

/* ── WORKSHOP LP — INSTRUCTORS ── */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.instructor-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 24px;
}
.instructor-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
.instructor-kana {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.instructor-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── WORKSHOP LP — CTA BAND ── */
.cta-band {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 24px;
}
.cta-band-title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-band-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  line-height: 1.85;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 100px;
  transition: transform var(--ease), filter var(--ease);
  color: var(--white);
  text-decoration: none;
}
.btn-cta.blue   { background: var(--blue); }
.btn-cta.green  { background: var(--green); }
.btn-cta.orange { background: var(--orange); }
.btn-cta.pink   { background: var(--pink); }
.btn-cta:hover  { transform: translateY(-2px); filter: brightness(1.08); }

/* ── WORKSHOP LP — ROLE TABLE ── */
.role-table-wrap { overflow-x: auto; margin: 24px 0; }
.role-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 540px;
}
.role-table th {
  text-align: left;
  padding: 10px 14px;
  background: rgba(0,0,0,0.03);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid rgba(0,0,0,0.08);
}
.role-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.65;
  vertical-align: top;
}
.role-table tr:last-child td { border-bottom: none; }
.role-table td:first-child {
  font-weight: 700;
  white-space: nowrap;
  color: var(--text);
}

/* ── WORKSHOP LP — RECOMMEND LIST ── */
.recommend-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.recommend-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
}
.recommend-list li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.recommend-list.green  li::before { background: var(--green); }
.recommend-list.orange li::before { background: var(--orange); }
.recommend-list.pink   li::before { background: var(--pink); }

/* ── PAGE HERO TAG COLOR VARIANTS ── */
.page-hero-tag.green  { color: var(--green); }
.page-hero-tag.orange { color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    gap: 2px;
  }
  .nav-links a {
    font-size: 11px;
    padding: 5px 8px;
  }

  .cards-grid-2,
  .cards-grid-3 { grid-template-columns: 1fr; }

  .hero-infobar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
  }
  .act-section { padding: 64px 0; }
  .info-key { width: 88px; }
  .genre-grid { grid-template-columns: repeat(2, 1fr); }

  .ws-card-grid { grid-template-columns: 1fr; }
  .ws-spec-block { grid-template-columns: 1fr 1fr; padding: 20px; }
  .instructor-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 20px; }
  .ws-info-item { gap: 16px; padding: 18px 20px; }
  .ws-info-value { font-size: 17px; }
  .instructor-photo-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .instructor-photo-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
