/* ===========================
   CROIRE — Static Website Styles
   Inspired by previous site design
   =========================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cr-black: #1a1a1a;
  --cr-white: #ffffff;
  --cr-accent: #094067;
  --cr-accent-soft: #0f4f7c;
  --cr-bg: #f5f5f5;
  --cr-bg-warm: #faf6ee;
  --cr-pale-blue: #eef4f8;
  --cr-soft-blue: #d8e6ef;
  --cr-icon-blue: #c9dde8;
  --cr-gray: #999999;
  --cr-gray-dark: #6b6b6b;
  --cr-border: #e8e8e8;
  --cr-border-dk: #d0d0d0;
  --cr-radius: 10px;
  --cr-radius-sm: 6px;
  --cr-radius-lg: 14px;
}

/* No-wrap utility for inline phrases that should not break */
.nowrap { white-space: nowrap; }

/* 2x2 grid utility — collapses to 1 column on small screens */
.cr-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 540px) {
  .cr-grid-2x2 { grid-template-columns: 1fr; }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  font-weight: 400;
  color: var(--cr-black);
  background: var(--cr-white);
  line-height: 1.95;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'palt';
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}

/* Paragraphs use slightly more comfortable spacing for Japanese */
p {
  line-height: 2;
  letter-spacing: 0.06em;
}

p, h1, h2, h3, h4, li, dt, dd, span {
  text-wrap: pretty;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
a:hover { color: var(--cr-accent); }

.cr-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

/* ===========================
   ヘッダー（中央ロゴ式）
   =========================== */
.cr-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--cr-white);
  border-bottom: 1px solid var(--cr-border);
  height: 64px;
}
.cr-header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: 100%;
}
.cr-nav-left, .cr-nav-right {
  display: flex; align-items: center;
}
.cr-nav-left { gap: 28px; }
.cr-nav-right { justify-content: flex-end; gap: 16px; }

.cr-nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--cr-black);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.cr-nav-link:hover { color: var(--cr-accent); }

.cr-logo {
  text-align: center;
  line-height: 1.15;
  display: block;
}
.cr-logo-main {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cr-black);
}
.cr-logo-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--cr-gray);
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 1px;
}

.cr-btn-nav {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--cr-accent);
  color: var(--cr-white);
  padding: 9px 20px;
  border: 1px solid var(--cr-accent);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.cr-btn-nav:hover {
  background: var(--cr-white);
  color: var(--cr-accent);
}

.cr-ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--cr-black);
}
.cr-ig-btn:hover { color: var(--cr-accent); }

.cr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.cr-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cr-black);
}

/* ===========================
   ボタン（共通）
   =========================== */
.cr-btn-primary, .cr-btn-accent, .cr-btn-outline, .cr-btn-white {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: 1px solid;
}
.cr-btn-primary {
  background: var(--cr-black);
  color: var(--cr-white);
  border-color: var(--cr-black);
}
.cr-btn-primary:hover {
  background: var(--cr-white);
  color: var(--cr-black);
}
.cr-btn-accent {
  background: var(--cr-accent);
  color: var(--cr-white);
  border-color: var(--cr-accent);
}
.cr-btn-accent:hover {
  background: var(--cr-white);
  color: var(--cr-accent);
}
.cr-btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.55);
}
.cr-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--cr-white);
}
.cr-btn-white {
  background: var(--cr-white);
  color: var(--cr-black);
  border-color: var(--cr-white);
}
.cr-btn-white:hover { opacity: 0.85; }

/* ===========================
   ヒーロー
   =========================== */
.cr-hero {
  margin-top: 64px;
  position: relative;
  height: 560px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(9,64,103,0.55) 0%, rgba(9,64,103,0.35) 100%),
    url('/images/hero.jpg') center/cover no-repeat;
  background-color: var(--cr-accent);
}
.cr-hero-pattern {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.cr-hero-inner {
  position: relative; z-index: 2;
  height: 100%;
  max-width: 1280px; margin: 0 auto; padding: 0 60px;
  display: flex; align-items: flex-end; padding-bottom: 72px;
}
.cr-hero-text { max-width: 560px; }
.cr-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-bottom: 16px;
}
.cr-hero-title {
  font-family: 'DM Serif Display', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-style: italic;
  font-size: 44px;
  color: var(--cr-white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.cr-hero-sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.75;
}
.cr-hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* 右上統計バッジ */
.cr-hero-stats {
  position: absolute; top: 52px; right: 60px; z-index: 2;
  display: flex; gap: 8px;
}
.cr-stat-box {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 20px 28px;
  text-align: center;
  color: var(--cr-white);
  border-radius: var(--cr-radius);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.cr-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 5px;
}
.cr-stat-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
}

