/* =============================================================
   FeBe Planning - Custom CSS
   Bootstrap 5 ベース + カスタムオーバーライド
   ============================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Shippori+Mincho:wght@400;500;700&family=Josefin+Sans:ital,wght@0,200;0,300;0,400;1,200;1,300&display=swap');

/* ── CSS Variables ── */
:root {
  --febe-bg:       #f7f4ef;
  --febe-bg2:      #efeae2;
  --febe-surface:  #ffffff;
  --febe-accent:   #8b6f47;
  --febe-accent2:  #c4a882;
  --febe-accent3:  #049d97;
  --febe-navy:     #1e2a3a;
  --febe-text:     #2c2318;
  --febe-text2:    #6b5c4a;
  --febe-text3:    #9e8e7e;
  --febe-border:   rgba(139, 111, 71, 0.15);
  --febe-font-jp:  'Noto Sans JP', sans-serif;
  --febe-font-min: 'Shippori Mincho', serif;
  --febe-font-en:  'Josefin Sans', sans-serif;
  --febe-transition: 0.3s ease;
}

/* ── Base ── */
body {
  background-color: var(--febe-bg);
  color: var(--febe-text);
  font-family: var(--febe-font-jp);
  font-size: 19px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* paper texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── Typography helpers ── */
.font-min  { font-family: var(--febe-font-min) !important; }
.font-en   { font-family: var(--febe-font-en)  !important; }
.font-jp   { font-family: var(--febe-font-jp)  !important; }

.text-accent  { color: var(--febe-accent)  !important; }
.text-accent2 { color: var(--febe-accent2) !important; }
.text-accent3 { color: var(--febe-accent3) !important; }
.text-muted-febe { color: var(--febe-text3) !important; }

/* ── Section Eyebrow ── */
.febe-eyebrow {
  font-family: var(--febe-font-en);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--febe-accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.febe-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--febe-accent);
  flex-shrink: 0;
}

/* ── Section Title ── */
.febe-section-title {
  font-family: var(--febe-font-min);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--febe-text);
  line-height: 1.4;
}

/* ── Buttons ── */
.btn-febe-primary {
  font-family: var(--febe-font-jp);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--febe-text);
  background-color: var(--febe-accent2);
  border: 1px solid transparent;
  padding: 14px 36px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all var(--febe-transition);
}
.btn-febe-primary:hover {
  background-color: transparent;
  border-color: var(--febe-accent2);
  color: var(--febe-accent2);
}

.btn-febe-dark {
  font-family: var(--febe-font-jp);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #ffffff;
  background-color: var(--febe-accent3);
  border: 1px solid var(--febe-accent3);
  padding: 14px 36px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all var(--febe-transition);
}
.btn-febe-dark:hover {
  background-color: var(--febe-accent);
  border-color: var(--febe-accent);
  color: #ffffff;
}

.btn-febe-white {
  font-family: var(--febe-font-jp);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--febe-accent3);
  background-color: #ffffff;
  border: 1px solid #ffffff;
  padding: 16px 48px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all var(--febe-transition);
}
.btn-febe-white:hover {
  background-color: var(--febe-accent2);
  border-color: var(--febe-accent2);
  color: var(--febe-accent3);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.btn-febe-ghost {
  font-family: var(--febe-font-jp);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--febe-transition);
}
.btn-febe-ghost::after { content: '↓'; }
.btn-febe-ghost:hover  { color: var(--febe-accent2); }

/* ── Mockup label (開発用・本番削除) ── */
.mockup-tag {
  background: rgba(139, 111, 71, 0.08);
  border-top: 1px dashed rgba(139, 111, 71, 0.3);
  border-bottom: 1px dashed rgba(139, 111, 71, 0.3);
  padding: 7px 20px;
  text-align: center;
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--febe-accent);
  text-transform: uppercase;
}

/* =============================================================
   NAVBAR
   ============================================================= */
#febeNavbar {
  background-color: rgba(247, 244, 239, 0.9) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--febe-border);
  padding: 14px 0;
  transition: all var(--febe-transition);
}

.navbar-logo {
  height: 52px;
  width: auto;
  display: block;
}

@media (max-width: 767.98px) {
  .navbar-logo {
    height: 40px;
  }
}

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--febe-text2) !important;
  padding: 6px 0 !important;
  margin: 0 18px;
  position: relative;
  transition: color var(--febe-transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--febe-accent);
  transition: width var(--febe-transition);
}
.navbar-nav .nav-link:hover { color: var(--febe-accent) !important; }
.navbar-nav .nav-link:hover::after { width: 100%; }

/* ドロップダウン */
.navbar-nav .dropdown-toggle::after { display: none; }
.navbar-nav .dropdown-toggle { padding-right: 0 !important; }
.febe-dropdown {
  border: 1px solid var(--febe-border);
  border-radius: 0;
  background: rgba(247,244,239,0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(44,35,24,0.12);
  padding: 8px 0;
  min-width: 220px;
  margin-top: 4px !important;
}
.febe-dropdown .dropdown-item {
  font-size: 14px;
  color: var(--febe-text2);
  letter-spacing: 0.04em;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.febe-dropdown .dropdown-item:hover,
.febe-dropdown .dropdown-item:focus {
  background: rgba(4,157,151,0.06);
  color: var(--febe-accent3);
}
.febe-dropdown .dropdown-item--all {
  font-family: var(--febe-font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--febe-accent);
  text-transform: uppercase;
  justify-content: space-between;
}
.febe-dropdown .dropdown-item--all:hover { color: var(--febe-accent3); }
.febe-dropdown .dropdown-item-icon { font-size: 16px; flex-shrink: 0; }
.febe-dropdown .dropdown-item-arrow { font-size: 13px; }
.febe-dropdown .dropdown-divider { border-color: var(--febe-border); margin: 4px 0; }
@media (max-width: 991.98px) {
  .febe-dropdown {
    border: none; box-shadow: none; background: transparent;
    padding: 0 0 0 16px; margin-top: 0 !important;
  }
  .febe-dropdown .dropdown-item { padding: 8px 0; font-size: 14px; }
  .febe-dropdown .dropdown-divider { display: none; }
  .febe-dropdown .dropdown-item--all { display: none; }
}

.navbar-toggler {
  border: 1px solid var(--febe-border);
  border-radius: 0;
}
.navbar-toggler:focus { box-shadow: none; }

/* =============================================================
   HERO
   ============================================================= */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

/* 動画背景 */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroZoom 12s ease-out forwards;
}
/* 画像使用時のオーバーレイ */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 42, 58, 0.72) 0%,
    rgba(30, 42, 58, 0.38) 45%,
    rgba(30, 42, 58, 0.55) 100%
  );
  z-index: 1;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to bottom, transparent, var(--febe-bg));
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 72px 120px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--febe-font-en);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(196, 168, 130, 0.9);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: rgba(196, 168, 130, 0.7);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--febe-font-min);
  font-size: clamp(44px, 6.2vw, 78px);
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  animation: fadeUp 0.9s 0.45s ease both;
}
.hero-title .text-gold {
  color: var(--febe-accent2);
  font-style: italic;
}

