/* ========================================
   お片付けのサポート窓口
   スマホファースト（390px基準）
   Pattern B（白FV）+ 仕様書v2準拠
   ======================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

/* ========================================
   共通コンポーネント
   ======================================== */

/* --- CTAボタン（緑） --- */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 92%;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 24px;
  background: #43A047;
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 0 #2E7D32, 0 8px 20px rgba(67, 160, 71, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1.3;
}

.btn-cta:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #2E7D32, 0 3px 8px rgba(67, 160, 71, 0.25);
}

/* きらんアニメーション */
.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.25) 45%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.25) 55%,
    transparent 60%
  );
  animation: shine 2.6s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -60%; }
  20% { left: 120%; }
  100% { left: 120%; }
}

.btn-cta__arrow {
  font-size: 1rem;
}

/* 白バリエーション（CTA帯用） */
.btn-cta--white {
  background: #fff;
  color: #43A047;
  box-shadow: 0 5px 0 #ddd, 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta--white:active {
  box-shadow: 0 2px 0 #ddd, 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* 送信ボタン */
.btn-cta--submit {
  width: 100%;
  max-width: none;
  font-size: 1.25rem;
  padding: 22px 24px;
}

/* 送信ボタン非活性 */
.btn-cta--disabled {
  background: #ccc;
  box-shadow: 0 5px 0 #aaa, 0 8px 20px rgba(0,0,0,0.1);
  pointer-events: none;
  color: #fff;
}

/* 送信中スピナー */
.btn-cta--loading {
  pointer-events: none;
  position: relative;
}

.btn-cta--loading::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 固定CTAバー用 */
.btn-cta--fixed {
  width: 100%;
  max-width: none;
  padding: 16px 24px;
  font-size: 1.0625rem;
}

/* モーダル用 */
.btn-cta--modal {
  width: 100%;
  max-width: none;
  padding: 18px 24px;
}

/* --- 必須/任意バッジ --- */
.badge-required {
  display: inline-block;
  background: #FF6D00;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.4;
}

.badge-optional {
  display: inline-block;
  background: #999;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.4;
}

/* CTA帯 — 削除済み */

/* ========================================
   ① ヘッダー
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 16px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__logo-icon {
  flex-shrink: 0;
}

.header__logo-text {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #43A047;
}

/* ヘッダー右端ハンバーガーメニュー */
.header__menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__border {
  height: 3px;
  background: linear-gradient(90deg, #43A047, #1B5E20);
}

.header--scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ========================================
   ② FV（ファーストビュー）
   ======================================== */
.fv {
  padding-top: 59px; /* ヘッダー56px + ライン3px */
  background: #f8fefc;
  padding-bottom: 0;
  position: relative;
}

/* FV背景の波（ボタン下あたりから開始） */
.fv::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,50 C240,10 480,70 720,30 C960,0 1200,50 1440,20 L1440,120 L0,120 Z' fill='%23e8efe2'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
}

.fv__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* 緑バナー（フルワイド） */
.fv__banner {
  display: block;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  background: #43A047;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  text-align: center;
  margin-top: 0;
}

/* メインコピー */
.fv__heading {
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-top: 36px;
}

/* .fv__heading-accent removed — heading is all black, no gold accent */

/* サブコピー */
.fv__sub {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1.7;
  margin-top: 20px;
}

.fv__sub-highlight {
  background: linear-gradient(transparent 60%, #FFE082 60%);
  padding: 0 2px;
}

/* イラスト + バッジ */
.fv__visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 28px auto 0;
}

.fv__illust {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* 満足度バッジ（暗め緑 + 白円ライン + 星） */
.fv__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 86px;
  height: 86px;
  background: #2E7D32;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(46, 125, 50, 0.5);
  z-index: 2;
}

/* バッジ内部の白い円ライン */
.fv__badge::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

.fv__badge-star {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1;
}

.fv__badge-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-top: 2px;
}

.fv__badge-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.fv__badge-number small {
  font-size: 0.8125rem;
}

