/* ===========================================
   Mochi Workflow Page Layout
=========================================== */

body.page-template-mochi-workflow .workflow-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 40px;
}

/* ===============================
   STEP 全体レイアウト（2カラム）
=============================== */
.wf-step {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid #c1847c;
}

.wf-step-title {
  font-size: 13pt;
  font-weight: 600;
  line-height: 1.6;
}

/* 画像（オプション挿入）の固定化 */
.wf-image {
  width: 400px;          /* ← 画像が大き過ぎないよう固定 */
  max-width: 100%;
  border-radius: 6px;
  margin-top: 16px;
  display: block;
}

/* 丸い番号デザイン */
.wf-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #722417; /* モチは黒・または #333 */
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* アニメーション初期状態 */
.wf-step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示された時 */
.wf-step.show {
  opacity: 1;
  transform: translateY(0);
}


/* ===============================
   スマホ版（1カラム）
=============================== */
@media (max-width: 768px) {
  .wf-step {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }

  .wf-step-number {
    font-size: 22px;
  }

  .wf-step-title {
    font-size: 13pt;
  }

  .wf-step-right p {
    font-size: 11pt; /* custom.css のモバイル本文サイズ */
  }

  .wf-image {
    width: 100%;
    max-width: 100%;
  }
}

/* ===============================
   ▼ 注釈（※）スタイル
================================ */
.wf-note {
  font-size: 10pt;
  color: #777;           /* 薄くして存在感を下げる */
  line-height: 1.8;
  margin-top: 10px;
  display: block;
}

/* ===============================
   ▼ 費用ボックス（¥）スタイル
================================ */
.wf-price-box {
  background: #555;   /* モチっぽい柔らかいベージュ。変更可 */
  padding: 8px 12px;
  border-radius: 5px;
  display: inline-block; /* 小さめのタグ風に見せる */
  font-size: 10pt;
  font-weight: 600;
  margin-top: 10px;
  color: #fff;
}

/* スマホで少しだけコンパクトに */
@media (max-width: 768px) {
  .wf-note {
    font-size: 9pt;
  }
  .wf-price-box {
    font-size: 10pt;
    padding: 8px 12px;
  }
}