/* ===========================
   スタッツバンド
   =========================== */
.cr-stats-band {
  background: var(--cr-accent);
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.cr-stats-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
  padding: 24px 40px;
}
.cr-stats-badge--mid {
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.cr-stats-badge-icon {
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.cr-stats-badge-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cr-stats-badge-main {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.04em;
}
.cr-stats-badge-sub {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===========================
   セクション共通
   =========================== */
.cr-section { padding: 88px 0; }
.cr-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
.cr-section-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 60px;
}
.cr-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cr-accent);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.cr-title {
  font-family: 'DM Serif Display', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 36px;
  line-height: 1.3;
  color: var(--cr-black);
  margin-bottom: 20px;
}
.cr-rule {
  width: 28px;
  height: 2px;
  background: var(--cr-accent);
  margin-bottom: 24px;
}
.cr-body {
  font-size: 14px;
  font-weight: 400;
  color: var(--cr-gray-dark);
  line-height: 1.9;
}

/* ===========================
   CROIREの意味（2カラム）
   =========================== */
.cr-meaning {
  border-top: 1px solid var(--cr-border);
  border-bottom: 1px solid var(--cr-border);
}
.cr-meaning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cr-meaning-left {
  padding: 88px 64px 88px 0;
  border-right: 1px solid var(--cr-border);
}
.cr-meaning-word {
  font-family: 'DM Serif Display', serif;
  font-size: 96px;
  color: #ececec;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.cr-meaning-ph {
  font-size: 12px;
  color: var(--cr-gray);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.cr-meaning-def {
  font-size: 12px;
  color: var(--cr-gray);
  font-style: italic;
}
.cr-meaning-right {
  padding: 88px 0 88px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.cr-meaning-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  line-height: 1.55;
  color: var(--cr-black);
  margin-bottom: 24px;
  padding-left: 18px;
  border-left: 3px solid var(--cr-accent);
}

/* ===========================
   強みセクション（3カラム）
   =========================== */
.cr-strengths { background: var(--cr-bg); }
.cr-strengths-hd {
  text-align: center;
  margin-bottom: 56px;
}
.cr-strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cr-card {
  background: var(--cr-white);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Note: Strengths cards are info-only (no link) — no hover effect to avoid implying interactivity */
.cr-card-img {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cr-pale-blue), var(--cr-bg));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cr-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cr-card-img-watermark {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: rgba(9,64,103,0.18);
  letter-spacing: 0.2em;
  font-style: italic;
}
.cr-card-body { padding: 28px 32px 36px; }
.cr-card-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cr-accent);
  margin-bottom: 10px;
  font-weight: 500;
}
.cr-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.35;
}
.cr-card-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--cr-gray-dark);
  line-height: 1.85;
}

/* ===========================
   取引の流れ（6ステップ）
   =========================== */
.cr-process { border-top: 1px solid var(--cr-border); }
.cr-process-hd { margin-bottom: 56px; }
.cr-process-en {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 52px;
  color: #ebebeb;
  line-height: 1;
  margin-bottom: 4px;
}
.cr-process-ja {
  font-size: 13px;
  color: var(--cr-gray);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.cr-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}
.cr-step {
  background: var(--cr-white);
  padding: 32px 16px 28px;
  text-align: center;
  position: relative;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
}
/* Note: Process steps are info-only — no hover effect */
.cr-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: var(--cr-border-dk);
  z-index: 1;
}
.cr-step:not(:last-child)::before {
  content: '';
  position: absolute;
  right: -19px; top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--cr-accent);
  border-right: 1px solid var(--cr-accent);
  rotate: 45deg;
  z-index: 2;
}
.cr-step-n {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--cr-accent);
  margin-bottom: 10px;
  font-weight: 500;
}
.cr-step-icon {
  margin: 0 auto 10px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cr-pale-blue);
  border-radius: var(--cr-radius-sm);
  color: var(--cr-accent);
}
.cr-step-title {
  font-size: 11px;
  font-weight: 500;
  color: var(--cr-black);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

/* ===========================
   商品ラインナップ・FAQプロモーション（左テキスト・右ビジュアル 2カラム）
   =========================== */
.cr-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  border-top: 1px solid var(--cr-border);
  border-bottom: 1px solid var(--cr-border);
}
.cr-promo-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--cr-border);
}
.cr-promo-photo {
  background: linear-gradient(135deg, var(--cr-pale-blue), var(--cr-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cr-promo-photo::after {
  content: 'CROIRE';
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 56px;
  color: rgba(9,64,103,0.15);
  letter-spacing: 0.15em;
}

/* ===========================
   CTAセクション
   =========================== */
.cr-cta {
  background: #f5f5f5;
  border-top: 1px solid var(--cr-border);
  border-bottom: 1px solid var(--cr-border);
  padding: 88px 60px;
}
.cr-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cr-cta-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cr-accent);
  margin-bottom: 14px;
  font-weight: 500;
}
.cr-cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--cr-black);
  margin-bottom: 14px;
  line-height: 1.3;
}
.cr-cta-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--cr-gray-dark);
  margin-bottom: 28px;
  line-height: 1.85;
  max-width: 480px;
}

