/* hero → final, in document order */

/* ────────────────────────────────────
   HERO v2  (FV)
   ──────────────────────────────────── */

.hero-v2 {
  position: relative;
  overflow: visible;
  min-height: 100vh;
}

/* background decorative lines */
.hero-v2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -92px;
  width: calc(50vw + 1px);
  height: 220px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.34) 0, rgba(255,255,255,0) 24%),
    linear-gradient(118deg, #201a4e 0%, #3f34a0 38%, #7b5cff 72%, #c44ddb 100%);
  background-size: 220% 220%;
  background-position: 0% 50%;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  z-index: -1;
  pointer-events: none;
  will-change: background-position;
  animation: heroTriangleLeft 5.2s ease-in-out infinite alternate;
}

.hero-v2::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 128px;
  width: calc(50vw + 1px);
  height: 220px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,0.34) 0, rgba(255,255,255,0) 24%),
    linear-gradient(110deg, #ff6fba 0%, #ff4fa0 20%, #8a48e5 58%, #4b2fff 100%);
  background-size: 220% 220%;
  background-position: 100% 50%;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: -1;
  pointer-events: none;
  will-change: background-position;
  animation: heroTriangleRight 4.4s ease-in-out infinite alternate;
}

@keyframes heroTriangleLeft {
  0%   { background-position: 0% 50%; }
  35%  { background-position: 35% 20%; }
  65%  { background-position: 70% 60%; }
  100% { background-position: 100% 45%; }
}

@keyframes heroTriangleRight {
  0%   { background-position: 100% 50%; }
  30%  { background-position: 68% 24%; }
  70%  { background-position: 28% 78%; }
  100% { background-position: 0% 52%; }
}

.hero-v2-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 60px;
  display: block;
  min-height: 100vh;
  position: relative;
  z-index: 4;
}

/* ── Left column ── */
.hero-v2-left {
  max-width: 50vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  z-index: 3;
}

.hero-v2-sub-label {
  font-weight: 500;
  color: var(--mu);
}

.hero-v2-heading {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  letter-spacing: -1px;
}

.hero-v2-heading .num {
  font-size: 49px;
}

.hero-v2-heading .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v2-sub {
  font-weight: 500;
  line-height: 1.8;
  color: var(--ink2);
  margin: 0;
}

/* Badges row */
.hero-v2-badges {
  display: flex;
  gap: 12px;
  width: auto;
}

.hero-v2-badge {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.hero-v2-badges img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* CTA */
.hero-v2-cta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.hero-v2-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  width: 368px;
  box-shadow: var(--primary-shadow);
  transition: opacity 0.2s;
}

.hero-v2-btn:hover { opacity: 0.88; }

.hero-v2-note {
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-body);
}

/* ── Right column: photo ── */
.hero-v2-right {
  position: absolute;
  right: 0;
  bottom: 1vw;
  width: 48vw;
  height: 760px;
  overflow: visible;
  z-index: 2;
}

.hero-v2-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 98%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

/* decorative elements over photo */
.hero-v2-deco {
  position: absolute;
  bottom: 80px;
  left: 20px;
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.hero-v2-deco img {
  width: 220px;
  height: auto;
  object-fit: contain;
}

/* ────────────────────────────────────
   CAMPAIGN CARD (embedded in hero)
   ──────────────────────────────────── */

.hero-v2-campaign {
  padding: 0 60px 80px;
  position: relative;
  z-index: 3;
}

.hero-v2-campaign-inner {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border-top: 2px solid #4b2fff;
  border-radius: 0 0 8px 8px;
  padding: 20px 38px 22px;
  position: relative;
  overflow: hidden;
}

.hero-v2-campaign-inner::before {
  content: '';
  position: absolute;
  top: -132px;
  right: -170px;
  width: 308px;
  height: 308px;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0.12;
  filter: blur(40px);
  pointer-events: none;
}

.hero-v2-campaign-inner::after {
  content: '';
  position: absolute;
  width: 196px;
  height: 196px;
  left: -58px;
  bottom: -86px;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0.08;
  filter: blur(36px);
  pointer-events: none;
}

.camp-v2-tag {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 6px 14px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  background-color: rgba(117, 70, 255, 0.08);
}

.camp-v2-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.camp-v2-price-block {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.camp-v2-price-visual {
  width: 100%;
  max-width: 360px;
  flex-shrink: 0;
}

.camp-v2-price-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.camp-v2-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink2);
  text-align: left;
  max-width: none;
  flex: 1;
  margin: 0;
}

.camp-v2-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 79, 160, 0.8) 0%, rgba(75, 47, 255, 0.8) 100%);
}

.camp-v2-footer {
  display: flex;
  gap: 22px;
  align-items: center;
}