/* FV内のCTAボタン（イラストとの間隔確保） */
.fv .btn-cta {
  margin-top: 36px;
}

/* CTAサブテキスト */
.fv__cta-sub {
  font-size: 0.8125rem;
  color: #999;
  margin-top: 16px;
  padding-bottom: 48px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* FV→ダークセクション グラデーション（柔らかい遷移） */
.gradient-fv-to-dark {
  height: 80px;
  background: linear-gradient(180deg, #f8fefc 0%, #E8F5E9 30%, #4a7a4d 70%, #1B3A1B 100%);
}

/* ③ こんなお悩みありませんか？ — 削除済み */

/* ========================================
   ダークセクション（voices + reasons 共通背景）
   ======================================== */
.dark-section {
  background: #1B3A1B;
}

/* ========================================
   ④ 選ばれる理由
   ======================================== */
.reasons {
  background: #1B5E20;
  padding: 48px 0;
}

.reasons__inner {
  padding: 0 20px;
}

.reasons__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}

.reason-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px 24px 26px;
  margin-bottom: 16px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 16px;
  align-items: center;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #F5D675 0%, #D4AF37 30%, #B8942B 60%, #F5D675 100%);
  border-radius: 12px 0 0 12px;
}

.reason-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reason-card__icon img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.reason-card__number {
  display: none;
}

.reason-card__body {
  position: relative;
  z-index: 1;
}

.reason-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.reason-card__desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
}

/* ========================================
   ⑤ 利用者の声をご紹介
   ======================================== */
.voices {
  padding: 48px 0;
  background: #FFF8E1;
}

.voices__inner {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.voices__title {
  font-size: 1.625rem;
  font-weight: 800;
  color: #2E7D32;
  text-align: center;
  margin-bottom: 8px;
}

/* オレンジ波線 */
.voices__wave {
  width: 120px;
  height: 8px;
  margin: 0 auto 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='8' viewBox='0 0 120 8'%3E%3Cpath d='M0 4 Q10 0 20 4 Q30 8 40 4 Q50 0 60 4 Q70 8 80 4 Q90 0 100 4 Q110 8 120 4' fill='none' stroke='%23E8890C' stroke-width='2.5'/%3E%3C/svg%3E") no-repeat center;
}

/* 口コミカードのラッパー（スマホでは縦並び） */
.voices__cards-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* 口コミカード */
.voice-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 16px;
  width: 100%;
  border-left: 5px solid #43A047;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.voice-card__header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.voice-card__avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.voice-card__avatar img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.voice-card__name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #2E7D32;
  display: block;
  margin-bottom: 6px;
  border-bottom: 2px solid #C8E6C9;
  padding-bottom: 4px;
}

.voice-card__text {
  font-size: 1.0625rem;
  color: #555;
  line-height: 1.7;
}

/* 価格比較バー（横並びピル形式） */
.voice-card__bars {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.price-bar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex: 1 1 0;
  min-width: 0;
  padding-top: 14px;
}

.price-bar__fill {
  position: relative;
  height: 36px;
  border-radius: 999px;
  flex-shrink: 0;
  width: 100%;
}

.price-bar__fill--gray {
  background: #CCCCCC;
}

.price-bar__fill--green {
  background: #43A047;
}

.price-bar__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  pointer-events: none;
}

.price-bar__crown {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  flex-shrink: 0;
  margin-left: 0;
  z-index: 1;
}

/* 節約金額 */
.voice-card__savings {
  font-size: 1.125rem;
  font-weight: 800;
  color: #1B5E20;
  text-align: center;
  margin-top: 4px;
}

.voice-card__savings-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #E65100;
}

/* voices内CTAボタン */
.voices .btn-cta {
  margin-top: 16px;
}

/* ========================================
   ⑥ カンタン3STEP
   ======================================== */
