/* ========================================
   GRAFFITONS — 白ベース・クリーン＆クリエイティブ
   オフホワイト・ミッドナイトブルー・美術館のような余白
   ======================================== */

/* リセット・基本 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-bg: #f8f8f8;
  --color-bg-card: #ffffff;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-accent: #f76b1a;
  --color-accent-hover: #e05a0a;
  --color-accent-soft: rgba(247,107,26,0.08);
  --color-border: rgba(0, 0, 0, 0.06);
  --color-shadow: rgba(0, 0, 0, 0.04);
  --font-sans: "Inter", sans-serif;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-display: 'Anton', sans-serif;
  --transition-ui: 0.3s ease;
  --section-inner-max: 1120px;
  --section-padding-x: 5%;
}

body {
  margin: 0;
  position: relative;
  font-family: var(--font-jp);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* グレイン（ノイズ）テクスチャ — 画面全体・紙や布の物質感 */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* スクロールプログレスバー */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff4500;
  z-index: 10000;
  transition: width 0.1s linear;
}

/* LINE フローティングボタン（全ページ共通） */
.line-float-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  text-decoration: none;
}

.line-float-btn:hover {
  background: #06c755;
  color: #fff;
  transform: scale(1.05);
}

.line-float-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* CONTACT VIA LINE セクション（FAQ・ACCESS ページ） */
.line-cta-section {
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.line-cta-section__heading {
  margin: 0 0 1rem;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--color-text);
}

.line-cta-section__text {
  margin: 0 0 1.5rem;
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.line-cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #000;
  color: #fff;
  font-family: var(--font-jp);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.line-cta-section__btn:hover {
  background: #06c755;
  transform: translateY(-2px);
}

.line-cta-section__btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* スクロールフェードイン */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

h1, h2, h3,
.site-title,
.hero-lead {
  font-family: 'Anton', sans-serif;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--color-text);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2rem);
  margin: 0 0 1.5rem;
  letter-spacing: 0.08em;
}

.section-title,
.section-title--bilingual {
  font-family: 'Anton', sans-serif; /* タイポグラフィ統一 */
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.08);
  paint-order: stroke fill;
}

.section-title__jp {
  letter-spacing: 0.12em;
  -webkit-text-stroke: none;
}

/* セクションタイトル：1文字ずつ下から上にフェードイン */
.section-title__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
}

.section-title__char--space {
  min-width: 0.25em;
}

.section-title.is-visible .section-title__char,
.essence-headline.is-visible .section-title__char {
  animation: section-title-fade-up 0.4s ease forwards;
}

.section-title.is-visible .section-title__char,
.essence-headline.is-visible .section-title__char {
  animation-delay: calc(0.03s * var(--i, 0));
}

@keyframes section-title-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5em;
  color: var(--color-accent);
}

p {
  font-family: var(--font-jp);
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--color-text);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-ui);
}

a:hover {
  color: var(--color-accent-hover);
}

/* アクセシビリティ用 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* セクション共通 — 幅・余白の統一（ABOUT / ESSENCE / WORKS 同一） */
.section {
  padding: 8rem var(--section-padding-x);
  position: relative;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  max-width: var(--section-inner-max);
  height: 1px;
  background: var(--color-border);
}

.section-inner {
  max-width: var(--section-inner-max);
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.section-lead {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* ABOUT US / THE ESSENCE — WORKS と同じ幅で統一 */
.section.about .section-inner,
.section.services.essence-section .section-inner {
  max-width: var(--section-inner-max);
  margin: 0 auto;
  padding: 0;
}

.section-title,
.essence-headline {
  margin: 0 0 0.6rem;
  padding: 0;
  margin-left: 0;
}

.section.about .section-lead {
  line-height: 1.85;
  margin-bottom: 2rem;
  margin-top: 0;
}

.section.about .section-inner > p {
  line-height: 1.9;
  margin-bottom: 1.75rem;
  max-width: 100%;
}

.section.about .section-inner > p:last-child {
  margin-bottom: 0;
}

/* タイトルとリードの間を詰め、段落間の余白を広げる */
.essence-section .section-lead {
  margin-top: 0;
  margin-bottom: 2.25rem;
}

.essence-section .section-inner > p,
.essence-section .service-list {
  margin-bottom: 1.75rem;
}

.about-keyword {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding-bottom: 0.05em;
  font-weight: 500;
}

/* ヘッダー — 細い境界・立体感は影で */
.site-header {
  padding: 5rem 4rem 5.5rem !important;
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: 0 1px 0 var(--color-border);
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
}

.header-brand {
  line-height: 1.02;
}

.site-title {
  margin: 0 0 0;
  font-family: 'Anton', sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.site-tagline {
  display: block !important;
  margin: 0.02em 0 0 0;
  margin-bottom: 8rem !important;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.subtitle-accent {
  letter-spacing: 0.2em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-text);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: var(--transition-ui);
}

.global-nav {
  margin-top: 5rem !important; /* サブタイトルとの間に余白を確保 */
}

.global-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.global-nav a {
  position: relative;
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transition: color var(--transition-ui), transform var(--transition-ui);
  display: inline-block;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-ui);
}

.global-nav a:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.global-nav a:hover::after {
  width: 100%;
}

.nav-instagram {
  display: flex;
  align-items: center;
  color: #ffffff;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.nav-instagram:hover {
  opacity: 1;
  color: #f76b1a;
}

/* ヒーロー — 50vh・背景画像・オーバーレイ・ロゴ・スクロール促し */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* 動画読み込み中も真っ黒にしない背景色を保持 */
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #2a2a2a;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  transition: opacity 0.9s ease-in-out;
  /* シネマティック・フィルター：ビビッドな色彩＋ソフトフォーカス */
  filter: saturate(180%) brightness(110%) blur(4px);
  -webkit-filter: saturate(180%) brightness(110%) blur(4px);
}

.hero__video--front {
  z-index: 2;
  opacity: 1;
}

.hero__video--back {
  z-index: 1;
  opacity: 0;
}

.hero__video-indicator {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  font-family: 'Anton', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #ff4500;
  pointer-events: none;
}

.hero__bg--fallback {
  position: absolute;
  inset: 0;
  background: #2a2a2a center / cover no-repeat;
  background-image: url("hero-bg.jpg");
}

/* 動画が再生されない環境用：動画の背後に表示 */
.hero__media .hero__bg--fallback {
  display: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* 黒の半透明レイヤー：手ブレを柔らかくし、文字をくっきり */
  background: rgba(0, 0, 0, 0.5);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  min-height: 50vh;
  box-sizing: border-box;
}

.hero__content {
  text-align: center;
  line-height: 1.04;
}

.hero__title {
  margin: 0 0 0;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 7.5vw, 4.25rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: clamp(0.75rem, 2.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
}

.hero__subtitle .subtitle-accent {
  letter-spacing: 0.28em;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition-ui), transform var(--transition-ui);
}

.hero__scroll-hint:hover {
  color: #fff;
  transform: translateX(-50%) translateY(4px);
}

.hero__scroll-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 12px;
  box-sizing: border-box;
}