.camp-v2-logo {
  width: 40%;
  max-width: 120px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.camp-v2-footnote {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}

.camp-v2-link-row {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.camp-v2-link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(71, 138, 255, 0.5);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-v2-inner { padding: 0 40px; }
  .hero-v2-left {
    max-width: 640px;
    padding-bottom: 40px;
  }
  .hero-v2-right { width: 60vw;}
  .hero-v2-heading { font-size: clamp(32px, 3.4vw, 38px); }
  .hero-v2-heading .num { font-size: clamp(36px, 3.9vw, 43px); }
}

/* PC version: hide on mobile */
@media (max-width: 800px) {
  .hero-v2:not(.hero-v2--mobile) {
    display: none;
  }
  
  .hero-v2--mobile {
    display: block;
  }
}

/* Desktop version: hide mobile */
@media (min-width: 801px) {
  .hero-v2--mobile {
    display: none;
  }
}

/* Mobile version: vertical stack */
@media (max-width: 800px) {
  .hero-v2--mobile {
    position: relative;
    overflow: visible;
    min-height: auto;
    --hero-v2-mobile-gutter: clamp(20px, 5vw, 40px);
  }

  .hero-v2--mobile .hero-v2-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
    position: relative;
    z-index: 2;
  }

  .hero-v2--mobile .hero-v2-sub-label,
  .hero-v2--mobile .hero-v2-heading,
  .hero-v2--mobile .hero-v2-sub,
  .hero-v2--mobile .hero-v2-cta,
  .hero-v2--mobile .hero-v2-note-above {
    padding-inline: var(--hero-v2-mobile-gutter);
  }

  /* Main left section: label + heading */
  .hero-v2--mobile .hero-v2-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: clamp(88px, 14vw, 112px);
    padding-bottom: 24px;
    position: relative;
    z-index: 2;
    isolation: isolate;
    background-image: url('../../img/academy/v2/fv1.png');
    background-repeat: no-repeat;
    background-position: right 2px bottom 300px;
    background-size: auto 48%;
  }

  .hero-v2--mobile .hero-v2-sub-label {
    margin-bottom: 0;
    font-size: 12px;
  }

  .hero-v2--mobile .hero-v2-heading {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 0;
  }

  .hero-v2--mobile .hero-v2-heading .num {
    font-size: 31px;
  }

  /* Middle section: badges + image side by side */
  .hero-v2--mobile .hero-v2-badges-and-image {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 12px;
    align-items: start;
    min-height: 360px;
    position: relative;
    isolation: isolate;
  }

  .hero-v2--mobile .hero-v2-badges-and-image::before,
  .hero-v2--mobile .hero-v2-badges-and-image::after {
    content: '';
    position: absolute;
    pointer-events: none;
    will-change: background-position, filter, transform;
    z-index: -1;
  }

  .hero-v2--mobile .hero-v2-badges {
    display: flex;
    gap: 18px;
    width: auto;
    position: relative;
    z-index: 2;
    padding-top: 22px;
  }

  .hero-v2--mobile .hero-v2-badge {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
  }

  .hero-v2--mobile .hero-v2-right {
    display: none;
  }

  /* Sub text + CTA */
  .hero-v2--mobile .hero-v2-sub {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    grid-column: 2;
    justify-self: center;
  }

  .hero-v2--mobile .hero-v2-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 40px;
    position: relative;
  }

  .hero-v2--mobile .hero-v2-btn {
    width: 100%;
    font-size: 16px;
    padding: 16px 24px;
  }

  .hero-v2--mobile .hero-v2-note-above {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    text-align: center;
    color: #333;
    background: white;
    border: 2px solid #6c5ce7;
    border-radius: 8px;
    padding: 4px 8px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 10;
  }
}

@media (min-width: 550px) and (max-width: 800px) {
  .hero-v2--mobile .hero-v2-badges-and-image {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    min-height: auto;
  }

  .hero-v2--mobile .hero-v2-badges {
    gap: 14px;
    padding-top: 0;
    padding-left: 30px;
  }

  .hero-v2--mobile .hero-v2-sub {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
  }

  .hero-v2--mobile .hero-v2-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 24px;
    position: relative;
    z-index: 2;
    isolation: isolate;
    background-image: url('../../img/academy/v2/fv1.png');
    background-repeat: no-repeat;
    background-position: right 20px bottom 100px;
    background-size: auto 50%;
  }

  .hero-v2-badges-and-image {
    padding-bottom: 30px;
  }

  .camp-v2-price-block{
  flex-direction: column;
  gap: 16px;
  }
}

@media (max-width: 549px) {
  .hero-v2--mobile .hero-v2-badges-and-image {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
    min-height: auto;
    padding-bottom: 30px;
  }

  .hero-v2--mobile .hero-v2-badge {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
  }

  .hero-v2--mobile .hero-v2-heading {
    font-size: 24px;
    line-height: 1.4;
  }

  .hero-v2--mobile .hero-v2-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 24px;
    position: relative;
    z-index: 2;
    isolation: isolate;
    background-image: url('../../img/academy/v2/fv1.png');
    background-repeat: no-repeat;
    background-position: right 2px bottom 140px;
    background-size: auto 42%;
  }

  .hero-v2--mobile .hero-v2-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 0;
    padding-left: 30px;
    max-width: 154px;
  }

  .hero-v2--mobile .hero-v2-sub {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    max-width: 36ch;
    font-size: 12px;
    text-align: left;
  }

  .hero-v2-campaign {
    padding: 0 16px 60px;
  }

  .attn-photos {
    display: none;
  }

  .camp-v2-price-block{
  flex-direction: column;
  gap: 16px;
  }
 
}

/* ────────────────────────────────────
   ATTENTION SECTION
   ──────────────────────────────────── */

/* ── Part 1: Light top ── */
.sec-attention {
  background: rgba(248,248,250,0.72);
  padding: 100px 0 0;
}

.sec-attention .wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
}

.attn-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.attn-label {
  display: flex;
  gap: 10px;
  align-items: center;
}

.attn-label-divider {
  width: 20px;
  height: 1px;
  background: var(--grad-label);
}

.attn-label-text {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.attn-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -2px;
  color: var(--ink);
  text-align: center;
  margin: 0;
}

.attn-heading em {
  font-style: normal;
}

/* ── Intro row: text + illustration ── */
.attn-intro-row {
  display: flex;
  gap: 53px;
  align-items: center;
  width: 100%;
}

.attn-intro-text {
  flex: 1;
}

.attn-intro-text p {
  margin: 0;
}

.attn-intro-text .attn-emphasis {
  font-weight: 800;
}

.attn-illust {
  width: 300px;
  height: 240px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.attn-illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Part 2: Dark bottom ── */
.attn-dark {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  margin-top: 60px;
  width: 100%;
  isolation: isolate;
  background: #2f2a69;
}

.attn-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36%;
  height: 20%;
  background: linear-gradient(135deg, #5a38ff 0%, #d947b8 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: -20;
}


.attn-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 30%;
  background: linear-gradient(315deg, #5a38ff 0%, #d947b8 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: -20;
}

/* Dark section title */
.attn-dark-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -2px;
  text-align: center;
  color: white;
  margin: 0;
  position: relative;
}