.steps {
  background: linear-gradient(180deg, #E8F5E9 0%, #FFF8E1 100%);
  padding: 48px 0;
}

.steps__inner {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps__badge {
  display: inline-block;
  background: #43A047;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  padding: 10px 32px;
  border-radius: 8px;
  letter-spacing: 0.06em;
}

.steps__sub {
  font-size: 0.9375rem;
  color: #333;
  margin-top: 12px;
  margin-bottom: 32px;
  text-align: center;
}

/* STEPカード */
.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px 12px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: flex-start;
}

.step-card__number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1B5E20;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-card__number-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.step-card__number-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

.step-card__body {
  flex: 1 1 auto;
  min-width: 120px;
}

.step-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 6px;
}

.step-card__desc {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.7;
}

.step-card__illust {
  width: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__illust img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* STEP2イラスト: スマホでは高さを他STEPに揃える（縦長画像のため） */
.step-card:nth-child(3) .step-card__illust img {
  max-height: 95px;
  width: auto;
}

/* STEPカードのラッパー（スマホでは縦並び） */
.steps__cards-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
}

/* STEP間の矢印 */
.steps__arrow {
  margin: 12px 0;
  display: flex;
  justify-content: center;
}

/* FAQアイテムグリッド（スマホでは縦並び） */
.faq__items-grid {
  display: flex;
  flex-direction: column;
}

/* ========================================
   ⑦ フォームセクション
   ======================================== */
.form-section {
  position: relative;
  padding: 48px 0;
  overflow: hidden;
}

/* 背景（シンプル） */
.form-section__bg-pattern {
  position: absolute;
  inset: 0;
  background-color: #E8F5E9;
  z-index: 0;
}

.form-section__inner {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.form-section__header {
  text-align: center;
  margin-bottom: 24px;
}

.form-section__clock {
  margin: 0 auto 8px;
}

.form-section__title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #1a1a1a;
}

.form-section__sub {
  font-size: 1rem;
  font-weight: 700;
  color: #43A047;
  margin-top: 8px;
}

/* プログレスバー */
.form-progress {
  margin-bottom: 20px;
}

.form-progress__text {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #43A047;
  margin-bottom: 8px;
  text-align: center;
}

.form-progress__bar {
  width: 100%;
  height: 8px;
  background: #E0E0E0;
  border-radius: 4px;
  overflow: hidden;
}

.form-progress__fill {
  height: 100%;
  background: #43A047;
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* フォームカード */
.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* フォームSTEP */
.form-step {
  margin-bottom: 24px;
}

.form-step__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1B5E20;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* ラジオボタン グリッド（STEP1, STEP3） */
.form-radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.form-radio-btn {
  position: relative;
  cursor: pointer;
}

.form-radio-btn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-radio-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 4px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  transition: all 0.2s;
  min-height: 48px;
}

.form-radio-btn span::before {
  display: none;
}

.form-radio-btn input:checked + span {
  border-color: #43A047;
  background: #F1F8F1;
  color: #1B5E20;
  font-weight: 700;
}

.form-radio-btn input:checked + span::before {
  display: none;
}

/* トラックカード グリッド（STEP2） */
.form-truck-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.form-truck-btn {
  cursor: pointer;
  position: relative;
}

.form-truck-btn:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.form-truck-btn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-truck-btn__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 4px;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  transition: all 0.2s;
}

.form-truck-btn__inner small {
  font-size: 0.5625rem;
  color: #999;
  font-weight: 400;
}

.form-truck-btn input:checked + .form-truck-btn__inner {
  border-color: #43A047;
  background: #43A047;
  color: #fff;
}

.form-truck-btn input:checked + .form-truck-btn__inner small {
  color: rgba(255,255,255,0.8);
}

.form-truck-btn__inner img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.form-truck-btn input:checked + .form-truck-btn__inner img {
  /* 画像はそのまま表示（反転しない） */
}

/* トグルボタン（STEP4, STEP6個人/法人） */
.form-toggle,
.form-name-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}

.form-toggle__btn {
  position: relative;
  cursor: pointer;
  display: flex;
}

.form-toggle__btn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-toggle__btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 14px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  transition: all 0.2s;
  background: #f5f5f5;
}

