/* =============================================
   Remix HP — style.css
   自然色ベース（2026-05-09 確定）
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  /* 自然色メイン */
  --green:       #2c5f3f;
  --green-sub:   #3d7a54;
  --green-light: #e8f0eb;
  --brown:       #8b7355;
  --brown-light: #c4a882;

  /* ベース背景 */
  --bg:          #f8f4ee;
  --bg-warm:     #f0e8d8;
  --bg-warm2:    #e0d0b8;

  /* アクセント */
  --navy:        #0a2540;
  --navy-sub:    #1a3a5c;
  --gold:        #c19a6b;
  --gold-light:  #f5ede0;

  /* テキスト */
  --text:        #2c2c2c;
  --text-sub:    #666666;
  --text-light:  #999999;
  --white:       #ffffff;

  /* グレー */
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #dddddd;
  --gray-500: #aaaaaa;

  /* フォント */
  --font-ja:    'Noto Sans JP', 'Yu Gothic', 'ヒラギノ角ゴシック', sans-serif;
  --font-serif: 'Noto Serif JP', 'YuMincho', '游明朝', 'Yu Mincho', 'ヒラギノ明朝', serif;
  --font-en:    'Inter', 'Helvetica Neue', system-ui, sans-serif;

  /* スペーシング */
  --section-py: 80px;
  --container:  1180px;
  --radius:     8px;
  --radius-lg:  16px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-ja);
  background: var(--bg);
  /* 和紙テクスチャ — 極細ノイズで素材感を演出 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== Container ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header / Global Nav ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  box-shadow: none;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ロゴ */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #18271a;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .08em;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; flex-shrink: 0;
}
.logo-text-en {
  font-size: .7rem; font-weight: 400; opacity: .7;
  letter-spacing: .12em; display: block;
}

/* グローバルナビ */
.gnav { display: flex; align-items: center; gap: 4px; }
.gnav a {
  color: #18271a;
  font-size: .875rem; font-weight: 500;
  padding: 6px 14px; border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.gnav a:hover, .gnav a.active {
  color: var(--green);
  background: rgba(44,95,63,.08);
}
.gnav .btn-nav {
  margin-left: 8px;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 6px 18px !important;
  font-weight: 600;
}
.gnav .btn-nav:hover { background: #b0895a; }
.gnav .btn-tel {
  margin-left: 4px;
  background: rgba(44,95,63,.08);
  color: #18271a !important;
  border-radius: var(--radius);
  padding: 5px 14px !important;
  font-size: .78rem !important;
  font-weight: 600;
  border: 1px solid rgba(44,95,63,.22);
  letter-spacing: .02em;
}
.gnav .btn-tel:hover { background: rgba(44,95,63,.15); }

/* ハンバーガー */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #18271a; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-nav {
  display: none;
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 0 20px;
}
.mobile-nav a {
  display: block; color: rgba(255,255,255,.88);
  font-size: .95rem; padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,.1); }
.mobile-nav a:last-child { border-bottom: none; }

