/* =========================
   Top LP scoped styles
   影響範囲：<main class="top-lp"> の内側だけ
   ========================= */

.top-lp {
  --lp-bg: #ffffff;
  --lp-text: #111827;
  --lp-muted: #6b7280;
  --lp-border: rgba(17, 24, 39, 0.12);
  --lp-card: #ffffff;
  --lp-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --lp-radius: 16px;
  --lp-radius-lg: 22px;
}

.top-lp .top-lp-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.top-lp .top-lp-section {
  padding: 64px 0;
  background: var(--lp-bg);
  color: var(--lp-text);
}

.top-lp .top-lp-section__header {
  margin-bottom: 28px;
}

.top-lp .top-lp-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.top-lp .top-lp-h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.top-lp .top-lp-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--lp-muted);
}

.top-lp .top-lp-grid {
  display: grid;
  gap: 18px;
}

.top-lp .top-lp-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.top-lp .top-lp-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Card */
.top-lp .top-lp-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow);
}

.top-lp .top-lp-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
}

.top-lp .top-lp-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-lp .top-lp-card__mediaFallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(17,24,39,0.06), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(17,24,39,0.06), transparent 42%),
    linear-gradient(135deg, rgba(17,24,39,0.04), rgba(17,24,39,0.02));
  opacity: 1;
}

.top-lp .top-lp-card__body {
  padding: 18px 18px 20px;
}

.top-lp .top-lp-h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.top-lp .top-lp-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--lp-muted);
}

/* Badge */
.top-lp .top-lp-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #111827;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17,24,39,0.12);
  backdrop-filter: blur(6px);
}

/* Lists */
.top-lp .top-lp-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.top-lp .top-lp-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--lp-text);
}

.top-lp .top-lp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17,24,39,0.35);
  transform: translateY(-50%);
}

/* Tags */
.top-lp .top-lp-tags {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.top-lp .top-lp-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: rgba(17, 24, 39, 0.03);
  font-size: 12px;
  color: #111827;
}

/* Responsive */
@media (max-width: 960px) {
  .top-lp .top-lp-grid--3 { grid-template-columns: 1fr; }
  .top-lp .top-lp-grid--2 { grid-template-columns: 1fr; }
  .top-lp .top-lp-section { padding: 48px 0; }
}

/* --- Reskilling CTA (summary) --- */
.top-lp .top-reskilling {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.top-lp .top-reskilling__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-lp .top-reskilling__cta {
  background: linear-gradient(135deg, #002447 0%, #003d7a 100%);
  color: #fff;
  padding: 60px 50px;
  border-radius: 20px;
  text-align: center;
}

.top-lp .top-reskilling__cta-badge {
  display: inline-block;
  background: #E39B2F;
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.top-lp .top-reskilling__cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.4;
}

.top-lp .top-reskilling__cta-content {
  max-width: 800px;
  margin: 0 auto 30px;
}

.top-lp .top-reskilling__cta-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
  opacity: 0.95;
}

.top-lp .top-reskilling__cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-lp .top-reskilling__cta-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.top-lp .top-reskilling__question-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E39B2F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.top-lp .top-reskilling__cta-lead {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.7;
}

.top-lp .top-reskilling__cta-button-wrapper {
  display: flex;
  justify-content: center;
}

.top-lp .top-reskilling__cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #E39B2F 0%, #d88b1f 100%);
  color: #fff;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(227, 155, 47, 0.4);
}