.form-toggle__btn input:checked + span {
  background: #43A047;
  color: #fff;
  border-color: #43A047;
}

/* テキスト入力 */
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #333;
}

.form-input:focus {
  border-color: #43A047;
  outline: none;
}

.form-input::placeholder {
  color: #bbb;
}

/* 住所（STEP5） */
.form-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-address__zip {
  display: flex;
  gap: 8px;
  align-items: center;
}

.form-address__zip .form-input {
  flex: 1;
}

.form-address__auto {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #43A047;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

/* テキストエリア */
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #333;
  resize: none;
}

.form-textarea:focus {
  border-color: #43A047;
  outline: none;
}

.form-textarea::placeholder {
  color: #bbb;
}

/* フォーム注記 */
.form-note {
  font-size: 0.75rem;
  color: #999;
  margin-top: 8px;
}

/* プライバシーポリシー */
.form-privacy {
  font-size: 0.75rem;
  color: #999;
  text-align: center;
  margin-top: 12px;
}

/* ========================================
   ⑧ よくある質問
   ======================================== */
.faq {
  background: #FFF8E1;
  padding: 48px 0;
}

.faq__inner {
  padding: 0 20px;
}

.faq__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #333;
  text-align: center;
  margin-bottom: 32px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-left: 4px solid #43A047;
}

.faq-item__question {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.faq-item__q {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: #43A047;
  flex-shrink: 0;
}

.faq-item__q-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #333;
  flex: 1;
}

.faq-item__toggle {
  flex-shrink: 0;
  transition: transform 0.3s;
}

/* 回答（デフォルト非表示） */
.faq-item__answer {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #E0E0E0;
}

.faq-item--open .faq-item__answer {
  display: flex;
  gap: 8px;
}

.faq-item--open .faq-item__toggle {
  transform: rotate(90deg);
}

.faq-item__a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: #D4A017;
  flex-shrink: 0;
}

.faq-item__a-text {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
}

/* --- フォーム セレクト（STEP3ドロップダウン） --- */
.form-select-wrap {
  position: relative;
}

.form-select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #333;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.form-select:focus {
  border-color: #43A047;
  outline: none;
}

.form-select-wrap::after {
  content: '\25BC';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #999;
  pointer-events: none;
}

/* 選択済みチェックマーク */
.form-select-check {
  color: #43A047;
  font-weight: 800;
  margin-left: 8px;
}

/* --- フォーム ヒントメッセージ --- */
.form-hint {
  text-align: center;
  color: #999;
  font-size: 0.8125rem;
  padding: 16px 0;
  letter-spacing: 0.02em;
}

/* --- 完了済みSTEPのチェックマーク --- */
.form-step__label--completed::after {
  content: '\2713';
  color: #fff;
  font-weight: 800;
  margin-left: auto;
}

.form-step__label--completed .badge-required,
.form-step__label--completed .badge-optional {
  display: none;
}

/* ========================================
   ⑨ フッター
   ======================================== */

/* フッター電話セクション */
.footer__phone {
  background: #1B5E20;
  padding: 32px 20px;
  text-align: center;
}

.footer__phone-label {
  font-size: 0.9375rem;
  color: #fff;
  margin-bottom: 8px;
}

.footer__phone-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.footer__bottom {
  background: #1B5E20;
  padding: 16px 20px;
  text-align: center;
}

.footer__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__privacy {
  font-size: 0.75rem;
  color: #fff;
  text-decoration: underline;
}

/* ========================================
   固定CTAバー
   ======================================== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  padding: 12px 16px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.fixed-cta--visible {
  transform: translateY(0);
}

.fixed-cta--hidden {
  transform: translateY(100%);
}

/* ========================================
   離脱防止モーダル
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px 28px;
  max-width: 340px;
  width: 100%;
  text-align: center;
}

.modal__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #333;
  line-height: 1.4;
  margin-bottom: 16px;
}

.modal__text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.modal__sub {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 24px;
}

.modal__leave {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  font-size: 0.875rem;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}

/* サンキューモーダル — 削除済み（thanks.htmlに移行） */