/* ===== Hero (トップ) ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-sub) 45%, #1e4a30 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 120px 0 100px;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* canvas アニメーション背景 — MIMIGURIスタイル（ライト） */
.hero-canvas-bg {
  background: linear-gradient(180deg, #f5f4f0 0%, #edeae2 100%);
  color: #1c2c1a;
}
.hero-canvas-bg .hero-tag {
  background: rgba(68,110,52,.10);
  border-color: rgba(68,110,52,.28);
  color: #3a6628;
}
.hero-canvas-bg h1 { color: #18271a; }
.hero-canvas-bg h1 em { color: #4a7830; }
.hero-canvas-bg .hero-en { color: #628648; opacity: 1; }
.hero-canvas-bg .hero-desc { color: #283a28; opacity: 1; }
.hero-canvas-bg .hero-card {
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(68,110,52,.18);
  color: #18271a;
}
.hero-canvas-bg .hero-card-num { color: #386830; }
.hero-canvas-bg .hero-card-label { color: #4a5a42; opacity: 1; }
.hero-canvas-bg .btn-outline {
  border-color: rgba(24,42,20,.40);
  color: #18271a;
}
.hero-canvas-bg .btn-outline:hover { background: rgba(24,42,20,.07); }
#heroCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
#heroCanvas.ready { opacity: 1; }
.hero-canvas-bg .hero-inner { position: relative; z-index: 1; }
.hero-inner {
  position: relative;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  background: rgba(193,154,107,.2);
  border: 1px solid rgba(193,154,107,.45);
  color: var(--gold);
  font-family: var(--font-en); font-size: .75rem;
  font-weight: 600; letter-spacing: .12em;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700; line-height: 1.35;
  margin-bottom: 20px; letter-spacing: .04em;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-en {
  font-size: 1.05rem; letter-spacing: .18em; color: var(--gold);
  opacity: .82; margin-bottom: 16px; font-weight: 400;
  text-transform: uppercase;
}
.hero-desc {
  font-size: 1rem; line-height: 1.8; opacity: .88;
  margin-bottom: 32px; max-width: 480px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero ビジュアル */
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 20px;
  backdrop-filter: blur(6px);
}
.hero-card:nth-child(1) { grid-column: 1 / -1; }
.hero-card-num {
  font-family: var(--font-en); font-size: 2rem;
  font-weight: 700; color: var(--gold);
  line-height: 1; margin-bottom: 4px;
}
.hero-card-label { font-size: .8rem; opacity: .75; }

/* ===== 内ページ Hero ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-sub) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white); padding: 80px 0 72px;
}
.page-hero.tackle-hero  { background: linear-gradient(rgba(10,35,18,.75), rgba(15,45,25,.72)), #1a3d2b; background-size: cover; background-position: center; }
.page-hero.apparel-hero { background: linear-gradient(rgba(60,40,22,.72), rgba(80,55,30,.68)), #6b5440; background-size: cover; background-position: center; }
.page-hero.agency-hero  { background: linear-gradient(rgba(5,22,45,.78), rgba(10,55,40,.65)), var(--navy); background-size: cover; background-position: center; }
.page-hero.organic-hero { background: linear-gradient(rgba(70,55,28,.72), rgba(90,70,38,.68)), #7a6540; background-size: cover; background-position: center; }
.page-hero.works-hero   { background: linear-gradient(rgba(5,20,45,.76), rgba(15,50,25,.65)), var(--navy); background-size: cover; background-position: center; }
.page-hero.about-hero   { background: linear-gradient(rgba(15,50,25,.72), rgba(25,60,35,.68)), var(--green); background-size: cover; background-position: center; }
.page-hero.contact-hero { background: linear-gradient(rgba(5,20,45,.76), rgba(15,50,25,.65)), var(--navy); background-size: cover; background-position: center; }

/* ===== Image Strip (視覚アクセント) ===== */
.img-strip {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.img-strip-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.img-strip-en {
  font-family: var(--font-en); font-size: .72rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  opacity: .75; margin-bottom: 12px;
}
.img-strip-ja { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 700; }
.page-hero-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.page-hero-en {
  font-family: var(--font-en); font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; opacity: .65;
  text-transform: uppercase; margin-bottom: 14px; display: block;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; margin-bottom: 16px; letter-spacing: .04em;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.page-hero p {
  font-size: 1rem; opacity: .9; max-width: 560px;
  line-height: 1.8; text-shadow: 0 1px 4px rgba(0,0,0,.25);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: var(--bg-warm); padding: 10px 0;
  font-size: .8rem; color: var(--text-sub);
}
.breadcrumb-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--green); }
.breadcrumb span { opacity: .4; }

/* ===== Sections ===== */
.section      { padding: var(--section-py) 0; background: var(--bg); }
.section-warm {
  padding: var(--section-py) 0;
  background-color: var(--bg-warm);
  /* 和紙テクスチャ — ベージュ面に素材感 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.032'/%3E%3C/svg%3E");
}
.section-green { padding: var(--section-py) 0; background: var(--green); color: var(--white); }
.section-navy  { padding: var(--section-py) 0; background: var(--navy); color: var(--white); }
.section-dark  { padding: var(--section-py) 0; background: #1a2e1f; color: var(--white); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.875rem);
  font-weight: 700; margin-bottom: 10px; letter-spacing: .02em;
}
.section-sub {
  font-size: .9rem; color: var(--text-sub);
  margin-bottom: 48px; line-height: 1.65;
}
.section-green .section-sub,
.section-navy .section-sub,
.section-dark .section-sub { color: rgba(255,255,255,.68); }

.section-title-wrap { margin-bottom: 48px; }
.en-label {
  font-family: var(--font-en); font-size: .7rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--green); margin-bottom: 8px; display: block;
}
.section-green .en-label,
.section-navy .en-label,
.section-dark .en-label { color: var(--gold); }

/* ===== Divider ===== */
.divider {
  width: 48px; height: 2px;
  background: var(--green); border-radius: 1px; margin: 14px 0 0;
  /* 和モダン: 繊細な線 */
}
.divider-gold { background: var(--gold); }
.divider-center { margin-left: auto; margin-right: auto; }

/* 和モダン装飾セパレーター */
.wa-sep {
  display: flex; align-items: center; gap: 12px;
  text-align: center; margin: 0 auto 48px; max-width: 320px;
  color: var(--text-light); font-size: .72rem;
  letter-spacing: .16em;
}
.wa-sep::before, .wa-sep::after {
  content: ''; flex: 1; height: 1px; background: var(--gray-300);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ja); font-size: .9rem; font-weight: 600;
  padding: 12px 28px; border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer; transition: all .22s ease-out;
  white-space: nowrap; text-decoration: none;
}
.btn:active { transform: translateY(1px); box-shadow: none !important; }
.btn-primary   { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-sub); border-color: var(--green-sub); }
.btn-outline   { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-gold      { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: #b0895a; }
.btn-navy      { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-sub); }
.btn-brown     { background: var(--brown); color: var(--white); border-color: var(--brown); }
.btn-brown:hover { background: #7a6040; }
.btn-sm { font-size: .8rem; padding: 8px 18px; }
.btn-lg { font-size: 1rem; padding: 16px 36px; }

/* ===== Cards ===== */
.card {
  background: var(--white); border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg); padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 12px 36px rgba(44,95,63,.14); transform: translateY(-4px); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: .875rem; color: var(--text-sub); line-height: 1.7; }
.card-green { background: var(--green); color: var(--white); border-color: var(--green); }
.card-green h3 { color: var(--white); }
.card-green p { color: rgba(255,255,255,.8); }
.card-warm { background: var(--bg-warm); border-color: var(--bg-warm2); }
.card-warm:hover { box-shadow: 0 8px 28px rgba(139,115,85,.12); }

/* ===== Grids ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== Stats ===== */
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-en); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: .8rem; color: var(--text-sub); letter-spacing: .04em; }
.section-green .stat-num { color: var(--gold); }
.section-green .stat-label { color: rgba(255,255,255,.7); }

/* ===== Icon Box ===== */
.icon-box { display: flex; gap: 18px; align-items: flex-start; }
.icon-box-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.icon-box h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.icon-box p { font-size: .85rem; color: var(--text-sub); }

/* ===== Info Table ===== */
.info-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.info-table th, .info-table td {
  padding: 14px 16px; border-bottom: 1px solid var(--gray-200);
  text-align: left; vertical-align: top;
}
.info-table th {
  width: 140px; font-weight: 600; color: var(--green);
  white-space: nowrap; background: var(--bg-warm);
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }

/* ===== Badge ===== */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .75rem; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  background: var(--green-light); color: var(--green);
}
.badge-gold  { background: #f9efe3; color: var(--brown); }
.badge-navy  { background: #e6ecf3; color: var(--navy); }
.badge-brown { background: #f2ece2; color: var(--brown); }

/* ===== Check List ===== */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; }
.check-list li::before { content: '✅'; flex-shrink: 0; margin-top: 1px; }

/* ===== Maker Tags ===== */
.maker-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.maker-tag {
  display: inline-block;
  background: var(--bg-warm); border: 1px solid var(--bg-warm2);
  color: var(--text); font-size: .82rem; font-weight: 500;
  padding: 6px 14px; border-radius: 6px; transition: background .2s;
}
.maker-tag:hover { background: var(--green-light); color: var(--green); }

/* ===== Service Card ===== */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border-left: 4px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: box-shadow .2s;
}
.service-card:hover { box-shadow: 0 12px 36px rgba(44,95,63,.14); transform: translateY(-4px); }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: .875rem; color: var(--text-sub); line-height: 1.75; }
.service-card ul { margin-top: 12px; }
.service-card ul li {
  font-size: .85rem; color: var(--text-sub);
  padding: 3px 0 3px 16px; position: relative;
}
.service-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--green); }

/* ===== Business Card ===== */
.biz-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: box-shadow .2s, transform .2s;
}
.biz-card:hover { box-shadow: 0 14px 40px rgba(0,0,0,.15); transform: translateY(-5px); }
.biz-card-header { padding: 28px 28px 20px; color: var(--white); }
.biz-card-header.green  { background: var(--green); }
.biz-card-header.brown  { background: var(--brown); }
.biz-card-header.navy   { background: var(--navy); }
.biz-card-header.warm   { background: #7a6540; }
.biz-card-en { font-family: var(--font-en); font-size: .7rem; letter-spacing: .16em; opacity: .7; margin-bottom: 6px; }
.biz-card-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.biz-card-desc { font-size: .85rem; opacity: .85; line-height: 1.65; }
.biz-card-body { padding: 20px 28px 20px; }
.biz-card-body ul { display: flex; flex-direction: column; gap: 8px; }
.biz-card-body ul li { font-size: .875rem; color: var(--text-sub); padding-left: 16px; position: relative; }
.biz-card-body ul li::before { content: '•'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.biz-card-footer { padding: 0 28px 24px; }

/* ===== CTA Band ===== */
.cta-band { background: var(--green); padding: 64px 0; color: var(--white); text-align: center; }
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; margin-bottom: 12px; letter-spacing: .04em; }
.cta-band p { opacity: .85; margin-bottom: 32px; font-size: .95rem; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Contact Form ===== */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: 6px; }
.form-label .req {
  display: inline-block; background: var(--green); color: var(--white);
  font-size: .68rem; font-weight: 700; padding: 1px 6px;
  border-radius: 3px; margin-left: 6px; vertical-align: middle;
}
.form-control {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  font-family: var(--font-ja); font-size: .9rem;
  background: var(--white); color: var(--text);
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
.form-control:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(44,95,63,.12);
}
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { margin-top: 4px; accent-color: var(--green); flex-shrink: 0; }
.form-check label { font-size: .875rem; color: var(--text-sub); }
.form-check a { color: var(--green); text-decoration: underline; }

/* ===== Sidebar ===== */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { border-radius: var(--radius-lg); padding: 24px; }
.sidebar-card.green-bg { background: var(--green); color: var(--white); }
.sidebar-card.warm-bg  { background: var(--bg-warm); border: 1px solid var(--bg-warm2); }
.sidebar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.sidebar-card.green-bg h3 { color: var(--white); }
.contact-info-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .875rem; }
.contact-info-item:last-child { margin-bottom: 0; }

/* ===== Flow Steps ===== */
.flow-steps { display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
.flow-step:last-child { border-bottom: none; }
.flow-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.flow-step-text { font-size: .875rem; }
.flow-step-text strong { display: block; font-weight: 600; margin-bottom: 2px; }
.flow-step-text span { color: var(--text-sub); font-size: .8rem; }

/* ===== Bar Chart ===== */
.bar-chart { display: flex; flex-direction: column; gap: 16px; }
.bar-label-row { display: flex; justify-content: space-between; font-size: .875rem; margin-bottom: 6px; font-weight: 500; }
.bar-track { height: 10px; background: rgba(255,255,255,.2); border-radius: 5px; overflow: hidden; }
.bar-track.dark { background: var(--bg-warm2); }
.bar-fill { height: 100%; border-radius: 5px; background: var(--gold); }

/* ===== Highlights ===== */
.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.highlight-card { background: var(--green); color: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; }
.highlight-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.highlight-card .big-num {
  font-family: var(--font-en); font-size: 2.8rem;
  font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.highlight-card p { font-size: .82rem; opacity: .78; }

/* ===== Region Cards ===== */
.region-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.region-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; text-align: center;
  border: 1px solid var(--gray-200); box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.region-flag { font-size: 2.2rem; margin-bottom: 8px; }
.region-pct { font-family: var(--font-en); font-size: 2rem; font-weight: 700; color: var(--green); }
.region-name { font-size: .82rem; color: var(--text-sub); }

/* ===== Maker Table ===== */
.maker-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.maker-table th {
  background: var(--green); color: var(--white);
  padding: 10px 14px; text-align: left; font-weight: 600;
}
.maker-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); }
.maker-table tr:nth-child(even) td { background: var(--bg-warm); }
.maker-table tr:last-child td { border-bottom: none; }

/* ===== RE-MIX Philosophy ===== */
.remix-concept {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 20px; text-align: center;
  padding: 36px; background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--gray-200);
}
.remix-plus { font-size: 1.8rem; color: var(--green); font-weight: 700; }
.remix-item-label {
  font-family: var(--font-en); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brown); margin-bottom: 6px;
}
.remix-item-title { font-size: 1.1rem; font-weight: 700; color: var(--green); }
.remix-item-desc { font-size: .8rem; color: var(--text-sub); margin-top: 4px; }
.remix-result {
  grid-column: 1 / -1; margin-top: 16px;
  padding: 18px; background: var(--green); color: var(--white);
  border-radius: var(--radius); font-size: 1rem; font-weight: 600;
}
.remix-result em { font-style: normal; color: var(--gold); }