.hero__scroll-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: currentColor;
  border-radius: 2px;
  animation: hero-scroll-dot 2s ease-in-out infinite;
}

@keyframes hero-scroll-dot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.4; transform: translateY(4px); }
}

/* THE ESSENCE — ABOUT US と同じ垂直ラインで揃える */
.essence-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--color-text);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.08);
  text-stroke: 1px rgba(0, 0, 0, 0.08);
  paint-order: stroke fill;
}

.essence-section .section-lead {
  margin-bottom: 2.5rem;
}

/* 横振り刺繍を少し目立たせる */
.service-item--featured {
  border-left: 3px solid var(--color-accent);
  padding-left: calc(2rem - 3px);
}

.service-item--featured .service-item__title {
  font-weight: 700;
  color: var(--color-accent);
}

/* サービス一覧 — ベース */
.service-list {
  margin: 3.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-item {
  padding: 2.25rem 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: 0 1px 3px var(--color-shadow);
  transition: background var(--transition-ui),
              box-shadow var(--transition-ui),
              border-color var(--transition-ui);
}

.service-item:hover {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
              0 1px 3px var(--color-shadow);
  border-color: var(--color-accent-soft);
}

.service-item h3,
.service-item__title {
  margin: 0 0 0.75em;
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* THE ESSENCE — 洗練されたカードグリッド・4辺ホバー・整列 */
.essence-section .section-inner {
  padding-left: 0;
  padding-right: 0;
}

.essence-section .section-title.essence-headline,
.essence-section .section-lead {
  padding-left: 0;
  margin-left: 0;
}

.essence-section .service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  text-align: left;
  max-width: 100%;
}

.essence-section .service-item {
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
  padding: 40px;
  min-height: 200px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.essence-section .service-item {
  overflow: visible;
}

.essence-section .service-item:hover {
  border-color: var(--color-accent);
  z-index: 100;
}

.essence-section .service-item__default {
  /* 常に表示・隠さない */
}

/* --- THE ESSENCE ポップアップ：角が少しだけ重なる程度に外側（absolute） --- */
.essence-section .service-item__detail {
  position: absolute;
  left: 90%;
  top: 90%;
  z-index: 101;
  width: 320px;
  height: auto;
  max-height: 80vh;
  overflow-y: auto;
  box-sizing: border-box;
  margin: 0;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.98);
  color: #333;
  border: 2px solid #ff4500;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  pointer-events: none !important;
  opacity: 0;
  visibility: hidden;
  transform: translate(-12%, -12%) translate(var(--clamp-x, 0), var(--clamp-y, 0)) translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.essence-section .service-item:hover .service-item__detail {
  opacity: 1;
  visibility: visible;
  transform: translate(-12%, -12%) translate(var(--clamp-x, 0), var(--clamp-y, 0)) translateY(0);
}

/* 右端にはみ出る場合：カードの左側・角が少し重なる程度 */
.essence-section .service-item__detail.service-item__detail--flip-x {
  left: auto;
  right: 90%;
  transform: translate(12%, -12%) translate(var(--clamp-x, 0), var(--clamp-y, 0)) translateY(10px);
}

.essence-section .service-item:hover .service-item__detail.service-item__detail--flip-x {
  transform: translate(12%, -12%) translate(var(--clamp-x, 0), var(--clamp-y, 0)) translateY(0);
}

/* 下端にはみ出る場合：カードの上側・角が少し重なる程度 */
.essence-section .service-item__detail.service-item__detail--flip-y {
  top: auto;
  bottom: 90%;
  transform: translate(-12%, 12%) translate(var(--clamp-x, 0), var(--clamp-y, 0)) translateY(10px);
}

.essence-section .service-item:hover .service-item__detail.service-item__detail--flip-y {
  transform: translate(-12%, 12%) translate(var(--clamp-x, 0), var(--clamp-y, 0)) translateY(0);
}

/* 右・下両方にはみ出る場合 */
.essence-section .service-item__detail.service-item__detail--flip-x.service-item__detail--flip-y {
  left: auto;
  right: 90%;
  top: auto;
  bottom: 90%;
  transform: translate(12%, 12%) translate(var(--clamp-x, 0), var(--clamp-y, 0)) translateY(10px);
}

.essence-section .service-item:hover .service-item__detail.service-item__detail--flip-x.service-item__detail--flip-y {
  transform: translate(12%, 12%) translate(var(--clamp-x, 0), var(--clamp-y, 0)) translateY(0);
}

/* ポップアップ内：小見出し・段落・箇条書きの共通 */
.essence-section .service-item__detail .service-item__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.85;
  color: #333;
}

.essence-section .service-item__detail .service-item__list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 1.2em;
  line-height: 1.5;
  font-size: 0.95rem;
}

.essence-section .service-item__detail .service-item__list li:last-child {
  margin-bottom: 0;
}

.essence-section .service-item__detail .service-item__list li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: #ff4500;
  font-size: 0.7em;
  top: 0.2em;
}

