/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; background: #F7F6F2; color: #1A1A18; -webkit-font-smoothing: antialiased; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-eyebrow { font-size: 11px; letter-spacing: 0.2em; color: #888780; margin-bottom: 10px; display: block; }
.section-title { font-size: clamp(22px,3vw,32px); font-weight: 700; font-family: 'Noto Serif JP', Georgia, serif; line-height: 1.4; margin-bottom: 16px; }
.section-lead { font-size: 14px; color: #888780; line-height: 1.9; margin-bottom: 40px; }
.section-body { font-size: 14px; color: #888780; line-height: 1.9; margin-bottom: 20px; }
.content-wrap { max-width: 50%; margin: 0 auto; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; height: 80px;
  background: rgba(247,246,242,0.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; z-index: 9999;
  border-bottom: 1px solid rgba(211,209,199,0.5);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; height: 80px; }
.nav-links a {
  display: flex; align-items: center; padding: 0 16px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: #1A1A18; -webkit-text-fill-color: #1A1A18;
  text-decoration: none; height: 80px; white-space: nowrap;
}
.nav-links a:hover { color: #888780; -webkit-text-fill-color: #888780; }
.nav-btn {
  margin-left: 20px; padding: 9px 22px; font-size: 13px; font-weight: 700;
  background: #1A1A18; color: #F7F6F2; -webkit-text-fill-color: #F7F6F2;
  border: none; border-radius: 4px; cursor: pointer; white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 80px); background: #2C2C2A;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 40px 60px; position: relative; overflow: hidden;
  margin-top: 80px;
}
.hero h1 {
  font-size: clamp(32px,5vw,64px); font-weight: 700;
  font-family: 'Noto Serif JP', Georgia, serif;
  color: #F7F6F2; -webkit-text-fill-color: #F7F6F2;
  line-height: 1.25; margin-bottom: 24px; position: relative; z-index: 2;
}
.hero-sub { font-size: 14px; color: #aaaaaa; line-height: 1.9; margin-bottom: 32px; }
.hero-btn-p, .hero-btn-s {
  padding: 12px 28px; font-size: 13px; font-weight: 700;
  border-radius: 4px; cursor: pointer; font-family: 'Noto Sans JP', sans-serif;
}
.hero-btn-p { background: #F7F6F2; color: #1A1A18; -webkit-text-fill-color: #1A1A18; border: none; margin-right: 12px; }
.hero-btn-s { background: transparent; color: #F7F6F2; -webkit-text-fill-color: #F7F6F2; border: 1px solid rgba(247,246,242,0.4); }

/* ============================================================
   SECTIONS (共通)
   ============================================================ */
.section { padding: 72px 40px; }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SERVICES (タイムライン)
   ============================================================ */
/* ===== SERVICES: Simple Rounded Cards ===== */
.sv-list { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sv-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #E8E5DD; border-radius: 16px; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.sv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.sv-img-pane { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.sv-bg { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.sv-card:hover .sv-bg { transform: scale(1.05); }
.sv-text-pane { padding: 24px 24px 28px; display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.sv-orn { display: none; }
.sv-label { font-size: 10px; letter-spacing: 0.18em; color: #B0A98F; margin-bottom: 8px; font-weight: 500; text-transform: uppercase; }
.sv-title { font-size: 17px; font-weight: 700; color: #1A1A18; line-height: 1.5; margin-bottom: 10px; }
.sv-rule { display: none; }
.sv-desc { font-size: 13px; color: #888780; line-height: 1.85; margin: 0; }

/* ============================================================
   RESULTS (実績ハイライト)
   ============================================================ */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-bottom: 32px; align-items: stretch; }
.stat-card { background: #F2F0EB; border-radius: 12px; padding: 20px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.stat-card-left { width: 100%; display: flex; justify-content: center; align-items: center; }
.stat-card-right { width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
.stat-graph { margin-bottom: 12px; height: 56px; }
.stat-num { font-size: 48px; font-weight: 600; line-height: 1; font-family: 'Noto Serif JP', Georgia, serif; color: #1A1A18; letter-spacing: -0.02em; }
.stat-unit { font-size: 13px; color: #888780; }
.stat-label { font-size: 11px; color: #888780; margin-top: 28px; margin-bottom: 20px; line-height: 1.7; text-align: center; }
.results-list { border-top: 1px solid #D3D1C7; }
.result-item { display: flex; gap: 16px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid #D3D1C7; }
.result-icon { width: 20px; flex-shrink: 0; margin-top: 2px; }
.result-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.result-desc { font-size: 12px; color: #888780; line-height: 1.9; }

/* ============================================================
   WORKS (制作実績)
   ============================================================ */
.works-section { background: #F7F6F2; border-top: 1px solid #D3D1C7; }
.works-inner { padding: 72px 40px; max-width: 50%; margin: 0 auto; }
.works-layout { display: flex; gap: 40px; align-items: flex-start; }
.works-filter-col { width: 220px; flex-shrink: 0; position: sticky; top: 80px; }
.works-grid-col { flex: 1; min-width: 0; }
.works-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 0; }
.works-hidden { display: none !important; }
.works-card { display: block; background: #fff; border: 1px solid #D3D1C7; border-radius: 12px; overflow: hidden; color: inherit; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.works-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.works-img-wrap { position: relative; width: 100%; aspect-ratio: 16 / 10; overflow: hidden; background: #EDEBE4; }
.works-card-img-abs { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.works-card-body { padding: 16px; }
.works-card-service { font-size: 10px; letter-spacing: 0.12em; color: #888780; margin-bottom: 6px; }
.works-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.works-tag { font-size: 10px; color: #888780; border: 1px solid #D3D1C7; padding: 2px 7px; border-radius: 10px; letter-spacing: 0.04em; }
.works-card-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.works-card-date { font-size: 11px; color: #B0A98F; letter-spacing: 0.05em; margin-bottom: 6px; }
.works-card-desc { font-size: 12px; color: #888780; line-height: 1.7; }
.works-filter-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; margin-bottom: 32px; align-items: center; }
.works-filter-tag { font-size: 11px; color: #888780; border: 1px solid #D3D1C7; padding: 5px 12px; border-radius: 20px; cursor: pointer; letter-spacing: 0.04em; transition: all 0.2s; white-space: nowrap; }
.works-filter-tag:hover { border-color: #888780; color: #1A1A18; }
.works-filter-tag.active { background: #1A1A18; color: #F7F6F2; border-color: #1A1A18; -webkit-text-fill-color: #F7F6F2; }
.works-filter-tag--more { font-size: 11px; color: #888780; border: 1px solid #D3D1C7; padding: 5px 12px; border-radius: 20px; cursor: pointer; letter-spacing: 0.04em; transition: all 0.2s; white-space: nowrap; }
.works-filter-tag--more:hover { border-color: #888780; color: #1A1A18; }
.works-filter-tag--more.active { background: #1A1A18; color: #F7F6F2; border-color: #1A1A18; -webkit-text-fill-color: #F7F6F2; }
.works-filter-btn-wrap { padding-bottom: 10px; border-bottom: 1px solid #D3D1C7; margin-bottom: 12px; }
.works-filter-more-btn { font-size: 11px; color: #1A1A18; -webkit-text-fill-color: #1A1A18; cursor: pointer; letter-spacing: 0.04em; padding: 10px 12px; white-space: nowrap; background: #D0CEC8; border: none; border-radius: 0; box-shadow: inset 1px 1px 0 rgba(255,255,255,0.6), inset -1px -1px 0 rgba(0,0,0,0.15); font-family: inherit; transition: all 0.2s; display: block; width: 100%; text-align: center; } .works-filter-more-btn:hover { background: #B8B5AE; color: #1A1A18; -webkit-text-fill-color: #1A1A18; box-shadow: inset 1px 1px 0 rgba(255,255,255,0.5), inset -1px -1px 0 rgba(0,0,0,0.2); } .works-filter-more-btn:active { box-shadow: inset 1px 1px 0 rgba(0,0,0,0.15), inset -1px -1px 0 rgba(255,255,255,0.6); }
.works-filter-tag--more-wrap { display: none; flex-wrap: wrap; gap: 8px; }
.works-filter-tag--more-wrap.open { display: flex; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: #ffffff; border-top: 1px solid #D3D1C7; border-bottom: 1px solid #D3D1C7; }
.about-inner { padding: 72px 40px; max-width: 50%; margin: 0 auto; display: flex; flex-direction: row; gap: 60px; align-items: flex-start; }
.about-left { flex: 1; min-width: 0; }
.about-right { width: 300px; flex-shrink: 0; align-self: flex-start; margin-top: 120px; }
.about-quote { font-size: clamp(24px,3vw,36px); font-weight: 700; font-family: 'Noto Serif JP', Georgia, serif; line-height: 1.5; margin-bottom: 20px; }
.about-body { font-size: 14px; color: #888780; line-height: 2; margin-bottom: 16px; }
.about-sig { font-size: 13px; color: #888780; }
.about-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; object-position: center top; display: block; margin: 20px 0 6px; border: 2px solid #D3D1C7; }
.about-card { background: #F2F0EB; border-radius: 12px; padding: 20px; }
.about-card-label { font-size: 11px; letter-spacing: 0.1em; color: #888780; margin-bottom: 14px; }
.about-card-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid #D3D1C7; font-size: 12px; font-weight: 600; }
.about-card-row:last-child { border-bottom: none; }
.about-card-row span { color: #888780; font-size: 11px; text-align: right; max-width: none; line-height: 1.5; }

/* ============================================================
   FAQ
   ============================================================ */
.acc-section { padding: 72px 40px; background: #FAFAF8; }
.acc-list { border-top: 1px solid #D3D1C7; }
.acc-item { border-bottom: 1px solid #D3D1C7; }
.acc-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; user-select: none; }
.acc-header-left { display: flex; flex-direction: row; align-items: flex-start; gap: 16px; flex: 1; }
.acc-header-right { display: flex; flex-direction: column; gap: 5px; }
.acc-num { font-size: 11px; color: #C0BDB5; letter-spacing: 0.1em; flex-shrink: 0; padding-top: 3px; }
.acc-category { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.08em; padding: 2px 8px; border-radius: 3px; background: #F0EDE6; color: #888780; white-space: nowrap; align-self: flex-start; }
.acc-category--entertainment { background: #EDF0F5; color: #5A6A8A; }
.acc-category--music        { background: #F5EDF0; color: #8A5A6A; }
.acc-category--design       { background: #EDF5F1; color: #5A8A6A; }
.acc-category--logistics    { background: #F5F0ED; color: #8A6A5A; }
.acc-category--backoffice   { background: #F0EDF5; color: #6A5A8A; }
.acc-header-title { font-size: 15px; font-weight: 600; }
.acc-icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid #D3D1C7; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.acc-item.open .acc-icon { background: #2C2C2A; border-color: #2C2C2A; transform: rotate(45deg); }
.acc-item.open .acc-icon svg line { stroke: #ffffff; }
.acc-body { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.acc-body-inner { padding: 0 0 20px 36px; font-size: 13px; color: #888780; line-height: 1.8; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: #2C2C2A; padding: 72px 40px; text-align: center; }

/* ===== SNS Section ===== */
.sns-section { padding: 80px 0; background: #FFFFFF; }
.sns-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 40px 0 36px; }
.sns-tab { padding: 8px 22px; border-radius: 999px; border: 1px solid #D3D1C7; background: #fff; color: #888780; font-size: 13px; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.sns-tab:hover { border-color: #1A1A18; color: #1A1A18; }
.sns-tab.active { background: #1A1A18; color: #fff; border-color: #1A1A18; }
.sns-panel { display: none; flex-wrap: wrap; gap: 32px; }
.sns-panel.active { display: flex; }
.sns-icon-btn { display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; }
.sns-circle { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: opacity 0.2s, transform 0.2s; }
.sns-icon-btn:hover .sns-circle { opacity: 0.82; transform: translateY(-3px); }
.sns-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.sns-x { background: #000; }
.sns-youtube { background: #FF0000; }
.sns-line { background: #06C755; }
.sns-label { font-size: 11px; color: #888780; letter-spacing: 0.05em; }
.sns-hiatus { width: 100%; font-size: 12px; color: #B0A98F; margin-bottom: 8px; }
.contact-inner { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 60px; max-width: 50%; margin: 0 auto; text-align: left; }
.contact-logo-col { flex: 1; opacity: 0.6; display: flex; align-items: center; justify-content: center; }
.contact-logo-col img { height: 60px !important; width: auto !important; }
.contact-text-col { flex: 3; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.contact-title { font-size: clamp(20px,2.5vw,28px); font-weight: 700; font-family: 'Noto Serif JP', Georgia, serif; color: #F7F6F2; -webkit-text-fill-color: #F7F6F2; line-height: 1.5; margin-bottom: 12px; }
.contact-body { font-size: 13px; color: #888780; -webkit-text-fill-color: #888780; line-height: 1.8; margin-bottom: 28px; }
.contact-btn { font-size: 14px; font-weight: 600; padding: 14px 40px; background: #ffffff; color: #2C2C2A; -webkit-text-fill-color: #2C2C2A; border: none; border-radius: 6px; cursor: pointer; }

/* ===== Contact Form Modal ===== */
.contact-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(26,26,24,0.72); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
}
.contact-modal-overlay.active { display: flex; }
.contact-modal {
  position: relative; width: 100%; max-width: 640px; height: 85vh; max-height: 760px;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.contact-modal-iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-modal-close {
  position: absolute; top: 10px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(26,26,24,0.06); color: #1A1A18; font-size: 22px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.contact-modal-close:hover { background: rgba(26,26,24,0.12); }
@media (max-width: 640px) {
  .contact-modal { max-width: 100%; height: 90vh; border-radius: 12px; }
}
.footer-inner { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 20px; }

/* ============================================================
   ABOUT card visibility
   ============================================================ */
.about-card-side { display: block; }
.about-card-bottom { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1920px以下 */
@media (max-width: 1920px) {
  .content-wrap, .about-inner, .works-inner { max-width: 70%; }
}

/* 1309px以上: about-rightを表示 */
@media (min-width: 1309px) {
  .about-card-bottom { display: none; }
  .about-card-side { display: block; }
}

/* 1308px以下: about-rightを非表示、about-card-bottomを表示 */
@media (max-width: 1308px) {
  .about-card-bottom { display: block; }
  .about-card-side { display: none; }
  .about-inner { flex-direction: column; gap: 32px; }
}

/* 1024px以下 */
@media (max-width: 1024px) {
  .content-wrap, .about-inner, .works-inner { max-width: 90%; }
}

@media (max-width: 1089px) {
  .contact-inner { flex-direction: column; max-width: 90%; text-align: center; gap: 32px; }
  .contact-logo-col { display: none; }
  .contact-text-col { flex: 1; width: 100%; align-items: center; text-align: center; }
  .contact-btn { display: block; margin: 0 auto; }
}

/* 900px以下 */
@media (max-width: 900px) {
  .works-layout { flex-direction: column; }
  .works-filter-col { width: 100%; position: static; }
  .works-inner { max-width: 90%; }
  .sv-list { grid-template-columns: repeat(2, 1fr); }
}

/* 640px以下 */
@media (max-width: 640px) {
  nav { padding: 0 5%; }
  .nav-links { display: none; }
  .section, .about-section, .acc-section { padding-left: 0; padding-right: 0; }
  .contact-section { padding-left: 0 !important; padding-right: 0 !important; }
  .content-wrap, .about-inner, .works-inner { max-width: 100% !important; padding-left: 20px !important; padding-right: 20px !important; }
  .contact-inner { padding: 0 20px; flex-direction: column; width: 100%; max-width: 100%; }
  .contact-logo-col { display: none; }
  .contact-text-col { flex: 1; width: 100%; align-items: center; text-align: center; display: flex; flex-direction: column; }
  .about-inner { padding: 48px 0; flex-direction: column; gap: 32px; }
  .about-right { width: 100%; margin-top: 0; }
  footer { padding-left: 0 !important; padding-right: 0 !important; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .stat-card { aspect-ratio: auto; padding: 20px 16px; align-items: flex-start; }
  .sv-list { grid-template-columns: 1fr; }
  .sv-title { font-size: 17px; }
}

/* 600px以下 */
@media (max-width: 600px) {
  .contact-inner { flex-direction: column; text-align: center; gap: 32px; max-width: 100%; padding: 0 20px; }
  .contact-logo-col { display: none; }
}

/* モバイル横向き */
@media (max-width: 900px) and (orientation: landscape) {
  .content-wrap, .about-inner, .works-inner { max-width: 100% !important; padding-left: 20px !important; padding-right: 20px !important; }
  .works-hidden { display: none !important; }
  .contact-inner { flex-direction: column !important; max-width: 100% !important; padding: 0 20px !important; }
  .contact-logo-col { display: none !important; }
  .contact-text-col { width: 100% !important; align-items: center !important; text-align: center !important; }
}

/* 4K */
@media (min-width: 1921px) {
  .content-wrap, .about-inner, .works-inner, .contact-inner { max-width: 50%; }
}

/* ============================================================
   UTILITY CLASSES (インラインstyle置き換え)
   ============================================================ */
.hero-nav-row { display: flex; align-items: center; height: 80px; }
.hero-overlay { position: absolute; inset: 0; background: #00000066; z-index: 1; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-content { position: relative; z-index: 2; }
.stat-num-row { display: flex; align-items: baseline; gap: 4px; }
.result-icon-wrap { margin-top: 2px; flex-shrink: 0; }
.works-filter-box { border: 1px solid #D3D1C7; border-radius: 12px; padding: 16px 20px; margin-bottom: 20px; }
.works-filter-box-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.works-filter-box-label { font-size: 11px; letter-spacing: 0.1em; color: #888780; margin: 0 0 12px; padding-bottom: 10px; border-bottom: 1px solid #D3D1C7; display: block; width: 100%; }
.works-more-wrap { margin-top: 20px; margin-bottom: 40px; text-align: center; }
.about-sig-wrap { display: flex; align-items: center; gap: 16px; margin-top: 20px; }
.about-card-bottom-wrap { margin-top: 32px; }
.footer { background: #2C2C2A; padding: 24px 40px; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand-name { font-size: 12px; font-weight: 600; color: #888780; -webkit-text-fill-color: #888780; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-nav-link { font-size: 11px; color: #888780; -webkit-text-fill-color: #888780; cursor: pointer; }
.footer-copy { font-size: 11px; color: #888780; -webkit-text-fill-color: #888780; }
.section-about { background: #ffffff; border-top: 1px solid #D3D1C7; border-bottom: 1px solid #D3D1C7; }
.d-block { display: block; }

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: #2C2C2A;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  transition: opacity 0.6s ease;
}
#loader img { width: 220px; max-width: 55vw; height: auto; }
#loader.hidden { opacity: 0; pointer-events: none; }
#loader-bar-wrap {
  width: 160px; height: 1px;
  background: #555555;
  border-radius: 1px; overflow: hidden;
}
#loader-bar {
  height: 1px; width: 0%;
  background: #ffffff;
  transition: width 0.08s linear;
}
#loader-pct {
  font-size: 11px; color: #888888;
  -webkit-text-fill-color: #888888;
  letter-spacing: 0.1em; margin-top: 10px;
  text-align: center;
}

.result-icon { display: none; }
.result-icon-inline { display: inline-flex; align-items: center; margin-right: 8px; vertical-align: middle; }
.result-title { display: flex; align-items: center; font-size: 14px; font-weight: 600; margin-bottom: 8px; }

/* ============================================================
   SUB-PAGE COMPONENTS (music / theater etc.)
   ============================================================ */
.page-hero { padding: 140px 40px 72px; background: #F7F6F2; text-align: left; }
.page-hero .content-wrap { max-width: 50%; }
.breadcrumb { font-size: 11px; color: #888780; margin-bottom: 24px; }
.breadcrumb a { color: #888780; text-decoration: none; border-bottom: 1px solid #D3D1C7; }
.breadcrumb a:hover { color: #1A1A18; }

.flow-list { list-style: none; margin: 0; padding: 0; counter-reset: flow-step; }
.flow-list li { position: relative; padding: 0 0 32px 56px; }
.flow-list li:last-child { padding-bottom: 0; }
.flow-list li::before {
  counter-increment: flow-step;
  content: counter(flow-step);
  position: absolute; left: 0; top: -2px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #1A1A18; color: #FAF9F6; -webkit-text-fill-color: #FAF9F6;
  font-size: 14px; font-weight: 700; font-family: 'Noto Serif JP', serif;
  display: flex; align-items: center; justify-content: center;
}
.flow-list strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.flow-list span { font-size: 13px; color: #888780; line-height: 1.85; }

@media (max-width: 900px) {
  .page-hero .content-wrap { max-width: 90%; }
}
@media (max-width: 600px) {
  .page-hero { padding: 120px 20px 56px; }
  .page-hero .content-wrap { max-width: 100%; }
}

.sv-more-link { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 600; color: #1A1A18; -webkit-text-fill-color: #1A1A18; text-decoration: none; border-bottom: 1px solid #1A1A18; padding-bottom: 2px; }
.sv-more-link:hover { opacity: 0.6; }

/* ============================================================
   CASE STUDY (works detail pages)
   ============================================================ */
.case-hero-img { width: 100%; border-radius: 16px; overflow: hidden; margin: 32px 0 8px; }
.case-hero-img img { width: 100%; height: auto; display: block; }

.case-meta { display: flex; flex-wrap: wrap; gap: 28px; padding: 24px 28px; background: #F7F6F2; border-radius: 12px; margin-bottom: 8px; }
.case-meta-item { font-size: 11px; color: #888780; letter-spacing: 0.05em; }
.case-meta-item strong { display: block; font-size: 14px; color: #1A1A18; margin-top: 4px; font-weight: 600; }

.case-block { padding: 48px 0; border-bottom: 1px solid #E8E5DD; }
.case-block:last-child { border-bottom: none; }
.case-block-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: #fff; -webkit-text-fill-color: #fff; background: #1A1A18; padding: 5px 16px; border-radius: 20px; margin-bottom: 18px; }
.case-block h2 { font-size: clamp(19px,2.4vw,24px); font-weight: 700; font-family: 'Noto Serif JP', serif; margin-bottom: 16px; line-height: 1.5; }
.case-block p { font-size: 14px; color: #444440; line-height: 1.95; }

.case-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.case-nav a { font-size: 12px; color: #888780; text-decoration: none; border-bottom: 1px solid #D3D1C7; padding-bottom: 2px; }
.case-nav a:hover { color: #1A1A18; }

@media (max-width: 600px) {
  .case-meta { gap: 16px; padding: 20px; }
}