/* ===== Pillar Card ===== */
.pillar-card {
  text-align: center; padding: 32px 24px;
  background: var(--white); border-radius: var(--radius-lg);
  border-top: 4px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .22s ease-out, transform .22s ease-out;
}
.pillar-card:hover { box-shadow: 0 12px 36px rgba(44,95,63,.13); transform: translateY(-4px); }
.pillar-icon { font-size: 2.4rem; margin-bottom: 14px; }
.pillar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.pillar-card p { font-size: .85rem; color: var(--text-sub); line-height: 1.7; }

/* ===== Two Column ===== */
.two-col { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; align-items: start; }
.two-col-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.sticky-card { position: sticky; top: 84px; }

/* ===== CEO Message ===== */
.ceo-card {
  background: var(--bg-warm); border-radius: var(--radius-lg);
  padding: 32px; position: relative;
}
.ceo-card::before {
  content: '"'; position: absolute; top: 20px; left: 24px;
  font-size: 5rem; color: var(--green); opacity: .1;
  line-height: 1; font-family: Georgia, serif;
}
.ceo-card p { font-size: .9rem; line-height: 1.85; margin-bottom: 14px; position: relative; }
.ceo-name { font-weight: 700; font-size: .9rem; color: var(--green); }

/* ===== Notice / Alert ===== */
.notice {
  background: var(--bg-warm); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; font-size: .875rem; color: var(--text-sub);
}