/* ========================================
   スクロールアニメーション
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-slide-left {
  transform: translateX(-30px);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ========================================
   タブレット レスポンシブ（768px〜）
   ======================================== */
@media (min-width: 768px) {
  /* --- ヘッダー --- */
  .header__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
  }

  .header__logo-text {
    font-size: 1.0625rem;
  }

  /* --- FV --- */
  .fv {
    padding-top: 67px; /* 64px + 3px */
  }

  .fv__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .fv__banner {
    font-size: 0.9375rem;
    padding: 12px 32px;
    width: calc(100% + 64px);
    margin-left: -32px;
    margin-right: -32px;
  }

  .fv__heading {
    font-size: 2.75rem;
    margin-top: 40px;
  }

  .fv__sub {
    font-size: 1.125rem;
    margin-top: 24px;
  }

  .fv__visual {
    max-width: 520px;
  }

  .fv__badge {
    width: 96px;
    height: 96px;
    top: -8px;
    right: -8px;
  }

  .fv__badge-label {
    font-size: 0.75rem;
  }

  .fv__badge-number {
    font-size: 1.5rem;
  }

  /* --- コンテナ幅 --- */
  .voices__inner,
  .reasons__inner,
  .steps__inner,
  .faq__inner,
  .form-section__inner {
    max-width: 720px;
    margin: 0 auto;
  }

  /* --- セクションpadding拡大 --- */
  .voices,
  .reasons,
  .steps,
  .faq,
  .form-section {
    padding: 64px 0;
  }

  /* --- タイトルサイズ --- */
  .voices__title,
  .reasons__title,
  .faq__title {
    font-size: 1.875rem;
    margin-bottom: 40px;
  }

  .form-section__title {
    font-size: 2rem;
  }

  /* --- 選ばれる理由: 2x2グリッド --- */
  .reasons__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .reasons__title {
    grid-column: 1 / -1;
  }

  .reason-card {
    margin-bottom: 0;
  }

  /* --- STEPカード --- */
  .step-card {
    flex-wrap: nowrap;
    padding: 20px;
    gap: 16px;
  }

  .step-card__illust {
    width: 140px;
  }

  /* タブレット: STEP2イラストの高さをSTEP1・3に合わせる */
  .step-card:nth-child(3) .step-card__illust img {
    max-height: 110px;
    width: auto;
  }

  .step-card__title {
    font-size: 1.25rem;
  }

  .step-card__desc {
    font-size: 0.875rem;
  }

  /* --- フォーム --- */
  .form-card {
    padding: 32px 28px;
  }

  .form-radio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .form-radio-btn span {
    padding: 14px 8px;
    font-size: 0.875rem;
  }

  .form-truck-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .form-truck-btn:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .form-truck-btn__inner {
    padding: 16px 8px;
  }

  .form-truck-btn__inner img {
    width: 64px;
    height: 64px;
  }

  /* --- CTAボタン --- */
  .btn-cta {
    max-width: 420px;
    font-size: 1.1875rem;
    padding: 22px 28px;
  }

  .btn-cta--submit {
    max-width: none;
  }

  /* --- FAQ --- */
  .faq-item {
    padding: 20px 24px;
  }

  .faq-item__q-text {
    font-size: 1rem;
  }

  .faq-item__a-text {
    font-size: 0.9375rem;
  }

  /* --- モーダル --- */
  .modal {
    max-width: 440px;
    padding: 48px 36px;
  }
}

/* ========================================
   PC レスポンシブ（1024px〜）
   ======================================== */