.hero-catch {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.12em;
  margin-bottom: 44px;
  animation: fadeUp 0.9s 0.58s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.7s ease both;
}

/* Hero bottom stats bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  background: rgba(30, 42, 58, 0.82);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(196, 168, 130, 0.2);
}
.hero-stats-bar .row { margin: 0; }
.hero-stat-col {
  padding: 20px 28px;
  border-right: 1px solid rgba(196, 168, 130, 0.12);
}
.hero-stat-col:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--febe-font-en);
  font-size: 26px;
  font-weight: 200;
  color: var(--febe-accent2);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  line-height: 1.6;
  display: block;
  margin-top: 4px;
}

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

/* Placeholder label（開発用） */
.hero-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 0;
  pointer-events: none;
}
.hero-placeholder-label .ph-circle {
  width: 72px; height: 72px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: rgba(255,255,255,0.15);
}
.hero-placeholder-label p {
  font-family: var(--febe-font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.18);
  text-transform: uppercase;
}

/* =============================================================
   PROBLEM SECTION
   ============================================================= */
#problem {
  background-color: var(--febe-surface);
  border-top: 1px solid var(--febe-border);
  border-bottom: 1px solid var(--febe-border);
  padding: 96px 0;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(139, 111, 71, 0.1);
  transition: background var(--febe-transition);
  border-radius: 4px;
}
.problem-item:hover { background-color: rgba(139, 111, 71, 0.04); }

.problem-num {
  font-family: var(--febe-font-en);
  font-size: 30px;
  font-weight: 200;
  color: var(--febe-accent2);
  line-height: 1;
  min-width: 36px;
  padding-top: 2px;
  flex-shrink: 0;
}
.problem-text strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--febe-text);
  margin-bottom: 3px;
  letter-spacing: 0.04em;
}
.problem-text span {
  font-size: 14px;
  color: var(--febe-text3);
  line-height: 1.7;
}

.problem-answer-box {
  background-color: var(--febe-accent3);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.problem-answer-box::before {
  content: '"';
  font-family: var(--febe-font-min);
  font-size: 200px;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: -50px; left: 10px;
  line-height: 1;
  pointer-events: none;
}
.problem-answer-title {
  font-family: var(--febe-font-min);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}
.problem-answer-title em {
  font-style: italic;
  color: var(--febe-accent2);
}
.problem-answer-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* =============================================================
   STRENGTHS SECTION
   ============================================================= */
#strengths {
  background-color: var(--febe-bg);
  padding: 96px 0;
}

.strengths-intro-sub {
  font-size: 15px;
  color: var(--febe-text2);
  line-height: 1.9;
  text-align: right;
}

/* photo + text row */
.strength-row {
  display: flex;
  border: 1px solid var(--febe-border);
  border-bottom: none;
  overflow: hidden;
}
.strength-row:last-of-type { border-bottom: 1px solid var(--febe-border); }

.strength-photo-col {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  min-height: 300px;
  overflow: hidden;
}
.strength-photo-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: var(--febe-bg2);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.strength-row:hover .strength-photo-inner { transform: scale(1.04); }

/* placeholder tones */
.str-ph-1 { background: linear-gradient(135deg, #d4c9b8 0%, #c0b49e 100%); }
.str-ph-2 { background: linear-gradient(135deg, #c8bfb0 0%, #b8ad9c 100%); }
.str-ph-3 { background: linear-gradient(135deg, #bfc8c0 0%, #9aada0 100%); }
.str-ph-4 { background: linear-gradient(135deg, #b8c4cf 0%, #90a4b0 100%); }

.str-ph-num {
  position: absolute;
  top: 16px; left: 20px;
  font-family: var(--febe-font-en);
  font-size: 52px;
  font-weight: 200;
  color: rgba(255,255,255,0.22);
  line-height: 1;
}
.str-ph-label {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(44,35,24,0.35);
  text-transform: uppercase;
}
.str-ph-icon { font-size: 28px; opacity: 0.3; }

.strength-text-col {
  flex: 0 0 50%;
  max-width: 50%;
  background-color: var(--febe-surface);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.str-label {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--febe-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.str-title {
  font-family: var(--febe-font-min);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 400;
  color: var(--febe-text);
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 16px;
}
.str-desc {
  font-size: 15px;
  color: var(--febe-text2);
  line-height: 2;
}
.str-tag {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--febe-accent3);
  border: 1px solid var(--febe-border);
  padding: 6px 16px;
  text-transform: uppercase;
  cursor: default;
  transition: all var(--febe-transition);
}
.str-tag:hover {
  background: var(--febe-accent3);
  color: #fff;
  border-color: var(--febe-accent3);
}

/* reverse layout */
.strength-row.reverse .strength-photo-col { order: 2; }
.strength-row.reverse .strength-text-col  { order: 1; }

/* =============================================================
   SERVICES SECTION
   ============================================================= */
#services {
  background-color: var(--febe-bg2);
  padding: 96px 0;
  border-top: 1px solid var(--febe-border);
  border-bottom: 1px solid var(--febe-border);
}

.services-header-sub {
  font-size: 14px;
  color: var(--febe-text3);
  letter-spacing: 0.06em;
}

.svc-card {
  background-color: var(--febe-surface);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: background var(--febe-transition);
  border: 1px solid var(--febe-border);
  border-radius: 0;
  cursor: default;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--febe-accent);
  transition: width 0.4s ease;
}
.svc-card:hover { background-color: var(--febe-bg); }
.svc-card:hover::after { width: 100%; }

.svc-icon {
  font-size: 26px;
  display: block;
  margin-bottom: 18px;
}
.svc-num {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--febe-accent2);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.svc-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--febe-text);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  line-height: 1.5;
}
.svc-desc {
  font-size: 14px;
  color: var(--febe-text2);
  line-height: 1.9;
  margin-bottom: 0;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--febe-accent);
  text-decoration: none;
  text-transform: uppercase;
  transition: gap var(--febe-transition);
}
.svc-link::after { content: '→'; }
.svc-link:hover { gap: 10px; }

/* =============================================================
   FLOW SECTION
   ============================================================= */
#flow {
  background-color: var(--febe-bg);
  padding: 96px 0;
}

.flow-wrapper {
  position: relative;
  padding-top: 8px;
}
/* connector line */
.flow-connector {
  position: absolute;
  top: 48px; /* circle center */
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--febe-accent) 0%, var(--febe-accent2) 100%);
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.flow-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid var(--febe-accent);
  background: var(--febe-surface);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--febe-font-en);
  font-size: 22px;
  font-weight: 200;
  color: var(--febe-accent);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  transition: all var(--febe-transition);
}
.flow-step:hover .flow-circle {
  background: var(--febe-accent);
  color: #fff;
}

