/* ============================================================
   Own. Theme — theme.css
   Design reference: own_top_v2.html
   ============================================================ */

:root {
  --white: #ffffff;
  --ink: #1a1a1a;
  --accent: #3DD68C;
  --accent-dark: #22a865;
  --accent-light: #e8faf2;
  --surface: #f4f4f0;
  --muted: #888888;
  --border: #ebebeb;
  --font-en: 'Syne', sans-serif;
  --font-ja: 'Noto Sans JP', sans-serif;
}

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

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-ja);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== CURSOR ===== */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.5;
}

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  cursor: none;
  position: relative;
  z-index: 201;
}

.logo-dot { color: var(--accent); }

/* デスクトップnavリンクは非表示（ハンバーガー統一） */
.nav-links { display: none; }
.nav-cta   { display: none; }

/* ===== HAMBURGER TOGGLE ===== */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 201;
  width: 36px;
  height: 36px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== SLIDE-IN DRAWER MENU ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 92vw);
  z-index: 199;
  background: #111;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.76,0,0.24,1);
  overflow-y: auto;
  box-shadow: -12px 0 60px rgba(0,0,0,0.35);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

/* ドロワーヘッダー */
.mobile-nav::before {
  content: 'MENU';
  display: block;
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.2);
  padding: 5.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* メニューリスト */
.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  counter-reset: nav-counter;
  flex: 1;
}

.mobile-nav__list > li {
  counter-increment: nav-counter;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav__list > li > a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-ja);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  border-left: 2px solid transparent;
  transform: translateX(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.5s,
              color 0.25s,
              border-color 0.25s,
              background 0.25s;
}

.mobile-nav__list > li > a::before {
  content: counter(nav-counter, decimal-leading-zero);
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  min-width: 1.5rem;
  transition: color 0.25s;
}

.mobile-nav.is-open .mobile-nav__list > li > a {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav__list > li:nth-child(1) > a { transition-delay: 0.07s; }
.mobile-nav__list > li:nth-child(2) > a { transition-delay: 0.12s; }
.mobile-nav__list > li:nth-child(3) > a { transition-delay: 0.17s; }
.mobile-nav__list > li:nth-child(4) > a { transition-delay: 0.22s; }
.mobile-nav__list > li:nth-child(5) > a { transition-delay: 0.27s; }

.mobile-nav__list > li > a:hover {
  color: var(--white);
  border-left-color: var(--accent);
  background: rgba(255,255,255,0.03);
}

.mobile-nav__list > li > a:hover::before {
  color: var(--accent);
}

/* サブメニュー */
.mobile-nav__list .sub-menu {
  display: none;
  list-style: none;
  padding: 0.25rem 0 0.75rem 4.5rem;
  margin: 0;
}

.mobile-nav__list .sub-menu.is-open { display: block; }

.mobile-nav__list .sub-menu li { border: none; }

.mobile-nav__list .sub-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ja);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  padding: 0.5rem 0;
  transition: color 0.2s, gap 0.2s;
  letter-spacing: 0.03em;
}

.mobile-nav__list .sub-menu a::before {
  content: '—';
  font-size: 0.65rem;
  color: rgba(255,255,255,0.15);
  transition: color 0.2s;
}

.mobile-nav__list .sub-menu a:hover { color: var(--accent); }
.mobile-nav__list .sub-menu a:hover::before { color: var(--accent); }

/* サブメニュートグルボタン */
.mobile-nav__list .sub-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  width: 22px;
  height: 22px;
  border-radius: 2px;
  cursor: pointer;
  margin-left: auto;
  margin-right: 2.5rem;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.mobile-nav__list .sub-menu-toggle::before,
.mobile-nav__list .sub-menu-toggle::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.4);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav__list .sub-menu-toggle::before { width: 8px; height: 1px; }
.mobile-nav__list .sub-menu-toggle::after  { width: 1px; height: 8px; }

.mobile-nav__list .sub-menu-toggle.is-open { background: var(--accent); border-color: var(--accent); }
.mobile-nav__list .sub-menu-toggle.is-open::before,
.mobile-nav__list .sub-menu-toggle.is-open::after { background: var(--ink); }
.mobile-nav__list .sub-menu-toggle.is-open::after { transform: rotate(90deg); opacity: 0; }

/* ドロワーフッター */
.mobile-nav__contact {
  padding: 1.75rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.mobile-nav__contact a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-ja);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.9rem 1.25rem;
  background: var(--accent);
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.mobile-nav__contact a:hover { opacity: 0.85; }