/* ===== Price Table ===== */
.price-table { display: flex; flex-direction: column; gap: 2px; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 16px; border-radius: 6px; background: var(--white);
  border: 1px solid var(--gray-200); transition: background .2s;
}
.price-row:hover { background: var(--bg-warm); }
.price-name { font-weight: 600; font-size: .9rem; }
.price-val { font-family: var(--font-en); font-size: .9rem; color: var(--green); font-weight: 600; }

/* ===== Footer ===== */
.site-footer { background: #182a1e; color: rgba(255,255,255,.72); padding: 56px 0 0; }
.footer-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p { font-size: .82rem; line-height: 1.75; opacity: .6; max-width: 240px; }
.footer-col h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: .82rem; opacity: .65; transition: opacity .2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 24px; max-width: var(--container); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-copy { font-size: .78rem; opacity: .45; }
.footer-links { display: flex; gap: 20px; font-size: .78rem; }
.footer-links a { opacity: .45; transition: opacity .2s; }
.footer-links a:hover { opacity: .9; }

/* ===== Fade-in ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --section-py: 56px; }
  .gnav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { display: none; }
  .highlight-grid { grid-template-columns: 1fr; gap: 14px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col-equal { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-inner .footer-brand { grid-column: 1 / -1; }
  .remix-concept { grid-template-columns: 1fr; }
  .remix-plus { display: none; }
}
@media (max-width: 640px) {
  :root { --section-py: 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .region-cards { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .hero-cta { flex-direction: column; }
  .hero { padding: 72px 0 56px; }
}

/* =============================================
   MIMIGURI よせ — トップページ専用スタイル
   ============================================= */

/* ── 全画面ヒーロー（MIMIGURI：左下配置） ── */
.hero-full {
  min-height: 100vh;
  padding: 0;
  align-items: flex-end;       /* テキストブロックを下寄せ */
  justify-content: flex-start; /* 左寄せ */
}
.hero-full-inner {
  position: relative;
  z-index: 1;
  text-align: left;             /* MIMIGURI：左揃え */
  padding: 0 48px 9vh 72px;     /* 左64px + 下9vh の余白 */
  max-width: 1080px;
}
/* 日本語サブテキスト（MIMIGURIの上段小テキストに相当） */
.hero-ja-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 400;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  display: block;
  text-shadow: 0 1px 18px rgba(0,0,0,0.52);
}
/* 英語メインH1（MIMIGURIの巨大英字に相当・一番でかく） */
.hero-full-h1 {
  font-family: var(--font-en);
  font-size: clamp(4rem, 10.5vw, 10.5rem);
  font-weight: 700;
  line-height: 1.02;
  color: #fff;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 36px;
  text-shadow:
    0 2px 48px rgba(0,0,0,0.65),
    0 0 120px rgba(0,0,0,0.30),
    2px 3px 0   rgba(0,0,0,0.18);
}
.hero-full-h1 em { font-style: normal; color: #fff; }
.hero-full-desc {
  font-size: clamp(0.90rem, 1.4vw, 1.02rem);
  line-height: 2.2;
  color: rgba(255,255,255,0.82);
  margin-bottom: 52px;
  text-shadow: 0 1px 14px rgba(0,0,0,0.52);
}
/* スクロールヒント */
.hero-scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: .68rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  opacity: .70;
  transition: opacity .3s;
}
.hero-scroll-hint:hover { opacity: 1; }
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  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; }
}