/* ===========================
   ページヘッダー（下層ページ用）
   =========================== */
.cr-page-header {
  margin-top: 64px;
  background: var(--cr-bg);
  padding: 64px 0;
  border-bottom: 1px solid var(--cr-border);
  text-align: center;
}
.cr-page-header h1 {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 40px;
  color: var(--cr-black);
  margin-bottom: 8px;
}
.cr-page-header-sub {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cr-gray);
  font-weight: 400;
}

/* ===========================
   下層ページ：標準コンテンツ
   =========================== */
.cr-content {
  padding: 88px 0;
}
.cr-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--cr-black);
  line-height: 1.35;
  margin-bottom: 16px;
}
.cr-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--cr-black);
  line-height: 1.4;
  margin-bottom: 12px;
}
.cr-content p {
  font-size: 14px;
  font-weight: 400;
  color: var(--cr-gray-dark);
  line-height: 1.95;
  margin-bottom: 16px;
}

/* Service blocks */
.cr-service-block {
  padding: 60px 0;
  border-top: 1px solid var(--cr-border);
}
.cr-service-block:first-of-type { border-top: 0; padding-top: 0; }
.cr-service-block-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.cr-service-block .cr-card-num {
  font-size: 10px;
  letter-spacing: 0.32em;
  margin-bottom: 8px;
  display: block;
}
.cr-service-block-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--cr-gray-dark);
}
.cr-service-block-list li {
  display: flex;
  gap: 10px;
}
.cr-service-block-list li::before {
  content: '—';
  color: var(--cr-accent);
}

/* Production cards */
.cr-prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.cr-prod-card {
  border: 1px solid var(--cr-border);
  background: var(--cr-white);
  border-radius: var(--cr-radius);
  padding: 20px 18px;
}
/* Note: Production cards are info-only — no hover effect */
.cr-prod-card.is-primary {
  border-top: 2px solid var(--cr-accent);
  background: var(--cr-white);
}
.cr-prod-card-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cr-gray);
  margin-bottom: 6px;
}
.cr-prod-card.is-primary .cr-prod-card-tag {
  color: var(--cr-accent);
  font-weight: 500;
}
.cr-prod-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--cr-black);
  margin-bottom: 8px;
  line-height: 1.4;
}
.cr-prod-card-role {
  font-size: 11px;
  color: var(--cr-gray-dark);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.03em;
}

/* Lookbook grid */
.cr-lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.cr-lookbook-item {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--cr-pale-blue), var(--cr-bg));
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cr-lookbook-item::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(9,64,103,0.10);
  pointer-events: none;
}
.cr-lookbook-item .num {
  position: absolute;
  top: 14px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(9,64,103,0.6);
}
.cr-lookbook-item .label {
  position: absolute;
  bottom: 14px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(9,64,103,0.4);
}
.cr-lookbook-item .watermark {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 28px;
  color: rgba(9,64,103,0.18);
  letter-spacing: 0.15em;
}

/* Company info */
.cr-info-table dl {
  display: grid;
  grid-template-columns: 1fr;
}
.cr-info-table dl > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--cr-border);
}
.cr-info-table dt {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cr-gray);
  font-weight: 500;
}
.cr-info-table dd {
  font-size: 14px;
  font-weight: 400;
  color: var(--cr-black);
}
.cr-info-table dd a {
  color: var(--cr-accent);
  border-bottom: 1px solid currentColor;
}