.attn-dark-title::before {
  content: none;
}

.attn-dark-title::after {
  content: none;
}

.attn-dark-title .grad-light {
  background: var(--grad-label-w);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.attn-dark-subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: white;
  text-align: center;
  margin: 0;
  max-width: 560px;
}

.attn-dark .wrap {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

/* Dark section body: photos left + items right */
.attn-dark-body {
  display: flex;
  gap: 48px;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
}

/* Photo collage */
.attn-photos {
  flex: 0 0 340px;
  min-width: 0;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.attn-photo {
  position: static;
  width: 100%;
  border-radius: 0;
  overflow: visible;
}

.attn-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.attn-photo-1 {
  max-width: 340px;
}

.attn-photo-2 {
  display: none;
}

.attn-photo-3 {
  display: none;
}

.attn-photo-4 {
  display: none;
}

/* Numbered items */
.attn-items {
  flex: 0 1 430px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}

.attn-item {
  padding: 0;
  width: 84%;
}

.attn-item:nth-child(even) {
  padding-left: 0;
  align-self: flex-end;
  width: 92%;
}

.attn-item:nth-child(odd) {
  align-self: flex-start;
}

.attn-item-inner {
  background: rgba(255, 255, 255, 0.98);
  border-left: none;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 10px 24px rgba(10, 8, 48, 0.16);
}

.attn-item-num {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(92.43deg, #3c00ff 8.43%, #ed0f68 94.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.attn-item-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #2a2a35;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sec-attention .wrap,
  .attn-dark .wrap {
    padding: 0 40px;
  }

  .attn-intro-row {
    flex-direction: column;
    gap: 30px;
  }

  .attn-illust {
    width: 100%;
    height: 200px;
  }

  .attn-dark-body {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .attn-photos {
    width: 100%;
    min-height: 0;
    flex: none;
  }

  .attn-photo-1 {
    max-width: 320px;
  }

  .attn-items {
    width: 100%;
    max-width: 520px;
    flex: none;
  }
}

@media (max-width: 600px) {
  .sec-attention {
    padding: 40px 0 0;
  }

  .attn-dark {
    padding: 40px 0;
  }

  .sec-attention .wrap,
  .attn-dark .wrap {
    padding: 0 20px;
  }

  .attn-heading { font-size: 28px; }
  .attn-dark-title { font-size: 28px; }
  .attn-dark-subtitle { font-size: 14px; }

  .attn-item,
  .attn-item:nth-child(even) {
    width: 100%;
  }

  .attn-item-num { font-size: 24px; }

  .attn-items {
    order: 1;
  }

  .attn-photos {
    display: none;
  }

  .attn-photo {
    position: static;
  }

  .attn-photo-1 {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .attn-photo-2,
  .attn-photo-3,
  .attn-photo-4 {
    display: none;
  }

  .attn-photo-1 img {
    width: 100%;
    height: auto;
    display: block;
  }
}


/* ────────────────────────────────────
   DATA SECTION  (データで見るAIの活用の現状)
   ──────────────────────────────────── */

.sec-data {
  background: rgba(248,248,250,0.72);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sec-data::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: 80px;
  width: 441px;
  height: 441px;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0.08;
  filter: blur(40px);
  pointer-events: none;
}

.sec-data .wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Section header ── */
.data-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.data-header .feature-section-header {
  margin-top: 0;
}



/* ── Main content: stats + text ── */
.data-body {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 100%;
  min-height: 400px;
}

/* ── Left: stats column ── */
.data-stats-col {
  display: flex;
  flex-direction: column;
  gap: 68px;
  flex: 1;
  justify-content: center;
}

/* Stat block */
.data-stat-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.data-stat-block img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── Right: text column ── */
.data-text-col {
  flex: 1;
}

.data-stat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.data-stat-main {
  display: flex;
  gap: 24px;
  align-items: center;
}

.data-big-number {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.data-big-number sup {
  font-size: 32px;
  vertical-align: baseline;
}

/* Bar chart */
.data-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}

.data-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.data-bar-country {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  width: 48px;
  flex-shrink: 0;
}

.data-bar-wrap {
  position: relative;
  height: 20px;
}

.data-bar-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 4px;
  background: rgba(237, 221, 255, 0.72);
}

.data-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 4px;
}

.data-bar-fill.jp   { background: #af949a; }
.data-bar-fill.us   { background: #e8899e; }
.data-bar-fill.cn   { background: #ff6486; }

.data-bar-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

/* Growth chart */
.data-growth-chart {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.data-bars-pair {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.data-bar-past {
  width: 40px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(21deg, #c7c3df 23.56%, #c1c1c1 172.7%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-bar-now {
  width: 40px;
  height: 67px;
  border-radius: 4px;
  background: #ff6486;
}

.data-bars-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
}

.data-bar-past-label { color: #827ca1; }
.data-bar-now-label  { color: var(--ink); }

/* Source note */
.data-source {
  font-family: var(--font-mono);
  font-size: 9.6px;
  color: var(--mu);
  margin-top: 4px;
}

/* ── Right: description text ── */
.data-text-col {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink2);
}

.data-text-col p {
  margin: 0 0 0 0;
}

.data-text-col p + p {
  margin-top: 1em;
}

.data-text-col .grad {
  background: var(--grad-120);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* ── Bottom headline ── */
.data-headline {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -2px;
  color: #151515;
  text-align: center;
  width: 100%;
}

/* ── CTA ── */
.data-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.data-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.72px;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  width: 368px;
  box-shadow: var(--primary-shadow);
  transition: opacity 0.2s;
}

.data-cta-btn:hover { opacity: 0.88; }

.data-cta-btn svg {
  flex-shrink: 0;
}

.data-cta-note {
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-body);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .data-body {
    flex-direction: column;
    gap: 40px;
    min-height: auto;
  }

  .data-stats-col {
    width: 100%;
  }

  .data-text-col {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .sec-data .wrap { padding: 0 40px; }
}

@media (max-width: 600px) {
  .sec-data { padding: 40px 0; }
  .sec-data .wrap { padding: 0 20px; }

  .data-headline { font-size: 24px; }

  .data-cta-btn { width: 100%; font-size: 16px; }

  .data-big-number { font-size: 52px; }
  .data-big-number sup { font-size: 26px; }
}


/* ────────────────────────────────────
   ABOUT SECTION  (ジョブトレアカデミーとは)
   ──────────────────────────────────── */

.sec-about {
  background: rgba(255,255,255,0.72);
  padding: 100px 0;
}

.sec-about .wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ── Card ── */
.about-card {
  background: rgba(254, 247, 255, 0.82);
  border-top: 4px solid #4b2fff;
  border-radius: 0 0 12px 12px;
  padding: 0 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Title ── */
.about-card-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.about-card-title {
  width: fit-content;
  margin: 0 auto;
  padding: 6px 14px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  background-color: rgba(117, 70, 255, 0.08);
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-card-title-underline {
  width: 100%;
  max-width: 386px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-title-underline img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Body Layout ── */
.about-card-body {
  display: flex;
  align-items: center;
  width: 100%;
}

.about-card-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

/* ── Quote Box ── */
.about-quote-box {
  background: rgba(254, 250, 255, 0.78);
  padding: 16px;
  position: relative;
}

.about-quote-box::before,
.about-quote-box::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 20px;
  background: var(--grad);
  pointer-events: none;
}

.about-quote-box::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.about-quote-box::after {
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.about-quote-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink2);
  margin: 0;
}

.about-quote-text .grad {
  background: var(--grad-120);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink2);
  margin: 0;
}

/* ── Image Column ── */
.about-card-image-col {
  flex: 1.2;
  position: relative;
  height: 350px;
}

.about-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 230px;
  border-radius: 8px;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.about-img-sub {
  position: absolute;
  top: 120px;
  left: 0;
  width: 200px;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  background: #d9d9d9;
}

.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Stats ── */
.about-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-stat-icon {
  width: auto;
  height: 43px;
  object-fit: contain;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .sec-about .wrap {
    padding: 0 40px;
  }

  .about-card-body {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .sec-about {
    padding: 40px 0;
  }

  .sec-about .wrap {
    padding: 0 20px;
  }

  .about-card-body {
    flex-direction: column;
    align-items: stretch;
  }

  .about-card-image-col {
    width: 100%;
    height: auto;
  }

  .about-img-main {
    position: static;
    width: 100%;
    height: 100%;
  }

  .about-img-sub {
    display: none;
  }

  .about-stats {
    left: 0;
    right: auto;
    align-items: flex-start;
  }

  .about-quote-text {
    font-size: 17px;
  }
}


/* ────────────────────────────────────
   FEATURE + STYLE SECTION
   ──────────────────────────────────── */

.sec-feature {
  background: rgba(248,248,250,0.72);
  padding: 100px 0;
}

.sec-feature .wrap {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ────── HEADER ────── */
.feature-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.feature-label {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.feature-label-divider {
  width: 20px;
  height: 1px;
  background: var(--grad);
}

.feature-label-text {
  font-size: 9.6px;
  font-weight: 700;
  letter-spacing: 2.112px;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-title {
  text-align: center;
  padding-bottom: 24.7px;
}

.feature-title h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  letter-spacing: -2px;
}

.feature-title em {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* ────── 3 FEATURE CARDS ────── */
.feature-cards {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc((100% - 40px) / 3);
  padding-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 100%;
  min-height: 520px;
}

.feature-card-image {
  width: 100%;
  height: 186px;
  overflow: hidden;
  position: relative;
  background: rgba(240, 240, 240, 0.72);
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transform-origin: center;
}



.feature-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
  flex: 1;
}

.feature-card-content > div:first-child {
  margin-bottom: auto;
}

.feature-card-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--mu);
  letter-spacing: 1.485px;
  font-weight: 400;
}

.feature-card-title {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-card-title p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}

.feature-card-title .grad {
  background: var(--grad-120);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink2);
  margin-top: auto;
}

.feature-card-desc p {
  margin: 0;
  padding: 0;
}

/* ────── LEARNING STYLE TABLE ────── */
.feature-section-header {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.feature-section-header::before {
  content: '';
  display: block;
  width: 35px;
  height: 8px;
  flex-shrink: 0;
  background: url('../../img/academy/v2/dot-arrow.svg') center/contain no-repeat;
}

.feature-table {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.feature-table-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.feature-table-row:last-child {
  border-bottom: none;
}

.feature-table-label {
  background: rgba(250, 238, 251, 0.82);
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  padding: 15px 22px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink2);
  display: flex;
  align-items: center;
}

.feature-table-value {
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink2);
  display: flex;
  align-items: center;
}

/* ────── WEEKLY SCHEDULE ────── */
.feature-schedule-header {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

.feature-schedule-content {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 27px 31px 34px 31px;
  width: 100%;
  align-self: stretch;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}

.feature-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  z-index: 2;
}

.feature-schedule-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-schedule-bullet {
  width: 5px;
  height: 5px;
  border-radius: 2.5px;
  background: var(--grad-120);
  margin-top: 7px;
  flex-shrink: 0;
}

.feature-schedule-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink2);
}

.feature-schedule-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink2);
}

.feature-schedule-image {
  position: absolute;
  bottom: 0;
  right: 30px;
  width: 200px;
  height: 200px;
  overflow: hidden;
}

.feature-schedule-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ────── RESPONSIVE ────── */
@media (max-width: 1200px) {
  .sec-feature .wrap {
    padding: 0 40px;
  }
}

@media (max-width: 900px) {
  .feature-cards {
    flex-direction: column;
  }

  .feature-card {
    width: 100%;
    min-height: unset;
  }
}

@media (max-width: 768px) {
  .sec-feature {
    padding: 40px 0;
  }

  .sec-feature .wrap {
    gap: 24px;
    padding: 0 20px;
  }

  .feature-card {
    width: 100%;
  }

  .feature-title h2 {
    font-size: 28px;
  }

  .feature-table-row {
    grid-template-columns: 140px 1fr;
  }

  .feature-table-label,
  .feature-table-value {
    font-size: 14px;
    padding: 12px 16px;
  }

  .feature-schedule-content {
    padding: 20px;
  }

  .feature-schedule-image {
    position: static;
    width: 150px;
    height: 150px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: 0;
  }
}


/* ═══════════════════════════════════════════
   COMPARISON SECTION (他のスクールとの違い)
   ═══════════════════════════════════════════ */

.sec-comparison {
  padding: 100px 0;
  background: rgba(39,34,89,0.82);
  position: relative;
}

/* Title */
.sec-comparison .section-title {
  position: relative;
  z-index: 2;
}

.sec-comparison .lbl {
  background: linear-gradient(135.64deg, rgb(232, 225, 255) 8.43%, rgb(255, 87, 154) 94.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-comparison h2 {
  color: #fff;
}

.sec-comparison h2 em {
  background: linear-gradient(105.68deg, rgb(232, 225, 255) 8.43%, rgb(255, 87, 154) 94.35%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Main comparison table */
.comparison-table-wrap {
  background: rgba(254, 246, 255, 0.82);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.comparison-table-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 76px;
  height: 133px;
  background: url('../../img/academy/v2/school.png') center/contain no-repeat;
  pointer-events: none;
}

.comparison-table {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(122, 122, 144, 0.55) rgba(250, 238, 251, 0.82);
  position: relative;
  z-index: 1;
  padding-bottom: 6px;
}

.comparison-table::-webkit-scrollbar {
  height: 8px;
}

.comparison-table::-webkit-scrollbar-track {
  background: rgba(250, 238, 251, 0.82);
  border-radius: 999px;
}

.comparison-table::-webkit-scrollbar-thumb {
  background: rgba(122, 122, 144, 0.55);
  border-radius: 999px;
}

.comparison-table-inner {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  width: fit-content;
  min-width: 732px;
  margin: 0 auto;
}

/* Left column - row labels */
.comparison-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 120px;
  flex-shrink: 0;
}

.comparison-row-header {
  background: rgba(250, 238, 251, 0.82);
  padding: 12px 14px;
  min-height: 120px;
  display: flex;
  align-items: center;
  border-radius: 4px;
}

.comparison-row-header p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink2);
  margin: 0;
  white-space: nowrap;
}

/* Center column - JOB-TRE ACADEMY (our school) */
.comparison-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 200px;
  flex-shrink: 0;
}

.comparison-column.center {
  border: 3px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--grad) border-box;
  border-radius: 4px;
  overflow: hidden;
}

/* Column header */
.comparison-col-header {
  background: rgba(250, 238, 251, 0.82);
  padding: 28px 9px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mu);
  text-align: center;
  font-feature-settings: 'palt' 1;
}

.comparison-column.center .comparison-col-header {
  background: rgba(250, 238, 251, 0.82);
  border-bottom: 3px solid transparent;
  border-image: var(--grad) 1;
}

.comparison-column.right .comparison-col-header {
  background: rgba(248, 248, 250, 0.82);
}

/* Column cell */
.comparison-cell {
  background: rgba(255, 255, 255, 0.8);
  padding: 14px 9px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink2);
  font-feature-settings: 'palt' 1;
  text-align: center;
  word-break: break-word;
}

.comparison-cell p {
  margin: 0;
}

.comparison-cell strong {
  font-weight: 600;
}

.comparison-cell.grad {
  background: var(--grad-120);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Left cards (general school) */
.comparison-cards {
  display: flex;
  gap: 10px;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 40px;
}

.comparison-card {
  background: rgba(191, 191, 198, 0.78);
  border-top-width: 4px;
  border-radius: 4px;
  padding: 41px 27px 30px;
  width: 338px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparison-card.jta {
  background: linear-gradient(101.7deg, rgba(75, 47, 255, 0.1) 0%, rgba(192, 64, 224, 0.1) 40%, rgba(255, 79, 160, 0.1) 75%, rgba(255, 128, 96, 0.1) 100%);
  width: 354px;
  background-color: rgba(255, 255, 255, 0.8);
}

.comparison-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

.comparison-card-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 16px;
  border-radius: 4px;
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
}

.comparison-card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.comparison-card-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.comparison-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mu);
  font-feature-settings: 'palt' 1;
  flex: 1;
}