/* ── Philosophy ── */
.section-philo {
  padding: 120px 24px;
  background: var(--bg);
}
.container-narrow {
  max-width: 680px;
  margin: 0 auto;
}
.philo-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: .04em;
  margin: 16px 0 40px;
}
.philo-body {
  font-size: 1.05rem;
  line-height: 2.2;
  color: var(--text-sub);
  margin-bottom: 32px;
}
.philo-sign {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .04em;
}

/* ── RE-MIX Model ── */
.section-model {
  padding: var(--section-py) 0;
  background: #f5f3ee;
}
.model-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 60px 0 40px;
  flex-wrap: wrap;
}
.model-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.model-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}
.model-circle--muted {
  background: rgba(148,168,148,.22);
  border: 2px solid rgba(100,140,90,.25);
}
.model-circle--accent {
  background: rgba(105,160,178,.18);
  border: 2px solid rgba(80,130,160,.22);
}
.model-circle--main {
  width: 190px;
  height: 190px;
  background: #2c5f3f;
  border: none;
  box-shadow: 0 8px 32px rgba(44,95,63,.25);
}
.model-circle-title {
  font-size: .65rem;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 6px;
}
.model-circle-items {
  font-size: .78rem;
  line-height: 1.9;
  color: var(--text);
}
.model-circle-brand {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.model-circle-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
}
.model-x {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-light);
  flex-shrink: 0;
}
.model-eq { font-size: 2.4rem; color: var(--green); }
.model-col-label {
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--text-sub);
  font-family: var(--font-en);
}
.model-quote {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green);
  letter-spacing: .06em;
  padding: 16px 0 0;
}