/* Map */
.cr-map {
  aspect-ratio: 16 / 9;
  background: var(--cr-bg);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  margin-top: 20px;
  overflow: hidden;
}
.cr-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Methods (Buyers) */
.cr-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.cr-method-card {
  border: 1px solid var(--cr-border);
  background: var(--cr-white);
  border-radius: var(--cr-radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
}
/* Method cards contain CTA buttons inside, but the card itself is not clickable.
   Hover effect removed to avoid implying card-level interactivity. */
.cr-method-card.is-primary {
  border: 1px solid var(--cr-accent);
  background: var(--cr-pale-blue);
}

/* FAQ — refined accordion-style cards (custom JS-driven for smooth animation) */
.cr-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.cr-faq-item {
  background: var(--cr-white);
  border: 1px solid var(--cr-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.4s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.cr-faq-item:hover {
  border-color: var(--cr-accent);
  box-shadow: 0 4px 20px rgba(9, 64, 103, 0.06);
}
.cr-faq-item[data-open="true"] {
  border-color: var(--cr-accent);
  box-shadow: 0 6px 28px rgba(9, 64, 103, 0.08);
}

.cr-faq-summary {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 60px 1fr 28px;
  gap: 20px;
  align-items: center;
  user-select: none;
  font-family: inherit;
  color: inherit;
}

.cr-faq-q-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--cr-accent);
  line-height: 1;
}
.cr-faq-q-text {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--cr-black);
  line-height: 1.5;
}
.cr-faq-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cr-bg);
  color: var(--cr-accent);
  transition: background 0.4s cubic-bezier(0.32, 0.72, 0, 1),
              transform 0.5s cubic-bezier(0.32, 0.72, 0, 1),
              color 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  flex-shrink: 0;
}
.cr-faq-item[data-open="true"] .cr-faq-toggle {
  background: var(--cr-accent);
  color: var(--cr-white);
  transform: rotate(180deg);
}
.cr-faq-toggle svg {
  width: 12px;
  height: 12px;
}

.cr-faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.cr-faq-item[data-open="true"] .cr-faq-content {
  grid-template-rows: 1fr;
}
.cr-faq-content > .cr-faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}
.cr-faq-answer {
  border-top: 1px solid var(--cr-border);
  padding: 20px 32px 28px 112px;
  font-size: 13px;
  font-weight: 400;
  color: var(--cr-gray-dark);
  line-height: 1.95;
  margin: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1) 0.1s,
              transform 0.4s cubic-bezier(0.32, 0.72, 0, 1) 0.1s;
}
.cr-faq-item[data-open="true"] .cr-faq-answer {
  opacity: 1;
  transform: translateY(0);
}

/* Form */
.cr-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}
.cr-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cr-form-field label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--cr-black);
}
.cr-form-field .req {
  color: var(--cr-accent);
  font-size: 10px;
  margin-left: 4px;
}
.cr-form-field input,
.cr-form-field select,
.cr-form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  background: var(--cr-white);
  border: 1px solid var(--cr-border-dk);
  border-radius: 6px;
  color: inherit;
  height: 52px;
  line-height: 1.4;
  box-sizing: border-box;
}
.cr-form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23094067' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.cr-form-field input:focus,
.cr-form-field select:focus,
.cr-form-field textarea:focus {
  outline: none;
  border-color: var(--cr-accent);
}
.cr-form-field textarea {
  resize: vertical;
  height: auto;
  min-height: 140px;
}
.cr-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}
.cr-form-checkbox input { margin-top: 5px; }

.cr-contact-info {
  background: var(--cr-pale-blue);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 32px 0;
}
.cr-contact-info-block .label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cr-gray);
  margin-bottom: 6px;
}
.cr-contact-info-block .phone {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--cr-accent);
  margin-bottom: 4px;
}
.cr-contact-info-block .email {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--cr-accent);
  word-break: break-all;
}
.cr-contact-info-block .note {
  font-size: 11px;
  color: var(--cr-gray);
}

/* Privacy sections */
.cr-privacy-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--cr-border);
}
.cr-privacy-section:last-child { border-bottom: 0; }
.cr-privacy-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--cr-black);
  margin-bottom: 14px;
}
.cr-privacy-section p {
  font-size: 13px;
  font-weight: 400;
  color: var(--cr-gray-dark);
  white-space: pre-line;
  line-height: 1.95;
}

/* ===========================
   フッター（ダーク）
   =========================== */