@media (min-width: 1024px) {
  /* --- ヘッダー --- */
  .header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* --- FV: 横幅フル活用・1画面収まり --- */
  .fv {
    min-height: calc(100vh - 67px);
    display: flex;
    flex-direction: column;
  }

  .fv__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto auto;
    grid-template-areas:
      "banner  banner"
      "text    illust"
      "cta     cta"
      "ctasub  ctasub";
    column-gap: 16px;
    align-items: center;
    flex: 1;
  }

  .fv__banner {
    grid-area: banner;
    width: calc(100% + 96px);
    margin-left: -48px;
    margin-right: -48px;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 14px 48px;
    letter-spacing: 0.18em;
  }

  /* テキストブロック（左カラム） */
  .fv__text {
    grid-area: text;
    align-self: center;
  }

  .fv__heading {
    font-size: 3rem;
    text-align: center;
    margin-top: 0;
    letter-spacing: 0.04em;
  }

  .fv__sub {
    font-size: 1.375rem;
    text-align: center;
    margin-top: 10px;
  }

  /* イラスト（右カラム） */
  .fv__visual {
    grid-area: illust;
    max-width: none;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fv__illust {
    max-height: calc(100vh - 340px);
    width: 100%;
    object-fit: contain;
  }

  /* CTA（中央・フル幅行） */
  .fv .btn-cta {
    grid-area: cta;
    justify-self: center;
    max-width: 440px;
    width: 440px;
    margin: 4px 0 0;
    font-size: 1.25rem;
    padding: 18px 32px;
  }

  .fv__cta-sub {
    grid-area: ctasub;
    text-align: center;
    padding-bottom: 20px;
    margin-top: 6px;
  }

  .fv__badge {
    width: 110px;
    height: 110px;
    top: -8px;
    right: 0;
  }

  .fv__badge-star {
    font-size: 1.125rem;
  }

  .fv__badge-label {
    font-size: 0.9375rem;
  }

  .fv__badge-number {
    font-size: 2rem;
  }

  .fv::before {
    height: 160px;
  }

  /* --- コンテナ幅 --- */
  .voices__inner {
    max-width: 1100px;
    padding: 0 40px;
  }

  .reasons__inner {
    max-width: 1000px;
    padding: 0 40px;
  }

  .steps__inner {
    max-width: 1000px;
    padding: 0 40px;
  }

  .faq__inner {
    max-width: 900px;
    padding: 0 40px;
  }

  .form-section__inner {
    max-width: 760px;
    padding: 0 40px;
  }

  .form-truck-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* --- セクションpadding --- */
  .voices,
  .reasons,
  .steps,
  .faq,
  .form-section {
    padding: 80px 0;
  }

  /* --- タイトルサイズ --- */
  .voices__title {
    font-size: 2rem;
    margin-bottom: 48px;
  }

  .reasons__title {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .faq__title {
    font-size: 2rem;
    margin-bottom: 48px;
  }

  /* --- 利用者の声: 3カード横並び --- */
  .voices__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .voices__cards-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
    justify-content: center;
  }

  .voice-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 360px;
    margin-bottom: 0;
  }

  .voice-card__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .voice-card__name {
    text-align: center;
    font-size: 1.125rem;
  }

  .voice-card__text {
    text-align: center;
    font-size: 0.9375rem;
  }

  .voice-card__avatar {
    width: 72px;
    height: 72px;
  }

  .voice-card__avatar img {
    width: 72px;
    height: 72px;
  }

  .voices .btn-cta {
    margin-top: 40px;
    min-width: 360px;
    max-width: 420px;
  }

  /* --- 選ばれる理由: 2x2グリッド（PC拡大） --- */
  .reasons__inner {
    gap: 20px;
  }

  .reason-card {
    padding: 28px 24px 28px 30px;
    gap: 20px;
  }

  .reason-card__icon {
    width: 64px;
    height: 64px;
  }

  .reason-card__icon img {
    width: 64px;
    height: 64px;
  }

  .reason-card__title {
    font-size: 1.1875rem;
  }

  .reason-card__desc {
    font-size: 0.9375rem;
  }

  /* --- カンタン3STEP: 横並び --- */
  .steps__inner {
    align-items: center;
  }

  .steps__badge {
    font-size: 1.25rem;
    padding: 12px 40px;
  }

  .steps__sub {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  /* STEPカードのラッパー（横並び） */
  .steps__cards-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
    padding: 28px 20px;
    gap: 12px;
  }

  .step-card__number {
    width: 56px;
    height: 56px;
    margin-top: 0;
  }

  .step-card__number-label {
    font-size: 0.625rem;
  }

  .step-card__number-num {
    font-size: 1.375rem;
  }

  .step-card__body {
    text-align: center;
  }

  .step-card__title {
    font-size: 1.1875rem;
    margin-bottom: 8px;
  }

  .step-card__desc {
    font-size: 0.875rem;
  }

  .step-card__illust {
    width: 160px;
    margin-top: 8px;
  }

  /* PC: STEP2イラストの高さをSTEP1・3に合わせる */
  .step-card:nth-child(3) .step-card__illust img {
    max-height: 126px;
  }

  /* STEP間矢印を横向き（＞）にする */
  .steps__arrow {
    margin: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .steps__arrow svg {
    transform: rotate(-90deg);
    width: 28px;
    height: 28px;
  }

  .steps .btn-cta {
    margin-top: 40px;
  }

  /* --- FAQ: 1カラム（PCでも可読性重視） --- */
  .faq__inner {
    max-width: 900px;
  }

  .faq__items-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-item {
    margin-bottom: 0;
    padding: 24px 28px;
  }

  .faq-item__q-text {
    font-size: 1rem;
  }

  /* --- フォーム --- */
  .form-card {
    padding: 40px 36px;
  }

  .form-section__header {
    margin-bottom: 32px;
  }

  .form-section__title {
    font-size: 2.25rem;
  }

  .form-step__label {
    font-size: 0.9375rem;
    padding: 10px 20px;
  }

  .form-input {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .form-textarea {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .form-address__zip {
    max-width: 400px;
  }

  .btn-cta--submit {
    font-size: 1.3125rem;
    padding: 24px 32px;
  }

  .form-optional-section__title {
    font-size: 1.5rem;
  }

  .form-optional-section__illust {
    width: 80px;
    height: 80px;
  }

  .item-category__header {
    padding: 14px 18px;
  }

  .item-category__title {
    font-size: 1rem;
  }

  /* --- CTAボタン --- */
  .btn-cta {
    font-size: 1.25rem;
    padding: 22px 32px;
  }

  .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #2E7D32, 0 12px 28px rgba(67, 160, 71, 0.3);
  }

  .btn-cta:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #2E7D32, 0 3px 8px rgba(67, 160, 71, 0.25);
  }

  /* --- 固定CTAバー非表示 --- */
  .fixed-cta {
    display: none;
  }

  /* --- フッター --- */
  .footer__bottom {
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .footer__name {
    margin-bottom: 0;
  }

  .footer__copy {
    margin-bottom: 0;
  }
}

/* フォームバリデーションエラー */
.form-step--error .form-input,
.form-step--error .form-select,
.form-step--error .form-textarea {
  border-color: #E53935;
  background: #FFF5F5;
  animation: shake 0.4s ease;
}

.form-step--error .form-radio-btn span,
.form-step--error .form-truck-btn__inner,
.form-step--error .form-toggle__btn span,
.form-step--error .form-checkbox-btn span {
  border-color: #E53935;
}

.form-error-msg {
  color: #E53935;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-error-msg::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #E53935;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* フォームinput有効状態（緑ボーダー） */
.form-input--valid {
  border-color: #43A047 !important;
  background: #F1F8F1 !important;
}

/* 個別入力フィールドのエラー状態 */
.form-input--error {
  border-color: #E53935 !important;
  background: #FFF5F5 !important;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* フォームステップslideDown */
.form-step-entering {
  overflow: hidden;
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 1200px;
    opacity: 1;
  }
}

/* 法人名フィールド（条件表示） */
.form-company-name {
  margin-top: 10px;
  overflow: hidden;
  animation: slideDown 0.3s ease forwards;
}

/* 姓名+フリガナ グリッド */
.form-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.form-name-grid:last-child {
  margin-bottom: 0;
}

.form-name-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 4px;
}

/* 任意セクション（大見出し付き） */
.form-optional-section {
  margin-top: 40px;
  padding-top: 0;
}

.form-optional-section__heading {
  text-align: center;
  padding: 32px 20px 28px;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 50%, #E8F5E9 100%);
  border-radius: 16px;
  margin-bottom: 24px;
  position: relative;
  border: 2px solid #A5D6A7;
}

.form-optional-section__heading::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #43A047, transparent);
  border-radius: 0 0 4px 4px;
}