.comparison-card-text p {
  margin: 0;
}

.comparison-card-text .grad {
  background: var(--grad-120);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.comparison-card-label {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(238, 234, 236, 0.82);
  padding: 7px 27px 7px 17px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.4;
  color: #2b2b2b;
  white-space: nowrap;
}

.comparison-card.jta .comparison-card-label {
  background: var(--grad-120);
  color: #fff;
}

/* Arrow connector (small decoration) */
.comparison-arrow {
  width: 44px;
  height: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
}

.comparison-arrow img {
  display: block;
  width: 28px;
  height: auto;
}

/* CTA button */
.comparison-cta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.comparison-btn {
  background: var(--grad-blue);
  border: none;
  border-radius: 6px;
  padding: 14px 30px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.72px;
  box-shadow: var(--primary-shadow);
  font-feature-settings: 'palt' 1;
  width: 368px;
}

.comparison-btn:hover {
  opacity: 0.9;
}

.comparison-btn-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}

.comparison-btn-icon img {
  width: 100%;
  height: 100%;
}

.comparison-note {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  font-feature-settings: 'palt' 1;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .comparison-table-wrap {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .sec-comparison {
    padding: 40px 0;
  }

  .comparison-table-wrap {
    padding: 20px;
  }

  .comparison-table-inner {
    min-width: 732px;
  }

  .comparison-table-wrap::after {
    right: 10px;
    width: 62px;
    height: 109px;
  }

  .comparison-cards {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .comparison-arrow {
    align-self: center;
    height: 45px;
    transform: rotate(90deg);
  }

  .comparison-card,
  .comparison-card.jta {
    width: 100%;
    max-width: 400px;
  }

  .comparison-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .comparison-table-wrap {
    background: transparent;
    border-radius: 0;
    padding: 16px 0 16px 16px;
    margin-left: -20px;
    margin-right: -20px;
    overflow: hidden;
  }

  .comparison-table-wrap::after {
    content: '';
    position: absolute;
    top: 24px;
    right: 0;
    width: 48px;
    height: 92%;
    background: linear-gradient(to right, transparent, rgba(240, 234, 255, 0.88));
    pointer-events: none;
    z-index: 2;
  }

  .comparison-cards {
    padding: 0 20px;
  }
}


/* ═══════════════════════════════════════════
   CURRICULUM SECTION
   ═══════════════════════════════════════════ */

.sec-curriculum {
  padding: 100px 0;
  background: rgba(255,255,255,0.72);
  position: relative;
}

/* Title */
.sec-curriculum .section-title {
  position: relative;
  z-index: 2;
}

/* Curriculum wrapper */
.curriculum-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--grad);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 60px;
}

