:root {
      /* 指定のメインカラー */
      --pink: #f51874;
      --navy: #010622;
      
      /* パレット展開 */
      --pink-light: rgba(245, 24, 116, 0.08);
      --pink-dark: #d61263;
      --navy-light: #161e3d;
      
      /* ベースカラー */
      --bg: #ffffff;
      --bg-alt: #f8fafc;
      --surface: #ffffff;
      --text: #010622;
      --text-muted: #525f7f;
      --line: #f1f5f9;
      
      /* アクセント */
      --teal: #0d9488;
      --yellow: #f59e0b;
      
      /* シャドウと角丸 */
      --shadow-sm: 0 4px 20px rgba(1, 6, 34, 0.04);
      --shadow-md: 0 12px 30px rgba(1, 6, 34, 0.08);
      --shadow-btn: 0 8px 20px rgba(245, 24, 116, 0.25);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 32px;
      --container: 1100px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { 
      margin: 0; 
      font-family: "Inter", "Noto Sans JP", sans-serif; 
      color: var(--text); 
      background: var(--bg); 
      line-height: 1.8; 
      letter-spacing: 0.02em;
    }
    img { max-width: 100%; display: block; object-fit: cover; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
    .section { padding: 120px 0; }
    .center { text-align: center; }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 700;
      border-radius: 99px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      text-align: center;
      border: none;
      text-decoration: none;
      line-height: 1.3;
    }
    .btn i { width: 18px; height: 18px; }
    
    .btn-primary {
      background: var(--pink);
      color: #ffffff !important;
      padding: 16px 36px;
      font-size: 1rem;
      box-shadow: var(--shadow-btn);
    }
    .btn-primary:hover {
      background: var(--pink-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 25px rgba(245, 24, 116, 0.35);
    }
    .btn-lg {
      font-size: 1.1rem;
      padding: 22px 58px;
    }
    
    .btn-more, .btn-less {
      background: var(--surface);
      border: 1px solid var(--line);
      color: var(--navy);
      padding: 14px 32px;
      font-size: 0.95rem;
      margin: 0 auto;
      box-shadow: var(--shadow-sm);
    }
    .btn-more:hover, .btn-less:hover {
      border-color: var(--pink);
      color: var(--pink);
    }
    .btn-controls { text-align: center; margin-top: 50px; }

    /* Animations */
    .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
    .reveal.active { opacity: 1; transform: translateY(0); }

    /* Header */
    .site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); background: rgba(255, 255, 255, 0.85); border-bottom: 1px solid rgba(1, 6, 34, 0.05); }
    .header-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; }
    .logo { font-size: 1.4rem; font-weight: 900; letter-spacing: -0.02em; color: var(--navy); }
    .logo span { color: var(--pink); }
    .header-nav { display: flex; align-items: center; gap: 32px; }
    .header-link { color: var(--navy); font-size: 0.9rem; font-weight: 700; transition: color 0.3s; }
    .header-link:hover { color: var(--pink); }

    /* Hero */
    .hero { padding: 60px 0 140px; background: radial-gradient(circle at top right, var(--pink-light) 0%, transparent 60%); overflow: hidden; }
    .hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }
    .hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.25; margin-bottom: 24px; font-weight: 900; letter-spacing: -0.04em; color: var(--navy); }
    .hero h1 span { color: var(--pink); }
    .hero-lead { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 48px; line-height: 1.9; }
    .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
    .stat-card { padding: 24px 16px; background: #fff; border-radius: var(--radius-sm); border: none; text-align: center; box-shadow: var(--shadow-sm); }
    .stat-card strong { display: block; font-size: 1.4rem; color: var(--navy); margin-bottom: 4px; font-weight: 900; }
    .stat-card span { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; letter-spacing: 0.05em; }

    /* Status Bar */
    .status-bar-container { position: relative; margin-top: -50px; z-index: 10; }
    .status-bar-title { font-size: 0.75rem; font-weight: 800; color: var(--text-muted); margin-bottom: 12px; text-align: center; text-transform: uppercase; letter-spacing: 0.1em; }
    .status-bar { background: #ffffff; padding: 20px 40px; border-radius: 99px; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow-md); border: none; flex-wrap: wrap; gap: 20px; }
    .status-item { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 80px; }
    .status-dot { width: 6px; height: 6px; background: var(--pink); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } 100% { opacity: 1; transform: scale(1); } }
    .status-label { font-size: 0.6rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
    .status-value { font-size: 1.1rem; font-weight: 900; color: var(--navy); display: flex; align-items: center; gap: 6px; }
    .status-msg { font-size: 0.8rem; font-weight: 800; color: var(--pink); background: var(--pink-light); padding: 6px 18px; border-radius: 99px; }

    /* Section Headings */
    .section-head { margin-bottom: 80px; }
    .section-head h2 { font-size: 2.4rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -0.03em; line-height: 1.3; color: var(--navy); }
    .section-head p { color: var(--text-muted); font-size: 1.1rem; margin: 0 auto; }

    /* Assets Section */
    .assets-section { background: var(--bg); }
    .assets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
    .asset-item { padding: 40px 30px; border-radius: var(--radius-md); background: #ffffff; border: 1px solid var(--line); transition: 0.4s ease; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
    .asset-item:hover { transform: translateY(-8px); border-color: transparent; box-shadow: var(--shadow-md); }
    .asset-icon { width: 56px; height: 56px; background: var(--pink-light); color: var(--pink); border-radius: 16px; display: grid; place-items: center; margin-bottom: 24px; }
    .asset-icon i { width: 28px; height: 28px; }
    .asset-item h3 { font-size: 1.15rem; font-weight: 900; margin-bottom: 12px; color: var(--navy); line-height: 1.5; }
    .asset-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
    .asset-badge { display: inline-block; padding: 4px 12px; background: var(--navy); color: #fff; font-size: 0.7rem; font-weight: 800; border-radius: 99px; margin-bottom: 16px; align-self: flex-start; letter-spacing: 0.05em; }

    /* Wage Chart */
    .wage-comparison { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; width: 100%; }
    .wage-bar-container { display: flex; align-items: center; gap: 12px; width: 100%; }
    .wage-label { font-size: 0.7rem; font-weight: 800; color: var(--navy); width: 90px; flex-shrink: 0; }
    .wage-bar { height: 28px; border-radius: 6px; display: flex; align-items: center; padding-left: 12px; font-size: 0.75rem; font-weight: 900; color: #fff; position: relative; }
    .wage-bar.au { background: linear-gradient(90deg, var(--pink) 0%, #ff4b91 100%); width: 60%; box-shadow: 0 4px 10px rgba(245, 24, 116, 0.2); }
    .wage-bar.jp { background: #e2e8f0; width: 35%; color: var(--text-muted); }

    /* Donut & Progress */
    .donut-chart { width: 56px; height: 56px; border-radius: 50%; background: conic-gradient(var(--pink) 0% 78%, #f1f5f9 78% 100%); position: relative; margin-top: 12px;}
    .donut-chart::after { content: "78%"; position: absolute; inset: 6px; background: #ffffff; border-radius: 50%; display: grid; place-items: center; font-size: 0.8rem; font-weight: 900; color: var(--navy); }
    
    .progress-ring { width: 56px; height: 56px; border-radius: 50%; background: conic-gradient(var(--teal) 0% 91%, #f1f5f9 91% 100%); position: relative; margin-top: 12px; }
    .progress-ring::after { content: "91%"; position: absolute; inset: 6px; background: #ffffff; border-radius: 50%; display: grid; place-items: center; font-size: 0.8rem; font-weight: 900; color: var(--navy); }

    /* Advantages Section */
    .advantage-section { background: var(--bg-alt); }
    .advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
    .advantage-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; border: none; display: flex; flex-direction: column; height: 100%; box-shadow: var(--shadow-sm); transition: transform 0.3s ease; }
    .advantage-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .adv-img { height: 180px; width: 100%; background: #e2e8f0; position: relative; }
    .adv-body { padding: 32px; flex-grow: 1; display: flex; flex-direction: column; }
    .adv-label { color: var(--pink); font-weight: 900; font-size: 0.75rem; margin-bottom: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
    .adv-body h3 { font-size: 1.15rem; font-weight: 900; margin: 0 0 16px; color: var(--navy); line-height: 1.5; }
    .adv-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

    /* Media Coverage */
    .media-section { background: var(--pink); padding: 80px 0; color: #fff; position: relative; overflow: hidden; }
    .media-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); pointer-events: none; }
    .media-card { background: #fff; border-radius: var(--radius-lg); padding: 50px; color: var(--text); display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; box-shadow: 0 20px 40px rgba(1, 6, 34, 0.15); position: relative; z-index: 1; }
    .media-item { text-align: center; }
    .media-img-box { width: 100%; aspect-ratio: 16 / 10; background: var(--bg-alt); border-radius: 12px; margin-bottom: 20px; overflow: hidden; border: 1px solid var(--line); }
    .media-badge { background: var(--navy); color: #fff; padding: 4px 14px; border-radius: 99px; font-weight: 800; font-size: 0.7rem; margin-bottom: 8px; display: inline-block; letter-spacing: 0.05em; }

    /* Testimonials Infinite Scroll */
    .carousel-section { padding: 80px 0 0; background: var(--bg); overflow: hidden; }
    .carousel-track { display: flex; width: calc(280px * 24); animation: scroll 60s linear infinite; margin-top: 40px; }
    .carousel-item { width: 280px; height: 180px; padding: 0 12px; flex-shrink: 0; }
    .carousel-photo { width: 100%; height: 100%; border-radius: var(--radius-md); background: #cbd5e1; position: relative; overflow: hidden; border: none; box-shadow: var(--shadow-sm); }
    .carousel-photo::after { content: attr(data-name); position: absolute; bottom: 12px; left: 12px; background: rgba(1, 6, 34, 0.85); color: #fff; font-size: 0.75rem; font-weight: 800; padding: 6px 14px; border-radius: 8px; backdrop-filter: blur(4px); }
    @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-280px * 12)); } }

    .testimonials-section { background: var(--bg); padding: 60px 0 80px; }
    .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testimonial-card { background: #fff; padding: 32px; border-radius: var(--radius-md); border: 1px solid var(--line); display: flex; flex-direction: column; height: 100%; box-shadow: var(--shadow-sm); transition: 0.3s ease; }
    .testimonial-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
    .testimonial-card.hidden { display: none; }
    .card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
    .card-photo-rect { width: 64px; height: 64px; border-radius: 50%; background: var(--bg-alt); flex-shrink: 0; overflow: hidden; border: 2px solid #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
    .card-name { font-size: 1.05rem; font-weight: 900; color: var(--navy); display: flex; flex-direction: column; gap: 4px; }
    .card-tag { font-size: 0.7rem; color: var(--pink); background: var(--pink-light); padding: 2px 8px; border-radius: 4px; font-weight: 800; display: inline-block; width: fit-content; }
    .card-text { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; }
    .card-footer { padding-top: 16px; border-top: 1px solid var(--line); font-size: 0.85rem; font-style: normal; color: var(--navy); font-weight: 800; }

    /* English Lesson Section */
    .english-lesson-section { background: var(--bg-alt); }
    .lesson-video-box { width: 100%; max-width: 860px; margin: 0 auto 60px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16 / 9; background: #000; border: none; }
    .lesson-schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 80px; }
    .schedule-col h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 30px; display: flex; align-items: center; gap: 12px; color: var(--navy); }
    .schedule-col h3 i { color: var(--pink); }
    .schedule-step { position: relative; padding-left: 45px; margin-bottom: 24px; }
    .schedule-step::before { content: ""; position: absolute; left: 19px; top: 0; bottom: -24px; width: 2px; background: var(--pink-light); }
    .schedule-step:last-child::before { display: none; }
    .step-dot { position: absolute; left: 0; top: 0; width: 40px; height: 40px; background: #fff; border: 2px solid var(--pink); border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: 0.9rem; color: var(--pink); z-index: 2; box-shadow: 0 2px 8px rgba(245, 24, 116, 0.2); }
    .step-box { background: #fff; padding: 20px 24px; border-radius: 16px; border: none; box-shadow: var(--shadow-sm); }
    .step-box b { color: var(--navy); font-size: 1.05rem; display: block; margin-bottom: 6px; }
    .step-box p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }
    
    .satisfaction-card { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 50px; margin-top: 80px; display: grid; grid-template-columns: 240px 1fr; gap: 50px; align-items: center; box-shadow: var(--shadow-md); }
    .chart-box { position: relative; width: 180px; height: 180px; margin: 0 auto; }
    .chart-circle { width: 100%; height: 100%; border-radius: 50%; background: conic-gradient(var(--pink) 0% 84%, rgba(255,255,255,0.1) 84% 100%); display: grid; place-items: center; }
    .chart-inner { width: 140px; height: 140px; background: var(--navy); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: inset 0 4px 10px rgba(0,0,0,0.3); }
    .chart-inner span { color: #fff; }
    .chart-inner small { color: rgba(255,255,255,0.7); font-weight: 700; letter-spacing: 0.05em; }

    /* Requirements & Schedule */
    .requirement-section { background: var(--bg); }
    .req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
    .req-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
    .req-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: 0.3s; }
    .req-item:hover { border-color: var(--pink-light); transform: translateX(4px); }
    .req-icon { color: var(--pink); flex-shrink: 0; margin-top: 2px; }
    .req-text b { display: block; font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
    .req-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
    .req-text small { color: #94a3b8; }
    
    .schedule-box { background: var(--bg-alt); padding: 40px; border-radius: var(--radius-lg); border: none; }
    .year-label { font-size: 1.8rem; font-weight: 900; color: var(--navy); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px; }
    .year-label::after { content: ''; display: block; width: 40px; height: 4px; background: var(--pink); border-radius: 2px; }
    .slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .slot-card { padding: 24px; border-radius: 16px; border: 1px solid var(--line); background: #fff; text-align: center; box-shadow: var(--shadow-sm); }
    .slot-status { font-size: 0.8rem; font-weight: 800; padding: 4px 12px; border-radius: 99px; display: inline-block; margin-bottom: 8px; }
    .status-active { background: #f0fdf4; color: #16a34a; }
    .status-urgent { background: var(--pink); color: #fff; box-shadow: 0 4px 10px rgba(245, 24, 116, 0.3); }
    .info-banner { margin-top: 30px; padding: 20px; background: #fffbeb; border: none; border-radius: 16px; color: var(--navy); font-size: 0.9rem; font-weight: 800; display: flex; align-items: center; gap: 12px; line-height: 1.6; box-shadow: var(--shadow-sm); }

    /* Briefing Session */
    .briefing-section { background: var(--bg-alt); }
    .briefing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
    .briefing-card { background: #fff; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: none; height: 100%; }
    .bonus-banner { background: linear-gradient(135deg, var(--pink) 0%, #ff4b91 100%); color: #fff; padding: 24px 32px; border-radius: var(--radius-md); display: flex; align-items: center; gap: 24px; margin-bottom: 20px; box-shadow: 0 10px 30px rgba(245, 24, 116, 0.25); }
    .bonus-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.2); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
    .timeline-list { margin: 0; padding: 0; list-style: none; position: relative; }
    .timeline-list::before { content: ''; position: absolute; left: 15px; top: 10px; bottom: 10px; width: 2px; background: var(--pink-light); }
    .timeline-item { position: relative; padding-left: 48px; margin-bottom: 32px; }
    .timeline-item:last-child { margin-bottom: 0; }
    .timeline-dot { position: absolute; left: 0; top: 2px; width: 32px; height: 32px; background: var(--surface); border: 2px solid var(--pink); border-radius: 50%; z-index: 2; box-shadow: 0 2px 8px rgba(245, 24, 116, 0.2); }
    .timeline-time { font-size: 0.85rem; font-weight: 900; color: var(--pink); margin-bottom: 6px; display: block; letter-spacing: 0.05em; }
    .timeline-title { font-size: 1.1rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
    .timeline-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
    .date-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .date-item { padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; text-align: center; font-size: 0.95rem; font-weight: 800; color: var(--navy); transition: 0.3s; background: var(--surface); box-shadow: var(--shadow-sm); }
    .date-item:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
    .flow-step { text-align: center; position: relative; background: #fff; padding: 40px 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
    .flow-step:not(:last-child)::after { content: ''; position: absolute; top: 60px; right: -25px; width: 16px; height: 16px; border-top: 3px solid var(--line); border-right: 3px solid var(--line); transform: rotate(45deg); z-index: 2; }
    .flow-num { width: 48px; height: 48px; background: var(--pink-light); color: var(--pink); font-size: 1.2rem; font-weight: 900; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 20px; }
    .flow-title { font-size: 1.15rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
    .flow-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

    /* Movie Section */
    .movie-section { background: var(--navy); color: #fff; padding: 120px 0; position: relative; }
    .movie-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>'); }
    .movie-container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
    .video-frame { aspect-ratio: 16 / 9; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); width: 100%; }
    .video-frame iframe { width: 100%; height: 100%; border: none; }
    .movie-cta-sp-wrap { display: none; position: relative; z-index: 1; }

    /* CTA / Footer */
    .footer-cta { background: var(--bg); padding: 120px 0; text-align: center; color: var(--navy); }
    .site-footer { padding: 80px 0; background: var(--navy); color: rgba(255,255,255,0.5); text-align: center; font-size: 0.85rem; }
    
    /* Placeholders */
    .real-photo-placeholder { background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%); height: 100%; width: 100%; position: relative; }
    .real-photo-placeholder::after { content: "IMAGE"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--navy); font-weight: 900; opacity: 0.15; letter-spacing: 0.1em; }

    /* testimonial images */
    .real-photo-placeholder {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    .real-photo-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .d-md-none{ display: none;}
    .mt80-pt80{margin-top: 80px; padding-top: 80px;}
    .h2{
      font-size: 2.4rem;
    }

    @media (max-width: 1024px) {
      .hero-inner, .req-grid, .advantage-grid, .media-card, .satisfaction-card, .lesson-schedule-grid { grid-template-columns: 1fr; }
      .testimonial-grid, .assets-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-inner { gap: 40px; }
      .satisfaction-card { text-align: center; }
      .satisfaction-card > div:last-child { text-align: center; }
      
      .briefing-grid { grid-template-columns: 1fr; }
      .flow-grid { grid-template-columns: 1fr; gap: 20px; }
      .flow-step:not(:last-child)::after { display: none; }
      .bonus-banner { flex-direction: column; text-align: center; gap: 16px; }
      
      /* Experience Voice responsive order */
      .movie-container { display: flex; flex-direction: column-reverse; gap: 40px; }
      .movie-cta-pc { display: none !important; }
      .movie-cta-sp-wrap { display: block; margin-top: 20px; }

      .d-sm-none{ display: none;}
    }
    @media (max-width: 640px) {
      .testimonial-grid, .assets-grid, .slot-grid { grid-template-columns: 1fr; }
      .status-bar { border-radius: 20px; padding: 20px; }
      .hero h1 { font-size: 2.1rem; }
      .section { padding: 60px 0; }
      .header-nav .btn { padding: 8px 16px; font-size: 0.8rem; }
      .header-link { display: none; }
      .briefing-card { padding: 30px; }
      .section-head { margin-bottom: 30px; }
      .section-head h2 { font-size: 2rem; }
      .btn-lg { padding: 22px 21px; width:100%;}
      .d-block{display: block;}
      .movie-section, .footer-cta { padding: 60px 0; }
      .movie-container { gap: 0;}
      .carousel-section { padding: 60px 0 0;}
      .lesson-schedule-grid, .req-grid {
        gap: 0;
        margin-top: 0;
      }
      .mt80-pt80{margin-top: 40px; padding-top: 40px;}
      .satisfaction-card { margin-top: 40px;}
      .h2{
        font-size: 2rem;
      }
    }