.flow-label {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--febe-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.flow-title {
  font-family: var(--febe-font-min);
  font-size: 17px;
  font-weight: 400;
  color: var(--febe-text);
  margin-bottom: 10px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.flow-desc {
  font-size: 13px;
  color: var(--febe-text3);
  line-height: 1.8;
}

/* =============================================================
   CTA SECTION
   ============================================================= */
#cta {
  background-color: var(--febe-accent3);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta::before {
  content: 'CONTACT';
  font-family: var(--febe-font-en);
  font-size: 160px;
  font-weight: 200;
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}
#cta::after {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,168,130,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-eyebrow {
  font-family: var(--febe-font-en);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--febe-accent2);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}
.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: rgba(196,168,130,0.5);
}

.cta-title {
  font-family: var(--febe-font-min);
  font-size: clamp(28px, 3.7vw, 46px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  margin-bottom: 44px;
  line-height: 2;
  position: relative;
  z-index: 1;
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.cta-info-item {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-info-item strong {
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

/* =============================================================
   FOOTER
   ============================================================= */
#febeFooter {
  background-color: var(--febe-navy);
  padding: 64px 0 32px;
  border-top: 3px solid var(--febe-accent);
}

.footer-brand-en {
  font-family: var(--febe-font-en);
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--febe-accent2);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-brand-jp {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 2;
}

.footer-col-head {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--febe-accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-nav-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color var(--febe-transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-nav-list a::before { content: '/'; font-size: 11px; color: rgba(196,168,130,0.3); }
.footer-nav-list a:hover { color: var(--febe-accent2); }

.footer-contact-info {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 2.4;
}
.footer-contact-info a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--febe-transition);
}
.footer-contact-info a:hover { color: var(--febe-accent2); }

.footer-divider {
  border-color: rgba(255,255,255,0.07);
  margin: 40px 0 20px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

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

/* タブレット */
@media (max-width: 991.98px) {
  .hero-content { padding: 100px 40px 140px; }
  .hero-stat-col { padding: 16px 18px; }
  .hero-stat-num { font-size: 22px; }

  .strengths-intro-sub { text-align: left; margin-top: 12px; }

  .strength-row,
  .strength-row.reverse { flex-direction: column; }
  .strength-photo-col,
  .strength-photo-inner { min-height: 240px; position: relative; }
  .strength-photo-col { max-width: 100%; flex: 0 0 100%; }
  .strength-photo-inner { position: relative; height: 240px; }
  .strength-text-col { max-width: 100%; flex: 0 0 100%; padding: 36px 32px; }
  .strength-row.reverse .strength-photo-col,
  .strength-row.reverse .strength-text-col { order: unset; }
}

/* スマホ */
@media (max-width: 767.98px) {
  section { padding: 72px 0; }

  /* Navbar */
  #febeNavbar { padding: 12px 0; }
  .navbar-collapse { background: rgba(247,244,239,0.98); padding: 16px 24px; }
  .navbar-nav .nav-link { margin: 6px 0; }

  /* Hero */
  .hero-content { padding: 90px 28px 160px; max-width: 100%; }
  .hero-stats-bar .row { flex-wrap: nowrap; overflow-x: auto; }
  .hero-stat-col { min-width: 130px; }

  /* Problem */
  #problem { padding: 64px 0; }
  .problem-answer-box { padding: 40px 28px; margin-top: 32px; }

  /* Strengths */
  .strength-text-col { padding: 28px 24px; }

  /* Services */
  .svc-card { padding: 28px 22px; }

  /* Flow */
  .flow-connector { display: none; }
  .flow-step { padding: 0 8px 32px; }

  /* CTA */
  #cta { padding: 72px 0; }
  .cta-contact-info { flex-direction: column; align-items: center; gap: 12px; }

  /* Footer */
  #febeFooter { padding: 48px 0 24px; }
  .footer-col-head { margin-top: 32px; }
}

/* =============================================================
   UTILITY
   ============================================================= */
.section-divider {
  height: 1px;
  background: var(--febe-border);
  border: none;
}

/* =============================================================
   ABOUT PAGE — 会社紹介ページ固有スタイル
   ============================================================= */

/* ページヘッダー */
.page-header {
  padding: 160px 0 80px;
  background-color: var(--febe-accent3);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: var(--page-header-label, 'ABOUT');
  font-family: var(--febe-font-en);
  font-size: 140px;
  font-weight: 200;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  letter-spacing: 0.1em;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--febe-bg));
}
.page-header-eyebrow {
  font-family: var(--febe-font-en);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--febe-accent2);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.page-header-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--febe-accent2);
  flex-shrink: 0;
}
.page-header-title {
  font-family: var(--febe-font-min);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.08em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.page-header-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* ミッションセクション */
#mission {
  background-color: var(--febe-bg);
  padding: 96px 0;
}
.mission-quote {
  font-family: var(--febe-font-min);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 400;
  color: var(--febe-text);
  line-height: 1.9;
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 32px;
}
.mission-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  background: var(--febe-accent);
}
.mission-quote em {
  font-style: italic;
  color: var(--febe-accent);
}
.mission-body {
  font-size: 16px;
  color: var(--febe-text2);
  line-height: 2.2;
}
.mission-body p + p { margin-top: 1.2em; }