.top-lp .top-reskilling__cta-button:hover {
  background: linear-gradient(135deg, #d88b1f 0%, #c77b0f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(227, 155, 47, 0.5);
}

@media (max-width: 768px) {
  .top-lp .top-reskilling { padding: 60px 0; }
  .top-lp .top-reskilling__cta { padding: 40px 24px; }
  .top-lp .top-reskilling__cta-title { font-size: 22px; }
}

/* =========================
   V0 styles (partial)
   scope: .top-lp only
   ========================= */

/* --- Reskilling CTA (summary) --- */
.top-lp .top-reskilling {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}
.top-lp .top-reskilling__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-lp .top-reskilling__cta {
  background: linear-gradient(135deg, #002447 0%, #003d7a 100%);
  color: #fff;
  padding: 60px 50px;
  border-radius: 20px;
  text-align: center;
}
.top-lp .top-reskilling__cta-badge {
  display: inline-block;
  background: #E39B2F;
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.top-lp .top-reskilling__cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.4;
}
.top-lp .top-reskilling__cta-content {
  max-width: 800px;
  margin: 0 auto 30px;
}
.top-lp .top-reskilling__cta-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
  opacity: 0.95;
}
.top-lp .top-reskilling__cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.top-lp .top-reskilling__cta-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
}
.top-lp .top-reskilling__question-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E39B2F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.top-lp .top-reskilling__cta-lead {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.7;
}
.top-lp .top-reskilling__cta-button-wrapper {
  display: flex;
  justify-content: center;
}
.top-lp .top-reskilling__cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #E39B2F 0%, #d88b1f 100%);
  color: #fff;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(227, 155, 47, 0.4);
}
.top-lp .top-reskilling__cta-button:hover {
  background: linear-gradient(135deg, #d88b1f 0%, #c77b0f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(227, 155, 47, 0.5);
}

/* --- Three Core Skills --- */
.top-lp .top-skills {
  padding: 80px 0;
  background: #fff;
}
.top-lp .top-skills__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-lp .top-skills__header {
  text-align: center;
  margin-bottom: 60px;
}
.top-lp .top-skills__badge {
  display: inline-block;
  background: #005bab;
  color: #fff;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.top-lp .top-skills__title {
  font-size: 36px;
  font-weight: 700;
  color: #002447;
  margin-bottom: 16px;
  line-height: 1.4;
}
.top-lp .top-skills__subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #E39B2F;
  margin-bottom: 20px;
}
.top-lp .top-skills__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}
.top-lp .top-skills__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}
.top-lp .top-skills__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.top-lp .top-skills__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.top-lp .top-skills__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 24px auto 16px;
}
.top-lp .top-skills__number--primary {
  background: linear-gradient(135deg, #005bab 0%, #003d7a 100%);
}
.top-lp .top-skills__number--dark {
  background: linear-gradient(135deg, #002447 0%, #001528 100%);
}
.top-lp .top-skills__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #002447;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 20px;
}
.top-lp .top-skills__image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.top-lp .top-skills__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-lp .top-skills__description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  padding: 20px;
  margin-bottom: 16px;
}
.top-lp .top-skills__tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin: 0 20px 20px;
}
.top-lp .top-skills__tag--primary {
  background: linear-gradient(135deg, #005bab 0%, #003d7a 100%);
  color: #fff;
}
.top-lp .top-skills__tag--gray {
  background: #f5f5f5;
  color: #555;
  border: 2px solid #e0e0e0;
}
.top-lp .top-skills__check {
  color: #E39B2F;
  font-weight: 700;
  margin-right: 6px;
}
.top-lp .top-skills__venn-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 40px;
  border-radius: 20px;
}
.top-lp .top-skills__venn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.top-lp .top-skills__venn-wrapper {
  max-width: 500px;
  margin: 0 auto;
}
.top-lp .top-skills__venn-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.top-lp .top-skills__venn-source {
  font-size: 12px;
  color: #777;
  margin-top: 12px;
  font-style: italic;
}
.top-lp .top-skills__venn-text {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
}
.top-lp .top-skills__venn-emphasis { font-weight: 700; }
.top-lp .top-skills__venn-emphasis--blue { color: #005bab; }
.top-lp .top-skills__venn-emphasis--orange { color: #E39B2F; }
.top-lp .top-skills__venn-box {
  background: #fff;
  border: 2px solid #005bab;
  border-radius: 12px;
  padding: 24px;
}
.top-lp .top-skills__venn-badge {
  display: inline-block;
  background: #005bab;
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}
.top-lp .top-skills__venn-box-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}
.top-lp .top-skills__text-blue { color: #005bab; font-weight: 600; }
.top-lp .top-skills__text-orange { color: #E39B2F; font-weight: 600; }

/* --- Business Use Cases --- */
.top-lp .top-usecases {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}
.top-lp .top-usecases__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-lp .top-usecases__header {
  text-align: center;
  margin-bottom: 60px;
}
.top-lp .top-usecases__badge {
  display: inline-block;
  background: #E39B2F;
  color: #fff;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.top-lp .top-usecases__title {
  font-size: 36px;
  font-weight: 700;
  color: #002447;
  margin-bottom: 20px;
  line-height: 1.4;
}
.top-lp .top-usecases__title-gradient {
  background: linear-gradient(135deg, #005bab 0%, #E39B2F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.top-lp .top-usecases__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}
.top-lp .top-usecases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
.top-lp .top-usecases__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.top-lp .top-usecases__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.top-lp .top-usecases__image-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.top-lp .top-usecases__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.top-lp .top-usecases__card:hover .top-usecases__image {
  transform: scale(1.05);
}
.top-lp .top-usecases__content { padding: 30px; }
.top-lp .top-usecases__label {
  display: inline-block;
  background: #E39B2F;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.top-lp .top-usecases__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #002447;
  margin-bottom: 12px;
  line-height: 1.4;
}
.top-lp .top-usecases__highlight {
  font-size: 15px;
  font-weight: 600;
  color: #005bab;
  margin-bottom: 12px;
  line-height: 1.6;
}
.top-lp .top-usecases__description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
.top-lp .top-usecases__bold {
  font-weight: 700;
  color: #002447;
}

/* --- Courses --- */
.top-lp .top-courses {
  padding: 80px 0;
  background: #fff;
}
.top-lp .top-courses__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-lp .top-courses__header {
  text-align: center;
  margin-bottom: 60px;
}
.top-lp .top-courses__badge {
  display: inline-block;
  background: #005bab;
  color: #fff;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.top-lp .top-courses__title {
  font-size: 36px;
  font-weight: 700;
  color: #002447;
  margin-bottom: 16px;
  line-height: 1.4;
}
.top-lp .top-courses__subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 900px;
  margin: 0 auto 16px;
}
.top-lp .top-courses__lead {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 900px;
  margin: 0 auto;
}
.top-lp .top-courses__main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}
.top-lp .top-courses__main-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.top-lp .top-courses__main-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.top-lp .top-courses__main-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.top-lp .top-courses__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-lp .top-courses__main-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
}
.top-lp .top-courses__reskill-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #E39B2F 0%, #d88b1f 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.top-lp .top-courses__main-content { padding: 32px; }
.top-lp .top-courses__target {
  display: inline-block;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #01579b;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.top-lp .top-courses__main-title {
  font-size: 24px;
  font-weight: 700;
  color: #002447;
  margin-bottom: 16px;
  line-height: 1.4;
}
.top-lp .top-courses__main-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
}
.top-lp .top-courses__price-box {
  background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
  border: 2px solid #005bab;
  border-radius: 12px;
  padding: 24px;
}
.top-lp .top-courses__note {
  font-size: 12px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 16px;
}
.top-lp .top-courses__price {
  font-size: 40px;
  font-weight: 700;
  color: #005bab;
  margin-bottom: 16px;
}
.top-lp .top-courses__price-tax {
  font-size: 18px;
  color: #666;
}
.top-lp .top-courses__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.top-lp .top-courses__feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #002447;
}
.top-lp .top-courses__check { color: #E39B2F; font-weight: 700; }
.top-lp .top-courses__industry {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 40px;
  border-radius: 20px;
}
.top-lp .top-courses__industry-header {
  text-align: center;
  margin-bottom: 50px;
}
.top-lp .top-courses__industry-badge {
  display: inline-block;
  background: linear-gradient(135deg, #E39B2F 0%, #d88b1f 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.top-lp .top-courses__industry-title {
  font-size: 30px;
  font-weight: 700;
  color: #002447;
  margin-bottom: 16px;
  line-height: 1.4;
}
.top-lp .top-courses__industry-lead {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}
.top-lp .top-courses__industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.top-lp .top-courses__industry-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.top-lp .top-courses__industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* small fixes for WP/SWELL defaults */
.top-lp .top-courses a,
.top-lp .top-usecases a {
  color: inherit;
}

/* Responsive (only for these blocks) */
@media (max-width: 968px) {
  .top-lp .top-skills__venn-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .top-lp .top-reskilling { padding: 60px 0; }
  .top-lp .top-reskilling__cta { padding: 40px 24px; }
  .top-lp .top-reskilling__cta-title { font-size: 22px; }

  .top-lp .top-skills { padding: 60px 0; }
  .top-lp .top-skills__title { font-size: 28px; }
  .top-lp .top-skills__grid { grid-template-columns: 1fr; gap: 30px; }
  .top-lp .top-skills__venn-section { padding: 40px 24px; }

  .top-lp .top-usecases { padding: 60px 0; }
  .top-lp .top-usecases__title { font-size: 28px; }
  .top-lp .top-usecases__grid { grid-template-columns: 1fr; gap: 30px; }

  .top-lp .top-courses { padding: 60px 0; }
  .top-lp .top-courses__title { font-size: 28px; }
  .top-lp .top-courses__main-grid { grid-template-columns: 1fr; gap: 30px; }
  .top-lp .top-courses__industry { padding: 40px 24px; }
  .top-lp .top-courses__industry-grid { grid-template-columns: 1fr; gap: 24px; }
  .top-lp .top-courses__price { font-size: 32px; }
}
/* =========================================
   V0差分吸収パッチ（SWELL干渉をLP内だけで抑える）
   ここを足すと「ところどころ違う」を一気に減らせます
   ========================================= */

/* 1) SWELLの余白・行間・フォントサイズ差を吸収（LP内だけ） */
.top-lp .top-reskilling,
.top-lp .top-skills,
.top-lp .top-usecases,
.top-lp .top-courses {
  box-sizing: border-box;
  font-family: inherit;
}

.top-lp .top-reskilling *,
.top-lp .top-skills *,
.top-lp .top-usecases *,
.top-lp .top-courses * {
  box-sizing: border-box;
}

/* 2) 見出し/本文のデフォ余白をV0寄せに統一 */
.top-lp .top-reskilling h2,
.top-lp .top-reskilling h3,
.top-lp .top-skills h2,
.top-lp .top-skills h3,
.top-lp .top-usecases h2,
.top-lp .top-usecases h3,
.top-lp .top-courses h2,
.top-lp .top-courses h3 {
  margin-top: 0;
}

.top-lp .top-reskilling p,
.top-lp .top-skills p,
.top-lp .top-usecases p,
.top-lp .top-courses p {
  margin-top: 0;
}

/* 3) リストがSWELLで崩れるのを防ぐ（左の点・余計なpaddingを消す） */
.top-lp .top-reskilling ul,
.top-lp .top-skills ul,
.top-lp .top-usecases ul,
.top-lp .top-courses ul {
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}

/* 4) aタグがSWELLで色ついたり下線入ったりする差を吸収 */
.top-lp .top-reskilling a,
.top-lp .top-skills a,
.top-lp .top-usecases a,
.top-lp .top-courses a {
  text-decoration: none;
}

/* 5) 画像がinline扱いで隙間/ズレが出るのを防ぐ */
.top-lp .top-reskilling img,
.top-lp .top-skills img,
.top-lp .top-usecases img,
.top-lp .top-courses img {
  display: block;
}

/* 6) グリッドが崩れる端末幅が出る場合の保険 */
@media (max-width: 560px) {
  .top-lp .top-courses__main-image-wrapper { height: 240px; }
  .top-lp .top-usecases__image-wrapper { height: 220px; }
  .top-lp .top-skills__image-wrapper { height: 200px; }
}

/* ========================================
   Business Use Cases (V0・濃紺版に寄せる)
   ======================================== */

.top-lp .top-usecases{
  padding: 90px 0;
  background: linear-gradient(180deg, #001b33 0%, #002a4c 55%, #001b33 100%);
  color: #fff;
}

.top-lp .top-usecases__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-lp .top-usecases__header{
  text-align: center;
  margin-bottom: 56px;
}

.top-lp .top-usecases__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(90, 220, 255, 0.55);
  background: rgba(0, 40, 70, 0.25);
  color: rgba(180, 245, 255, 0.95);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.top-lp .top-usecases__title{
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px 0;
  color: #fff;
}

.top-lp .top-usecases__lead{
  margin: 0 auto;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
}

/* 3カラムを強制（理想画像に合わせる） */
.top-lp .top-usecases__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.top-lp .top-usecases__card{
  background: rgba(0, 39, 72, 0.55);
  border: 1px solid rgba(90, 220, 255, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.top-lp .top-usecases__image-wrapper{
  height: 180px; /* 理想画像の比率に寄せ */
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.top-lp .top-usecases__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-lp .top-usecases__content{
  padding: 18px 18px 20px;
}

.top-lp .top-usecases__label{
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  margin: 0 0 10px 0;
}

.top-lp .top-usecases__card-title{
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #fff;
}

.top-lp .top-usecases__highlight{
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: rgba(90, 220, 255, 0.95);
}

.top-lp .top-usecases__description{
  margin: 0;
  font-size: 12px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
}

.top-lp .top-usecases__bold{
  font-weight: 800;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px){
  .top-lp .top-usecases__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px){
  .top-lp .top-usecases{
    padding: 70px 0;
  }
  .top-lp .top-usecases__title{
    font-size: 28px;
  }
  .top-lp .top-usecases__grid{
    grid-template-columns: 1fr;
  }
  .top-lp .top-usecases__image-wrapper{
    height: 200px;
  }
}
/* ========================================
   Courses > Industry (理想画像のデザイン寄せ)
   scope: .top-lp only
   ======================================== */

.top-lp .top-courses__industry{
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 40px;
  border-radius: 20px;
}

.top-lp .top-courses__industry-header{
  text-align: center;
  margin-bottom: 50px;
}

.top-lp .top-courses__industry-badge{
  display: inline-block;
  background: linear-gradient(135deg, #E39B2F 0%, #d88b1f 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.top-lp .top-courses__industry-title{
  font-size: 30px;
  font-weight: 800;
  color: #002447;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.top-lp .top-courses__industry-lead{
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  max-width: 860px;
  margin: 0 auto;
}

/* 3カラムのカード */
.top-lp .top-courses__industry-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* カード本体：理想の “色つき枠 + 影” */
.top-lp .top-courses__industry-card{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 2px solid rgba(0,0,0,0.06);
}

.top-lp .top-courses__industry-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
}

/* 上部の横長画像 */
.top-lp .top-courses__industry-image-wrapper{
  position: relative;
  height: 140px;
  overflow: hidden;
  background: #f0f3f6;
}

.top-lp .top-courses__industry-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-lp .top-courses__industry-image-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.10) 100%);
}

/* 下のテキストエリア */
.top-lp .top-courses__industry-content{
  position: relative;
  padding: 34px 26px 26px;
  text-align: center;
}

/* 中央の丸画像（重なり） */
.top-lp .top-courses__industry-circle{
  width: 74px;
  height: 74px;
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  margin: -55px auto 10px; /* ここが “重なり” の肝 */
  background: #fff;
}

.top-lp .top-courses__industry-circle-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキスト */
.top-lp .top-courses__industry-label{
  margin: 0 0 6px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #5a6a7a;
}

.top-lp .top-courses__industry-name{
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 800;
  color: #002447;
}

.top-lp .top-courses__industry-course{
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #4f5b66;
}

/* 枠色（理想画像の3色っぽく） */
.top-lp .top-courses__industry-card--manufacturing{ border-color: rgba(0, 91, 171, 0.35); }
.top-lp .top-courses__industry-card--marketing{     border-color: rgba(233, 30, 99, 0.30); }
.top-lp .top-courses__industry-card--medical{       border-color: rgba(76, 175, 80, 0.30); }

.top-lp .top-courses__industry-card--manufacturing .top-courses__industry-name{ color: #0a4f9c; }
.top-lp .top-courses__industry-card--marketing .top-courses__industry-name{     color: #c2185b; }
.top-lp .top-courses__industry-card--medical .top-courses__industry-name{       color: #2e7d32; }

/* Responsive */
@media (max-width: 1024px){
  .top-lp .top-courses__industry-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px){
  .top-lp .top-courses__industry{ padding: 40px 24px; }
  .top-lp .top-courses__industry-grid{ grid-template-columns: 1fr; }
}

/* ========================================
   Industry cards: もう少し理想に寄せる微調整パッチ
   ======================================== */

/* セクション全体：影と余白を少し強める */
.top-lp .top-courses__industry{
  padding: 64px 44px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

/* グリッド：カード間の間隔を理想に寄せる */
.top-lp .top-courses__industry-grid{
  gap: 32px;
}

/* カード：枠色・影・角丸を理想っぽく */
.top-lp .top-courses__industry-card{
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  border-width: 2px;
}

.top-lp .top-courses__industry-card:hover{
  box-shadow: 0 18px 44px rgba(0,0,0,0.16);
}

/* 上の横長画像：少し背を低くして“理想の比率”に寄せる */
.top-lp .top-courses__industry-image-wrapper{
  height: 130px;
}

/* 下のコンテンツ：余白と中央寄せを整える */
.top-lp .top-courses__industry-content{
  padding: 36px 26px 26px;
}

/* 丸画像：少し大きく＆重なり強める（理想の“浮いてる感”） */
.top-lp .top-courses__industry-circle{
  width: 86px;
  height: 86px;
  margin: -62px auto 12px;
  border-width: 4px;
  box-shadow: 0 14px 26px rgba(0,0,0,0.16);
}

/* ラベルと日本語タイトル：理想の見え方に近づける */
.top-lp .top-courses__industry-label{
  font-size: 10px;
  letter-spacing: 1.4px;
  opacity: 0.85;
}

/* “マニュファクチャリング”が変な改行になるのを防ぐ */
.top-lp .top-courses__industry-name{
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
  word-break: keep-all;
  line-break: strict;
  white-space: nowrap; /* PCで崩れ防止 */
}

@media (max-width: 680px){
  .top-lp .top-courses__industry-name{
    white-space: normal; /* スマホは折り返しOK */
  }
}

/* コース名の箱っぽさを少し出す（理想の“ボタン/チップ感”） */
.top-lp .top-courses__industry-course{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
}

/* ========================================
   Industry cards 最終仕上げ（サイズ＆色味強化）
   ======================================== */

/* ▼ カード全体を一回り大きく */
.top-lp .top-courses__industry-grid{
  gap: 36px;
}

.top-lp .top-courses__industry-card{
  transform: scale(1.03);
}

/* ▼ 上部画像エリアを少し高く */
.top-lp .top-courses__industry-image-wrapper{
  height: 150px;
}

/* ▼ 上部画像に色味オーバーレイを強くかける */
.top-lp .top-courses__industry-card--manufacturing
.top-courses__industry-image-overlay{
  background: linear-gradient(
    135deg,
    rgba(0, 91, 171, 0.65),
    rgba(0, 91, 171, 0.25)
  );
}

.top-lp .top-courses__industry-card--marketing
.top-courses__industry-image-overlay{
  background: linear-gradient(
    135deg,
    rgba(233, 30, 99, 0.65),
    rgba(233, 30, 99, 0.25)
  );
}

.top-lp .top-courses__industry-card--medical
.top-courses__industry-image-overlay{
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.65),
    rgba(76, 175, 80, 0.25)
  );
}

/* ▼ 丸画像をさらに大きく＆上に持ち上げる */
.top-lp .top-courses__industry-circle{
  width: 96px;
  height: 96px;
  margin: -72px auto 14px;
  border-width: 5px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.22);
}

/* ▼ カード下部を少し“余白リッチ”に */
.top-lp .top-courses__industry-content{
  padding: 42px 28px 30px;
}

/* ▼ タイトルを少しだけ太く */
.top-lp .top-courses__industry-name{
  font-size: 19px;
  font-weight: 800;
}

/* ========================================
   Learning Flow (LP only)
   ======================================== */

.top-lp .top-learning-flow{
  position: relative;
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.top-lp .top-learning-flow__bg-decoration{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.top-lp .top-learning-flow__circle{
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.top-lp .top-learning-flow__circle--blue{
  width: 400px;
  height: 400px;
  background: #005bab;
  top: 10%;
  right: -100px;
}

.top-lp .top-learning-flow__circle--orange{
  width: 300px;
  height: 300px;
  background: #E39B2F;
  bottom: 20%;
  left: -80px;
}

.top-lp .top-learning-flow__container{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-lp .top-learning-flow__header{
  text-align: center;
  margin-bottom: 60px;
}

.top-lp .top-learning-flow__badge{
  display: inline-block;
  padding: 8px 20px;
  background: #E39B2F;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

.top-lp .top-learning-flow__title{
  font-size: 32px;
  font-weight: 800;
  color: #002447;
  margin-bottom: 20px;
  line-height: 1.4;
}

.top-lp .top-learning-flow__lead{
  font-size: 18px;
  color: #4a5568;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.top-lp .top-learning-flow__steps{ margin-bottom: 60px; }

.top-lp .top-learning-flow__step{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.top-lp .top-learning-flow__step--reverse .top-learning-flow__step-image{ order: 2; }
.top-lp .top-learning-flow__step--reverse .top-learning-flow__step-content{ order: 1; }

.top-lp .top-learning-flow__step-image{
  border-radius: 12px;
  overflow: hidden;
}

.top-lp .top-learning-flow__step-image img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.top-lp .top-learning-flow__step-content{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top-lp .top-learning-flow__step-header{
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-lp .top-learning-flow__step-number{
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #005bab 0%, #003d82 100%);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
}

.top-lp .top-learning-flow__step-title{
  font-size: 20px;
  font-weight: 800;
  color: #002447;
  line-height: 1.4;
  margin: 0;
}

.top-lp .top-learning-flow__problem{
  background: #fff5f5;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #e91e63;
}

.top-lp .top-learning-flow__problem-label{
  font-size: 12px;
  font-weight: 800;
  color: #e91e63;
  margin: 0 0 8px;
}

.top-lp .top-learning-flow__problem-text{
  font-size: 15px;
  color: #2d3748;
  line-height: 1.6;
  margin: 0;
}

.top-lp .top-learning-flow__solution{
  background: #f0f9ff;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #005bab;
}

.top-lp .top-learning-flow__solution-label{
  font-size: 12px;
  font-weight: 800;
  color: #005bab;
  margin: 0 0 8px;
}

.top-lp .top-learning-flow__solution-text{
  font-size: 15px;
  color: #2d3748;
  line-height: 1.6;
  margin: 0;
}

.top-lp .top-learning-flow__step-description{
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

.top-lp .top-learning-flow__arrow{
  text-align: center;
  font-size: 32px;
  color: #005bab;
  margin: 20px 0;
}

.top-lp .top-learning-flow__cta{
  background: linear-gradient(135deg, #002447 0%, #005bab 100%);
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
}

.top-lp .top-learning-flow__cta-title{
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.4;
}

.top-lp .top-learning-flow__cta-text{
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto 30px;
  opacity: .95;
  max-width: 800px;
}

.top-lp .top-learning-flow__cta-button{
  display: inline-block;
  padding: 16px 40px;
  background: #E39B2F;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.top-lp .top-learning-flow__cta-button:hover{
  background: #d88b1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227,155,47,.4);
}

@media (max-width: 768px){
  .top-lp .top-learning-flow{ padding: 60px 0; }
  .top-lp .top-learning-flow__title{ font-size: 24px; }
  .top-lp .top-learning-flow__lead{ font-size: 16px; }
  .top-lp .top-learning-flow__step{ grid-template-columns: 1fr; padding: 30px 20px; gap: 24px; }
  .top-lp .top-learning-flow__step--reverse .top-learning-flow__step-image{ order: 1; }
  .top-lp .top-learning-flow__step--reverse .top-learning-flow__step-content{ order: 2; }
  .top-lp .top-learning-flow__step-title{ font-size: 18px; }
  .top-lp .top-learning-flow__cta{ padding: 40px 24px; }
  .top-lp .top-learning-flow__cta-title{ font-size: 22px; }
  .top-lp .top-learning-flow__cta-text{ font-size: 15px; }
}