/* ── 事業領域 ── */
.section-biz {
  padding: var(--section-py) 0 calc(var(--section-py) * 1.4);
  background: var(--bg);
}
.biz4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.biz4-item {
  background: #fff;
  padding: 40px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 2px solid var(--gray-200);
  transition: background .25s;
}
.biz4-item:last-child { border-right: none; }
.biz4-item:hover { background: #f7faf7; }
.biz4-num {
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--text-light);
  margin-bottom: 20px;
}
.biz4-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.biz4-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 14px;
}
.biz4-desc {
  font-size: .85rem;
  line-height: 1.8;
  color: var(--text-sub);
  flex: 1;
  margin-bottom: 18px;
}
.mij-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}
.biz4-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  letter-spacing: .04em;
  transition: opacity .2s;
  margin-top: auto;
}
.biz4-link:hover { opacity: .65; }

.biz4-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  display: block;
}

/* fixed header spacer（非ヒーローページ用） */
.page-spacer {
  height: 72px;
}

/* ── レスポンシブ追加 ── */
@media (max-width: 900px) {
  .model-circle { width: 130px; height: 130px; }
  .model-circle--main { width: 155px; height: 155px; }
  .biz4-grid { grid-template-columns: 1fr 1fr; }
  .biz4-item { border-right: none; border-bottom: 2px solid var(--gray-200); }
  .biz4-item:nth-child(2n) { border-bottom: 2px solid var(--gray-200); }
  .biz4-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .hero-full-h1 { font-size: 2.4rem; }
  .philo-title { font-size: 1.7rem; }
  .model-diagram { gap: 12px; }
  .model-circle { width: 110px; height: 110px; }
  .model-circle--main { width: 130px; height: 130px; }
  .model-x { font-size: 1.4rem; }
  .model-circle-brand { font-size: 1rem; }
  .biz4-grid { grid-template-columns: 1fr; }
  .biz4-item { border-right: none; border-bottom: 2px solid var(--gray-200); }
}

/* =============================================
   森写真ヒーロー + 森上重ねレイアウト
   ============================================= */

/* ヒーロー背景：水中（気泡アニメーション用フォールバック） */
.hero-forest-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #3bbee0 0%, #0d5898 45%, #082040 80%, #030d1e 100%);
  z-index: 0;
}
.hero-forest-bg::after { display: none; }

/* ヒーロー全画面（水中ブルー × 白テキスト） */
.hero-full {
  background: #0d3a6e; /* フォールバック：水中ブルー */
  color: #fff;
}
.hero-full .hero-full-inner { z-index: 3; }

/* 白文字の視認性確保：左下を静かに暗化（MIMIGURIの木の影に相当） */
.hero-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(10,20,12,0.48) 0%,
    rgba(10,20,12,0.22) 35%,
    rgba(10,20,12,0.00) 70%
  );
  z-index: 2; /* canvas(1) の上、テキスト(3) の下 */
  pointer-events: none;
}

#heroCanvas {
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease;
}
#heroCanvas.ready { opacity: 1; }

/* キャッチコピー：MIMIGURI合わせ — 白文字・大きく・左下 */
.hero-full-h1 {
  font-size: clamp(3.8rem, 10.5vw, 10rem) !important;  /* MIMIGURIの巨大英字に合わせ拡大 */
  font-weight: 700;
  line-height: 1.02 !important;
  letter-spacing: -.02em !important;
  margin-bottom: 32px !important;
  color: #fff !important;
  text-shadow:
    0 2px 48px rgba(0,0,0,0.70),
    0 0 120px rgba(0,0,0,0.35),
    2px 3px 0   rgba(0,0,0,0.20) !important;
}
.hero-full-h1 em { color: #fff; font-style: normal; }
.hero-ja-sub {
  color: rgba(255,255,255,0.90) !important;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem) !important;
  text-shadow: 0 1px 18px rgba(0,0,0,0.55) !important;
}
.hero-full-desc {
  font-size: clamp(0.90rem, 1.4vw, 1.05rem) !important;
  line-height: 2.0 !important;
  margin-bottom: 48px !important;
  color: rgba(255,255,255,0.82) !important;
  text-shadow: 0 1px 14px rgba(0,0,0,0.52) !important;
}

/* 森写真の上に乗せるセクション（Philosophy + Model） */
.section-on-forest {
  position: relative;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=85') center 30%/cover fixed no-repeat;
  padding: 100px 0;
}
.section-on-forest::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248,247,242,0.86);
  z-index: 0;
}
.section-on-forest > * { position: relative; z-index: 1; }

/* モデル図のセクション追加スタイル */
.section-on-forest.section-model::before {
  background: rgba(248,247,242,0.80); /* 少し透けて森が見える */
}

/* =============================================
   事業領域：ウェブ（つながり）レイアウト
   ============================================= */