/* 代表挨拶セクション */
#greeting {
  background-color: var(--febe-surface);
  border-top: 1px solid var(--febe-border);
  border-bottom: 1px solid var(--febe-border);
  padding: 96px 0;
}
.greeting-photo-frame {
  position: relative;
}
.greeting-photo-inner {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #d4c9b8 0%, #b8ab96 100%);
  background-size: cover;
  background-position: top center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
}
.greeting-photo-inner .ph-icon { font-size: 36px; opacity: 0.3; }
.greeting-photo-inner .ph-label {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(44,35,24,0.35);
  text-transform: uppercase;
}
.greeting-nameplate {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(90,66,48,0.92);
  padding: 16px 20px;
}
.greeting-nameplate-title {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--febe-accent2);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.greeting-nameplate-name {
  font-family: var(--febe-font-min);
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.greeting-nameplate-name-en {
  font-family: var(--febe-font-en);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.greeting-text {
  font-size: 16px;
  color: var(--febe-text2);
  line-height: 2.3;
}
.greeting-text p + p { margin-top: 1.4em; }
.greeting-text strong { color: var(--febe-text); font-weight: 500; }
.greeting-sign {
  font-family: var(--febe-font-min);
  font-size: 18px;
  color: var(--febe-text);
  letter-spacing: 0.12em;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--febe-border);
}
.greeting-sign span {
  font-size: 14px;
  color: var(--febe-text3);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

/* 代表プロフィール */
#profile {
  background-color: var(--febe-bg2);
  padding: 96px 0;
}
.profile-card {
  background: var(--febe-surface);
  border: 1px solid var(--febe-border);
  padding: 48px;
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.profile-label {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--febe-accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.profile-value {
  font-size: 16px;
  color: var(--febe-text2);
  line-height: 1.8;
}
.profile-value strong { font-size: 17px; color: var(--febe-text); font-weight: 500; }
.profile-divider { border: none; border-top: 1px solid var(--febe-border); margin: 24px 0; }

/* 経歴タイムライン */
.timeline {
  position: relative;
  padding-left: 24px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--febe-border);
}
.timeline-item {
  position: relative;
  padding-bottom: 24px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--febe-accent2);
  border: 1px solid var(--febe-accent);
}
.timeline-year {
  font-family: var(--febe-font-en);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--febe-accent);
  margin-bottom: 3px;
}
.timeline-event {
  font-size: 16px;
  color: var(--febe-text2);
  line-height: 1.7;
}

/* 会社概要セクション */
#company {
  background-color: var(--febe-bg);
  padding: 96px 0;
  border-top: 1px solid var(--febe-border);
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr { border-bottom: 1px solid var(--febe-border); }
.company-table tr:first-child { border-top: 1px solid var(--febe-border); }
.company-table th {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--febe-accent);
  text-transform: uppercase;
  padding: 22px 24px 22px 0;
  width: 180px;
  vertical-align: top;
  font-weight: 400;
  white-space: nowrap;
}
.company-table td {
  font-size: 16px;
  color: var(--febe-text2);
  padding: 22px 0;
  line-height: 1.9;
  vertical-align: top;
}
.company-table td strong { color: var(--febe-text); font-weight: 500; }
.company-table td a {
  color: var(--febe-accent);
  text-decoration: none;
  transition: color 0.2s;
}
.company-table td a:hover { color: var(--febe-accent3); }

/* 提携専門家セクション */
#partners {
  background-color: var(--febe-surface);
  border-top: 1px solid var(--febe-border);
  border-bottom: 1px solid var(--febe-border);
  padding: 96px 0;
}
.partner-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--febe-border);
  margin-top: 56px;
}
.partner-card {
  background: var(--febe-surface);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.partner-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--febe-accent);
  transition: width 0.4s ease;
}
.partner-card:hover { background: var(--febe-bg); }
.partner-card:hover::after { width: 100%; }
.partner-icon { font-size: 32px; display: block; margin-bottom: 16px; }
.partner-type {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--febe-accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.partner-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--febe-text);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  line-height: 1.5;
}
.partner-desc { font-size: 15px; color: var(--febe-text3); line-height: 1.9; }

/* アクセスセクション */
#access {
  background-color: var(--febe-bg2);
  padding: 96px 0;
}
.access-info-block {
  background: var(--febe-surface);
  border: 1px solid var(--febe-border);
  padding: 40px;
}
.access-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(139,111,71,0.08);
  align-items: flex-start;
}
.access-item:last-child { border-bottom: none; }
.access-item-label {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--febe-accent);
  text-transform: uppercase;
  min-width: 80px;
  padding-top: 2px;
  flex-shrink: 0;
}
.access-item-value { font-size: 16px; color: var(--febe-text2); line-height: 1.8; }
.access-item-value a { color: var(--febe-accent); text-decoration: none; }
.access-item-value a:hover { color: var(--febe-accent3); }
.map-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--febe-bg2);
  border: 1px solid var(--febe-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.map-placeholder { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.map-placeholder-icon { font-size: 32px; opacity: 0.25; }
.map-placeholder-label {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--febe-text3);
  text-transform: uppercase;
}

/* About レスポンシブ */
@media (max-width: 991.98px) {
  .partner-cards { grid-template-columns: repeat(2, 1fr); }
  .profile-grid  { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 767.98px) {
  .page-header { padding: 120px 0 60px; }
  #mission, #greeting, #profile, #company,
  #partners, #access { padding: 64px 0; }
  .profile-card { padding: 28px 24px; }
  .partner-cards { grid-template-columns: 1fr 1fr; }
  .company-table th { width: 110px; font-size: 8px; }
  .access-info-block { padding: 28px 22px; }
}
@media (max-width: 575.98px) {
  .partner-cards { grid-template-columns: 1fr; }
}

/* =============================================================
   CONTACT PAGE — お問い合わせページ固有スタイル
   ============================================================= */

/* コンタクトセクション */
#contact-main {
  background-color: var(--febe-bg);
  padding: 96px 0;
}

/* サイドの問い合わせ情報 */
.contact-info-block {
  background: var(--febe-surface);
  border: 1px solid var(--febe-border);
  padding: 40px 36px;
}
.contact-info-head {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--febe-accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--febe-border);
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(139,111,71,0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--febe-accent);
  text-transform: uppercase;
}
.contact-info-value {
  font-size: 16px;
  color: var(--febe-text2);
  line-height: 1.8;
}
.contact-info-value a {
  color: var(--febe-text2);
  text-decoration: none;
  transition: color var(--febe-transition);
}
.contact-info-value a:hover { color: var(--febe-accent); }
.contact-info-tel {
  font-family: var(--febe-font-en);
  font-size: 22px;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: var(--febe-text);
}

