/* =============================================
   プランナーになった直後 動画ページ 共通スタイル
============================================= */
.breadcrumb {
  font-size: 12px; color: #999; margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: #5a9e5a; text-decoration: underline; }
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb .sep { color: #ccc; }

.page-heading {
  background: #fff; border-radius: 12px; padding: 22px 28px;
  margin-bottom: 22px; border-left: 6px solid #5a9e5a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.page-heading h1 { font-size: 24px; font-weight: 900; color: #2d5a2d; margin-bottom: 6px; }
.page-heading p { font-size: 13px; color: #777; line-height: 1.7; }

.video-section {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-bottom: 24px;
}
.video-wrapper {
  position: relative; width: 100%; padding-top: 56.25%; background: #1a1a1a;
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: none; display: block;
}
.video-placeholder {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #1a2e1a 0%, #1a1a1a 100%);
  color: #fff; gap: 16px;
}
.video-placeholder .play-icon {
  width: 72px; height: 72px; background: rgba(90,158,90,0.85);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 32px; box-shadow: 0 4px 20px rgba(90,158,90,0.5);
}
.video-placeholder p { font-size: 14px; opacity: 0.65; letter-spacing: 0.05em; }

.video-info { padding: 20px 24px; border-top: 1px solid #ddeedd; }
.video-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.video-badge {
  background: #5a9e5a; color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; letter-spacing: 0.05em;
}
.video-num { font-size: 12px; color: #aaa; }
.video-title-main { font-size: 20px; font-weight: 900; color: #1a3a1a; margin-bottom: 10px; line-height: 1.4; }
.video-desc { font-size: 13px; color: #666; line-height: 1.8; }

.points-section {
  background: #fff; border-radius: 12px; padding: 24px 24px;
  margin-bottom: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.points-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.point-card {
  background: #f4fbf4; border: 1px solid #c8e0c8; border-radius: 10px;
  padding: 16px; display: flex; gap: 12px; align-items: flex-start;
}
.point-num {
  background: #5a9e5a; color: #fff; font-size: 13px; font-weight: 900;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.point-card h4 { font-size: 14px; font-weight: 700; color: #1a3a1a; margin-bottom: 4px; }
.point-card p { font-size: 12px; color: #777; line-height: 1.6; }

.nav-buttons { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 24px; }
.nav-btn {
  display: flex; align-items: center; gap: 8px; padding: 12px 20px;
  border-radius: 8px; font-size: 13px; font-weight: 700;
  border: 2px solid #c8e0c8; background: #fff; color: #2d5a2d;
  cursor: pointer; transition: background 0.15s, border-color 0.15s;
  text-decoration: none; box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.nav-btn:hover { background: #eaf6ea; border-color: #5a9e5a; }
.nav-btn.next {
  background: #5a9e5a; color: #fff; border-color: #5a9e5a; margin-left: auto;
}
.nav-btn.next:hover { background: #3a7a3a; border-color: #3a7a3a; }
.nav-btn .arrow { font-size: 18px; line-height: 1; }

@media (max-width: 640px) {
  .points-grid { grid-template-columns: 1fr; }
  .video-title-main { font-size: 17px; }
  .nav-buttons { flex-direction: column; }
  .nav-btn.next { margin-left: 0; }
}