.section-biz { background: #f5ede0; }

.biz-web { margin-top: 64px; }

/* 上下段の行（カード＋スパイン＋カード） */
.biz-web-row {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  align-items: stretch;
  gap: 0;
}

/* 個別カード */
.biz-wc {
  background: #fffcf7;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(140,90,20,.10);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.biz-wc:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(140,90,20,.18);
}
.biz-wc-photo-wrap {
  width: 100%; height: 210px; overflow: hidden; flex-shrink: 0;
}
.biz-wc-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.biz-wc:hover .biz-wc-photo { transform: scale(1.04); }

.biz-wc-body {
  padding: 26px 22px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.biz-wc-num {
  font-family: var(--font-en);
  font-size: .60rem; letter-spacing: .22em;
  color: var(--gold); font-weight: 700;
  margin-bottom: 8px;
}
.biz-wc-title {
  font-family: var(--font-serif);
  font-size: 1.06rem; font-weight: 700;
  color: #2a1e0e; line-height: 1.4;
  margin-bottom: 10px;
}
.biz-wc-sub {
  font-family: var(--font-en);
  font-size: .68rem; letter-spacing: .10em;
  color: var(--brown); font-weight: 500;
  margin-left: 6px;
}
.biz-wc-desc {
  font-size: .84rem; line-height: 1.86;
  color: #5a4020; flex: 1; margin-bottom: 14px;
}
.biz-wc-link {
  font-size: .82rem; font-weight: 600;
  color: var(--green); letter-spacing: .04em;
  margin-top: auto; display: inline-block;
  transition: opacity .2s;
}
.biz-wc-link:hover { opacity: .6; }

/* 縦スパイン（左右カードをつなぐ金の糸） */
.biz-spine {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px 0;
}
.biz-spine-line {
  width: 1px; flex: 1;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .55;
}
.biz-spine-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); margin: 10px 0;
  box-shadow: 0 0 6px rgba(193,154,107,.5);
  flex-shrink: 0;
}

/* RE-MIX ハブ（上下行をつなぐ横線＋ピル） */
.biz-hub {
  display: flex; align-items: center;
  margin: 36px 0;
}
.biz-hub-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .50;
}
.biz-hub-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: #fff; padding: 10px 24px;
  border-radius: 28px; margin: 0 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(193,154,107,.40);
}
.biz-hub-x {
  font-size: .9rem; font-weight: 300; opacity: .85;
}
.biz-hub-text {
  font-family: var(--font-en);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .10em;
}

/* レスポンシブ */
@media (max-width: 860px) {
  .biz-web-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .biz-spine { flex-direction: row; height: 36px; padding: 0; }
  .biz-spine-line { width: auto; height: 1px; flex: 1; }
  .biz-spine-dot { margin: 0 10px; }
  .biz-hub { margin: 24px 0; }
  .biz-hub-text { font-size: .70rem; letter-spacing: .06em; }
}
@media (max-width: 560px) {
  .biz-hub-pill { padding: 8px 16px; margin: 0 12px; }
}

/* 旧スタイル（既存ページ用に残す） */
.biz4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  border: none !important; /* 旧スタイル上書き */
  border-radius: 0 !important;
  overflow: visible !important;
}
.biz4-item {
  background: #fff;
  border-radius: 12px !important;
  border-right: none !important; /* 旧スタイル上書き */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  padding: 0 !important; /* 旧スタイル上書き */
}
.biz4-item:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.13); }
.biz4-photo-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.biz4-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.biz4-item:hover .biz4-photo { transform: scale(1.04); }
.biz4-body {
  padding: 28px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.biz4-num {
  font-family: var(--font-en);
  font-size: .65rem;
  letter-spacing: .22em;
  color: var(--text-light);
  margin-bottom: 10px;
}
.biz4-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
}
.biz4-subbrand {
  font-size: .72rem;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--brown);
  display: inline-block;
  margin-top: 4px;
}
.biz4-desc {
  font-size: .85rem;
  line-height: 1.85;
  color: var(--text-sub);
  flex: 1;
  margin-bottom: 16px;
}
.biz4-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .04em;
  transition: opacity .2s;
  margin-top: auto;
  display: inline-block;
}
.biz4-link:hover { opacity: .6; }

/* レスポンシブ */
@media (max-width: 960px) {
  .biz4-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 560px) {
  .hero-full-h1 { font-size: 3.1rem !important; }
  .biz4-grid { grid-template-columns: 1fr; gap: 16px; }
  .section-on-forest { background-attachment: scroll; }
}

/* =============================================
   越境EC：CSS世界地図ビジュアル
   ============================================= */