/* 注意書きボックス */
.contact-notice {
  background: rgba(139,111,71,0.05);
  border-left: 3px solid var(--febe-accent2);
  padding: 16px 20px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--febe-text3);
  line-height: 1.9;
}

/* フォームラッパー */
.contact-form-wrap {
  background: var(--febe-surface);
  border: 1px solid var(--febe-border);
  padding: 48px;
}

/* ── Contact Form 7 カスタムスタイル ── */
.wpcf7 .form-row {
  margin-bottom: 24px;
}
.wpcf7 label,
.wpcf7 .contact-label {
  display: block;
  font-family: var(--febe-font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--febe-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wpcf7 .required-mark {
  color: #c0392b;
  margin-left: 4px;
  font-size: 11px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: var(--febe-bg);
  border: 1px solid var(--febe-border);
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--febe-font-jp);
  font-size: 15px;
  color: var(--febe-text);
  transition: border-color var(--febe-transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--febe-accent);
  background: var(--febe-surface);
}
.wpcf7 textarea {
  min-height: 160px;
  resize: vertical;
}
.wpcf7 input[type="submit"] {
  font-family: var(--febe-font-jp);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #ffffff;
  background-color: var(--febe-accent3);
  border: 1px solid var(--febe-accent3);
  padding: 16px 48px;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--febe-transition);
  display: inline-block;
  width: 100%;
  margin-top: 8px;
}
.wpcf7 input[type="submit"]:hover {
  background-color: var(--febe-accent);
  border-color: var(--febe-accent);
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}
.wpcf7 .wpcf7-response-output {
  font-size: 15px;
  padding: 14px 18px;
  margin-top: 20px;
  border-radius: 0;
}
.wpcf7 .wpcf7-mail-sent-ok {
  background: rgba(4,157,151,0.08);
  border: 1px solid var(--febe-accent3);
  color: var(--febe-accent3);
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng {
  background: rgba(192,57,43,0.06);
  border: 1px solid #c0392b;
  color: #c0392b;
}

/* Contact レスポンシブ */
@media (max-width: 991.98px) {
  #contact-main { padding: 72px 0; }
  .contact-form-wrap { padding: 36px 28px; }
  .contact-info-block { padding: 32px 24px; margin-top: 40px; }
}
@media (max-width: 767.98px) {
  #contact-main { padding: 64px 0; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* =============================================================
   SERVICE PAGE — サービスページ固有スタイル
   ============================================================= */

/* パンくず */
.breadcrumb-wrap {
  background: var(--febe-bg2);
  border-bottom: 1px solid var(--febe-border);
  padding: 14px 0;
}
.febe-breadcrumb {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.febe-breadcrumb li {
  font-size: 13px; color: var(--febe-text3); letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 6px;
}
.febe-breadcrumb li::after { content: '/'; color: var(--febe-accent2); font-size: 11px; }
.febe-breadcrumb li:last-child::after { display: none; }
.febe-breadcrumb a { color: var(--febe-text3); text-decoration: none; transition: color 0.2s; }
.febe-breadcrumb a:hover { color: var(--febe-accent); }
.febe-breadcrumb li.active { color: var(--febe-text2); }

/* セクション背景 */
.svc-section      { padding: 80px 0; background: var(--febe-bg); }
.svc-section-alt  { padding: 80px 0; background: var(--febe-surface); border-top: 1px solid var(--febe-border); border-bottom: 1px solid var(--febe-border); }
.svc-section-dark { padding: 80px 0; background: var(--febe-bg2); border-top: 1px solid var(--febe-border); }

/* リードブロック */
.lead-block {
  background: var(--febe-surface);
  border-left: 3px solid var(--febe-accent);
  padding: 32px 40px;
  margin-top: 40px;
}
.lead-block p { font-size: 17px; color: var(--febe-text2); line-height: 2.2; margin: 0; }
.lead-block p + p { margin-top: 1em; }
.lead-block strong { color: var(--febe-text); font-weight: 500; }

/* ターゲットカード */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--febe-border);
  margin-top: 48px;
}
.target-card {
  background: var(--febe-surface);
  padding: 32px 28px;
  position: relative;
}
.target-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--febe-accent), transparent);
}
.target-icon  { font-size: 28px; margin-bottom: 14px; display: block; }
.target-title { font-size: 16px; font-weight: 500; color: var(--febe-text); letter-spacing: 0.04em; margin-bottom: 8px; line-height: 1.5; }
.target-desc  { font-size: 16px; color: var(--febe-text3); line-height: 1.9; }

/* 業務内容グリッド */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--febe-border);
}
.work-item {
  background: var(--febe-surface);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.25s;
}
.work-item:hover { background: var(--febe-bg); }
.work-item-icon  { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.work-item-num   { font-family: var(--febe-font-en); font-size: 10px; letter-spacing: 0.3em; color: var(--febe-accent); text-transform: uppercase; margin-bottom: 6px; }
.work-item-title { font-size: 16px; font-weight: 500; color: var(--febe-text); margin-bottom: 6px; letter-spacing: 0.04em; }
.work-item-desc  { font-size: 16px; color: var(--febe-text2); line-height: 1.9; }
.work-category-bar {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 20px; margin-bottom: 1px;
}
.work-category-bar .cat-en { font-family: var(--febe-font-en); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; }
.work-category-bar .cat-jp { font-size: 16px; font-weight: 500; letter-spacing: 0.06em; }

/* クラウドバッジ */
.cloud-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.cloud-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border: 1px solid var(--febe-border);
  background: var(--febe-surface); font-size: 16px; font-weight: 500;
  color: var(--febe-text2); letter-spacing: 0.04em; transition: all 0.25s;
}
.cloud-badge:hover { border-color: var(--febe-accent); color: var(--febe-accent); background: rgba(139,111,71,0.04); }
.cloud-badge-icon { font-size: 20px; }