/* 小見出し（■得意な手法 など） */
.essence-section .service-item__detail h4,
.essence-section .service-item__detail .service-item__detail-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 0.5rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.essence-section .service-item__detail h4:not(:first-child),
.essence-section .service-item__detail .service-item__detail-heading:not(:first-child) {
  margin-top: 1rem;
}

/* ポップアップ内の短文 */
.essence-section .service-item__detail p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333;
  margin: 0 0 0.75rem;
}

.essence-section .service-item__detail p:last-child {
  margin-bottom: 0;
}

/* ポップアップ内画像（横振り刺繍など） */
.essence-section .service-item__detail-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 1rem;
  border: 0;
  vertical-align: middle;
}

.essence-section .service-item__detail .service-item__list:not(:first-child) {
  margin-top: 0.25rem;
}

.essence-section .service-item__title {
  font-family: 'Anton', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  color: var(--color-accent);
  text-align: left;
}

.essence-section .service-item__title::before {
  display: none !important;
  content: none !important;
}

.essence-section .service-item__default p {
  line-height: 1.85;
  font-size: 0.9375rem;
  margin: 0;
  max-width: 100%;
  color: var(--color-text-muted);
  text-align: left;
}

.essence-section .service-item--featured {
  padding-left: 40px;
}

.service-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* THE ESSENCE — サービス項目の時間差フェードイン */
.essence-section .service-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.essence-section.is-visible .service-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.essence-section.is-visible .service-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.07s; }
.essence-section.is-visible .service-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
.essence-section.is-visible .service-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.21s; }
.essence-section.is-visible .service-item:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
.essence-section.is-visible .service-item:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.essence-section.is-visible .service-item:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.42s; }
.essence-section.is-visible .service-item:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.49s; }
.essence-section.is-visible .service-item:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: 0.56s; }

/* WORKS — 制作実績、写真グリッドを大きく表示 */
.section.works .section-inner {
  max-width: var(--section-inner-max);
}

.selected-works-grid {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 2.5rem;
}

.selected-works-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  min-width: 0;
}

.selected-works-item__img,
.selected-works-item__body {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.selected-works-item__img {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 200px;
  background: var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.selected-works-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

/* 詳細リンクあり：画像上に「View Details」を表示 */
.selected-works-item__img--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.selected-works-item__view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.selected-works-item__img--link:hover .selected-works-item__view,
.selected-works-item__img--link:focus-visible .selected-works-item__view {
  opacity: 1;
}

.selected-works-item__body {
  min-width: 0;
  padding: 1rem 0 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.selected-works-item__title {
  margin: 0 0 0.35rem;
  font-family: 'Anton', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.4;
}

.selected-works-item__desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* お問い合わせフォーム */
.contact-form {
  margin-top: 2.5rem;
  max-width: 560px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 0 0 1.5rem;
}

.contact-form__group {
  margin: 0 0 1.5rem;
}

.contact-form__group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.contact-form__required {
  font-size: 0.75rem;
  color: var(--color-accent);
  margin-left: 0.25rem;
}

.contact-form__input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: border-color var(--transition-ui), box-shadow var(--transition-ui);
}

.contact-form__input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.8;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__submit {
  margin: 2rem 0 0;
}

.contact-form__btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--color-accent);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition-ui), transform var(--transition-ui), box-shadow var(--transition-ui);
}

.contact-form__btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(255, 69, 0, 0.25);
}

.contact-link {
  color: var(--color-accent);
  font-weight: 600;
}

.contact-link:hover {
  color: var(--color-accent-hover);
}

.contact-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* フッター — 細線＋薄い影で立体感 */
.site-footer {
  padding: 5rem 4rem;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 0.9rem;
  box-shadow: 0 -1px 0 var(--color-border),
              0 -2px 12px var(--color-shadow);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  width: 100%;
}
.footer-social__btn {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: #f76b1a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-social__btn:hover {
  color: var(--color-accent-hover, #e05a0a);
}

.footer-copy {
  margin: 0;
  color: var(--color-text-muted);
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-nav a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-ui), transform var(--transition-ui);
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* ========================================
   ポートフォリオページ — ギャラリー
   ======================================== */

.page-portfolio .section-inner {
  max-width: 1100px;
}

.portfolio-gallery {
  margin: 3.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-border);
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: box-shadow var(--transition-ui);
}

.portfolio-item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.portfolio-item__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-ui);
}

.portfolio-item:hover .portfolio-item__thumb {
  transform: scale(1.03);
}

.portfolio-item__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity var(--transition-ui);
}

.portfolio-item:hover .portfolio-item__caption {
  opacity: 1;
}

.portfolio-item__caption span {
  text-align: center;
  line-height: 1.5;
}

/* 画像がないプレースホルダー用 */
.portfolio-item__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eee 0%, #e0e0e0 100%);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.portfolio-item:hover .portfolio-item__placeholder {
  background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
}

/* ========================================
   レスポンシブ
   ======================================== */