.cr-footer {
  background: var(--cr-black);
  color: var(--cr-white);
  margin-top: 0;
}
.cr-footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 60px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 56px;
}
.cr-footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cr-footer-tagline {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.cr-footer-desc {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 360px;
}
.cr-footer-col-title {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-weight: 500;
}
.cr-footer-nav { list-style: none; }
.cr-footer-nav li { margin-bottom: 12px; }
.cr-footer-nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.cr-footer-nav a:hover { color: var(--cr-white); }
.cr-footer-info-item {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 14px;
}
.cr-footer-info-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.cr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cr-footer-copy,
.cr-footer-loc {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.cr-footer-loc { letter-spacing: 0.16em; }

.cr-footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}
.cr-footer-ig:hover { color: var(--cr-white); }

/* ===========================
   モバイルメニュー
   =========================== */
.cr-mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--cr-white);
  border-bottom: 1px solid var(--cr-border);
  z-index: 199;
  padding: 24px 20px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: none;
}
.cr-mobile-menu.is-open {
  transform: translateX(0);
  display: block;
}
.cr-mobile-menu a {
  display: block;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cr-border);
  letter-spacing: 0.04em;
}
.cr-mobile-menu a:last-of-type { border-bottom: 0; }
.cr-mobile-menu .cr-btn-nav {
  display: inline-block;
  margin-top: 20px;
}

/* ===========================
   スクロール演出
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===========================
   レスポンシブ（768px以下）
   =========================== */
@media (max-width: 768px) {
  .cr-header { height: 56px; }
  .cr-header-main {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
    height: 56px;
  }
  .cr-nav-left { display: none; }
  .cr-nav-right { gap: 8px; }
  .cr-nav-right .cr-nav-link { display: none; }
  .cr-hamburger { display: flex; }
  .cr-mobile-menu { top: 56px; }

  .cr-hero { margin-top: 56px; height: auto; min-height: 480px; }
  .cr-hero-inner {
    padding: 100px 20px 48px;
    align-items: flex-end;
  }
  .cr-hero-title { font-size: 28px; }
  .cr-hero-stats {
    top: 80px; right: 20px;
    flex-direction: column;
    gap: 8px;
  }
  .cr-stat-box { padding: 12px 16px; }
  .cr-stat-num { font-size: 22px; }
  .cr-hero-cta { flex-direction: column; gap: 10px; align-items: stretch; }
  .cr-hero-cta .cr-btn-white,
  .cr-hero-cta .cr-btn-outline { text-align: center; }

  .cr-stats-band {
    flex-direction: column;
    padding: 20px 24px;
  }
  .cr-stats-badge {
    flex: none;
    width: 100%;
    justify-content: flex-start;
    padding: 14px 0;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .cr-stats-badge:first-child { border-top: none; }

  .cr-section { padding: 64px 0; }
  .cr-section-inner,
  .cr-section-narrow { padding: 0 20px; }

  .cr-meaning-grid { grid-template-columns: 1fr; }
  .cr-meaning-left {
    padding: 56px 0 36px;
    border-right: none;
    border-bottom: 1px solid var(--cr-border);
  }
  .cr-meaning-word { font-size: 64px; }
  .cr-meaning-right { padding: 36px 0 56px; }
  .cr-meaning-quote { font-size: 20px; }

  .cr-strengths-grid { grid-template-columns: 1fr; }
  .cr-card-img { height: 160px; }

  .cr-process-en { font-size: 40px; }
  .cr-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .cr-step:not(:last-child)::after,
  .cr-step:not(:last-child)::before { display: none; }

  .cr-promo-grid { grid-template-columns: 1fr; min-height: auto; }
  .cr-promo-text {
    padding: 56px 24px;
    border-right: none;
    border-bottom: 1px solid var(--cr-border);
  }
  .cr-promo-photo { min-height: 240px; }
  .cr-promo-photo::after { font-size: 40px; }

  .cr-cta { padding: 64px 20px; }
  .cr-cta-title { font-size: 24px; }

  .cr-page-header { padding: 48px 20px; }
  .cr-page-header h1 { font-size: 30px; }

  .cr-content { padding: 56px 0; }
  .cr-content h2 { font-size: 22px; }
  .cr-service-block-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cr-prod-grid { grid-template-columns: 1fr; }
  .cr-lookbook-grid { grid-template-columns: repeat(2, 1fr); }
  .cr-method-grid { grid-template-columns: 1fr; }
  .cr-faq-item summary {
    grid-template-columns: 40px 1fr 24px;
    gap: 14px;
    padding: 20px;
  }
  .cr-faq-q-num { font-size: 22px; }
  .cr-faq-q-text { font-size: 15px; }
  .cr-faq-answer {
    padding: 16px 20px 22px 74px;
    margin: 0;
  }
  .cr-info-table dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }
  .cr-contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .cr-footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px 32px;
  }
  .cr-footer-bottom {
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cr-hero-title { font-size: 24px; }
  .cr-meaning-word { font-size: 48px; }
  .cr-process-en { font-size: 32px; }
  .cr-cta-title { font-size: 22px; }
}