/* フロー */
.flow-list { margin-top: 48px; display: flex; flex-direction: column; gap: 1px; }
.flow-list-item { display: flex; align-items: stretch; background: var(--febe-border); }
.flow-list-num {
  background: var(--febe-accent3); color: var(--febe-accent2);
  font-family: var(--febe-font-en); font-size: 22px; font-weight: 200;
  width: 72px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; letter-spacing: 0.05em;
}
.flow-list-body { background: var(--febe-surface); flex: 1; padding: 24px 32px; display: flex; align-items: center; gap: 20px; }
.flow-list-icon  { font-size: 24px; flex-shrink: 0; }
.flow-list-title { font-size: 17px; font-weight: 500; color: var(--febe-text); letter-spacing: 0.04em; margin-bottom: 4px; }
.flow-list-desc  { font-size: 16px; color: var(--febe-text2); line-height: 1.8; }
.flow-list-arrow { background: var(--febe-bg2); display: flex; align-items: center; justify-content: center; padding: 0 20px; color: var(--febe-accent2); font-size: 20px; }

/* メリットカード */
.merit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.merit-card {
  background: var(--febe-surface); border: 1px solid var(--febe-border);
  padding: 36px 28px; position: relative; overflow: hidden; transition: box-shadow 0.3s;
}
.merit-card:hover { box-shadow: 0 8px 32px rgba(139,111,71,0.1); }
.merit-card-num {
  font-family: var(--febe-font-en); font-size: 56px; font-weight: 200;
  color: rgba(196,168,130,0.15); position: absolute; top: -8px; right: 12px; line-height: 1;
}
.merit-card-icon  { font-size: 30px; margin-bottom: 16px; display: block; }
.merit-card-title { font-family: var(--febe-font-min); font-size: 19px; font-weight: 400; color: var(--febe-text); letter-spacing: 0.06em; margin-bottom: 10px; line-height: 1.5; }
.merit-card-desc  { font-size: 16px; color: var(--febe-text2); line-height: 2; }

/* FAQ アコーディオン */
.febe-accordion .accordion-button {
  font-size: 16px; font-weight: 500; letter-spacing: 0.04em; color: var(--febe-text);
  background: var(--febe-surface); border-radius: 0 !important; box-shadow: none;
  padding: 20px 24px; border-bottom: 1px solid var(--febe-border);
}
.febe-accordion .accordion-button::before {
  content: 'Q'; font-family: var(--febe-font-en); font-size: 15px; font-weight: 400;
  color: var(--febe-accent); letter-spacing: 0.1em; margin-right: 16px; flex-shrink: 0;
}
.febe-accordion .accordion-button:not(.collapsed) { background: rgba(4,157,151,0.04); color: var(--febe-accent3); }
.febe-accordion .accordion-button::after { filter: none; background-image: none; content: '+'; font-size: 20px; font-weight: 300; color: var(--febe-accent); transform: none; width: auto; height: auto; }
.febe-accordion .accordion-button:not(.collapsed)::after { content: '−'; }
.febe-accordion .accordion-item { border: none; border-bottom: 1px solid var(--febe-border); border-radius: 0 !important; }
.febe-accordion .accordion-item:first-child { border-top: 1px solid var(--febe-border); }
.febe-accordion .accordion-body { background: var(--febe-bg); padding: 20px 24px 20px 56px; font-size: 16px; color: var(--febe-text2); line-height: 2; }
.febe-accordion .accordion-body::before { content: 'A. '; font-family: var(--febe-font-en); font-size: 14px; font-weight: 400; color: var(--febe-accent3); }

/* 関連サービス */
.other-services {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--febe-border); margin-top: 48px;
}
.other-svc-card {
  background: var(--febe-surface); padding: 28px 24px; text-decoration: none;
  display: flex; align-items: center; gap: 16px; transition: background 0.25s;
  position: relative; overflow: hidden;
}
.other-svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: var(--febe-accent); transition: width 0.35s; }
.other-svc-card:hover { background: var(--febe-bg); }
.other-svc-card:hover::after { width: 100%; }
.other-svc-icon  { font-size: 26px; flex-shrink: 0; }
.other-svc-label { font-family: var(--febe-font-en); font-size: 10px; letter-spacing: 0.25em; color: var(--febe-accent); text-transform: uppercase; margin-bottom: 4px; }
.other-svc-title { font-size: 16px; font-weight: 500; color: var(--febe-text); letter-spacing: 0.04em; }
.other-svc-arrow { margin-left: auto; font-size: 16px; color: var(--febe-accent2); flex-shrink: 0; transition: transform 0.25s; }
.other-svc-card:hover .other-svc-arrow { transform: translateX(4px); }

/* Service レスポンシブ */
@media (max-width: 991.98px) {
  .target-grid   { grid-template-columns: repeat(2, 1fr); }
  .merit-grid    { grid-template-columns: repeat(2, 1fr); }
  .other-services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
  .page-header { padding: 120px 0 60px; }
  .svc-section, .svc-section-alt, .svc-section-dark { padding: 56px 0; }
  .lead-block { padding: 24px 22px; }
  .target-grid, .work-grid, .merit-grid, .other-services { grid-template-columns: 1fr; }
  .flow-list-body  { flex-direction: column; gap: 10px; padding: 20px 22px; }
  .flow-list-arrow { display: none; }
  .law-banner { flex-direction: column; gap: 12px; padding: 24px 22px; }
}

/* ── 法改正バナー ── */
.law-banner {
  background: var(--febe-accent3);
  padding: 28px 36px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
}
.law-banner-icon  { font-size: 28px; flex-shrink: 0; }
.law-banner-title { font-family: var(--febe-font-min); font-size: 18px; color: var(--febe-accent2); letter-spacing: 0.06em; margin-bottom: 8px; }
.law-banner-desc  { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 2; margin: 0; }