@media (max-width: 768px) {
  .site-header {
    padding: 2rem 1.25rem !important;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .header-brand {
    flex: 1;
    min-width: 0;
  }

  .site-title {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }

  .site-tagline {
    margin-bottom: 1.5rem !important;
    font-size: 0.8rem;
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .global-nav {
    order: 3;
    width: 100%;
    margin-top: 1rem !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-ui);
  }

  .global-nav.is-open {
    max-height: 320px;
  }

  .global-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 0;
    border-top: 1px solid var(--color-border);
    margin-top: 1rem;
  }

  .global-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .section-inner {
    padding: 0;
  }

  .essence-section .service-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .essence-section .service-item {
    padding: 2rem 1.5rem;
    min-height: 0;
  }

  .essence-section .service-item__detail {
    position: absolute;
    left: auto;
    top: auto;
    right: 0.5rem;
    bottom: 0.5rem;
    max-width: 90%;
    width: 280px;
    padding: 25px;
    transform: translateY(6px);
    max-height: none;
  }

  .essence-section .service-item:hover .service-item__detail {
    transform: translateY(0);
  }

  .essence-section .service-item--featured {
    padding-left: 1.5rem;
  }

  .hero {
    min-height: 50vh;
  }

  .hero-inner {
    padding: 1.5rem 1rem;
    min-height: 50vh;
  }

  .hero__title {
    font-size: clamp(1.25rem, 6.5vw, 1.9rem);
    letter-spacing: 0.1em;
  }

  .hero__subtitle {
    font-size: clamp(0.6rem, 2.2vw, 0.75rem);
    letter-spacing: 0.2em;
  }

  .hero__subtitle .subtitle-accent {
    letter-spacing: 0.14em;
  }

  .hero__scroll-hint {
    bottom: 1rem;
  }

  .contact-form {
    max-width: 100%;
    width: 100%;
  }

  .contact-form__input {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form__textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .selected-works-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .selected-works-item__img {
    aspect-ratio: 1 / 1;
    max-width: 400px;
    margin: 0 auto;
  }

  .essence-headline,
  .section-title {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
    margin-bottom: 0.5rem;
  }

  .essence-section .section-lead {
    margin-bottom: 2rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form__group {
    margin-bottom: 1.25rem;
  }

  .site-footer {
    padding: 3rem 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-nav ul {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.1rem, 8vw, 1.5rem);
    letter-spacing: 0.06em;
  }

  .hero__subtitle {
    font-size: clamp(0.55rem, 2.8vw, 0.7rem);
    letter-spacing: 0.16em;
  }

  .essence-headline,
  .section-title {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.1em;
  }

  .essence-section .section-lead {
    margin-bottom: 1.5rem;
  }

  .selected-works-item__img {
    max-width: 100%;
  }
}

/* ========================================
   FAQ ページ — トップページと同トーン（ライト）
   ======================================== */

.page-faq {
  background: var(--color-bg);
  color: var(--color-text);
}

.page-faq .site-header {
  background: var(--color-bg);
  box-shadow: 0 1px 0 var(--color-border);
}

.page-faq .site-title,
.page-faq .site-tagline,
.page-faq .global-nav a {
  color: var(--color-text);
}

.page-faq .global-nav a:hover {
  color: var(--color-accent);
}

/* ガイドラインページ — FAQ と同トーン */
.page-guideline {
  background: var(--color-bg);
  color: var(--color-text);
}

.page-guideline .site-header {
  background: var(--color-bg);
  box-shadow: 0 1px 0 var(--color-border);
}

.page-guideline .site-title,
.page-guideline .site-tagline,
.page-guideline .global-nav a {
  color: var(--color-text);
}

.page-guideline .global-nav a:hover {
  color: var(--color-accent);
}

.site-title-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.site-title-link:hover {
  color: inherit;
}

.faq-main {
  min-height: 60vh;
  padding-bottom: 4rem;
}

.faq-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.faq-hero__title {
  margin: 0 0 0.25em;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-text);
}

.faq-hero__lead {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.faq-section {
  padding: 3rem 1.5rem 2rem;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem 0 0.5rem;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.faq-item__label {
  flex-shrink: 0;
  min-width: 1.5rem;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.faq-item__text {
  flex: 1;
}

.faq-item__answer {
  display: flex;
  gap: 0.75rem;
  padding: 0 0 1.5rem 0;
}

.faq-item__answer .faq-item__label {
  flex-shrink: 0;
}

.faq-item__answer p {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 0.9rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
}

.faq-guideline-note {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text);
}

.faq-guideline-link {
  color: #f76b1a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-ui), border-color var(--transition-ui);
}

.faq-guideline-link:hover {
  border-bottom-color: #f76b1a;
}

.faq-nav {
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}

.faq-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.faq-nav__link {
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-ui);
}

.faq-nav__link:hover {
  color: var(--color-accent-hover);
}

.site-footer--faq {
  background: var(--color-bg);
  box-shadow: 0 -1px 0 var(--color-border),
              0 -2px 12px var(--color-shadow);
}

.site-footer--faq .footer-copy,
.site-footer--faq .footer-nav a {
  color: var(--color-text-muted);
}

.site-footer--faq .footer-nav a:hover {
  color: var(--color-accent);
}

/* FAQ ヒーローに背景画像を使う場合: .faq-hero__media に filter を適用 */
.faq-hero__media {
  filter: saturate(180%) blur(4px);
  -webkit-filter: saturate(180%) blur(4px);
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 3rem 1rem 2rem;
  }

  .faq-hero__title {
    letter-spacing: 0.12em;
  }

  .faq-item__question {
    padding: 1rem 0;
    font-size: 0.875rem;
  }

  .faq-item__answer {
    padding-bottom: 1.25rem;
  }

  .faq-nav__list {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ========================================
   ACCESS ページ — 地図・住所・アクセス情報
   ======================================== */

.access-main {
  min-height: 60vh;
  padding-bottom: 4rem;
}

.access-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.access-hero__title {
  margin: 0 0 0.25em;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-text);
}

.access-hero__lead {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.access-section {
  padding: 3rem 1.5rem 2rem;
}

.access-inner {
  max-width: 960px;
  margin: 0 auto;
}

.access-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.access-map-wrap {
  position: relative;
  width: 100%;
}

.access-map {
  position: relative;
  width: 100%;
  min-height: 450px;
  background: var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  vertical-align: top;
}

.access-map-review {
  margin: 0.75rem 0 0;
  text-align: left;
}

.access-map-review__link {
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #f76b1a;
  text-decoration: none;
  transition: color var(--transition-ui), border-color var(--transition-ui);
  border-bottom: 1px solid transparent;
}

.access-map-review__link:hover {
  border-bottom-color: #f76b1a;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.access-info__heading {
  margin: 0 0 0.5rem;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--color-text);
}

.access-info__text {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.access-info__address {
  white-space: pre-line;
}

.access-info__text a {
  color: var(--color-accent);
  text-decoration: none;
}

.access-info__text a:hover {
  color: var(--color-accent-hover);
}

.access-nav {
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}

.access-nav__link {
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-ui);
}

.access-nav__link:hover {
  color: var(--color-accent-hover);
}

.site-footer--access {
  background: var(--color-bg);
  box-shadow: 0 -1px 0 var(--color-border),
              0 -2px 12px var(--color-shadow);
}

.site-footer--access .footer-copy,
.site-footer--access .footer-nav a {
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .access-hero {
    padding: 3rem 1rem 2rem;
  }

  .access-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .access-info {
    gap: 1.75rem;
  }
}

/* ── ヘッダー上書き ── */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 400 !important;
  padding: 0.55rem 2rem !important;
  background: #1a3fc4 !important;
  border-bottom: 3px solid #f76b1a !important;
  box-shadow: none !important;
}

.header-inner {
  max-width: 1000px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.25rem !important;
}

.site-title {
  font-family: 'Anton', sans-serif !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.14em !important;
  color: #ffffff !important;
  line-height: 1 !important;
}

.site-tagline {
  font-size: 0.58rem !important;
  letter-spacing: 0.2em !important;
  color: rgba(255,255,255,0.6) !important;
  margin-bottom: 0 !important;
  margin-top: 0.15rem !important;
  display: block !important;
}

.subtitle-accent {
  color: #f76b1a !important;
}

.global-nav {
  margin-top: 0 !important;
}

.global-nav ul {
  display: flex !important;
  flex-direction: row !important;
  gap: 1.5rem !important;
  padding: 0 !important;
  border: none !important;
  margin: 0 !important;
}

.global-nav a {
  font-family: 'Anton', sans-serif !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.12em !important;
  color: rgba(255,255,255,0.75) !important;
  padding: 0 !important;
  border: none !important;
  display: inline-block !important;
}

.global-nav a:hover {
  color: #f76b1a !important;
}

.global-nav a::after {
  background: #f76b1a !important;
}

.nav-toggle__bar {
  background: #ffffff !important;
}

/* ヘッダー分の余白をmainに追加 */
body > main,
.hero {
  margin-top: 0 !important;
}

.hero {
  padding-top: 0 !important;
}


/* ========== index.html から移動 ========== */
    /* ================================================
       HYBRID ADDITIONS — style.css を上書きしない追加CSS
       ================================================ */

    /* Permanent Marker をスパイス的に使うユーティリティ */
    .pm { font-family: 'Permanent Marker', cursive; }

    /* スクロールプログレスバー・ヘッダーボーダー（オレンジ） */
    .scroll-progress { background: #f76b1a; }
    .site-header {
  background: #1a3fc4 !important;
  border-bottom-color: #f76b1a !important;
}

    /* ── マーキーストリップ ── */
    .marquee-strip {
      overflow: hidden;
      white-space: nowrap;
      padding: 0.6rem 0;
      border-top: 2px solid #0e0e0e;
      border-bottom: 2px solid #0e0e0e;
      background: #f76b1a;
    }
    .marquee-inner span {
      color: #ffffff;
    }
    .marquee-inner span.ms-star {
      color: #ffffff;
    }
    .marquee-strip--red {
      background: #1a3fc4;
    }
    .marquee-inner {
      display: inline-flex;
      animation: marquee-scroll 22s linear infinite;
    }
    .marquee-inner--rev {
      animation-direction: reverse;
    }
    .marquee-inner span {
      font-family: 'Anton', sans-serif;
      font-size: 0.95rem;
      letter-spacing: 0.18em;
      padding: 0 1.5rem;
    }
    .marquee-strip--red .marquee-inner span {
      color: #fff;
    }
    .marquee-inner span.ms-star {
      padding: 0;
      opacity: 0.45;
    }
    .marquee-strip--red .marquee-inner span.ms-star {
      color: #ffffff;
      opacity: 0.45;
    }
    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── THE ESSENCE セクション上書き：カラーボーダーカード ── */
    .essence-section {
      background: #faf7f2;
    }

    /* カード上部のカラーボーダー（色はdata属性で制御） */
    .essence-section .service-item {
      border-top: 4px solid transparent;
      background: #ffffff;
      transition: border-color 0.3s ease,
                  box-shadow 0.3s ease,
                  transform 0.25s cubic-bezier(0.16,1,0.3,1);
      cursor: pointer;
    }
    .essence-section .service-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.09);
      border-color: var(--sc-color, #ff4500) !important;
    }

    /* カード右下に逆三角形（▼）を常時表示。ホバーでアニメーション。展開時は▲に切替 */
    .essence-section .service-item::after {
      content: '▼';
      position: absolute;
      right: 1rem;
      bottom: 1rem;
      font-size: 1rem;
      color: #f76b1a;
      pointer-events: none;
      transform: scale(1);
    }
    .essence-section .service-item:hover::after {
      animation: essence-triangle-in 0.6s ease-out forwards;
    }
    .essence-section .service-item.is-active::after {
      content: '▲';
    }
    @keyframes essence-triangle-in {
      0% { transform: scale(1.8); }
      10% { transform: scale(1); }
      30% { transform: scale(1) translateX(-4px); }
      45% { transform: scale(1) translateX(4px); }
      60% { transform: scale(1) translateX(-4px); }
      75% { transform: scale(1) translateX(4px); }
      90% { transform: scale(1) translateX(-2px); }
      100% { transform: scale(1) translateX(0); }
    }

    /* 各カードのカラー変数（オレンジ×ロイヤルブルー） */
    .sc-yellow { --sc-color: #f76b1a; --card-color: #f76b1a; border-top-color: #f76b1a; }
    .sc-red     { --sc-color: #1a3fc4; --card-color: #1a3fc4; border-top-color: #1a3fc4; }
    .sc-blue    { --sc-color: #f76b1a; --card-color: #f76b1a; border-top-color: #f76b1a; }
    .sc-green   { --sc-color: #1a3fc4; --card-color: #1a3fc4; border-top-color: #1a3fc4; }
    .sc-orange  { --sc-color: #f76b1a; --card-color: #f76b1a; border-top-color: #f76b1a; }

    /* カードタイトル色（オレンジ×ブルー交互） */
    .essence-section .service-item.sc-yellow .service-item__title,
    .essence-section .service-item.sc-blue   .service-item__title,
    .essence-section .service-item.sc-orange .service-item__title {
      color: #f76b1a !important;
    }

    .essence-section .service-item.sc-red   .service-item__title,
    .essence-section .service-item.sc-green .service-item__title {
      color: #1a3fc4 !important;
    }

    /* ポップアップのボーダーカラー */
    .service-item__detail { border-color: #f76b1a; }

    /* ヒーローへの微細なハーフトーンドット追加 */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(247,208,0,0.15) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
      z-index: 1;
      pointer-events: none;
    }
    /* overlay は z-index:1 なので dots を z-index:0 に */
    .hero::before { z-index: 0; }
    .hero__overlay { z-index: 1; }
    .hero-inner    { z-index: 2; }
    .hero__video-indicator { z-index: 3; }
    .hero__scroll-hint     { z-index: 2; }

    /* ヒーローに手書きスパイス */
    .hero__eyebrow {
      display: block;
      font-family: 'Permanent Marker', cursive;
      font-size: 1rem;
      color: rgba(255,255,255,0.7);
      opacity: 0.85;
      margin-bottom: 0.75rem;
      letter-spacing: 0.04em;
      transform: rotate(-1.2deg);
    }

    /* CONTACTセクションの背景に星装飾 */
    .section.contact {
      position: relative;
      overflow: hidden;
    }
    .section.contact::after {
      content: '★';
      position: absolute;
      font-size: 22rem;
      color: rgba(255,69,0,0.04);
      top: -4rem;
      right: -5rem;
      line-height: 1;
      pointer-events: none;
      transform: rotate(15deg);
      z-index: 0;
    }
    .section.contact .section-inner {
      position: relative;
      z-index: 1;
    }

    /* ── THE ESSENCE 固定ポップアップ（1要素使い回し） ── */
    .essence-popup {
      position: fixed;
      width: 320px;
      max-width: calc(100vw - 32px);
      box-sizing: border-box;
      background: #fff;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      z-index: 1000;
      border-radius: 0 0 8px 8px;
      overflow: hidden;
      pointer-events: auto;
    }
    .essence-popup[hidden] {
      display: none !important;
    }
    .essence-popup__border {
      height: 2px;
      width: 100%;
    }
    .essence-popup__img {
      display: block;
      width: 100%;
      height: auto;
    }
    .essence-popup__img:not([src]),
    .essence-popup__img[src=""] {
      display: none;
    }
    .essence-popup__body {
      padding: 1rem 1.25rem 1.25rem;
      font-size: 0.875rem;
      line-height: 1.6;
      color: #333;
    }
    .essence-popup__num {
      display: block;
      font-family: 'Anton', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      color: #999;
      margin-bottom: 0.25rem;
    }
    .essence-popup__en {
      display: block;
      font-family: 'Anton', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.02em;
      margin-bottom: 0.15rem;
    }
    .essence-popup__jp {
      display: block;
      font-size: 0.8125rem;
      color: #666;
      margin-bottom: 0.75rem;
    }
    .essence-popup__text {
      margin: 0;
      font-size: 0.8125rem;
      line-height: 1.7;
      color: #555;
    }

    .hero__title {
      font-family: 'Anton', sans-serif !important;
      font-size: clamp(2.4rem, 7.5vw, 4.25rem) !important;
      letter-spacing: 0.18em !important;
      position: relative;
      z-index: 0;
      isolation: isolate;
    }

    @keyframes glitch-block {
      0%   { transform: translate(0, 0); }
      10%  { transform: translate(-8px, 0) skewX(-3deg); }
      20%  { transform: translate(6px, 0)  skewX(2deg); }
      30%  { transform: translate(-4px, 0) skewX(-1deg); }
      40%  { transform: translate(8px, 0)  skewX(3deg); }
      50%  { transform: translate(-6px, 0) skewX(-2deg); }
      60%  { transform: translate(4px, 0)  skewX(1deg); }
      70%  { transform: translate(-8px, 0) skewX(-3deg); }
      80%  { transform: translate(6px, 0)  skewX(2deg); }
      90%  { transform: translate(-4px, 0) skewX(-1deg); }
      100% { transform: translate(0, 0); }
    }

    .hero__title { position: relative; isolation: isolate; }

    .hero__title.is-glitching::before {
      content: attr(data-text);
      position: absolute;
      inset: 0;
      color: #f76b1a;
      clip-path: polygon(0 15%, 100% 15%, 100% 40%, 0 40%);
      transform: translate(-6px, 0);
      opacity: 0.85;
      pointer-events: none;
      z-index: -1;
      animation: glitch-block 0.08s infinite steps(1);
    }

    .hero__title.is-glitching::after {
      content: attr(data-text);
      position: absolute;
      inset: 0;
      color: #1a3fc4;
      clip-path: polygon(0 55%, 100% 55%, 100% 78%, 0 78%);
      transform: translate(6px, 0);
      opacity: 0.75;
      pointer-events: none;
      z-index: -1;
      animation: glitch-block 0.06s infinite steps(1) reverse;
    }

    .hero__title.is-glitching {
      animation: glitch-block 0.07s infinite steps(1);
    }

    /* ノイズオーバーレイ */
    #glitch-canvas {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 3;
      opacity: 0;
      mix-blend-mode: overlay;
      transition: opacity 0.05s;
    }
    #glitch-canvas.is-active { opacity: 0.35; }

    @keyframes scanline {
      0%   { background-position: 0 0; }
      100% { background-position: 0 100%; }
    }

    /* スキャンライン */
    .hero__content::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 3px,
        rgba(0,0,0,0.08) 3px,
        rgba(0,0,0,0.08) 4px
      );
      pointer-events: none;
      z-index: 3;
    }

    .hero__content {
      position: relative;
    }

    .section-title,
    .essence-headline {
      font-family: 'Anton', sans-serif !important;
      font-size: clamp(3rem, 8vw, 7rem) !important;
      font-weight: 400 !important;
      letter-spacing: 0.04em !important;
      line-height: 0.88 !important;
      -webkit-text-stroke: 0 !important;
    }

    .section.about .section-title {
      color: #1a3fc4;
    }

    .section.services .section-title {
      color: #0e0e0e;
    }
    .section.services .section-title span {
      color: #f76b1a;
    }

    .section.works .section-title {
      color: #0e0e0e;
    }
    .section.works .section-title span {
      color: #1a3fc4;
    }
    .works-thumbs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin: 1.5rem 0 0;
    }
    @media (max-width: 767px) {
      .works-thumbs {
        grid-template-columns: 1fr;
      }
    }
    @keyframes worksThumbFadeIn {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .works-thumb-item {
      display: block;
      position: relative;
      overflow: hidden;
      border-radius: 6px;
      background: #e0e0e0;
      opacity: 0;
    }
    .works-thumb-item.is-visible {
      animation: worksThumbFadeIn 0.5s ease forwards;
    }
    .works-thumb-item__img-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
    }
    .works-thumb-item__img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      vertical-align: top;
    }
    .works-thumb-item__overlay {
      position: absolute;
      inset: 0;
      background: rgba(247, 107, 26, 0.35);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }
    .works-thumb-item:hover .works-thumb-item__overlay {
      opacity: 1;
    }
    .works-cta-wrap {
      text-align: center;
      margin: 2.5rem 0 0;
    }
    .works-cta-btn {
      display: inline-block;
      padding: 1rem 2.5rem;
      font-family: 'Anton', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.12em;
      color: #fff;
      background: #f76b1a;
      border: 2px solid #f76b1a;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .works-cta-btn:hover {
      background: #e05a0a;
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 4px 14px rgba(247, 107, 26, 0.35);
    }

    .section.contact .section-title {
      color: #0e0e0e;
    }
    .section.contact .section-title span {
      color: #f76b1a;
    }
    #back-to-top {
      position: fixed;
      right: 1.25rem;
      bottom: 5.5rem;
      width: 44px;
      height: 44px;
      background: #1a3fc4;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease;
      z-index: 999;
    }
    #back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
    }
    #back-to-top:hover {
      background: #f76b1a;
    }
    .footer-social {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      margin-bottom: 1rem;
    }
    .footer-social__link {
      font-family: 'Anton', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      color: #f76b1a;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .footer-social__link:hover {
      color: #ffffff;
    }
    .footer-social__btn {
      font-family: 'Anton', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      color: #f76b1a;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .footer-social__btn:hover {
      color: #ffffff;
    }