.form-optional-section__illust {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  display: block;
  object-fit: contain;
}

.form-optional-section__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1B5E20;
  line-height: 1.5;
  margin-bottom: 8px;
}

.form-optional-section__sub {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.5;
}

/* 目的/きっかけ チェックボックスグリッド */
.form-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.form-checkbox-btn {
  position: relative;
  cursor: pointer;
  display: flex;
}

.form-checkbox-btn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #666;
  transition: all 0.2s;
  background: #f5f5f5;
  text-align: center;
  flex: 1;
}

.form-checkbox-btn input:checked + span {
  background: #43A047;
  color: #fff;
  border-color: #43A047;
}

/* その他プロフィール */
.form-profile-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-profile-field {
  display: flex;
  flex-direction: column;
}

/* 利用規約同意 */
.form-agree {
  background: #FFF8E1;
  border: 2px solid #FFD54F;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.form-agree__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-agree__label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #43A047;
}

.form-agree__text {
  font-size: 0.8125rem;
  color: #555;
  line-height: 1.5;
}

.form-agree__link {
  color: #43A047;
  text-decoration: underline;
}

/* STEP5 駐車場トグル: テキスト + 小テキスト2行表示 */
.form-toggle__btn span {
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}

.form-toggle__btn span small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  color: #999;
  line-height: 1.3;
  min-height: 2.6em; /* 2行分確保して高さを揃える */
}