/* Month card */
.month-card {
  background: rgba(255, 255, 255,1);
  padding: 20px 30px;
  display: flex;
  gap: 19px;
}

.month-card > :first-child {
  flex: 1;
  min-width: 0;
}

/* Month header section */
.month-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 19px;
  justify-content: flex-start;
}

/* Month badge */
.month-badge {
  background: var(--grad-120);
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Month title */
.month-title {
  background: var(--grad-120);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Month content container */
.month-content {
  flex: 1;
  min-width: 0;
  text-align: left;
}

/* Month content text */
.month-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink2);
  margin: 0;
  font-feature-settings: 'palt' 1;
}

.month-content p:not(:last-child) {
  margin-bottom: 0;
}

/* Subsection within month content */
.month-content-subsection {
  margin-bottom: 0;
}

.month-content-subsection-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink2);
  margin-bottom: 0;
  font-feature-settings: 'palt' 1;
}

.month-content-subsection-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink2);
  margin-bottom: 0;
  font-feature-settings: 'palt' 1;
}

/* Month image/illustration */
.month-image {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  width: auto;
  aspect-ratio: auto;
  margin-left: auto;
  align-self: flex-end;
  border-radius: 8px;
  height: 150px;
}

.month-image img {
  display: block;
  width: auto;
  height: 100%;
}