.ec-map-wrap { background: #0a2540; padding: 0 !important; }

.ec-map-inner {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(140deg, #071e38 0%, #0d3560 45%, #164d80 100%);
  overflow: hidden;
}

/* 緯度経度グリッド */
.ec-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
}

/* 地球の曲線（緯線の弧） */
.ec-map-arcs {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 160% 55% at 63% 42%, transparent 34%, rgba(255,255,255,.04) 35%, transparent 36%),
    radial-gradient(ellipse 160% 55% at 63% 42%, transparent 52%, rgba(255,255,255,.04) 53%, transparent 54%),
    radial-gradient(ellipse 160% 55% at 63% 42%, transparent 70%, rgba(255,255,255,.04) 71%, transparent 72%),
    radial-gradient(ellipse 100% 35% at 63% 42%, rgba(193,154,107,.06) 0%, transparent 70%);
}

/* 日本の位置ビーコン */
.ec-map-beacon {
  position: absolute;
  top: 38%; left: 63%;
  transform: translate(-50%, -50%);
}
.ec-beacon-dot {
  display: block;
  width: 9px; height: 9px;
  background: #c9a25a;
  border-radius: 50%;
  position: relative; z-index: 3;
  box-shadow: 0 0 8px rgba(201,162,90,.7);
}
.ec-beacon-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  border: 1.5px solid rgba(201,162,90,.55);
  border-radius: 50%;
  animation: ecRingPulse 2.2s ease-out infinite;
}
.ec-beacon-ring--2 { animation-delay: 1.1s; }
@keyframes ecRingPulse {
  0%   { transform: translate(-50%,-50%) scale(.4); opacity: .9; }
  100% { transform: translate(-50%,-50%) scale(2.8); opacity: 0; }
}

/* JAPAN → WORLD テキスト */
.ec-map-label {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 9px;
  white-space: nowrap;
  background: rgba(0,0,0,.28);
  padding: 5px 14px; border-radius: 20px;
  backdrop-filter: blur(4px);
}
.ec-from, .ec-to {
  font-family: var(--font-en);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .18em; color: rgba(255,255,255,.88);
}
.ec-arrow { font-size: .85rem; color: #c9a25a; }

/* =============================================
   Hero 全画面：CTAボタン + ゴーストボタン
   ============================================= */

.hero-full-cta {
  display: flex;
  gap: 14px;
  justify-content: flex-start; /* MIMIGURI：左揃え */
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* 水彩背景用ゴーストボタン（暗い文字・半透明枠） */
.btn-ghost-forest {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.btn-ghost-forest:hover {
  background: rgba(255,255,255,0.32);
  border-color: rgba(255,255,255,0.80);
}

/* =============================================
   AI活用支援：タイポグラフィビジュアル
   ============================================= */

.ai-viz-wrap { background: #18301f; padding: 0 !important; }

.ai-viz-inner {
  position: relative;
  width: 100%; height: 100%; min-height: 200px;
  background: linear-gradient(155deg, #162d1e 0%, #2c5a3a 55%, #1e4530 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  gap: 10px;
}

.ai-viz-kv {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  line-height: 1;
}

.ai-viz-num {
  font-family: var(--font-en);
  font-size: 5rem; font-weight: 700;
  color: var(--gold);
  line-height: .85;
  letter-spacing: -.04em;
}

.ai-viz-txt {
  font-family: var(--font-en);
  font-size: 1.15rem; font-weight: 600;
  color: rgba(255,255,255,.72);
  letter-spacing: .14em;
  text-align: left; line-height: 1.3;
  padding-bottom: .2rem;
}

.ai-viz-sub {
  font-family: var(--font-en);
  font-size: .63rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .20em;
}

.ai-viz-line {
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: .55;
  margin-top: 4px;
}

/* =============================================
   Re-Organic：ブランド特集カード（全幅）
   ============================================= */

.biz-organic {
  margin-top: 40px;
  border-radius: 14px;
  background: #fffcf7;
  border: 1px solid rgba(193,154,107,0.22);
  box-shadow: 0 4px 20px rgba(140,90,20,.08);
  overflow: hidden;
}

.biz-org-label {
  background: linear-gradient(135deg, #2c5f3f 0%, #3d7a54 100%);
  padding: 10px 28px;
}

.biz-org-tag {
  font-family: var(--font-en);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.80);
}

.biz-org-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: stretch;
}

.biz-org-photo {
  overflow: hidden;
}
.biz-org-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
}

.biz-org-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.biz-org-brand {
  font-family: var(--font-en);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
}

.biz-org-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 700;
  color: #18271a;
  margin-bottom: 14px;
  line-height: 1.55;
  letter-spacing: .02em;
}

.biz-org-body p {
  font-size: .875rem;
  color: var(--text-sub);
  line-height: 1.95;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .biz-organic { border-radius: 10px; }
  .biz-org-inner { grid-template-columns: 1fr; }
  .biz-org-photo img { min-height: 170px; }
  .biz-org-body { padding: 20px 20px 24px; }
  .hero-full-cta { flex-direction: column; align-items: flex-start; }
  .hero-full-cta .btn { width: 220px; justify-content: center; }
  .hero-full-inner { padding: 0 24px 8vh 28px; } /* モバイル：余白縮小 */
}