.form-toggle__btn input:checked + span small {
  color: rgba(255, 255, 255, 0.8);
}

/* STEP13 アイテム数量入力 — カテゴリアコーディオン */
.item-category {
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #C8E6C9;
}

.item-category__header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  background: #43A047;
  border: none;
  cursor: pointer;
  gap: 8px;
  font-family: inherit;
  transition: background 0.2s;
}

.item-category__header:active {
  background: #2E7D32;
}

.item-category__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
  text-align: left;
}

.item-category__count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.25);
  padding: 2px 10px;
  border-radius: 12px;
  min-width: 36px;
  text-align: center;
}

.item-category__count.has-items {
  background: #fff;
  color: #2E7D32;
}

.item-category__chevron {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  transition: transform 0.3s;
}

.item-category.is-open .item-category__chevron {
  transform: rotate(45deg);
}

.item-category__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #FAFFF8;
}

.item-category.is-open .item-category__body {
  max-height: 4000px;
}

.item-category__body .form-items-grid {
  padding: 0;
}

.form-items-grid {
  display: flex;
  flex-direction: column;
}

.form-item-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid #E8F5E9;
  gap: 10px;
}

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

.form-item-row__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.form-item-row__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #333;
  flex: 1;
  line-height: 1.3;
}

.form-item-row__input {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.form-item-row__plus,
.form-item-row__minus {
  width: 36px;
  height: 36px;
  border: 1px solid #C8E6C9;
  background: #E8F5E9;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2E7D32;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-family: inherit;
  border-radius: 6px;
}

.form-item-row__plus:active,
.form-item-row__minus:active {
  background: #C8E6C9;
}

.form-item-row__num {
  width: 44px;
  height: 36px;
  border: 1px solid #C8E6C9;
  margin: 0 2px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  -moz-appearance: textfield;
  appearance: textfield;
  border-radius: 4px;
  background: #fff;
}

.form-item-row__num::-webkit-inner-spin-button,
.form-item-row__num::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-item-row__num:focus {
  outline: none;
  border-color: #43A047;
}
