@charset "utf-8";
  @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=M+PLUS+Rounded+1c:wght@400;700;900&display=swap');

  :root {
    --primary: #ff5656;
    --primary-dark: #ea5374;
    --secondary: #FFC107;
    --accent: #8dce63;
    --blue: #529adb;
    --blue-dark: #0f57b0;
    --sky: #E3F2FD;
    --dark: #1A1A2E;
    --mid: #3D3D5C;
    --text: #333344;
    --light: #F8F9FF;
    --white: #FFFFFF;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --font-main: 'Noto Sans JP', sans-serif;
    --font-round: 'M PLUS Rounded 1c', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 100%; }

  body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
  }

  img { max-width: 100%; height: auto; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ===== STICKY CTA BAR ===== */
  .sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--dark);
    padding: 10px 16px;
    z-index: 1000;
    display: flex;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  }
  .sticky-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    padding: 12px 8px;
    transition: transform 0.15s, opacity 0.15s;
  }
  .sticky-bar a:active { transform: scale(0.97); opacity: 0.9; }
  .sticky-bar .btn-apply {
    background: var(--primary);
    color: #fff;
    gap: 6px;
  }
  .sticky-bar .btn-school {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
  }

  /* ===== HEADER ===== */
  header {
    background: var(--white);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 1px solid #eee;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .logo img {
    display: block;
    width: auto;
    height: 32px;
  }

@media screen and (min-width: 768px) {
  .logo img {
    height: 42px;
  }
}


  header .btn-sm {
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
  }

  /* ===== SECTION BASE ===== */
  section { padding: 48px 0; }
  .inner { max-width: 480px; margin: 0 auto; padding: 0 16px; }
  .sec-tag {
    display: table;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.08em;
    margin: 0 auto 0.5rem;
  }
  .sec-title {
    font-family: var(--font-round);
    font-size: 1.75rem;
    text-align: center;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .sec-title em { font-style: normal; color: var(--primary); }
  .sec-sub {
    /* font-size: 13px; */
    color: var(--mid);
    text-align: center;
    margin-bottom: 24px;
  }

  /* CTA Button */
  .btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ff5656;
    color: #fff;
    border-radius: 50px;
    font-family: var(--font-round);
    font-weight: 900;
    font-size: 1rem; /* 16px */
    padding: 1rem 1.5rem;
    width: 100%;
    box-shadow: 0 4px 16px rgba(255,107,53,0.4);
    transition: transform 0.15s, box-shadow 0.15s;
    text-align: center;
    cursor: pointer;
    border: none;
    line-height: 1.3;
  }

@media screen and (min-width: 768px) {
  .btn-cta {
    /* display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-family: var(--font-round); */
    font-weight: 700;
    font-size: 1.5rem;
    padding: 1rem 3.5rem;
    letter-spacing: 2;
    margin-top: 20px;
    /* width: 100%;
    box-shadow: 0 4px 16px rgba(255,107,53,0.4);
    transition: transform 0.15s, box-shadow 0.15s;
    text-align: center;
    cursor: pointer;
    border: none;
    line-height: 1.3; */
  }
}

  .btn-cta::after {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  .btn-cta:active {
    transform: translateY(2px);
    box-shadow: 0 2px 8px rgba(255,107,53,0.3);
  }

  .btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem; /* 14px */
    padding: 0.75rem 1.5rem;
    width: 100%;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
    position: relative;
  }

  .btn-outline::after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(45deg);
    margin-left: 0.25rem;
    flex-shrink: 0;
  }

  .btn-outline:active {
    background: var(--blue);
    color: #fff;
  }

  .btn-outline:active::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }

/* ===== 1. HERO ===== */
.hero {
  background: linear-gradient(180deg, #fff3a6 0%, #ffea79 55%, #ffd95a 100%);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 52%;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='10' cy='10' r='3'/%3E%3Ccircle cx='30' cy='10' r='3'/%3E%3Ccircle cx='50' cy='10' r='3'/%3E%3Ccircle cx='10' cy='30' r='3'/%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3Ccircle cx='50' cy='30' r='3'/%3E%3Ccircle cx='10' cy='50' r='3'/%3E%3Ccircle cx='30' cy='50' r='3'/%3E%3Ccircle cx='50' cy='50' r='3'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-mainimg {
  position: relative;
  z-index: 1;
}

.hero-mainimg picture {
  display: block;
}

.hero-mainimg img {
  display: block;
  width: 100%;
  height: auto;
}

.fade-seq {
  opacity: 0;
  transform: translateY(1rem);
  animation: heroFadeUp 0.8s ease forwards;
}

.fade-1 { animation-delay: 0.1s; }
.fade-2 { animation-delay: 0.35s; }
.fade-3 { animation-delay: 0.6s; }
.fade-4 { animation-delay: 0.85s; }
.fade-5 { animation-delay: 1.1s; }
.fade-6 { animation-delay: 1.35s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0.5rem 1rem 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-sub1 {
  /* margin-bottom: 1.5rem; */
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  /* line-height: 1.6; */
  color: var(--primary-dark);
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px 4px;
}

.hero-sub2 strong {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0.25rem;
  margin-bottom: 1.3rem;
  color: var(--mid);
  font-weight: 800;
  font-size: 1.625rem;
  line-height: 1.1;
}
.hero-sub2 strong span {
  font-size: 1.25rem;
}

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.trust-badge {
  flex: 1;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 1rem;
  padding: 0.5rem 0.5rem 0.8rem;
  text-align: center;
  backdrop-filter: blur(2px);
}
.trust-badge:nth-child(1){
  background: #55a1e9;
  /* background: linear-gradient(135deg, #51c4c2 0%, #3ac7c5 100%); */
}
.trust-badge:nth-child(2){
  background: #ff9c2b;
}
.trust-badge:nth-child(3){
  background: #3fcd50;
} 

.trust-badge .tb-icon {
  width: 3rem;
  margin: 0 auto 0.75rem;
}

.trust-badge .tb-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-badge .tb-text {
  color: #fff;
}

.trust-badge .tb-text .tb-num {
  display: block;
  font-family: var(--font-round);
  font-weight: 900;
  font-size: 0.875rem; /* 14px */
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .hero {
    overflow: visible;
  }

  .hero-mainimg img {
    width: 100%;
    height: auto;
  }

  .hero-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 1.3rem 2rem 1.8rem;
    display: grid;
    grid-template-columns: minmax(320px, 620px) minmax(520px, 760px);
    column-gap: 2rem;
    row-gap: 0;
    align-items: start;
  }

  .hero-sub1 {
    grid-column: 1;
    margin: 0 0 13px;
    background: #f5f5f5;
    border-radius: 1.25rem;
    text-align: center;
    color: #ef6f7d;
    font-weight: 700;
    /* font-size: 2rem; */
    line-height: 1.2;
    padding: 1rem 0.5rem;
    box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
  }

  .hero-sub2 {
    grid-column: 1;
    /* margin: 1rem 0 0; */
    text-align: center;
  }

  .hero-sub2 strong {
    display: block;
    width: 100%;
    color: #26306a;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 0.5;
    letter-spacing: -0.02em;
  }

  .hero-sub2 strong span {
    display: block;
    font-size: 1.875rem;
    /* margin-bottom: 0.25rem; */
  }

  .trust-badges {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-self: start;
  }

  .trust-badge {
    /* min-height: 12.5rem; */
    background: rgba(245, 244, 236, 0.92);
    border: none;
    border-radius: 1.5rem;
    padding: 1.25rem 1rem 1.5rem;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .trust-badge .tb-icon {
    width: 3.5rem;
    margin: 0 auto 1rem;
  }

  .trust-badge .tb-text .tb-num {
    font-size: 1.125rem;
    line-height: 1.35;
    color: #fff;
    text-align: center;
  }

  
}

@media screen and (min-width: 768px) {
  .hero-btns {
    max-width: 42rem;
    margin: 2rem auto 0;
    grid-column: 1 / -1;
  }
}


/* buttons */
.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.hero .btn-cta {
  box-shadow: 0 0.25rem 1rem rgba(255,107,53,0.35);
}

.hero-btn-outline {
  color: var(--mid);
  border-color:var(--mid);
  background-color: #fff;
}
.hero-btn-outline::after{
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--mid);
    border-bottom: 2px solid var(--mid);
    transform: rotate(45deg);
    margin-left: 0.25rem;
    flex-shrink: 0;
}

/* ===== 2. GROWTH ===== */
.growth {
  background: var(--light);
  overflow: hidden;
}

.growth .sec-title {
  margin-bottom: 24px;
}

.growth-list {
  display: flex;
  flex-direction: column;
  /* gap: 28px; */
}
.growth-item {
  position: relative;
  /* min-height: 18.75rem; */
}
.growth-photo {
  width: 13rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #73a8df 0%, #5d98d6 100%);
}
.growth-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.growth-item--reverse .growth-photo {
  margin-left: auto;
}

.growth-balloon {
  position: absolute;
  z-index: 2;
  max-width: 14rem;
  padding: 1rem 0.875rem;
  background: #fff;
  border: 0.1875rem solid #16345d;
  border-radius: 1.125rem;
  box-shadow: 0.5rem 0.625rem 0 #5d98d6;
  color: #3b3b3b;
  font-family: var(--font-round);
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.growth-balloon::before,
.growth-balloon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.growth-balloon--right {
  right: 0;
  top: 2.75rem;
}

.growth-balloon--right::before {
  left: -1.5rem;
  border-style: solid;
  border-width: 0.75rem 1.5rem 0.75rem 0;
  border-color: transparent #16345d transparent transparent;
}

.growth-balloon--right::after {
  left: -1.125rem;
  border-style: solid;
  border-width: 0.5625rem 1.125rem 0.5625rem 0;
  border-color: transparent #fff transparent transparent;
}

.growth-balloon--left {
  left: 0;
  top: 2.75rem;
}

.growth-balloon--left::before {
  right: -1.5rem;
  border-style: solid;
  border-width: 0.75rem 0 0.75rem 1.5rem;
  border-color: transparent transparent transparent #16345d;
}

.growth-balloon--left::after {
  right: -1.125rem;
  border-style: solid;
  border-width: 0.5625rem 0 0.5625rem 1.125rem;
  border-color: transparent transparent transparent #fff;
}

.growth-movie {
  margin: 25px 0 0;
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 1rem;
  overflow: hidden;
}

.growth-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* アニメーション */
.js-fadeup {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fadeup.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 少しだけずらす */
.growth-item:nth-child(2) {
  transition-delay: 0.1s;
}

.growth-item:nth-child(3) {
  transition-delay: 0.2s;
}

@media screen and (min-width: 768px) {
  .growth-balloon--right::before,
  .growth-balloon--right::after,
  .growth-balloon--left::before,
  .growth-balloon--left::after {
    left: 50%;
    right: auto;
  }

  .growth-balloon--right::before,
  .growth-balloon--left::before {
    top: -1.5rem;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 0 0.75rem 1.5rem 0.75rem;
    border-color: transparent transparent #16345d transparent;
  }

  .growth-balloon--right::after,
  .growth-balloon--left::after {
    top: -1.125rem;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 0 0.5625rem 1.125rem 0.5625rem;
    border-color: transparent transparent #fff transparent;
  }
}

@media screen and (min-width: 768px) {
  .growth-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    align-items: start;
    margin-top: 2rem;
  }

  .growth-item,
  .growth-item--reverse {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .growth-item--reverse .growth-photo {
    margin-left: 0;
  }

  .growth-photo {
    width: min(100%, 19rem);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

  .growth-balloon {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    width: min(100%, 16rem);
    max-width: 16rem;
    margin: 0.25rem auto 0;
    padding: 1.25rem 1rem;
    /* font-size: 1.625rem; */
    line-height: 1.35;
    border-radius: 1.5rem;
    box-shadow: 0.75rem 0.875rem 0 #5d98d6;
  }

  .growth-balloon::before,
  .growth-balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
  }

  .growth-balloon::before {
    border-style: solid;
    border-width: 0 0.75rem 1.5rem 0.75rem;
    border-color: transparent transparent #16345d transparent;
  }

  .growth-balloon::after {
    top: -1.125rem;
    border-style: solid;
    border-width: 0 0.5625rem 1.125rem 0.5625rem;
    border-color: transparent transparent #fff transparent;
  }

  .growth-balloon--right,
  .growth-balloon--left {
    right: auto;
    left: auto;
    top: auto;
  }

  .growth-movie {
    width: min(100%, 45rem); /* 720px */
    aspect-ratio: 16 / 9;
    padding-top: 0;
    margin: 3rem auto 0;
  }
}

  /* ===== 3. EXPERIENCE ===== */
  .experience { background: #fff; }
  .exp-note {
    background: var(--secondary);
    border-radius: 50px;
    text-align: center;
    font-weight: 900;
    font-size: 1.125rem;
    padding: 8px 16px;
    color: var(--dark);
    /* margin-bottom: 10px; */
    display: inline-block;
  }
  .exp-meta {
    background: var(--sky);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 30px;
  }
  .exp-meta ul { list-style: none; }
  .exp-meta li {
    padding: 6px 0;
    /* font-size: 14px; */
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px dashed #c5d8f0;
  }
  .exp-meta li:last-child { border-bottom: none; }
  .exp-meta li::before { content: '✓'; color: var(--accent); font-weight: 700; }
  .exp-meta li strong { color: var(--primary); }

  .course-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    background: #f0f0f5;
    border-radius: 12px;
    padding: 4px;
  }
  .course-tab {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    color: var(--mid);
    background: transparent;
    border: none;
  }
  .course-tab.active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .course-panel { display: none; }
  .course-panel.active { display: block; }

  .course-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 12px;
    border: 3px solid var(--primary);
  }
  .course-card.typing { border-color: var(--blue); }
  .course-card h3 {
    font-family: var(--font-round);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .course-card h3 .course-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
  }
  .course-card.typing h3 .course-icon { background: var(--blue); }

  .flow-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
  .flow-step {
    display: flex;
    gap: 12px;
    padding-bottom: 14px;
    position: relative;
  }
  .flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px; top: 32px;
    width: 2px;
    height: calc(100% - 16px);
    background: linear-gradient(to bottom, var(--primary), transparent);
  }
  .course-card.typing .flow-step:not(:last-child)::after { background: linear-gradient(to bottom, var(--blue), transparent); }
  .step-num {
    width: 32px; height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .course-card.typing .step-num { background: var(--blue); }
  .step-content strong { /* font-size: 14px; */ color: var(--dark); font-weight: 700; display: block; line-height: 1.3; margin-top: 4px; }
  .step-content span { font-size: 0.875rem; color: var(--mid); }

  .course-flow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course-cta {
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .course-flow {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
    gap: 2rem;
    align-items: start;
  }

  .flow-img img {
    display: block;
    width: 100%;
    max-width: 42rem;
    height: auto;
    margin-left: auto;
  }

  .course-cta {
    margin-top: 2rem;
  }
}

  /* ===== 4. SKILLS ===== */
  .skills-sec { background: var(--blue-dark); }
  .skills-sec .sec-title { color: #fff; }
  .skills-sec .sec-sub { color: #fff; }
  .skills-sec .sec-tag { background: var(--secondary); color: var(--dark); }

  .skill-cards { /* display: flex; flex-direction: column; gap: 12px; */ margin-top: 20px; }
  .skill-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 18px;
    /* display: flex; */
    gap: 14px;
    margin-bottom: 14px;
  }
  .skill-icon {
    /* width: 80px; height: 80px; */
    border-radius: 14px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    margin-bottom: 10px;
  }
   .skill-icon img {
    border-radius: 12px;
    margin-bottom: 10px;
  } 
  .skill-card:nth-child(2) .skill-icon { background: var(--accent); }
  .skill-card:nth-child(3) .skill-icon { background: var(--secondary); }
  .skill-title {
    font-family: var(--font-round);
    font-weight: 800;
    font-size: 1.1875rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 4px;
  }
  .skill-desc { font-size: 0.875rem; color: #fff; line-height: 1.6; }
  .skill-sub { /* font-size: 11px; */ color: var(--secondary); margin-top: 6px; font-weight: 700; }


/* PC */
@media screen and (min-width: 768px) {
  .skill-cards {
    gap: 1.5rem;
  }

  .skill-card {
    display: grid;
    grid-template-columns: 39% 1fr;
    align-items: center;
    gap: 2.5rem;
    padding: 1.75rem 2rem;
    border-radius: 2.25rem;
  }

  .skill-icon {
    margin-bottom: 0;
    border-radius: 1.25rem;
  }

  .skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 2.55;
  }

  .skill-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .skill-title {
    font-size: 1.625rem;
    margin-bottom: 0.875rem;
  }

  .skill-desc {
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .skill-sub {
    line-height: 1.35;
    font-size: 1.125rem;
  }
}

  /* ===== 5. RECOMMENDED ===== */
  .recommended {
    background: #fff;
  }

.rec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 0.75rem;
  margin-top: 1.25rem;
}

.rec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  text-align: center;
}



.rec-item .rec-icon {
  display: block;
  width: 9.0rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 8px solid #fde967;
}

.rec-item .rec-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .rec-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
  }
  .rec-item .rec-icon {
    width: 14rem;
    border: 8px solid #fde967;
  }

  .rec-item .rec-text {
    font-size: 1.125rem; /* 18px */
    line-height: 1.4;
  }
}