/* ── チェックリスト ── */
.check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid rgba(139,111,71,0.08);
  font-size: 16px; color: var(--febe-text2); line-height: 1.8;
}
.check-list li:first-child { padding-top: 0; }
.check-list li:last-child  { border-bottom: none; padding-bottom: 0; }
.check-list li::before {
  content: '✓';
  font-family: var(--febe-font-en); font-size: 14px;
  color: var(--febe-accent); font-weight: 500;
  flex-shrink: 0; margin-top: 2px;
}

/* ── 業務内容（WYSIWYGラッパー）── */
.svc-work-body { font-size: 16px; color: var(--febe-text2); line-height: 2; }
.svc-work-body p { margin-bottom: 1em; }

/* ================================================================
   febe-service.css 統合スタイル（consulting / data / insurance / web 共用）
================================================================ */

/* サービスページ共通リードテキスト */
.svc-lead-text { font-size: 16px; color: var(--febe-text3); margin-top: 12px; letter-spacing: 0.04em; line-height: 1.9; }

/* ヒーロー画像プレースホルダー */
.svc-hero-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg,#c8bfb0 0%,#b8ad9c 50%,#a89880 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; border: 1px solid var(--febe-border);
  position: relative; overflow: hidden;
}
.svc-hero-img-label { font-family: var(--febe-font-en); font-size: 10px; letter-spacing: 0.3em; color: rgba(44,35,24,0.35); text-transform: uppercase; }
.svc-hero-badge { position: absolute; bottom: 0; right: 0; background: rgba(90,66,48,0.88); padding: 10px 18px; font-family: var(--febe-font-en); font-size: 10px; letter-spacing: 0.3em; color: var(--febe-accent2); text-transform: uppercase; }

/* ポイントバッジボックス */
.badge-box { padding: 16px 14px; text-align: center; display: flex; flex-direction: column; gap: 4px; }
.badge-box-title { font-family: var(--febe-font-min); font-size: 18px; }
.badge-box-sub   { font-size: 11px; letter-spacing: 0.05em; }
.badge-box.bg-accent3 { background: var(--febe-accent3); }
.badge-box.bg-accent3 .badge-box-title { color: var(--febe-accent2); }
.badge-box.bg-accent3 .badge-box-sub   { color: rgba(255,255,255,0.6); }
.badge-box.bg-accent  { background: var(--febe-accent); }
.badge-box.bg-accent  .badge-box-title { color: #fff; }
.badge-box.bg-accent  .badge-box-sub   { color: rgba(255,255,255,0.7); }
.badge-box.bg-accent2 { background: var(--febe-accent2); }
.badge-box.bg-accent2 .badge-box-title { color: var(--febe-text); }
.badge-box.bg-accent2 .badge-box-sub   { color: var(--febe-text2); }
.badge-box.bg-accent2.dark-text .badge-box-title { color: var(--febe-accent3); }
.badge-box.bg-accent2.dark-text .badge-box-sub   { color: var(--febe-accent3); opacity: 0.8; }

/* インフォバナー（注記・注意） */
.info-banner {
  background: rgba(4,157,151,0.08); border: 1px solid rgba(4,157,151,0.25);
  padding: 24px 32px; display: flex; align-items: flex-start; gap: 18px; margin-top: 40px;
}
.info-banner-icon  { font-size: 24px; flex-shrink: 0; }
.info-banner-title { font-family: var(--febe-font-min); font-size: 17px; color: var(--febe-text); letter-spacing: 0.04em; margin-bottom: 8px; }
.info-banner-desc  { font-size: 16px; color: var(--febe-text2); line-height: 2; margin: 0; }
@media (max-width: 767.98px) { .info-banner { flex-direction: column; gap: 12px; padding: 20px 18px; } }

/* データタグ一覧 */
.work-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.work-tag {
  padding: 6px 16px; border: 1px solid var(--febe-border);
  background: var(--febe-surface); font-size: 15px; color: var(--febe-text2);
  letter-spacing: 0.04em; transition: all 0.2s;
}
.work-tag:hover { border-color: var(--febe-accent); color: var(--febe-accent); }

/* 保険カードグリッド */
.insurance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.insurance-card {
  background: var(--febe-surface); border: 1px solid var(--febe-border);
  padding: 32px 28px; transition: box-shadow 0.3s;
}
.insurance-card:hover { box-shadow: 0 8px 32px rgba(139,111,71,0.1); }
.insurance-card-type  { font-family: var(--febe-font-en); font-size: 10px; letter-spacing: 0.3em; color: var(--febe-accent); text-transform: uppercase; margin-bottom: 12px; }
.insurance-card-icon  { font-size: 30px; display: block; margin-bottom: 12px; }
.insurance-card-title { font-family: var(--febe-font-min); font-size: 20px; font-weight: 400; color: var(--febe-text); letter-spacing: 0.06em; margin-bottom: 12px; }
.insurance-card-desc  { font-size: 16px; color: var(--febe-text2); line-height: 2; margin-bottom: 16px; }
.insurance-card-list  { list-style: none; padding: 0; margin: 0; }
.insurance-card-list li { font-size: 16px; color: var(--febe-text2); padding: 6px 0; border-bottom: 1px solid var(--febe-border); display: flex; align-items: center; gap: 8px; }
.insurance-card-list li:last-child { border-bottom: none; }
.insurance-card-list li::before { content: '—'; font-family: var(--febe-font-en); color: var(--febe-accent2); font-size: 11px; flex-shrink: 0; }
@media (max-width: 767.98px) { .insurance-grid { grid-template-columns: 1fr; } }

/* Web制作フロー（ステップリスト） */
.step-flow { display: flex; flex-direction: column; gap: 1px; margin-top: 48px; }
.step-item { display: flex; align-items: stretch; background: var(--febe-border); }
.step-num {
  background: var(--febe-accent3); color: var(--febe-accent2);
  font-family: var(--febe-font-en); font-size: 22px; font-weight: 200;
  width: 72px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; letter-spacing: 0.05em;
}
.step-body  { background: var(--febe-surface); flex: 1; padding: 24px 32px; }
.step-title { font-size: 17px; font-weight: 500; color: var(--febe-text); letter-spacing: 0.04em; margin-bottom: 6px; }
.step-desc  { font-size: 16px; color: var(--febe-text2); line-height: 1.9; margin: 0; }

/* =============================================================
   PRICE PAGE — 料金案内ページ固有スタイル
   ============================================================= */

/* ── アンカーナビ ── */
.price-anchor-nav {
  background: var(--febe-surface);
  border-bottom: 1px solid var(--febe-border);
  padding: 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}
.price-anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.price-anchor-list::-webkit-scrollbar { display: none; }
.price-anchor-btn {
  font-family: var(--febe-font-jp);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--febe-text2);
  text-decoration: none;
  padding: 16px 20px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all var(--febe-transition);
  flex-shrink: 0;
}
.price-anchor-btn:hover {
  color: var(--febe-accent3);
  border-bottom-color: var(--febe-accent3);
  background: rgba(4,157,151,0.04);
}
@media (max-width: 575.98px) {
  .price-anchor-nav { top: 60px; }
  .price-anchor-btn { font-size: 12px; padding: 13px 14px; }
}

