/* =============================================
   ミライコンパス - 学校選びの本音ページ CSS
   ============================================= */

/* ヒーローバナー */
.honne-hero {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px 40px 36px;
  margin-bottom: 32px;
}
.honne-hero .eyebrow {
  display: inline-block;
  background: var(--accent); color: var(--navy);
  font-size: 0.72rem; font-weight: 900; letter-spacing: 2px;
  padding: 4px 14px; border-radius: 999px;
  margin-bottom: 14px;
}
.honne-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900; color: white; line-height: 1.4;
  margin-bottom: 10px;
}
.honne-hero p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* プログレスバー */
.progress-wrap {
  background: white; border: 1px solid #f0f0f0;
  border-radius: 16px; padding: 18px 24px;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.progress-label { font-size: 0.82rem; color: #888; white-space: nowrap; font-weight: 700; }
.progress-track {
  flex: 1; height: 8px;
  background: #f0f0f0; border-radius: 999px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #FF8C69);
  transition: width 0.4s ease;
  width: 0%;
}
.progress-count {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  color: var(--navy); white-space: nowrap;
}

/* セクションラベル */
.honne-section-label {
  font-size: 0.72rem; letter-spacing: 2px; font-weight: 900;
  color: #aaa; text-transform: uppercase;
  margin: 36px 0 14px; padding-left: 2px;
}

/* チェックアイテム */
.check-item {
  background: white; border-radius: 16px;
  border: 2px solid transparent;
  margin-bottom: 10px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.check-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.09); }
.check-item.checked { border-color: var(--primary); }

.check-header {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; cursor: pointer;
  user-select: none;
}
.check-box {
  width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0;
  border: 2px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; transition: all 0.2s;
  background: white;
}
.check-box svg { opacity: 0; transition: opacity 0.15s; }
.check-item.checked .check-box {
  background: var(--primary); border-color: var(--primary);
}
.check-item.checked .check-box svg { opacity: 1; }

.check-main { flex: 1; }
.check-title {
  font-size: 0.95rem; font-weight: 900;
  color: var(--navy); line-height: 1.4; margin-bottom: 3px;
}
.check-item.checked .check-title {
  text-decoration: line-through; color: #bbb;
}
.check-sub { font-size: 0.8rem; color: #888; line-height: 1.5; }

.toggle-honne-btn {
  font-size: 0.76rem; color: #888;
  padding: 4px 12px; border-radius: 999px;
  border: 1.5px solid #e8e8e8;
  background: none; cursor: pointer;
  white-space: nowrap; align-self: center; flex-shrink: 0;
  font-family: inherit; font-weight: 700;
  transition: all 0.15s;
}
.toggle-honne-btn:hover { border-color: var(--primary); color: var(--primary); }
.toggle-honne-btn.is-open { border-color: var(--primary); color: var(--primary); background: rgba(255,107,53,0.05); }

/* 本音パネル */
.honne-body {
  display: none;
  border-top: 1px solid #f5f5f5;
}
.honne-body.is-open { display: block; }

.honne-inner {
  margin: 14px 20px 18px 56px;
  border-left: 3px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 12px 18px;
  background: rgba(255,107,53,0.04);
}
.honne-label {
  font-size: 0.7rem; font-weight: 900; letter-spacing: 1.5px;
  color: var(--primary); margin-bottom: 7px;
}
.honne-text { font-size: 0.88rem; color: #555; line-height: 1.8; }
.honne-tag {
  display: inline-block; margin-top: 10px;
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 12px; border-radius: 999px;
  background: rgba(255,107,53,0.1); color: var(--primary);
}

/* サマリーカード */
.honne-summary {
  background: white; border-radius: 16px;
  border: 2px solid #f0f0f0;
  padding: 20px 24px; margin-top: 28px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: border-color 0.3s;
}
.honne-summary.complete { border-color: var(--primary); }
.summary-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.summary-body { flex: 1; }
.summary-title { font-size: 0.95rem; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.summary-desc  { font-size: 0.8rem; color: #666; line-height: 1.6; }

/* レスポンシブ */
@media (max-width: 768px) {
  .honne-hero { padding: 28px 22px; }
  .progress-wrap { flex-wrap: wrap; gap: 10px; }
  .honne-inner { margin-left: 20px; }
  .check-header { padding: 14px 16px; }
  .honne-summary { flex-wrap: wrap; }
}