.mobile-nav__contact a::after {
  content: '→';
  font-family: var(--font-en);
  font-size: 0.9rem;
}

.mobile-nav__deco {
  padding: 1rem 2.5rem 1.5rem;
}

.mobile-nav__deco p {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  line-height: 2;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-ja);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-ja);
  font-size: clamp(2.4rem, 3.8vw, 3.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title-en {
  font-family: var(--font-en);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: block;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-subtitle {
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-sub-note {
  opacity: 0;
  animation: fadeUp 0.8s 1.05s forwards;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

.hero-sub-links {
  opacity: 0;
  animation: fadeUp 0.8s 1.15s forwards;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.hero-sub-links__divider {
  font-size: 0.7rem;
  color: var(--border);
}

.hero-sub-link {
  font-size: 0.8rem;
  color: #555555;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.hero-sub-link:hover { color: var(--ink); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  cursor: none;
}

.btn-primary:hover { background: var(--ink); color: var(--white); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  cursor: none;
}

.btn-ghost:hover { color: var(--ink); border-color: var(--ink); }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: #06C755;
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.2s;
  cursor: none;
}
.btn-line:hover { opacity: 0.85; }

/* ===== HERO RIGHT ===== */
.hero-right {
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--border);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s 0.5s forwards;
}

.grid-canvas {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 1px;
  background: #111;
}

.grid-cell {
  background: #1a1a1a;
  transition: background 0.4s;
}

.hero-right-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2.5rem;
}

.hero-logo-big {
  font-family: var(--font-en);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
}

.hero-logo-big span { color: var(--accent); opacity: 0.3; }

.hero-right-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== MARQUEE ===== */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
  background: var(--white);
}

.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 3rem;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

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

/* ===== SECTION COMMON ===== */
.section-num {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-en {
  font-family: var(--font-en);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.section-ja {
  font-family: var(--font-ja);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-link {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  cursor: none;
}

.section-link:hover { color: var(--ink); border-color: var(--ink); }

/* ===== TROUBLE ===== */
.trouble {
  padding: 6rem 3rem;
  background: var(--surface);
}

.trouble-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.trouble-item {
  background: var(--white);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: background 0.2s;
}

.trouble-item:hover { background: var(--accent-light); }

.trouble-num {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.trouble-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7;
}

/* ===== SERVICES NOTE ===== */
.services-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ===== FAQ TOP ===== */
.faq-top {
  padding: 6rem 3rem;
  background: var(--surface);
}

.faq-top-list {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}

/* ===== PAIN CARDS ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.pain-card {
  background: var(--white);
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: background 0.2s;
}

.pain-card:hover { background: var(--accent-light); }

.pain-voice {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.pain-solve {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.5;
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
  cursor: none;
}

.service-card:hover { background: var(--surface); }
.service-card:hover .service-num-label { color: var(--accent); }

.service-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.25rem;
}

.service-num-label {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}

.service-name {
  font-family: var(--font-ja);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.service-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-price {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ===== REASONS ===== */
.reasons {
  padding: 6rem 3rem;
  background: var(--ink);
  color: var(--white);
}

.reasons .section-ja { color: var(--white); margin-bottom: 0; }

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
}

.reason-item {
  padding: 2.5rem;
  background: var(--ink);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: background 0.2s;
}

.reason-item:hover { background: #222; }

.reason-num {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.04em;
}

.reason-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.reason-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

/* ===== PROCESS ===== */
.process {
  padding: 6rem 3rem;
  background: var(--surface);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.process-step {
  background: var(--white);
  padding: 2rem 1.5rem;
}

.step-num {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-ja);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ===== BLOG ===== */
.blog {
  padding: 6rem 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-coming-soon {
  padding: 4rem 0;
  text-align: center;
  border: 1px solid var(--border);
}
.blog-coming-soon__label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.blog-coming-soon__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
}

.blog-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
  cursor: none;
}

.blog-card:hover { border-color: var(--accent); }

.blog-thumb {
  height: 160px;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img { transform: scale(1.04); }

.blog-body { padding: 1.25rem; }

.blog-cat {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--accent-light);
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  color: var(--ink);
  transition: color 0.2s;
}

.blog-card:hover .blog-title { color: var(--accent-dark); }

.blog-date {
  font-family: var(--font-en);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ===== CTA BANNER (original style) ===== */
.cta-banner {
  background-color: var(--ink);
  padding-block: 10rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61, 214, 140, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.cta-banner__eyebrow {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.cta-banner__title {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
}

.cta-banner__text {
  font-family: var(--font-ja);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
  line-height: 1.9;
  text-wrap: pretty;
}

/* ===== BUTTONS (original style) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85em 2em;
  border: none;
  cursor: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn--primary {
  background-color: var(--accent);
  color: var(--ink);
}

.btn--primary:hover {
  background-color: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 214, 140, 0.3);
}

.btn--primary svg { transition: transform 0.2s; }
.btn--primary:hover svg { transform: translateX(4px); }


/* ===== FOOTER ===== */
.site-footer {
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 5rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

/* Brand */
.footer-logo {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--accent); }

.footer-tagline {
  font-family: var(--font-ja);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.footer-desc {
  font-family: var(--font-ja);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.9;
}

/* Nav */
.footer-nav {
  display: contents;
}

.footer-nav__col {}

.footer-nav__heading {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-nav__col ul,
.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav__col a {
  font-family: var(--font-ja);
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
  cursor: none;
}
.footer-nav__col a:hover { color: var(--ink); }

/* CTA */
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-cta__label {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.75rem;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  cursor: none;
  align-self: flex-start;
}
.footer-cta__btn:hover { background: var(--ink); color: var(--white); }
.footer-cta__btn svg { transition: transform 0.2s; }
.footer-cta__btn:hover svg { transform: translateX(3px); }

.footer-cta__note {
  font-family: var(--font-ja);
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin-inline: auto;
  padding: 1.5rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-en);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-family: var(--font-ja);
  font-size: 0.72rem;
  color: var(--muted);
  transition: color 0.2s;
  cursor: none;
}
.footer-legal a:hover { color: var(--ink); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===== WORDPRESS CORE ===== */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption-text { font-size: 0.8rem; color: var(--muted); margin-top: 0.4em; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 5rem 1.5rem 3rem; }
  .hero-right { display: none; }

  .trouble,
  .services,
  .reasons,
  .process,
  .blog,
  .faq-top,
  .cta-section { padding: 4rem 1.5rem; }

  .trouble-grid  { grid-template-columns: 1fr; }
  .pain-grid     { grid-template-columns: 1fr; }
  .pain-voice    { font-size: 0.95rem; }
  .services-grid { grid-template-columns: 1fr; }
  .reasons-grid  { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }

  .section-header-row { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 1.5rem 2.5rem;
    gap: 2.5rem;
  }

  .footer-brand { grid-column: 1 / -1; }

  .footer-cta { grid-column: 1 / -1; }

  .footer-bottom {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Privacy Policy Page
   ============================================================ */

.privacy-body {
  max-width: 740px;
  margin-inline: auto;
  padding: 5rem 3rem 6rem;
}

.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-heading {
  font-family: var(--font-ja);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.privacy-section p {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 2;
  margin-bottom: 0.75rem;
}
.privacy-section p:last-child { margin-bottom: 0; }

.privacy-section ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.privacy-section ul li {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.8;
  list-style: disc;
}

.privacy-section a {
  color: var(--accent-dark);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.privacy-section a:hover { opacity: 0.7; }

.privacy-updated {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 3rem;
  text-align: right;
}

/* 特定商取引法 */
.tokusho-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.9;
}
.tokusho-table th,
.tokusho-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
}
.tokusho-table th {
  width: 220px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  background: var(--surface);
}
.tokusho-table td {
  color: var(--ink);
}
.tokusho-table a {
  color: var(--accent-dark);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.tokusho-table a:hover { opacity: 0.7; }

@media (max-width: 768px) {
  .privacy-body { padding: 3rem 1.5rem 4rem; }
  .tokusho-table th,
  .tokusho-table td { display: block; width: 100%; }
  .tokusho-table th { border-bottom: none; padding-bottom: 0.4rem; }
}

/* ============================================================
   Page Templates — Common
   ============================================================ */

/* Page Header */
.page-hero {
  background: var(--surface);
  padding: 5rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.page-hero__breadcrumb a { color: var(--muted); transition: color 0.2s; }
.page-hero__breadcrumb a:hover { color: var(--accent); }
.page-hero__breadcrumb span { opacity: 0.4; }

.page-hero__num {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.page-hero__en {
  font-family: var(--font-en);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.page-hero__ja {
  font-family: var(--font-ja);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.page-hero__lead {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 640px;
  text-wrap: pretty;
}

/* Content Wrapper */
.page-body {
  padding: 6rem 3rem;
}

.page-body--surface {
  background: var(--surface);
}

.page-body--dark {
  background: var(--ink);
  color: var(--white);
}

/* ============================================================
   Service Page
   ============================================================ */
.service-detail-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}

.service-detail-card__price { margin-top: 0; }

.service-detail-card:hover { background: var(--surface); }

.service-detail-card__icon { width: 40px; height: 40px; margin-bottom: 1.25rem; }

.service-detail-card__num {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}

.service-detail-card:hover .service-detail-card__num { color: var(--accent); }

.service-detail-card__name {
  font-family: var(--font-ja);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.service-detail-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.service-detail-card__for {
  background: var(--accent-light);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.service-detail-card__for-label {
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.service-detail-card__for-list {
  font-size: 0.8rem;
  color: var(--ink);
  line-height: 1.8;
}

.service-detail-card__for-list li::before {
  content: '— ';
  color: var(--accent);
  font-weight: 700;
}

.service-detail-card__price {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ============================================================
   Price Page
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}

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

.price-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s;
}

.price-card:hover { background: var(--surface); }

.price-card--featured {
  background: var(--ink);
  color: var(--white);
}

.price-card--featured:hover { background: #222; }

.price-card__badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--accent);
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}

.price-card__name {
  font-family: var(--font-ja);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: inherit;
}

.price-card--featured .price-card__name { color: var(--white); }

.price-card__concept {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.price-card__price {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-card__unit {
  font-family: var(--font-ja);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.price-card--featured .price-card__unit { color: rgba(255,255,255,0.45); }

.price-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.price-card--featured .price-card__divider { background: rgba(255,255,255,0.1); }

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.price-card__list li {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 1.1em;
  position: relative;
}

.price-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

.price-card--featured .price-card__list li { color: rgba(255,255,255,0.55); }

.price-card__list-note {
  color: var(--muted) !important;
  font-size: 0.75rem !important;
  margin-top: 0.25rem;
}
.price-card__list-note::before { display: none !important; }

.price-note {
  padding: 2rem 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}

.price-note p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.85;
}

.price-note p + p { margin-top: 0.5rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-category {
  margin-bottom: 3rem;
}

.faq-category__label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-category__label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.faq-list {
  border: 1px solid var(--border);
}

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

.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}

.faq-q:hover { background: var(--surface); }

.faq-q__text {
  font-family: var(--font-ja);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.faq-q__text::before {
  content: 'Q';
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.faq-q__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  margin-top: 0.1rem;
}

.faq-q__icon::before,
.faq-q__icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.faq-q__icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-q__icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.faq-item.is-open .faq-q__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-q { background: var(--surface); }

.faq-a {
  display: none;
  padding: 0 2rem 1.5rem 2rem;
  border-top: 1px solid var(--border);
}

.faq-a.is-open { display: block; }

.faq-a__text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.9;
  padding-top: 1.25rem;
  padding-left: 2rem;
  position: relative;
}

.faq-a__text::before {
  content: 'A';
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--ink);
  position: absolute;
  left: 0;
  top: 1.4rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   About Page
   ============================================================ */
.about-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-profile__img {
  aspect-ratio: 3 / 4;
  background: var(--surface);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-profile__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-profile__tag {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.about-profile__name {
  font-family: var(--font-en);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.about-profile__name-ja {
  font-family: var(--font-ja);
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.about-profile__bio {
  font-size: 0.9375rem;
  line-height: 2.1;
  color: var(--muted);
}

.about-profile__bio p + p { margin-top: 2em; }

.about-concept {
  padding: 4rem 3rem;
  background: var(--ink);
}

.about-concept__title {
  font-family: var(--font-en);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
}

.about-concept__title span { color: var(--accent); }

.about-concept__text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  max-width: 600px;
}

.about-concept__text p + p { margin-top: 1.25em; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 4rem;
}

.about-stat {
  padding: 2.5rem 2rem;
  text-align: center;
}

.about-stat__num {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat__num span { color: var(--accent); }

.about-stat__label {
  font-family: var(--font-ja);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 1px;
  transition: border-color 0.2s;
}

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

.contact-info__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
}

.contact-info__label {
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-family: var(--font-ja);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

.contact-form label {
  display: block;
  font-family: var(--font-ja);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.contact-form label .required {
  color: var(--accent);
  margin-left: 0.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75em 1em;
  font-family: var(--font-ja);
  font-size: 0.9375rem;
  font-weight: 300;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--accent); }

.contact-form textarea { resize: vertical; line-height: 1.8; }

.contact-form__row { margin-bottom: 1.25rem; }
.contact-form__row--privacy { margin-bottom: 0.75rem; }

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 0.5rem;
}

.contact-form__submit:hover { background: var(--accent); color: var(--accent-dark); }
.contact-form__submit svg { transition: transform 0.2s; }
.contact-form__submit:hover svg { transform: translateX(4px); }

/* ============================================================
   Blog List Page
   ============================================================ */
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.2s;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.blog-pagination .page-numbers.dots {
  border-color: transparent;
  background: none;
}

/* ============================================================
   Activity Page
   ============================================================ */
.activity-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.activity-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  transition: background 0.2s;
}

.activity-card:hover { background: var(--surface); }

.activity-card__tag {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.activity-card__title {
  font-family: var(--font-ja);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.activity-card__text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.activity-card__link {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.activity-card__link:hover { color: var(--ink); border-color: var(--ink); }

.activity-img {
  background: var(--surface);
  overflow: hidden;
}

.activity-img img { width: 100%; height: 100%; object-fit: cover; object-position: 5% center; }

/* ============================================================
   Single Post
   ============================================================ */
.post-header {
  background: var(--surface);
  padding: 5rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
}

.post-header__cat {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--accent-light);
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}

.post-header__title {
  font-family: var(--font-ja);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.post-header__meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-en);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.post-body {
  padding: 5rem 3rem;
}

.post-body__inner {
  max-width: 740px;
  margin-inline: auto;
}

.entry-content {
  font-size: 0.9375rem;
  line-height: 2;
  color: #444;
  font-weight: 300;
}

.entry-content h2 {
  font-family: var(--font-ja);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 3em 0 1em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}

.entry-content h3 {
  font-family: var(--font-ja);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 2.5em 0 0.75em;
  padding-left: 1em;
  border-left: 2px solid var(--accent);
  color: var(--ink);
}

.entry-content p { margin-bottom: 1.75em; }

.entry-content a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }

.entry-content ul, .entry-content ol {
  margin-bottom: 1.75em;
  padding-left: 1.5em;
}

.entry-content ul { list-style: none; padding-left: 0; }

.entry-content ul li {
  padding-left: 1.25em;
  position: relative;
  margin-bottom: 0.5em;
}

.entry-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.entry-content ol { list-style: decimal; }
.entry-content ol li { margin-bottom: 0.5em; }

.entry-content blockquote {
  margin: 2em 0;
  padding: 1.5em 2em;
  background: var(--surface);
  border-left: 2px solid var(--accent);
  font-style: italic;
  color: var(--muted);
}

.entry-content code {
  font-family: monospace;
  font-size: 0.875em;
  background: var(--surface);
  padding: 0.15em 0.4em;
  color: var(--ink);
}

.entry-content pre {
  background: var(--ink);
  color: #e2e8f0;
  padding: 1.5em 2em;
  overflow-x: auto;
  margin-bottom: 1.75em;
  font-size: 0.875rem;
  line-height: 1.7;
}

.entry-content pre code { background: none; color: inherit; padding: 0; }

.entry-content img { margin-block: 2em; }

.post-footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.post-footer__inner {
  max-width: 740px;
  margin-inline: auto;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.post-tag {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.3em 0.9em;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.2s;
}

.post-tag:hover { border-color: var(--accent); color: var(--accent); }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.post-nav__item {
  background: var(--white);
  padding: 1.5rem 2rem;
  transition: background 0.2s;
}

.post-nav__item:hover { background: var(--surface); }

.post-nav__label {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.post-nav__title {
  font-family: var(--font-ja);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
}

/* Related posts */
.related-section {
  padding: 6rem 3rem;
  background: var(--surface);
}

/* ============================================================
   Responsive additions
   ============================================================ */
@media (max-width: 768px) {
  .page-hero { padding: 4rem 1.5rem 3rem; }
  .page-body { padding: 4rem 1.5rem; }
  .about-profile { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .price-grid { grid-template-columns: 1fr; }
  .price-grid--2col { grid-template-columns: 1fr; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .activity-section { grid-template-columns: 1fr; }
  .post-header { padding: 4rem 1.5rem 3rem; }
  .post-body { padding: 4rem 1.5rem; }
  .post-footer { padding: 2.5rem 1.5rem; }
  .post-nav { grid-template-columns: 1fr; }
  .related-section { padding: 4rem 1.5rem; }
  .about-concept { padding: 4rem 1.5rem; }
  .faq-q { padding: 1.25rem 1.5rem; }
  .faq-a { padding: 0 1.5rem 1.25rem; }
}