/* ── セクションリード ── */
.price-section-lead {
  font-size: 16px;
  color: var(--febe-text2);
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ── 料金テーブル ── */
.febe-price-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-size: 16px;
  border: 1px solid var(--febe-border);
}
.febe-price-table thead tr {
  background: var(--febe-accent3);
}
.febe-price-table thead th {
  font-family: var(--febe-font-jp);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #ffffff;
  padding: 14px 18px;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.febe-price-table thead th small {
  display: block;
  font-size: 11px;
  font-weight: 300;
  opacity: 0.8;
  margin-top: 2px;
}
.febe-price-table tbody tr {
  border-bottom: 1px solid var(--febe-border);
  transition: background var(--febe-transition);
}
.febe-price-table tbody tr:nth-child(even) {
  background: rgba(247,244,239,0.6);
}
.febe-price-table tbody tr:hover {
  background: rgba(4,157,151,0.04);
}
.febe-price-table td {
  padding: 14px 18px;
  border: none;
  border-bottom: 1px solid var(--febe-border);
  color: var(--febe-text);
  vertical-align: middle;
  text-align: center;
}
.febe-price-table td small {
  font-size: 12px;
  color: var(--febe-text3);
  margin-left: 2px;
}

/* 売上・従業員数ラベル列 */
.price-range {
  text-align: left !important;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--febe-text2) !important;
  background: rgba(247,244,239,0.8);
  white-space: nowrap;
  width: 1%;
}

/* 強調列（青色・インボイス等）*/
.price-highlight {
  color: var(--febe-accent3) !important;
  font-weight: 500;
}

/* お問い合わせ行 */
.price-inquire-row td { color: var(--febe-text3) !important; font-size: 14px; letter-spacing: 0.06em; }

/* ダーク（申告報酬）バリアント */
.febe-price-table--dark thead tr { background: var(--febe-accent); }
.febe-price-table--dark .price-note-inline {
  font-size: 13px;
  color: var(--febe-text3);
  text-align: left;
}

/* 交通費セル */
.price-transport-cell {
  text-align: left !important;
  padding: 12px 18px;
}
.price-transport-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 3px 0;
}
.transport-area {
  font-size: 13px;
  color: var(--febe-text2);
}
.transport-area::after { content: '：'; }

/* ── 注記リスト ── */
.price-notes {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(139,111,71,0.05);
  border: 1px solid var(--febe-border);
  border-left: 3px solid var(--febe-accent2);
}
.price-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-notes ul li {
  font-size: 14px;
  color: var(--febe-text2);
  line-height: 1.8;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.price-notes ul li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: var(--febe-accent2);
  font-size: 12px;
}
.price-notes ul li strong { color: var(--febe-text); font-weight: 500; }
.price-note-sub {
  display: block;
  font-size: 12px;
  color: var(--febe-text3);
  padding-left: 14px;
  margin-top: 2px;
}

/* ── セクション5: 申告・決算 ── */
.price-tax-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  margin: 32px 0 40px;
  background: rgba(139,111,71,0.06);
  border: 1px solid var(--febe-border);
}
.price-tax-notice-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.price-tax-notice p {
  font-size: 16px;
  font-weight: 500;
  color: var(--febe-text);
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.price-tax-notice p small {
  font-size: 12px;
  font-weight: 300;
  color: var(--febe-text3);
}

.price-sub-heading {
  font-family: var(--febe-font-min);
  font-size: 20px;
  font-weight: 400;
  color: var(--febe-text);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--febe-border);
}

.price-method-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 16px;
}
.price-method-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  background: var(--febe-surface);
  border: 1px solid var(--febe-border);
}
.price-method-item--accent {
  background: rgba(4,157,151,0.06);
  border-color: rgba(4,157,151,0.3);
}
.price-method-num {
  font-family: var(--febe-font-en);
  font-size: 24px;
  font-weight: 200;
  color: var(--febe-accent3);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.price-method-item--accent .price-method-num { color: var(--febe-accent3); }
.price-method-body { flex: 1; }
.price-method-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--febe-text);
  letter-spacing: 0.04em;
  margin: 0 0 6px;
}
.price-method-desc {
  font-size: 14px;
  color: var(--febe-text2);
  margin: 0;
  line-height: 1.7;
}

.price-tax-ref {
  font-size: 13px;
  color: var(--febe-text3);
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* ── 料金案内バナー（サービスページ用）── */
.price-link-banner {
  background: var(--febe-bg2);
  border-top: 1px solid var(--febe-border);
  border-bottom: 1px solid var(--febe-border);
  padding: 44px 0;
}
.price-link-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.price-link-banner-text {
  font-size: 16px;
  color: var(--febe-text2);
  margin: 10px 0 0;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .price-link-banner { padding: 32px 0; }
  .price-link-banner-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ── レスポンシブ ── */
@media (max-width: 991.98px) {
  .price-method-list { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 767.98px) {
  .febe-price-table { font-size: 13px; }
  .febe-price-table thead th,
  .febe-price-table td { padding: 10px 12px; }
  .price-tax-notice { flex-direction: column; gap: 10px; }
  .price-notes { padding: 16px 16px; }
  .febe-price-table--dark .price-note-inline { display: none; }
}
@media (max-width: 767.98px) { .step-body { padding: 18px 20px; } }