.rec-item .rec-text {
  color: var(--dark);
  font-weight: 600;
  line-height: 1.3;
}

  /* ===== 6. SAFETY ===== */
  .safety { background: linear-gradient(135deg, #E3F2FD 0%, #F0FFF4 100%); }
  .safety-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 24px;
  }
  
  .safety-item {
    background: #fff;
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  @media screen and (min-width: 768px) {
  .safety-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
  .safety-item .s-icon img{ 
    display: block;
    width: 70%;
    margin: 0 auto;
  }
  .safety-item .s-label { /* font-size: 12px; */ font-weight: 700; color: var(--dark); line-height: 1.4; }

  .photo-row {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 24px;
  }
  .photo-box {
    flex: 1;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 12px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #2e7d32;
    font-weight: 700;
    gap: 4px;
    /* border: 2px dashed #81c784; */
  }

/* ===== 7. CONCEPT ===== */
.concept {
  background: #fff;
}

.concept-lead {
  /* font-size: 0.875rem; */ /* 14px */
  color: var(--mid);
  line-height: 1.5;
  margin-bottom: 1.75rem;
  padding: 1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 90%;
  margin: 0 auto;
}

.feature-item {
  position: relative;
  padding-top: 2.25rem;
}

/* 上に浮かせる見出し */
.feature-head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-block;
  padding: 0 1rem;
  background: #fff;
  color: var(--primary);
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
}

.feature-head::before,
.feature-head::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.75rem;
  height: 2px;
  background: var(--primary);
}

.feature-head::before {
  left: -0.25rem;
  transform: translateY(-50%) rotate(65deg);
}

.feature-head::after {
  right: -0.25rem;
  transform: translateY(-50%) rotate(-65deg);
}
.feature-item:nth-child(odd) .feature-head {
  color: var(--blue-dark);
}

.feature-item:nth-child(odd) .feature-head::before,
.feature-item:nth-child(odd) .feature-head::after {
  background: var(--blue-dark);
}

/* カード本体 */
.feature-card {
 /*  display: flex;
  align-items: stretch; */
  background: var(--light);
  border-radius: 0 1.75rem 1.75rem 0;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

/* 左の画像部分 */
.feature-photo {
  /* width: 8.5rem;
  min-width: 8.5rem;
  background: linear-gradient(135deg, #73a8df 0%, #5d98d6 100%);
  border-radius: 0 9999px 9999px 0;
  overflow: hidden; */
}

.feature-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右のテキスト部分 */
.feature-body {
  flex: 1;
  padding: 1.5rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-title {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.feature-desc {
  /* font-size: 0.875rem; */ /* 14px */
  color: var(--mid);
  line-height: 1.3;
}
  /* ===== 8. COURSES ===== */
  .courses-sec { background: var(--light); }
  .course-list { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
  .course-item {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .course-header {
    padding: 16px 20px;
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px; */
  }
  .course-item:nth-child(1) .course-header { background: linear-gradient(135deg, #0799d0, #0087ba); }
  .course-item:nth-child(2) .course-header { background: linear-gradient(135deg, #0dca97, #02ad7f); }
  .course-item:nth-child(3) .course-header { background: linear-gradient(135deg, #ef8e04, #db8100); }
  .course-item:nth-child(4) .course-header { background: linear-gradient(135deg, #ef5975, #ee375a); }

  .course-header-left {
    padding: 16px 20px　0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .course-name {
    font-family: var(--font-round);
    font-weight: 900;
    font-size: 1.375rem;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 4px;
    text-align: center;
  }
  .course-grade {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1.2;
  }
  .course-type-badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
  }
  .course-body { padding: 18px; }
  .course-photo{margin-bottom: 10px;}
  .course-body p { font-size: 0.875rem; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }
  .course-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
  }
  .course-detail-tag {
    background: var(--light);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.875rem;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .curriculum-list { background: var(--light); border-radius: 10px; padding: 12px; }
  .curriculum-list li {
    font-size: 0.875rem;
    color: var(--mid);
    padding: 4px 0;
    border-bottom: 1px dashed #dde;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .curriculum-list li:last-child { border-bottom: none; }
  .curriculum-text{
    margin: 10px 0 0;
    font-size: 0.625rem;
    line-height: 1.2;
  }
/*   .curriculum-list li::before { content: '📌'; font-size: 12px; } */

  /* ===== 9. PRICING ===== */
  .pricing { background: #fff; }
  .price-note {
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.875rem;
    text-align: center;
    color: var(--mid);
    margin-bottom: 20px;
    border: 1px solid #959595;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .price-note strong{
    font-size: 0.875rem;
  }
  .price-note span{
    font-size: 1.125rem;
  }
  .price-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
  .price-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid #eee;
  }
  .price-head {
    padding: 12px 16px;
    font-family: var(--font-round);
    font-weight: 900;
    /* font-size: 14px; */
    color: #fff;
    text-align: center;
  }
  .price-card:nth-child(1) .price-head { background: linear-gradient(90deg,#0799d0, #0087ba); }
  .price-card:nth-child(2) .price-head { background: linear-gradient(90deg,#0dca97, #02ad7f); }
  .price-card:nth-child(3) .price-head { background: linear-gradient(90deg,#ef8e04, #db8100); }
  .price-card:nth-child(4) .price-head { background: linear-gradient(90deg,#ef5975, #ee375a); }

  .price-body { padding: 14px 16px; }
  .price-monthly {
    font-family: var(--font-round);
    font-weight: 900;
    font-size: 28px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
    text-align: center;
  }
  .price-monthly sup { font-size: 14px; vertical-align: baseline;
  position: static; }
  .price-monthly sub { font-size: 13px; color: var(--mid); font-weight: 400; }
  .price-breakdown {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--mid);
    margin-top: 8px;
    padding: 10px 0 0;
    border-top: 1px solid #cccfd1;
    text-align: center;
    justify-content: center;
  }
  .price-breakdown span { display: flex; align-items: center; gap: 3px; }
  .pair-note {
    background: linear-gradient(135deg, #FFF3E0, #FFF8E1);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 13px;
    text-align: center;
    border: 1px solid #FFE082;
    margin-bottom: 8px;
  }
  .pair-note strong { color: var(--primary); font-size: 15px; }

  /* ===== 10. SCHOOLS ===== */
  .schools-sec { background: var(--light); }

  /* エリアブロック */
  .area-block { margin-bottom: 12px; }
  .area-name {
    font-family: var(--font-round);
    font-weight: 900;
    /* font-size: 14px; */
    color: #fff;
    padding: 10px 14px;
    background: var(--dark);
    border-radius: 10px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* 都道府県アコーディオン */
  .pref-accordion { margin-bottom: 6px; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
  .pref-btn {
    width: 100%;
    background: #fff;
    border: none;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-main);
    /* font-size: 13px; */
    font-weight: 700;
    color: var(--blue);
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s;
  }
  .pref-btn:active { background: var(--sky); }
  .pref-btn .pref-btn-left { display: flex; align-items: center; gap: 8px; }
  .pref-btn .pref-count {
    font-size: 10px;
    font-weight: 700;
    background: var(--sky);
    color: var(--blue);
    padding: 2px 7px;
    border-radius: 50px;
  }
  .pref-btn .pref-arrow {
    font-size: 11px;
    color: var(--mid);
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  .pref-accordion.open .pref-arrow { transform: rotate(180deg); }

  /* 教室リスト（非表示→展開） */
  .pref-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #fff;
  }
  .pref-accordion.open .pref-body { max-height: 1200px; }
  .school-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 4px 14px 14px;
  }
  .school-link {
    background: var(--light);
    border: 1px solid #dde;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    color: var(--blue);
    font-weight: 500;
    transition: background 0.15s;
  }
  .school-link:active { background: var(--sky); }

  /* ===== 11. VOICES ===== */
  .voices { background: #fff; }
  .voice-slider { display: flex; flex-direction: column; gap: 12px; }
  .voice-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 18px;
    position: relative;
    border-left: 4px solid var(--primary);
  }
  .voice-card::before {
    content: '"';
    font-size: 56px;
    color: rgba(255,107,53,0.12);
    position: absolute;
    top: 4px; right: 12px;
    font-family: Georgia, serif;
    line-height: 1;
  }
  .voice-text { font-size: 13px; line-height: 1.8; color: var(--text); margin-bottom: 10px; }
  .voice-from { font-size: 11px; color: var(--mid); font-weight: 700; }

  /* ストーリー型カード（写真＋アコーディオン） */
  .voice-story {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    margin-bottom: 16px;
    border: 1.5px solid #eef0f8;
  }

  /* タップできるサマリー行 */
  .voice-story-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s;
  }
  .voice-story-summary:active { background: #f5f7ff; }

  /* 写真エリア */
  .voice-story-photo {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #bbdefb, #e3f2fd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
  }
  .voice-story-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
  .voice-story-photo-label {
    position: absolute;
    bottom: 2px;
    font-size: 9px;
    color: #1565C0;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
  }

  /* サマリーテキスト */
  .voice-story-summary-text { flex: 1; min-width: 0; }
  .voice-story-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(90deg, var(--primary), #FF9800);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
  }
  .voice-story-catchcopy {
    font-family: var(--font-round);
    font-weight: 700;
    /* font-size: 13px; */
    color: var(--dark);
    line-height: 1.45;
    margin-bottom: 4px;
  }
  .voice-story-summary-meta {
    font-size: 0.75rem;
    color: var(--mid);
  }

  /* 展開トグル矢印 */
  .voice-story-toggle {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--mid);
    transition: transform 0.3s, background 0.2s;
  }
  .voice-story.open .voice-story-toggle {
    transform: rotate(180deg);
    background: var(--primary);
    color: #fff;
  }

  /* 区切り線 */
  .voice-story-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--primary), #FF9800, transparent);
    margin: 0 16px;
    display: none;
  }
  .voice-story.open .voice-story-divider { display: block; }

  /* 展開コンテンツ */
  .voice-story-body {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  .voice-story.open .voice-story-body {
    max-height: 800px;
    padding: 16px;
  }

  .voice-story-block {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #e8eaf0;
  }
  .voice-story-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .voice-story-block-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.08em;
    margin-bottom: 7px;
  }
  .voice-story-block-label .label-icon {
    width: 12px; height: 12px;
    border-radius: 3px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
  }
  .voice-story-block:nth-child(2) .label-icon { background: var(--accent); }
  .voice-story-block:nth-child(2) .voice-story-block-label { color: var(--accent); }
  .voice-story-block:nth-child(3) .label-icon { background: var(--blue); }
  .voice-story-block:nth-child(3) .voice-story-block-label { color: var(--blue); }
  .voice-story-text { font-size: 0.875rem; line-height: 1.6; color: var(--text); }
  .voice-story-text strong { color: var(--primary); font-weight: 700; }
  .voice-story-text .highlight {
    background: linear-gradient(transparent 60%, rgba(255,193,7,0.35) 60%);
    font-weight: 700;
  }
  .voice-story-goal { display: flex; flex-direction: column; gap: 8px; }
  .voice-story-goal-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-radius: 10px;
  }
  .voice-story-goal-item .g-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
  .voice-story-goal-item .g-text { font-size: 0.875rem; color: var(--text); line-height: 1.6; }
  .voice-story-goal-item .g-text strong { color: var(--dark); font-weight: 700; display: block; }
  .voice-story-quote {
    background: linear-gradient(135deg, #f0f7ff, #e8f5e9);
    border-radius: 12px;
    padding: 0.875rem;
    position: relative;
  }
  .voice-story-quote::before {
    content: '"';
    font-size: 44px;
    color: rgba(21,101,192,0.15);
    position: absolute;
    top: 2px; left: 8px;
    font-family: Georgia, serif;
    line-height: 1;
  }
  .voice-story-quote p { font-size: 13px; line-height: 1.85; color: var(--text); padding-left: 8px; }
  .voice-story-recommend {
    margin-top: 10px;
    background: linear-gradient(135deg, #fff3e0, #fff8e1);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    color: #5d4037;
    line-height: 1.7;
  }
  .voice-story-recommend strong { color: #e65100; }

  /* ===== 12. FAQ ===== */
  .faq { background: var(--light); }
  .faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
  .faq-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 16px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    font-family: var(--font-main);
  }
  .faq-q .q-badge {
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .faq-q .faq-arrow { margin-left: auto; transition: transform 0.3s; flex-shrink: 0; color: var(--mid); }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }
  .faq-a {
    display: none;
    padding: 0 16px 16px 16px;
    font-size: 13px;
    color: var(--mid);
    line-height: 1.7;
    padding-left: 42px;
  }
  .faq-item.open .faq-a { display: block; }

  /* ===== FINAL CTA ===== */
  .final-cta {
    background: linear-gradient(180deg, #fde967 0%, #ffea79 55%, #ffd95a 100%);
    /* background: linear-gradient(135deg, #02ad7f, #0dca97); */
    padding: 48px 0 100px;
    text-align: center;
  }

  .final-cta .inner {}
  .final-cta h2 {
    font-family: var(--font-round);
    font-weight: 900;
    font-size: 22px;
    color: var(--mid);
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .final-cta p { color: var(--mid); font-size: 14px; margin-bottom: 28px; }
  .final-cta .btn-cta-white {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-family: var(--font-round);
    font-weight: 900;
    font-size: 16px;
    padding: 16px 24px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    margin-bottom: 12px;
  }
  .final-cta .btn-cta-border {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--mid);
    border: 2px solid var(--mid);
    background: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    width: 100%;
  }
/* 右向き矢印 */
  .final-cta .btn-cta-white::after,
  .final-cta .btn-cta-border::after {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
  }
  /* FOOTER */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 24px 0 100px 0;
    font-size: 12px;
  }
  footer a { color: rgba(255,255,255,0.6); }
    .footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
  }

  .social-link img {
    display: block;
    width: 32px;
    height: 32px;
  }

  copyright {
    font-size: 11px;
    opacity: 0.5;
  }

  /* PAGE TOP */ 
.pagetop {
  position: fixed;
  right: 12px;
  bottom: 92px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #3dccc7;
  display: block;
  text-decoration: none;
  pointer-events: auto;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.pagetop::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-50%, -35%) rotate(-45deg);
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pagetop:active {
  transform: translateY(2px);
}

  /* Divider */
  .wave-div {
    display: block;
    line-height: 0;
    overflow: hidden;
  }
  .wave-div svg { display: block; width: 100%; }

  /* ===== DESKTOP ===== */
  @media (min-width: 640px) {
    .inner { max-width: 960px; }
    .sec-title { font-size: 28px; }
    .hero-title { font-size: 36px; }
    .trust-badges { flex-wrap: nowrap; }
    .stat-cards { flex-direction: row; }
    .skill-cards { flex-direction: row; }
    .course-list { display: grid; grid-template-columns: 1fr 1fr; }
    .price-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .feature-list { display: grid; grid-template-columns: 1fr 1fr; }
    .rec-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .voice-slider { display: grid; grid-template-columns: 1fr 1fr; }
    .media-placeholders > * { aspect-ratio: 16/9; }
  }