/* Skills section heading */
.skills-section-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.skills-dot {
  width: 35px;
  height: 8px;
  flex-shrink: 0;
  background: url('../../img/academy/v2/dot-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Skills grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 8px 12px;
  margin-bottom: 60px;
}

/* Skill item */
.skill-item {
  background: rgba(248, 248, 250, 0.8);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.skill-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--grad-120);
  flex-shrink: 0;
  margin-top: 5px;
}

.skill-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink2);
  font-feature-settings: 'palt' 1;
}

.skill-text p {
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .month-card {
    flex-direction: column !important;
    gap: 16px;
    padding: 16px 24px;
  }

  .month-header {
    flex-wrap: wrap;
  }

  .month-image {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .sec-curriculum {
    padding: 40px 0;
  }

  .month-card {
    padding: 12px 16px;
    gap: 12px;
  }

  .month-badge {
    font-size: 12px;
    padding: 4px 12px;
  }

  .month-title {
    font-size: 16px;
  }

  .month-content p {
    font-size: 14px;
  }

  .month-image {
    align-self: flex-end;
  }

  .skill-item {
    padding: 10px 12px;
    font-size: 14px;
  }
}


/* ═══════════════════════════════════════════
   RECOMMENDATION SECTION (こんな方におすすめです)
   ═══════════════════════════════════════════ */

.sec-rec {
  padding: 100px 0;
  background: rgba(248,248,250,0.72);
  position: relative;
  overflow: hidden;
}

/* Title with label */
.sec-rec .section-title {
  position: relative;
  z-index: 2;
}

/* Main recommendation layout container */
.rec-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 16px;
  height: 505px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central illustration image container */
.rec-center-img {
  position: absolute;
  width: 180px;
  height: 160px;
  left: 50%;
  bottom: 100px;
  transform: translate(-50%, 0);
  z-index: 1;
  background-size: cover;
  background-position: center;
}

.rec-center-img > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Recommendation cards positioning */
.rec-cards {
  position: relative;
  width: 100%;
  height: 100%;
  top: -100px;
}

/* Individual card positioning - absolutely positioned around center */
.rec-card {
  position: absolute;
  width: 337px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Card content wrapper with dot connector */
.rec-card-inner {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 4px 23px 4px 51px;
  height: 52px;
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
}

/* Dot/circle before each card */
.rec-card-inner::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 8px;
  background: url('../../img/academy/v2/dot-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Positioning for each of 5 cards */
/* Top left */
.rec-card.rec-tl {
  left: 10px;
  top: 255px;
}

/* Bottom left */
.rec-card.rec-bl {
  left: 10px;
  top: 378px;
}

/* Top right */
.rec-card.rec-tr {
  left: 334px;
  top: 141px;
}

/* Bottom right */
.rec-card.rec-br {
  left: 620px;
  top: 255px;
}

/* Far bottom right */
.rec-card.rec-fbr {
  left: 620px;
  top: 378px;
}

/* Card text content */
.rec-card-text {
  flex: 1;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.38;
  color: var(--ink);
}

/* Gradient text in cards */
.rec-card-text .text-grad {
  background: var(--grad-120);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Responsive ── */
@media (max-width: 1020px) {
  .rec-wrapper {
    height: auto;
    flex-direction: column;
    gap: 40px;
  }

  .rec-cards {
    position: relative;
    top: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .rec-card {
    position: static;
    width: 100%;
  }

  .rec-card-text br {
    display: none;
  }

  .rec-card-inner::before {
    display: block;
    left: -18px;
  }


  .rec-center-img {
    position: relative;
    transform: none;
    left: auto;
    bottom: 24px;
    order: 2;
    margin-top: 40px;
  }

  .rec-cards {
    order: 1;
  }
}

@media (max-width: 600px) {
  .sec-rec {
    padding: 40px 0;
  }

  .rec-wrapper {
    height: auto;
  }

  .rec-card {
    width: 100%;
  }

  .rec-card-inner {
    padding: 4px 16px 4px 28px;
    height: auto;
    min-height: 48px;
  }

  .rec-card-text {
    font-size: 14px;
  }

  .rec-center-img {
    width: 70%;
    height: 160px;
    max-width: 240px;
  }
}


/* ═══════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════ */

/* Title styling */
.pc-title {
  position: relative;
  z-index: 1;
}

/* ── Main card container ── */
.pc-main-card {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  background: rgba(255, 255, 255, 1);
  border-top: 4px solid #3c00ff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ── Header section ── */
.pc-header {
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.pc-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.pc-blob--1 {
  background: var(--grad-120);
  top: -150px;
  left: -100px;
}

.pc-blob--2 {
  background: var(--grad-120);
  bottom: -200px;
  right: -100px;
  width: 537px;
  height: 537px;
}

.pc-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  text-align: center;
  font-feature-settings: 'palt' 1;
  position: relative;
  z-index: 1;
}

/* Price display section */
.pc-price-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.pc-price-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Badge row with ministry seal */
.pc-badge-row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  margin-bottom:20px;
}

.pc-cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.pc-cert-icon {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.pc-cert-text {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #000;
  font-weight: 500;
}

.pc-cert-note {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

/* ── Body section (cards) ── */
.pc-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* 還元の流れ card */
.pc-flow-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #cdc5ff;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 8px;
}

.pc-flow-title {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  text-align: center;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pc-flow-layout {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: 100%;
}

.pc-flow-bar-wrap {
  flex-shrink: 0;
}

.pc-flow-bar-image {
  width: 92px;
  height: auto;
  display: block;
}

.pc-flow-steps {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  padding-top: 0;
}

.pc-flow-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.pc-flow-arrow {
  width: 34px;
  height: 8px;
  flex-shrink: 0;
  display: block;
}

.pc-flow-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  font-feature-settings: 'palt' 1;
  text-align: left;
}

.pc-flow-text strong {
  font-weight: 700;
  display: inline;
}

.pc-badge-release {
  display: inline-block;
  background: #ff6486;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 2px;
  margin: 4px 0;
}

/* お支払いについて card */
.pc-payment-card {
  background: linear-gradient(105deg, rgba(232,225,255,0.18) 0%, rgba(255,87,154,0.08) 100%);
  border: 1px solid rgba(205, 197, 255, 0.2);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pc-payment-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  line-height: 1;
  object-fit: contain;
}

.pc-payment-body {
  flex: 1;
}

.pc-payment-title {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pc-payment-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #272259;
  font-feature-settings: 'palt' 1;
  margin: 0;
}

.pc-payment-text p {
  margin-bottom: 8px;
}

.pc-payment-text p:last-child {
  margin-bottom: 0;
}

.pc-payment-text strong {
  font-weight: 600;
}

.pc-payment-amount {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  background: var(--grad-120);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  white-space: nowrap;
  align-self: center;
}

.pc-payment-price {
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ── CTA section ── */
.pc-cta {
  margin-top: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pc-cta-note {
  font-size: 1rem;
  color: #fff;
  margin-top: 12px;
  font-feature-settings: 'palt' 1;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sec-ink {
    padding: 60px 0;
  }
  
  .pc-header {
    padding: 28px 20px;
  }
  
  .pc-body {
    padding: 20px;
    gap: 12px;
  }
  
  .pc-price-section {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .pc-now {
    font-size: 2.5rem;
  }
  
  .pc-was {
    font-size: 1.5rem;
  }
  
  .pc-payment-card {
    flex-direction: column;
    align-items: stretch;
  }
  
  .pc-payment-amount {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .sec-ink {
    padding: 40px 0;
  }
  
  .pc-header {
    padding: 20px;
  }
  
  .pc-body {
    padding: 16px;
  }
  
  .pc-intro {
    font-size: 0.875rem;
  }
  
  .pc-price-section {
    gap: 12px;
  }
  
  .pc-label {
    font-size: 0.75rem;
  }
  
  .pc-was {
    font-size: 1.25rem;
  }
  
  .pc-now {
    font-size: 2rem;
  }
  
  .pc-body {
    padding: 16px;
  }

  .pc-flow-card,
  .pc-payment-card {
    padding: 16px;
  }
  
  .pc-flow-title,
  .pc-payment-title {
    font-size: 1.25rem;
  }
  
  .pc-flow-layout {
    gap: 10px;
  }

  .pc-flow-bar-image {
    width: 72px;
  }

  .pc-flow-steps {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
  }

  .pc-flow-item {
    align-items: flex-start;
  }

  .pc-flow-arrow {
    width: 28px;
    margin-top: 8px;
  }

  .pc-flow-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .pc-flow-text strong {
    display: inline;
  }
  
  .pc-cta-note {
    font-size: 0.875rem;
  }
}

@media (max-width: 460px) {
  .pc-body {
    padding: 0;
  }
}


/* ═══════════════════════════════════════════
   FLOW SECTION
   ═══════════════════════════════════════════ */

.flow-grid {
  --flow-head-height: 136px;
  --flow-step-gap: 24px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0 24px;
}

/* ── Arrow between steps ── */
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding-top: 0;
  transform: translateY(calc((var(--flow-head-height) + var(--flow-step-gap)) / 2));
  flex-shrink: 0;
}

.flow-arrow img {
  display: block;
  width: 28px;
  height: auto;
}

/* ── Step card ── */
.fstep {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

/* Step header: badge + title */
.fstep__head {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fstep__badge {
  display: inline-flex;
  align-items: center;
  height: 23px;
  padding: 0 8px;
  background: var(--grad);
  font-weight: 700;
  font-size: .94rem;
  color: #fff;
  letter-spacing: .02em;
  width: fit-content;
}

.fstep__title {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: .05em;
  color: #222;
  margin: 0;
}

/* Step card body: image + description */
.fstep__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(252, 244, 255, 0.8);
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 16px;
  flex: 1;
}

.fstep__img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
  /* placeholder when no image */
  background: linear-gradient(135deg, #ede8ff 0%, #fce4f5 100%);
}

.fstep__img--placeholder {
  width: 100%;
  height: 188px;
  background: linear-gradient(135deg, #ede8ff 0%, #fce4f5 100%);
}

.fstep__card p {
  padding: 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #111827;
  font-feature-settings: 'palt' 1;
  margin: 0;
  flex: 1;
}

@media (max-width: 900px) {
  .flow-grid {
    --flow-head-height: 120px;
  }

  .fstep__title {
    font-size: 1.15rem;
  }
  .fstep__head {
   min-height: 80px;
  }
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .flow-grid {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }

  .flow-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    justify-self: center;
  }

  .fstep__title {
    font-size: 1.25rem;
  }
}


/* ═══════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════ */

.faq-wrap {
  margin-top: 48px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 20px;
  overflow: hidden;
  padding-top: 40px;
}

.fi {
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: background .2s;
}

.fi:last-child {
  border-bottom: none;
}

.fi:hover {
  background: rgba(248, 248, 250, 0.72);
}

/* details要素のデフォルトスタイルをリセット */
.fi details {
  margin: 0;
}

.fi details[open] {
  background: rgba(248, 248, 250, 0.3);
}

/* Question row - summary element */
.fq {
  padding: 0 28px 0 28px;
  min-height: 61px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  font-feature-settings: 'palt' 1;
  cursor: pointer;
  list-style: none;
  position: relative;
}

/* デフォルトの三角アイコンを非表示 */
.fq::-webkit-details-marker {
  display: none;
}

.fq::marker {
  display: none;
}

/* カスタムアイコン */
.fq::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--mu);
  margin-left: auto;
  transition: transform 0.3s ease;
}

/* 開いた状態のアイコン */
details[open] .fq::after {
  content: '−';
  transform: rotate(180deg);
}

.fq:hover {
  background: rgba(248, 248, 250, 0.5);
}

/* Gradient "Q." label */
.fqm {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-style: normal;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1;
}

/* Answer row */
.fa {
  padding: 18px 28px 18px 56px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mu);
  font-feature-settings: 'palt' 1;
  animation: fadeIn 0.3s ease;
}

/* アニメーションキーフレーム */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .faq-wrap {
    padding-top: 24px;
  }

  .fq {
    font-size: .94rem;
    min-height: auto;
    padding: 16px 20px;
    gap: 10px;
  }

  .fq::after {
    font-size: 1.1rem;
  }

  .fa {
    padding: 16px 20px 16px 44px;
    font-size: .88rem;
  }
}

/* ─── FINAL CTA ─── */
.final-wrap {
  position:relative; overflow:hidden;
  background:rgba(12,12,15,0.82); padding:100px 60px;
  text-align:center;
}
.final-blob1 { position:absolute; width:500px; height:500px; border-radius:50%; filter:blur(100px); background:var(--grad); opacity:.18; top:-150px; left:-100px; pointer-events:none; animation:blob-morph 12s ease-in-out infinite; }
.final-blob2 { position:absolute; width:360px; height:360px; border-radius:50%; filter:blur(90px); background:linear-gradient(135deg,var(--g3),var(--g1)); opacity:.14; bottom:-100px; right:-60px; pointer-events:none; animation:blob-morph 10s ease-in-out infinite reverse; }
.final-inner { position:relative; z-index:2; max-width:600px; margin:0 auto; }
.final-big {
  font-size:clamp(1.75rem,4vw,2.25rem);
  font-weight:700; line-height:1.4; letter-spacing:-.05em;
  color:#fff; margin-bottom:16px;
}
.img-con {
  display:block;
  width:min(100%, 220px);
  height:auto;
  margin:0 auto 20px;
}
.sp-only-break { display:none; }
.pc-only-break { display:inline; }
.final-note { font-size:.65rem; color:rgba(255,255,255,.9); margin-top:10px; letter-spacing:.08em; }
.final-inner p {
  font-size: .94rem;
  color: rgba(255,255,255);
  margin-bottom: 40px;
}

/* ─── FOOTER ─── */
footer { padding:22px 60px; border-top:1px solid rgba(255,255,255,.05); background:rgba(12,12,15,0.82); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; }
.flogo { font-family:'Syne',sans-serif; font-size:.82rem; font-weight:800; }
.fcopy {
  font-size:.68rem;
  color:var(--w);
  text-align:center;
  width:100%;
}

@media(max-width:900px){
  .final-wrap{padding:40px 24px;}
  .sp-only-break { display:block; }
  .pc-only-break { display:none; }
  footer{padding:18px 24px;}
}
