/*
 Theme Name: Canvas Fly LP (Visual)
 Theme URI: https://fly.canvas-jp.net
 Description: 画像入りの買取事例・選ばれる理由・FAQを含むフルLPテーマ（独立）
 Author: canvas
 Version: 1.0.0
 License: GPL-2.0+
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: canvas-fly-lp-visual
*/
/* ==== Flow (4 Steps) ==== */
.process-step{ text-align:center; padding:0 1rem; }
.circle{
  width:90px;height:90px;margin:0 auto; border-radius:9999px;
  background:#06C755; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 14px rgba(6,199,85,.25); position:relative;
}
.circle .icon{ width:40px; height:40px; }
.num-badge{
  position:absolute; top:-10px; right:-10px;
  background:#0ea5a3; color:#fff; font-weight:700; font-size:.85rem;
  width:28px; height:28px; border-radius:9999px; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 10px rgba(14,165,163,.25);
}
.step-title{ font-size:1.125rem; font-weight:700; margin-top:1rem; margin-bottom:.4rem; }
.step-desc{ font-size:.95rem; color:#4b5563; line-height:1.7; }
@media (min-width:768px){
  .circle{ width:96px;height:96px }
  .circle .icon{ width:44px;height:44px }
}
/* ==== 4ステップアイコン調整 ==== */
.process-step .icon {
  width: 48px;   /* アイコンの横幅 */
  height: 48px;  /* アイコンの高さ */
  margin: 0 auto;
  display: block;
  color: #06C755; /* LINEグリーン */
}

.process-step .circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #f3f4f6; /* 薄いグレーの円背景 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.step-desc {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
}
/* ==== 4ステップ（確実に効く版） ==== */
/* 1) SVGアイコンのサイズを強制（.icon が無くても効く） */
.process-step svg,
.process-step .icon {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto;
  color: #06C755; /* お好みで */
}

.process-step:hover .circle {
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.25);
  transform: translateY(-4px);
  transition: all 0.25s ease;
}

/* 2) 背景の丸（円の中にアイコンを入れたい場合） */
.process-step .circle {
  width: 92px;
  height: 92px;
  margin: 0 auto 12px;
  border-radius: 9999px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3) 見出し・説明 */
.process-step .step-title { font-size: 1.1rem; font-weight: 700; margin: .8rem 0 .35rem; }
.process-step .step-desc  { font-size: .92rem; color: #4b5563; line-height: 1.6; }

/* 4) レスポンシブ微調整 */
@media (min-width: 768px){
  .process-step svg, .process-step .icon { width: 56px; height: 56px; }
  .process-step .circle { width: 100px; height: 100px; }
}
.line-section {
  background-color: #f0faf5; /* 淡いグリーン */
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.line-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.line-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.line-list li::before {
  content: "✔";
  color: #22c55e; /* 緑色チェック */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.line-btn {
  background-color: #06c755; /* LINEグリーン */
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.line-btn:hover {
  background-color: #05b14a;
}

/* グリッドレイアウト調整 */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* PCで小さめカード */
  gap: 20px;
}

/* カード基本スタイル */
.grid-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ホバー効果 */
.grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}