/* ========== works.html から移動 ========== */
    /* WORKS ページ専用 */
    .page-works .works-hero {
      padding: 3rem 5% 1rem;
      text-align: center;
      background: var(--color-bg);
    }
    .works-hero__title {
      font-family: 'Anton', sans-serif;
      font-size: clamp(2rem, 6vw, 4rem);
      letter-spacing: 0.12em;
      color: #1a3fc4;
      margin: 0 0 0.5rem;
    }
    .works-hero__lead {
      font-family: var(--font-jp);
      font-size: 1rem;
      color: var(--color-text-muted);
      margin: 0;
    }

    /* ページ内の「WORKS」テキストの文字色 */
    .page-works .global-nav a[href="works.html"],
    .page-works .footer-nav a[href="works.html"] {
      color: #1a3fc4;
    }

    /* Masonry グリッド（CSS columns） */
    .works-grid {
      columns: 4;
      column-gap: 12px;
      padding: 2rem 5% 4rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    @keyframes worksItemFadeIn {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .works-item {
      break-inside: avoid;
      margin-bottom: 12px;
      position: relative;
      overflow: hidden;
      border-radius: 6px;
      cursor: pointer;
      background: #e0e0e0;
      opacity: 0;
    }

    .works-item.is-visible {
      animation: worksItemFadeIn 0.5s ease forwards;
    }

    .works-item__img-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .works-item__img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    @media (max-width: 1023px) {
      .works-grid { columns: 3; }
    }

    @media (max-width: 767px) {
      .works-grid { columns: 2; }
    }

    .works-item:hover .works-item__img-wrap img {
      transform: scale(1.05);
    }
    .works-item:hover .works-item__overlay {
      opacity: 1;
    }
    .works-item__overlay {
      position: absolute;
      inset: 0;
      background: rgba(247, 107, 26, 0.25);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    /* モーダル */
    .works-modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      box-sizing: border-box;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .works-modal-backdrop.is-open {
      opacity: 1;
      visibility: visible;
    }
    .works-modal {
      background: #fff;
      max-width: 560px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      border-radius: 8px;
      animation: worksModalFadeIn 0.3s ease;
    }
    @keyframes worksModalFadeIn {
      from { opacity: 0; transform: scale(0.96); }
      to { opacity: 1; transform: scale(1); }
    }
    .works-modal__close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 44px;
      height: 44px;
      border: none;
      background: rgba(0,0,0,0.5);
      color: #fff;
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      border-radius: 50%;
      z-index: 2;
      transition: background 0.2s ease;
    }
    .works-modal__close:hover {
      background: #0e0e0e;
    }
    .works-modal__inner {
      position: relative;
      padding: 2rem;
    }
    .works-modal__img-wrap {
      width: 100%;
      margin: 0 0 1.5rem;
      border-radius: 4px;
      overflow: hidden;
      background: #eee;
    }
    .works-modal__img-wrap img {
      display: block;
      width: 100%;
      height: auto;
    }
    .works-modal__img-wrap:empty,
    .works-modal__img-wrap.works-modal__img-wrap--empty {
      min-height: 200px;
      background: #b0b0b0;
    }
    .works-modal__title {
      font-family: 'Anton', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.08em;
      color: #0e0e0e;
      margin: 0 0 0.75rem;
    }
    .works-modal__desc {
      font-family: var(--font-jp);
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--color-text);
      margin: 0 0 1rem;
    }
    .works-modal__technique {
      font-family: var(--font-jp);
      font-size: 0.875rem;
      color: #1a3fc4;
      font-weight: 500;
    }
    .works-nav {
      text-align: center;
      padding: 0 0 3rem;
    }
    .works-nav__link {
      font-family: var(--font-jp);
      color: #0e0e0e;
      text-decoration: none;
    }
    #back-to-top {
      position: fixed;
      right: 1.25rem;
      bottom: 5.5rem;
      width: 44px;
      height: 44px;
      background: #1a3fc4;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease;
      z-index: 999;
    }
    #back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
    }
    #back-to-top:hover {
      background: #f76b1a;
    }
    .works-filter {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      padding: 0 5% 2rem;
    }
    .works-filter__btn {
      font-family: 'Anton', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      padding: 0.5rem 1.25rem;
      border: 2px solid #1a3fc4;
      background: transparent;
      color: #1a3fc4;
      cursor: pointer;
      border-radius: 4px;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .works-filter__btn:hover,
    .works-filter__btn.is-active {
      background: #1a3fc4;
      color: #fff;
    }
    .works-item.is-hidden {
      display: none;
    }
    .works-item.is-entering {
      animation: worksFilterIn 0.4s ease forwards;
    }
    @keyframes worksFilterIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }


/* ========== faq.html から移動 ========== */
    #back-to-top {
      position: fixed;
      right: 1.25rem;
      bottom: 5.5rem;
      width: 44px;
      height: 44px;
      background: #1a3fc4;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease;
      z-index: 999;
    }
    #back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
    }
    #back-to-top:hover {
      background: #f76b1a;
    }


/* ========== access.html から移動 ========== */
    #back-to-top {
      position: fixed;
      right: 1.25rem;
      bottom: 5.5rem;
      width: 44px;
      height: 44px;
      background: #1a3fc4;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease;
      z-index: 999;
    }
    #back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
    }
    #back-to-top:hover {
      background: #f76b1a;
    }


/* ========== guideline.html から移動 ========== */
    /* ガイドラインページ専用：セクション見出し（Anton・オレンジ/ブルー交互）・リストのみ */
    .guideline-section__title {
      font-family: 'Anton', sans-serif;
      font-size: clamp(1.25rem, 4vw, 1.75rem);
      letter-spacing: 0.08em;
      margin: 0 0 1.5rem;
    }
    .guideline-section__title--orange { color: #f76b1a; }
    .guideline-section__title--blue { color: #1a3fc4; }
    .guideline-list {
      margin: 0 0 2.5rem;
      padding: 0 0 0 1.5rem;
      list-style: none;
      counter-reset: guideline;
    }
    .guideline-list li {
      counter-increment: guideline;
      margin-bottom: 1.25rem;
      padding-left: 0.5rem;
    }
    .guideline-list li::marker { content: none; }
    .guideline-item__title {
      font-weight: 600;
      color: var(--color-text);
      margin-bottom: 0.35rem;
    }
    .guideline-item__title::before {
      content: counter(guideline) ". ";
    }
    .guideline-list p {
      margin: 0;
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--color-text);
    }
    .guideline-cta {
      text-align: center;
      padding: 2rem 1.5rem 3rem;
      border-top: 1px solid var(--color-border);
    }
    .guideline-cta p {
      margin: 0 0 1rem;
      font-size: 0.95rem;
      color: var(--color-text);
    }
    .guideline-cta a {
      color: #f76b1a;
      font-weight: 500;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color var(--transition-ui);
    }
    .guideline-cta a:hover {
      border-bottom-color: #f76b1a;
    }
    .guideline-intro {
      margin: 0 0 1.5rem;
      padding: 0.75rem 1rem;
      border: 2px solid #f76b1a;
      border-radius: 4px;
      background: transparent;
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--color-text);
    }
    .guideline-subtitle {
      font-size: 1rem;
      font-weight: 600;
      margin: 2rem 0 0.75rem;
      color: var(--color-text);
    }
    .guideline-ng-list {
      list-style: disc;
      padding-left: 1.5rem;
      margin: 0 0 1.5rem;
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--color-text);
    }
    .guideline-ng-list li { margin-bottom: 0.35rem; }
    .guideline-help {
      margin: 1.5rem 0;
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--color-text);
    }
    .guideline-help a {
      color: #f76b1a;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color var(--transition-ui);
    }
    .guideline-help a:hover { border-bottom-color: #f76b1a; }
    .guideline-list .guideline-item ul {
      margin: 0.5rem 0 0;
      padding-left: 1.25rem;
      list-style: disc;
      font-size: 0.9375rem;
      line-height: 1.7;
    }
    .guideline-list .guideline-item ul li { margin-bottom: 0.25rem; }
    #back-to-top {
      position: fixed;
      right: 1.25rem;
      bottom: 5.5rem;
      width: 44px;
      height: 44px;
      background: #1a3fc4;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease;
      z-index: 999;
    }
    #back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
    }
    #back-to-top:hover {
      background: #f76b1a;
    }


/* ========== thanks.html から移動 ========== */
    #back-to-top {
      position: fixed;
      right: 1.25rem;
      bottom: 5.5rem;
      width: 44px;
      height: 44px;
      background: #1a3fc4;
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease;
      z-index: 999;
    }
    #back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
    }
    #back-to-top:hover {
      background: #f76b1a;
    }
    .thanks-main {
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem 5%;
      text-align: center;
    }
    .thanks-inner {
      max-width: 520px;
    }
    .thanks-title {
      font-family: 'Anton', sans-serif;
      font-size: clamp(2rem, 5vw, 3rem);
      letter-spacing: 0.08em;
      color: #1a3fc4;
      margin: 0 0 1rem;
    }
    .thanks-sub {
      font-size: 1.1rem;
      color: var(--color-text);
      margin: 0 0 1.5rem;
      font-weight: 500;
    }
    .thanks-body {
      font-size: 0.95rem;
      color: var(--color-text-muted);
      line-height: 1.8;
      margin: 0 0 2.5rem;
    }
    .thanks-btn {
      display: inline-block;
      padding: 0.75rem 2rem;
      background: #f76b1a;
      color: #fff;
      font-family: 'Anton', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-decoration: none;
      border-radius: 4px;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .thanks-btn:hover {
      background: #e05a0a;
      color: #fff;
    }
